5
votes
8answers
207 views
Are side-effects possible in pure functional programming
I have been trying to wrap my head around functional programming for a while now? I have looked up lambda calculus, LISP, OCML, F# and even combinatorial logic but the main problem I have is how do …
40
votes
11answers
2k views
How would YOU do this: Tables or CSS?
Part I
This layout can be done quite simply with 2 HTML tables, one nested inside the other, or even with a single table.
It can also be done with CSS, though it might involve a little more …
1
vote
5answers
98 views
concatenate items in dictionary in python using list comprehension
EDIT: Clarified the question a bit
How can I get a string from a dictionary with the format
key1 = value1
key2 = value2
in a relatively fast way ? (relative to plain concatenation)
1
vote
3answers
66 views
Convert single-quoted string to double
I want to check whether the given string is single- or double-quoted. If it is single quote I want to convert it to be double quote, else it has to be same double quote.
2
votes
5answers
74 views
Are there any good free online ColdFusion tuturials?
I have some new students starting soon and what I have always done in the past is just throw them in the deep end to learn ColdFusion. I usually give them a very small project that has most of the …
0
votes
1answer
33 views
PHP - count my quantity item in session array
How to count the item-qty and current code :-
$q = $_POST['item-qty'];
$i = count($q);
$k = 0;
while ($k < $i) {
$select = 'SELECT * FROM location';
$query = $db->rq($select);
$price = …
0
votes
10answers
243 views
Program a system with C++
Hello everybody..
My question is simple because I am a beginner, so Can I program a full computer system with only using C++ language?
Thanks.
0
votes
8answers
148 views
Python: List to ints to a single number?
Say i have a several list if ints:
x = [['48', '5', '0'], ['77', '56', '0'],
['23', '76', '34', '0']]
I want this list to be converted to a single number, but the the single number type is still …
0
votes
7answers
133 views
Adding elements to an array?
here i am trying to add elements to the array.
the elements i am trying to add are text fields, so im basically trying to store persons contact details within the array list?
any help would be …
0
votes
8answers
96 views
Python: Import a file and convert to a list
I need help with importing a file and converting each line into a list.
An example of the file would look like:
p wfgh 1111 11111 111111
287 48 0
65626 -1818 0
4654 21512 02020 0
The first line …
0
votes
3answers
32 views
xml.dom.minidom python issue
from xml.dom.minidom import *
resp = "<title> This is a test! </title>"
rssDoc = parseString(resp)
titles = rssDoc.getElementsByTagName('title')
moo = ""
for t in titles:
moo += …
591
votes
284answers
51k views
What is the single most influential book every programmer should read?
If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?
I expect this list to be varied and to cover a wide …
3
votes
9answers
209 views
Why do I need to use foreign key if I can use WHERE ?
A beginners' question about foreign key in MySQL.
In w3cshool it says,
A FOREIGN KEY in one table points to a PRIMARY KEY in another table.
And also there is WHERE,
WHERE id = page_id
So if …
1
vote
3answers
36 views
Flattening a deeply nested structure in XSLT
Hi! I'm trying to learn XSLT (for some holiday coding fun). I think I now have a pretty good understanding of the basics (grabbing subtrees, filtering-out elements, and renaming elements). Where I'm …
54
votes
23answers
12k views
How do I calculate someone’s age in C#?
Given a DateTime representing their birthday, how do I calculate someone's age?
