Search Results

0
votes

Create, sort, and print a list of 100 random ints in the fewest chars of code

Java: public void randList() { final int NUM_INTS = 100; Random r = new Random(); List<Integer> s = new ArrayList<Integer>(); for(int i = 0; i < NUM_INTS …
2
votes

Best Time of Day to Code

I find around 2:30 to 3:30 is my LEAST productive. It seems that no matter what I do, I feel like I am about to fall asleep during that time. Most productive is probably the morning, followed by la …
0
votes

Selling “downloadable” content - handling behind the scenes

Here's how I would do it: When the user purchases the content and her payment clears, the purchase is recorded in her purchase history, just as with any online order-taking system. …
3
votes

What would you suggest as a high school first language?

I did C++ in high school, because that is what College Board was using for the AP Computer Science test. The year after I took it, they switched to Java. I'm not sure what language they use now. I …
3
votes

Can you list all the funny laws you can apply to computing ?

Zawinski's Law Every program attempts to expand until it can read mail. Those programs which cannot so expand are replaced by ones which can. …
12
votes

How do you create a function that returns a function in your language of choice?

Java (untested) First, we need a Function interface: public interface Function { public double f(double x); } And a method somewhere to creat …
0
votes

Is it better to go broad or go deep?

Both. Have a broad knowledge of the industry, know enough about various technologies to be able to make decisions, and be able to pick up other things quickly when you need to. Also learn one or tw …
0
votes

What is the difference between a property and an instance variable?

A property is some sort of data associated with an object. For instance, a property of a circle is its diameter, and another is its area. An instance variable is a piece of data that is sto …
1
vote

Which should one code first, functionality or validity checks?

I like to put up a couple of fields worth of functionality, then do the validation checks for that functionality, then the validation for the rest, and finally fill in the rest of the functionality …
1
vote

How to convince your fellow developer to write short methods?

Show him how much easier it is to test short methods. Prove that writing short methods will make it easier and faster for him to write the tests for his methods (he is tes …
1
vote

Should a developer know perfectly one language or know fairly well multiple languages?

You should strive to be a jack of all trades, and master of one or two. Learn a couple of languages well (preferrably fairly different languages, like Java and Python or PHP), and have a gr …