0
votes
5answers
133 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(th …
5
votes
22answers
487 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 …
0
votes
0answers
20 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?
9
votes
16answers
662 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.
…
4
votes
6answers
698 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 st …
0
votes
1answer
83 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 …
2
votes
3answers
121 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 …
1
vote
5answers
60 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 prog …
1
vote
4answers
147 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 …
3
votes
8answers
215 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 …
1
vote
2answers
149 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 othe …
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 i …
1
vote
1answer
524 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 informatio …
1
vote
6answers
304 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@somewh …
0
votes
1answer
121 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'" warnin …
