Tagged Questions

1
vote
5answers
76 views

Why bother to write an iterator like this?

I was reading through the Java tutorial on inner class http://java.sun.com/docs/books/tutorial/java/javaOO/innerclasses.html It explains that in the example "The InnerEvenIterator inner class, which …
-1
votes
0answers
37 views

What was a simple change you made to make a concept work in your programming career ?

Hi everyone, Was there a simple change you made in code which resulted in a concept working after you had been trying to make work for several months?
0
votes
3answers
13 views

Sending/Recieving/Interepreting Dynamic Email

Hey guys here's a good question.. I wanted to write a program that can receives an email, interprets what the message is, then performs a calculation, then responds based on the email received. For …
0
votes
3answers
71 views

Order of carriage return and new line feed

Is it important to have the correct order of carriage return then new line feed? Do some text editor does it matter in what order they appear? For example instead of \r\n this \n\r
8
votes
17answers
416 views

Programmer working conditions

The company I work for currently has several groups of programmers working in separate rooms pretty close to each other (3-7 people per office) Recently there has been an idea floating around that …
116
votes
87answers
6k views

Anti-Joel Test

The Joel Test is a measure of how a team performs with regards to the best practices in coding. What questions, given a 'yes' answer, would subtract from the the Joel test score? (Assuming you don't …
1
vote
4answers
201 views

how to become a good python coder

EDITED ALL GREAT COMMENTS - THANK YOU I started with c++ but as we all know, c++ is a monster. I still have to take it and I do like C++ (it takes programming a step further) However, currently I …
1
vote
3answers
235 views

TiMidity: need help compiling this library for the iPhone

I'm using a powerful library called TiMidity, which I'm sure many iPhone developers have used already used. This is a platform-independent set of programs, but during compile-time in XCode (gcc …
5
votes
6answers
83 views

Appropriate data structure for table that uses ranges

I have a table that looks like this: <22 23-27 8-10 1.3 1.8 11-13 2.2 2.8 14-16 3.2 3.8 and it goes on. So I'd like to lookup a value like this: lookup(11,25) and get the …
1
vote
7answers
246 views

How do you output variable’s declared as a double to a text file in C++

I am very new to C++ and I am wondering how you output/write variables declared as double to a txt file. I know about how to output strings using fstream but I cant figure out how to send anything …
0
votes
8answers
145 views

The Zen of Programming [closed]

I think these things are common for the programming in general: Compile time errors are better than run time errors Anything unsafe should be made explicit; the more unsafe, the more explicit. Code …
19
votes
15answers
6k views

How to use SVN, Branch? Tag? Trunk?

I was googling around a little bit and couldn't find a good "beginners" guide to SVN, not in the meaning of "how do I use the commands" rather; How do I control my source code? What I'd like to clear …
2
votes
7answers
153 views

Should code prevent a logically invalid call even when no harm would be done?

This one has been puzzling my for some time now. Let's imagine a class which represents a resource, and in order to be able to use this resource one needs to first call the 'Open' method on it, or an …
0
votes
5answers
35 views

What programming language are most phones written in?

What are the majority of phone softwares written in? Is it C, C++, Python..?
21
votes
35answers
2k views

Code-Golf: What is the shortest program that compiles and crashes?

This is a little bit of fun. Can you devise the shortest program which compiles but does nothing but immediately crash when executed? Wherefore by "crash" we mean that the program stops with an error …

1 2 3 4 5 164 next
15 30 50 per page