0
votes
6answers
84 views
How can I improve my C coding process on OS X?
Hi,
I'm currently learning C from some Harvard screencasts. They're great. I'm currently, because I'm used to it, using this process for running my code:
Type it it TextMate
Sav …
0
votes
1answer
22 views
What project structure do you use for C# apps that host multiple WCF services?
I need a C# WinForms app to host multiple WCF services. So which of these (1 or 2) would be suitable?
Should I create a C# WinForms project and another WCF Service Library projec …
2
votes
3answers
73 views
Finding a logic bug in converting Python code to PHP
The input 7|12|1|14|2|13|8|11|16|3|10|5|9|6|15|4 returns 0 by the PHP -code, while 1 by Python code: 1 means that the sums of the 4x4 magic square are the same, while 0 means the r …
0
votes
1answer
22 views
Set Selection in Numbers (Python/Appscript)
How do you set the selection for a table in Numbers using py-appscript?
This seems like it should be really simple to do but the solution is frustratingly evasive. I can get the c …
0
votes
1answer
26 views
Getting the Current Table in Numbers (Python/Appscript)
How do I access the current table in Numbers using py-appscript?
For posterity, the program I created using this information clears all the cells of the current table and retur …
19
votes
28answers
1k views
Give me an assignment in C
I am teaching myself C, with several books as well as online tutorials. I am in the middle of Greg Perry's book Absolute Beginner's Guide to C. I know I learn best by doing, so I n …
0
votes
2answers
30 views
How retrieve category name?
I have two tables. Categories and products.(using codeigniter)
Categories
CREATE TABLE IF NOT EXISTS `categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) …
0
votes
7answers
81 views
What is the best way to store users images using PHP and MySQL?
I was wondering what is the best way to store a users upload images like an avatar and so on using PHP and MySQL? Where should I begin? And is there a good article on this?
2
votes
4answers
140 views
Basic LINQ syntax
Lets say you have an XML like like this:
<data>
<messages>
<message name="Person" id="P">
<field name="FirstName" required="Y" />
<field n …
0
votes
2answers
65 views
Modulus in Python’s slicing
How can you fix the following code?
I want to get the slice of elements that are i mod 5 == 1.
data = "8|9|8|9|8|9|8|9|9|8|9|8|9|8|9|8"
arra = map(int,data.split("|"))
sums + …
544
votes
271answers
46k 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 …
5
votes
3answers
194 views
Python-equivalent of short-form “if” in C++
Is there a way to write this C/C++ code in Python?
a = (b == true ? "123" : "456" )
Thanks so much!
0
votes
2answers
55 views
AND in Python’s slicing with modulus
How can you fix the code?
I am trying to have i % 3 == 1 and i != 16 unsuccessfully by
data = "8|9|8|9|8|9|8|9|9|8|9|8|9|8|9|8"
arra = map(int,data.split("|"))
arra = sum(arra[1 …
0
votes
2answers
54 views
How to create album effect like this page with jQuery?
How do I create a photo gallery like the one seen Here?
0
votes
3answers
44 views
PHP and MySQL Loop help?
Let's say I have a user that entered 12 links into the database but when they are displayed I want to break up the links into groups of 3 and repeat the groups of three until all 1 …
