3
votes
1answer
88 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 …
0
votes
1answer
26 views
Events tab randomly appears and disappears in VS 2008
I know it's a minor annoyance.. but it's still an annoyance and it baffles me.. About 3 months ago I was using VS 2008 and when I went to the "Properties" tab there was the little lightning bolt for …
5
votes
22answers
541 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 …
0
votes
5answers
146 views
Any way to avoid using anonymous functions in jQuery?
If I have a chunk of code like this:
.hover(
function () {
hoverState($("#navbar a").index(this),1);
},
function () {
hoverState($("#navbar a").index(this),-1);
});
Is …
4
votes
9answers
878 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 …
9
votes
16answers
702 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 …
0
votes
0answers
23 views
proliferation of rocket tray icons
Each time I run a test using TestDriven, it creates another "rocket" icon on my system tray. I have to manually do right-click Quit to get rid of them. How can I avoid this?
1
vote
1answer
105 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 …
2
votes
3answers
130 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 …
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
8answers
217 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 …
1
vote
5answers
63 views
Should loading/startup dialogs be locked on top?
Introduction
I have been so annoyed by applications that have a startup dialog which is Always on Top configured.
By start dialog I mean the annoying box that tells you what program you just opened …
1
vote
4answers
167 views
screenshot an application in python, regardless of what’s in front of it
So I can use PIL to grab a screenshot of the desktop, and then use pywin32 to get its rectangle and crop out the part I want. However, if there's something in front of the window I want, it'll occlude …
1
vote
2answers
171 views
How to prevent Visual Studio from compiling solution after I exit debug mode?
Visual Studio builds the entire solution when I exit debug mode.
This is very annoying as the solution contains 42 projects (ASP.NET MVC, IIS hosted WCF, Silverlight apps and others) and the build …
1
vote
1answer
602 views
What causes the System.Web.HttpException with error code 0x80070057 on Page.Flush while debugging in VS2005?
Here is the complete error message:
An exception of type
'System.Web.HttpException' occurred in
System.Web.dll but was not handled in
user code
Additional information: The remote
host …
