3
votes
1answer
83 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 …
0
votes
5answers
145 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 …
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?
5
votes
22answers
532 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 …
1
vote
1answer
104 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 …
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
2answers
168 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
4answers
166 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 …
9
votes
16answers
697 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 …
4
votes
8answers
859 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 …
0
votes
1answer
147 views
Unable to apply publish properties?
I don't know what caused VS to start thinking it needs to publish my project, but now whenever I build it, I get several "Unable to apply publish properties for item 'blah'" warnings. How do I stop VS …
1
vote
6answers
326 views
How to avoid the mailto annoyance?
I am working on a website and would like for my users to be able to give feedback as easily as possible. I know one way but I've always hated it:
<a href="mailto:someone@somewhere.com">Click …
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 …
0
votes
1answer
41 views
Bizarre Behavior of src attribute on img element in VS2008 inserting [A] characters
With VS2008 SP1 I have a line of code like this in an aspx file:
<img src='http://spiurl.appspot.com/<%#DataBinder.Eval(Container.DataItem, "UserName") %>' style='border:0; …
