QA tips from Omnicode:
1 of 5: 1 16 31 46 61
Bad owner or permissions on .ssh/config 07 Mar 2010
The file has bad permissions. If you get this error try: chmod 600 * inside the .ssh folder. It even works in cygwin on
How do I route mail through another server with Sendmail? 11 Jan 2010
Check out the SMART_HOST
How do I change a file mod time in c++? 07 Jan 2010
This is the windows version. The Unix version is pretty much the same, except you don't have the funny underscores. #include
How do you parse a dot '.' in a regular expression? 30 Oct 2009
You need to use the escape character, a slash \. So in java or c/c++ you'd need to use a double slash. "\\." Since the slash needs to be
Why doesn't split work in my String after = id.value? 21 Oct 2009
If you do something like: var s = document.getElementById("field"); var sa = s.split("."); It won't work. s is not a string at that point. Try: var s =
Why won't my wxWindow windows draw after Refresh or Update? 20 Oct 2009
You need to call them both. One or the other usually doesn't work for most active drawing. Refresh essentially invalidates the update region and update forces an immediate
How do I draw into a bitmap in wxWidgets? 22 Sep 2009
wxMemoryDC dc; wxBitmap bm(400, 400, dc); dc.SelectObject(bm); dc.SetBrush(wxBrush(wxColour(255,255,255))); dc.DrawRectangle(0, 0, 399, 399); dc.DrawLine(0, 0, 399, 399);
Security tab missing in explorer for XP 14 Sep 2009
My Computer/Tools/folder options/view Uncheck Use Simple File Sharing
Why doesn't Journal Playback work with Vista? 07 Sep 2009
First of all, you need to disable UAC from command line:msconfig. Go to the Tools tab to disable. There may be a way of doing this using manifests
Why doesn't innerHTML work in IE? 20 Aug 2009
It can be a lot of different issues. Older versions of IE don't implement the property properly or even at all in some really old versions. One thing
How do I add an id/autoinc/primary key field to mysql? 04 Jul 2009
alter table table_name drop primary key; alter table table_name add id int(10) not null auto_increment primary key
Why do I get unresolved external symbols when building a wxWidgets app in Windows? 27 Jun 2009
For instance wxApp::Initialize. Try messing with the build Character Set. Switching to multi-byte from unicode seems to work for standard builds. If you need a unicode app,
In QuickBooks 2009, clients can't load from the server 12 Jun 2009
It's probably a firewall issue on the server. Check QuickBooks for which ports to open up on the
Selinux is blocking an application 12 Jun 2009
Try audit2allow. It doesn't always work, but it's a good start. Like most Selinux issues, it's poorly
How do I access the clipboard viewer in XP/Vista 30 Aug 2008
The viewer is called clipbrd.exe, so you should be able to access it from a command prompt by typing clipbrd +
