Tagged Questions

21
votes
16answers
2k views

Stupid, but commercially successful software

Recently I read that the author of the 99 cent iFart Mobile application for the iPhone makes nearly 10,000 US$ a day (!)¹ with his flatulence simulator. Do you know of any other s …
9
votes
18answers
935 views

What’s the most stupid thing you have ever done in software programming?! [closed]

Duplicate: Confessions of your worst WTF Moment. (What not to do.) Me first! Accidentally deleting the source code I have written for about 3 weeks. :(
6
votes
10answers
481 views

Is there any way to modify the value of a `private static final` field in java from outside the class? (Or, I need to monkey patch an external library).

I know this is normally rather stupid, but don't shoot me before reading the question. I promise I have a good reason for needing to do this :) It's possible to modify regular pri …
4
votes
4answers
372 views

What’s the worst default you’ve encountered in a software product/language? [closed]

I hated it when some users of my program (made in crystal reports) deemed that it is "too strict" when they saw hour and minute on invoice date. It turned out that when you drag a …
3
votes
6answers
487 views

What’s a good way to study algorithms? [closed]

Duplicate of: How to get started on algorithms After overloading my classes one fateful semester in my college days, I ended up dropping my algorithms course and never taking it …
1
vote
4answers
147 views

Avoiding Mixup of Language Details

Today someone asked me what was wrong with their source code. It was obvious. "Use double equals in place of that single equal in that if statement. Um, i think..." As i remembe …
0
votes
3answers
98 views

Access 2003 SQL Switch breaks data types?

Hi, I'm running Access 2003. I'm using Switch to select date fields based on a boolean criterion: Switch(<criterion>, Date1, 1, Date2) i.e., if "criterion" is true, then …
0
votes
0answers
21 views

Preventing access to a directory for a specific group [closed]

I'm running a competition as part of a class on web application development. I need to prevent one user group from accessing the other user group's work directory and vice versa. …
0
votes
2answers
149 views

cURL failing when called from PHP exec()

I'm making a call to download an XML file and write it to a file using exec() and the curl command. I tried using curl_exec(), but it wasn't recognized by my PHP system. Somehow, …
0
votes
2answers
216 views

nHibernate: Saving new parent object while creating a child object

I am trying to save a record which has a many-to-one property mapping. I attempt to assign a newly created parent object here (or use an existing, but that works fine) but I get an …
0
votes
1answer
104 views

Python module for VBox?

I want to make some python scripts to create an "Appliance" with VirtualBox. However, I can't find any documentation anywhere on making calls to VBoxService.exe. Well, I've found s …
0
votes
2answers
369 views

Fluent NHibernate Architecture Question

I have a question that I may be over thinking at this point but here goes... I have 2 classes Users and Groups. Users and groups have a many to many relationship and I was thinkin …