9
votes
16answers
692 views
What strategies have you used to improve build times on large projects?
I once worked on a C++ project that took about an hour and a half for a full rebuild. Small edit, build, test cycles took about 5 to 10 minutes. It was an unproductive nightmare.
What is the worst …
5
votes
22answers
524 views
Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn’t an issue?
Hello All,
I am having a problem in one of the teams that I am working in. One of the guys is a bit SQL happy in my opinion and wants to store the log information generated by a small python FTP …
5
votes
13answers
530 views
What language decision in C# annoys you?
I was just dealing with strings, and I find myself annoyed that strings can be nullable. So, I have to have
if((teststring??string.Empty)==string.Empty)
all over the place. Would string? have been …
4
votes
8answers
827 views
How can I stop my Visual Studio from launching IE8 TWICE when I click “Start Without Debugging” (Ctrl-F5)?
I use Visual Studio 2008 primarily for web development, and there's one annoying behaviour which seems to have occurred ever since I upgraded to IE8 on my work PC:
When I set a start page for a web …
4
votes
3answers
305 views
Is there a way to prevent the VB6 compiler from shuffling the contents of files?
For reasons unknown, the VB6 compiler often likes to reorder the contents of .vbp files and the control descriptor block at the top of .frm files (The code that describes the properties of controls on …
3
votes
1answer
73 views
R: an NA in subsetting a data.frame does something stupid
I do find R to be a very frustrating language. It seems to excel on data-dependent bugs. Consider the following code. When you don't explicitly test for NA in your condition, that code will fail at …
3
votes
8answers
216 views
What simple problem have you seen addressed in an unnecessarily complicated manner?
Today, I was reviewing some code a coworker had written recently. The following statement seemed to jump off the screen at me.
string defaultValue = (1000).ToString();
And this has prompted me to …
3
votes
6answers
2k views
Is it possible to disable IE8 “accelerators” on my website?
I'm a web developer focused on UI.
Many interface features in my web application are based on double-clicking.
In IE, this brings up that new annoying "accelerators" icon which interferes with my …
3
votes
7answers
295 views
What is your method of “folksonomy” tagging for files on your local machine?
Way back in the days when "delicious" was just "del.icio.us", I had assumed that everyone had finally caught on that Ontology is overrated.
So why am I still having to roll my own tagging system …
2
votes
3answers
129 views
How to get Visual Studio to remember javascript settings
Visual Studio 2008 is doing something that really frustrates me. I open a javascript file and start editing my code and it places the opening brace on the same line rather than on a new line. So I go …
2
votes
1answer
108 views
Is PHPDoc verbosity more trouble than it’s worth?
I tried using PHPDoc for the first time today and quickly ran into a problem.
For every 1 line of variable declarations, I had at least 5 lines of comments. Example:
/**
* Holds path the remote …
2
votes
3answers
891 views
Control-r reverse-i-search in Cygwin bash: how do you “reset” the search?
Question: How do you tell ctrl-r reverse-i-search to "reset itself" and start searching from the bottom of your history every time?
Background: When using reverse-i-search in bash, I always get stuck …
2
votes
1answer
109 views
Integrated Help - Merged Help Indexes
If anyone has had more than a couple of Microsoft tools or products installed (or a local install of the MSDN library) side by side, you might have noticed that opening help (hitting F1) or opening, …
2
votes
6answers
2k views
Visual Studio 2008 Window layout annoyance
I'm having a weird issue with Visual Studio 2008. Every time I fire it up, the solution explorer is about an inch wide. It's like it can't remember it's layout settings.
Every un-docked window is in …
1
vote
1answer
102 views
Excel 2007 Visual Basic Editor: eats spaces, throws cursor around
I can't resolve this issue, I found a similar question here but:
setting the workbook to Manual calculation (alt-m-x-m or alt-t-o>formulas) didn't work
Setting editor options to disable: Auto syntax …
