1
vote
4answers
43 views
Installing Trac with Subversion 1.6
I'm trying to set up Trac on my server and have successfully installed it, compiled the bytecode and run the tracd server. The only problem is that it's not reading my SVN reposito …
-1
votes
6answers
111 views
Javascript error
I think i put the anonymous function in there wrong... when it outputs listzonebuffs it includes the function(){... part.
function load(zone){
setupzonebuffs(zone);
document.get …
1
vote
2answers
38 views
error code 3021 either bof or eof is true or the current record has been deleted
Hi,
I have an Access 2003 database with some visual basic code using ADO calls in it. When I do a
strsql0 = "SELECT lnk_stockitm.C_C FROM lnk_stockitm WHERE (((lnk_stockitm.C_C) …
12
votes
9answers
384 views
css problem: Absolutely positioned parent and float:right child stretches
In IE6, IE7 and FF2 the .outer div below is stretching out to the right edge of the document. Here is a complete test case:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transit …
0
votes
3answers
46 views
SQLite and `Object reference not set` exception
edit2: solution http://stackoverflow.com/questions/1710941/sqlite-and-object-reference-not-set-exception/1711481#1711481
I am having a hard time understanding my error.
edit1: I …
0
votes
2answers
37 views
How to troubleshoot long builds in Visual Studio?
Is it possible in any way to troubleshoot the build process in Visual Studio? I'd like to see which part of the build specifically takes so much time.
4
votes
5answers
139 views
How to troubleshoot .NET application that just disappears?
One of our .NET 2.0 application started to just randomly disappear. There are no records in the Event log, Dr. Watson doesn't generate crash dump, no nothing...
How to troubleshoo …
2
votes
7answers
191 views
Why do Perl string operations on Unicode characters add garbage to the string?
A quick question for a change.
Perl:
$string =~ s/[áàâã]/a/gi; #This line always prepends an "a"
$string =~ s/[éèêë]/e/gi;
$string =~ s/[úùûü]/u/gi;
This Regex should convert " …
0
votes
2answers
62 views
iPhone Simulator hangs after first touch
The application will stop responding to any touch events after clicking on either button. (Controller#increase / Controller#decrease methods).
Here is the output of the console on …
20
votes
22answers
792 views
“Works on my machine” - How to fix non-reproducible bugs?
Very occasionally, despite all testing efforts, I get hit with a bug report from a customer that I simply can't reproduce in the office.
(Apologies to Jeff for the 'borrowing' o …
0
votes
5answers
96 views
What have your ASP.Net MVC deployment experiences been?
I've been waging a bit of a battle with MVC recently, trying to get it deployed and working correctly on my web host server. While the host (ixwebhosting) has been very prompt and …
1
vote
3answers
121 views
ByRef and ByVal in VBScript
I'm facing something weird in VBScript. When writing a procedure where I want the parameter to be passed by reference, the way of calling this procedure changes the way the paramet …
0
votes
1answer
96 views
Trace/BPT trap with Python threading module
The following code dies with Trace/BPT trap:
from tvdb_api import Tvdb
from threading import Thread
class GrabStuff(Thread):
def run(self):
t = Tvdb()
def main():
…
0
votes
1answer
37 views
Remove Spket Perspective from List in Eclipse
Hi:
I uninstalled the Spket plugin from Eclipse, but there is still an "<Spket IDE>" perspective in the Perspective list. How do I get rid of it? I've made sure there are …
1
vote
1answer
105 views
MySQL query gone wild!?
Can anyone tell me why the following is happening, and how to fix it?
I have a MySQL query with an ORDER BY clause that looks like this..
ORDER BY (did_voteup-did_votedown) DESC, …
