User Wayne Koorts - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T03:05:55Zhttp://stackoverflow.com/feeds/user/38403http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1870844/becoming-a-web-designer-cms-or-by-hand/1870881#18708811Answer by Wayne Koorts for Becoming a Web Designer: CMS, or by handWayne Koorts2009-12-09T00:34:34Z2009-12-09T00:34:34Z<p>There isn't a single correct answer for this IMHO. Basically, it comes down to:</p>
<p><strong>Use the best tool for the job.</strong></p>
<p>The best thing you can do for yourself is learn about what tools are available, and what they are capable of. Try to match each one to a scenario you think might be particularly suitable for a given solution.</p>
<p>You will find that if you invest a lot of time in learning something like Python / Django you will be able to create just about any site you can imagine, but then you might find that if all your client requires is a simple, mostly static company info site that something like Drupal might be more appropriate.</p>
<p>The baseline technologies like (X)HTML, JavaScript, CSS and SQL are used across all of them, so knowing these tools well in a generic context is also extremely valuable.</p>
<p>A truly well-equipped toolbelt is invaluable.</p>
http://stackoverflow.com/questions/1852888/improve-web-developer-skills-a-practical-approach/1853380#18533800Answer by Wayne Koorts for Improve web developer skills - A practical approachWayne Koorts2009-12-05T20:36:49Z2009-12-05T20:36:49Z<p>For web development I tend to favour books that try to focus on the approach more than the mechanics (the "why" over the "how"). Both are obviously necessary, and ones that do this well IMHO tend to go through the creation of a web app throughout the course of the book.</p>
<p>(I am unsure whether you are looking to focus strictly on PHP or are open to others, so here are some examples for both PHP and my language / framework of choice, Python / Django):</p>
<p>For PHP I liked <a href="http://www.apress.com/book/view/9781590599068" rel="nofollow">Practical Web 2.0 Applications with PHP</a>. This goes through the creation of a full web app using the <a href="http://framework.zend.com/" rel="nofollow">Zend</a> framework with <a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a> and <a href="http://script.aculo.us/" rel="nofollow">Scriptaculous</a> for the JavaScript framework.</p>
<p>For Django my favourite is <a href="http://www.packtpub.com/django-1-0-website-development-2nd-edition" rel="nofollow">Django 1.0 Website Development</a>, which takes you through the creation of a social bookmarking application, using <a href="http://jquery.com/" rel="nofollow">jQuery</a> as the JavaScript framework.</p>
http://stackoverflow.com/questions/1801271/is-smtplib-pure-python-or-implemented-in-c/1801281#18012811Answer by Wayne Koorts for Is smtplib pure python or implemented in C?Wayne Koorts2009-11-26T02:44:26Z2009-11-26T02:44:26Z<p>Basically pure Python (as the underlying implementation if you go down far enough is C). You can find the source under the Lib\ directory in your Python root.</p>
http://stackoverflow.com/questions/1793413/distribute-c-application-as-exe-or-msi/1793465#17934654Answer by Wayne Koorts for Distribute C++ application as .exe or .msi?Wayne Koorts2009-11-24T22:43:45Z2009-11-24T22:43:45Z<p>For a setup .exe I like <a href="http://www.jrsoftware.org/isinfo.php" rel="nofollow">Inno Setup</a>, which will let you do desktop icons, amongst other things. Basically you create an Inno Setup installer file which you can pass into the setup compiler which means you can also build it from the command-line. They provide both a GUI and a command-line compiler. The bundled documentation is also very complete.</p>
<p>For MSI you can try the <a href="http://wix.sourceforge.net/" rel="nofollow">Windows Installer XML (WiX) toolset.</a>, which is similar to Inno Setup in that you can compile from the command-line, but a certain amount of Windows Installer / MSI knowledge is expected.</p>
http://stackoverflow.com/questions/1788917/javascript-ternary-operator/1788973#17889730Answer by Wayne Koorts for Javascript Ternary operatorWayne Koorts2009-11-24T09:35:37Z2009-11-24T09:35:37Z<p>Think of it this way:</p>
<pre><code><variable> = <expression> ? <true clause> : <false clause>
</code></pre>
<p>The way the statement gets executed is basically as follows:</p>
<ol>
<li>Does <code><expression></code> evaluate to true, or does it evaluate to false?</li>
<li>If <code><expression></code> evaluates to true, then the value of <code><true clause></code> is assigned to <code><variable></code>, <code><false clause></code> is ignored, and the next statement is executed.</li>
<li>If <code><expression></code> evaluates to false, then <code><true clause></code> is ignored and the value of <code><false clause></code> is assigned to <code><variable></code>.</li>
</ol>
<p>The important thing to realise with the ternary operator in this and other languages is that whatever code is in should produce a boolean result when evaluated: either true or false.</p>
<p>In the case of your example replace "assigned to" in my explanation with "added to", or similar for whichever shorthand arithmetic you are using, if any.</p>
http://stackoverflow.com/questions/1784848/create-a-fully-featured-environment-for-tcl-tk-development-under-windows/1784945#17849452Answer by Wayne Koorts for Create a Fully Featured Environment For Tcl/Tk Development Under WindowsWayne Koorts2009-11-23T18:10:13Z2009-11-23T18:10:13Z<p>For a text editor I would recommend trying <a href="http://www.jedit.org" rel="nofollow">jEdit</a>; it has TCL syntax highlighting. When installed I would also recommend installing the following plugins (which can be done via the built-in plugin manager):</p>
<ul>
<li>Project Viewer: Allows you to organise your files into projects, which gives it more of an IDE feel.</li>
<li>Editor Scheme: Gives you a set of pre-defined syntax highlighting colour schemes to choose from. My preference is for "zenburn".</li>
</ul>
http://stackoverflow.com/questions/1736110/what-is-the-best-language-for-game-programming/1736137#17361376Answer by Wayne Koorts for What is the best language for game programming?Wayne Koorts2009-11-15T00:34:33Z2009-11-15T00:34:33Z<p>C++ is pretty much the gaming industry standard for game development, but there are many alternatives for the indie developer that you might find more developer-friendly. Here are some you can look at:</p>
<ul>
<li><a href="http://python.org/" rel="nofollow">Python</a> with <a href="http://pygame.org/news.html" rel="nofollow">Pygame</a> (for mostly 2D games). The best thing about learning this combination is you will find many other uses for Python, so the time investment in learning this combo will be well worth it.</li>
<li><a href="http://unity3d.com/" rel="nofollow">Unity 3D</a>. Unity has released the basic version of their software for free. This is a fully-featured, all-in-one game development environment which uses <a href="http://www.mono-project.com/Main%5FPage" rel="nofollow">Mono</a>-based (<a href="http://www.microsoft.com/NET/" rel="nofollow">.NET</a>) scripting, so once again you can leverage prior knowledge in the .NET space and use any knowledge gained in other domains.</li>
<li><a href="http://www.udk.com/" rel="nofollow">Unreal Development Kit</a> (UDK). This one is relatively new (released for free on 5th November 2009) and uses the same technology as games like Gears of War and others that used the Unreal Engine. This one has its own scripting language called UnrealScript.</li>
<li><a href="http://darkbasic.thegamecreators.com/" rel="nofollow">DarkBASIC</a> / <a href="http://darkbasicpro.thegamecreators.com/" rel="nofollow">DarkBASIC Professional</a>. This is also an integrated development environment for games, and uses its own BASIC dialect, which is quite user-friendly.</li>
</ul>
<p>Hopefully you will find something suitable from this list, good luck.</p>
http://stackoverflow.com/questions/1717897/jquery-keydown-on-div-not-working-in-firefox1jQuery - keydown() on div not working in FirefoxWayne Koorts2009-11-11T20:38:48Z2009-11-11T21:00:33Z
<p>I have the following example code, which should pop up an alert when the div is in focus and a key is pressed. This does what I expect in IE 7, but not in Firefox 3.5.5. What am I doing wrong?</p>
<pre><code><html>
<head>
<title>JS test</title>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#testdiv").keydown(function(event) {
alert("Pressed " + event.keyCode);
});
});
</script>
<style type="text/css">
#testdiv
{
width: 50;
height: 50;
background-color: red;
}
</style>
</head>
<body>
<div id="testdiv"></div>
</body>
</html>
</code></pre>
<p><strong>EDIT</strong>: I've just tried replacing <code>keydown</code> with <code>keypress</code> and <code>keyup</code> and those don't work either. Incidentally, I also made sure that my "Find as you type" setting is turned off just in case.</p>
http://stackoverflow.com/questions/1711756/python-indentation-error-unindent-does-not-match-any-outer-indentation-level/1711800#17118000Answer by Wayne Koorts for Python: "Indentation Error: unindent does not match any outer indentation level"Wayne Koorts2009-11-10T22:48:08Z2009-11-10T22:48:08Z<p>I would recommend checking your indentation levels all the way through. Make sure that you are using either tabs all the way or spaces all the way, with no mixture. I have had odd indentation problems in the past which have been caused by a mixture.</p>
http://stackoverflow.com/questions/1684291/sql-like-condition-to-check-for-integer0SQL LIKE condition to check for integer?Wayne Koorts2009-11-05T23:06:18Z2009-11-07T16:38:51Z
<p>I am using a set of SQL LIKE conditions to go through the alphabet and list all items beginning with the appropriate letter, e.g. to get all books where the title starts with the letter "A":</p>
<pre><code>SELECT * FROM books WHERE title ILIKE "A%"
</code></pre>
<p>That's fine for letters, but how do I list all items starting with any number? For what it's worth this is on a Postgres DB.</p>
http://stackoverflow.com/questions/463832/using-dpapi-with-python3Using DPAPI with Python?Wayne Koorts2009-01-21T01:30:50Z2009-10-13T19:20:07Z
<p>Is there a way to use the DPAPI (Data Protection Application Programming Interface) on Windows XP with Python?</p>
<p>I would prefer to use an existing module if there is one that can do it. Unfortunately I haven't been able to find a way with Google or Stack Overflow.</p>
<p><strong>EDIT:</strong> I've taken the example code pointed to by "dF" and tweaked it into a standalone library which can be simply used at a high level to crypt and decrypt using DPAPI in user mode. Simply call dpapi.cryptData(text_to_encrypt) which returns an encrypted string, or the reverse decryptData(encrypted_data_string), which returns the plain text. Here's the library:</p>
<pre><code># DPAPI access library
# This file uses code originally created by Crusher Joe:
# http://article.gmane.org/gmane.comp.python.ctypes/420
#
from ctypes import *
from ctypes.wintypes import DWORD
LocalFree = windll.kernel32.LocalFree
memcpy = cdll.msvcrt.memcpy
CryptProtectData = windll.crypt32.CryptProtectData
CryptUnprotectData = windll.crypt32.CryptUnprotectData
CRYPTPROTECT_UI_FORBIDDEN = 0x01
extraEntropy = "cl;ad13 \0al;323kjd #(adl;k$#ajsd"
class DATA_BLOB(Structure):
_fields_ = [("cbData", DWORD), ("pbData", POINTER(c_char))]
def getData(blobOut):
cbData = int(blobOut.cbData)
pbData = blobOut.pbData
buffer = c_buffer(cbData)
memcpy(buffer, pbData, cbData)
LocalFree(pbData);
return buffer.raw
def Win32CryptProtectData(plainText, entropy):
bufferIn = c_buffer(plainText, len(plainText))
blobIn = DATA_BLOB(len(plainText), bufferIn)
bufferEntropy = c_buffer(entropy, len(entropy))
blobEntropy = DATA_BLOB(len(entropy), bufferEntropy)
blobOut = DATA_BLOB()
if CryptProtectData(byref(blobIn), u"python_data", byref(blobEntropy),
None, None, CRYPTPROTECT_UI_FORBIDDEN, byref(blobOut)):
return getData(blobOut)
else:
return ""
def Win32CryptUnprotectData(cipherText, entropy):
bufferIn = c_buffer(cipherText, len(cipherText))
blobIn = DATA_BLOB(len(cipherText), bufferIn)
bufferEntropy = c_buffer(entropy, len(entropy))
blobEntropy = DATA_BLOB(len(entropy), bufferEntropy)
blobOut = DATA_BLOB()
if CryptUnprotectData(byref(blobIn), None, byref(blobEntropy), None, None,
CRYPTPROTECT_UI_FORBIDDEN, byref(blobOut)):
return getData(blobOut)
else:
return ""
def cryptData(text):
return Win32CryptProtectData(text, extraEntropy)
def decryptData(cipher_text):
return Win32CryptUnprotectData(cipher_text, extraEntropy)
</code></pre>
http://stackoverflow.com/questions/1269952/mpeg-to-avi-library/1269964#12699641Answer by Wayne Koorts for MPEG to AVI libraryWayne Koorts2009-08-13T03:59:30Z2009-08-13T03:59:30Z<p><a href="http://ffmpeg.org/" rel="nofollow">libavcodec</a> is very popular.</p>
http://stackoverflow.com/questions/1269466/python-threading-question-returning-control-to-parent/1269514#12695142Answer by Wayne Koorts for Python threading question - returning control to parentWayne Koorts2009-08-13T00:53:12Z2009-08-13T01:09:35Z<p>Try spawning a thread just for the capture stuff, by changing the following lines in your <code>_filter()</code> function to this:</p>
<pre><code>if device.QueryCapability("volume"):
threading.start_new_thread(self.capture, (device))
</code></pre>
<p>This is assuming that the bulk of the work is happening in the <code>capture()</code> function. If not, then just spawn the thread a little earlier, possibly on the whole <code>_filter()</code> function.
This should then spawn a new thread for every filtered device detected. Bear in mind that I haven't done any dbus stuff and can't really test this, but it's an idea.</p>
<p>Also, you're trying to get user input from the capture function which, using the app as you've defined it, isn't really a nice thing to do in threads. What if a second device is connected while the first prompt is still on screen? Might not play nicely.</p>
<p>The design of this thing might be exactly the way you want it for specific reasons, but I can't help feeling like it could be a lot slicker. It's not really designed with threads in mind from what I can tell.</p>
http://stackoverflow.com/questions/1263125/how-does-sql-query-parameterisation-work5How does SQL query parameterisation work?Wayne Koorts2009-08-11T21:45:18Z2009-08-12T19:06:54Z
<p>I feel a little silly for asking this since I seem to be the only person in the world who doesn't get it, but here goes anyway. I'm going to use Python as an example. When I use raw SQL queries (I usually use ORMs) I use parameterisation, like this example using SQLite:</p>
<p><strong>Method A:</strong></p>
<pre><code>username = "wayne"
query_params = (username)
cursor.execute("SELECT * FROM mytable WHERE user=?", query_params)
</code></pre>
<p>I know this works and I know this is the generally recommended way to do it. A SQL injection-vulnerable way to do the same thing would be something like this:</p>
<p><strong>Method B:</strong></p>
<pre><code>username = "wayne"
cursor.execute("SELECT * FROM mytable WHERE user='%s'" % username)
</code></pre>
<p>As far I can tell I understand SQL injection, as explained in <a href="http://en.wikipedia.org/wiki/Sql%5Finjection" rel="nofollow">this Wikipedia article</a>. My question is simply: How is method A really different to method B? Why is the end result of method A not the same as method B? I assume that the <code>cursor.execute()</code> method (part of Python's DB-API specification) takes care of correctly escaping and type-checking the input, but this is never explicitly stated anywhere. Is that all that parameterisation in this context is? To me, when we say "parameterisation", all that means is "string substitution", like %-formatting. Is that incorrect?</p>
http://stackoverflow.com/questions/1175209/how-can-facebooks-photo-upload-application-access-the-local-harddrive/1175216#11752169Answer by Wayne Koorts for How can Facebook's photo upload application access the local harddrive?Wayne Koorts2009-07-24T00:24:36Z2009-07-24T00:24:36Z<p>The Facebook uploader is a Java applet, which requires your approval before allowing access to your PC.</p>
http://stackoverflow.com/questions/1174982/3d-file-formats-for-games/1175211#11752110Answer by Wayne Koorts for 3D File Formats for GamesWayne Koorts2009-07-24T00:22:43Z2009-07-24T00:22:43Z<p>For many years now the <a href="http://local.wasp.uwa.edu.au/~pbourke/dataformats/directx/" rel="nofollow">DirectX file format</a> (.x extension) is very popular and Blender contains a built-in exporter for this.</p>
http://stackoverflow.com/questions/1048561/which-of-the-h1-tag-code-is-correct/1048595#1048595-1Answer by Wayne Koorts for which of the h1 tag code is correct?Wayne Koorts2009-06-26T11:23:21Z2009-06-26T11:23:21Z<p>The third option certainly seems to me to be the cleanest option, except the attribute value should be enclosed in quotes, assuming you are using XHTML:</p>
<pre><code><h1 class="bold">realestate</h1>
</code></pre>
<p>It doesn't really make sense to enclose the entire contents of the <code><h1></code> tag in another tag. It would make more sense to enclose just the part of the tag that should be different to the rest of the <code><h1></code>, but not completely different, e.g:</p>
<pre><code><h1>Real <span class="bold">Estate</span></h1>
</code></pre>
<p>Think of the <code><span></code> tag as the inline equivalent of the <code><div></code> tag.</p>
http://stackoverflow.com/questions/1047232/what-would-be-a-good-sample-project-to-ask-a-prospective-programmer-to-code-durin/1047290#10472902Answer by Wayne Koorts for What would be a good sample project to ask a prospective programmer to code during the hiring process?Wayne Koorts2009-06-26T04:15:33Z2009-06-26T04:15:33Z<p>I think the best thing you can do is try to have a real expert sit in on the interview with you. Hire a third party if you need to. I'm not sure it's possible to be able to give a quality assessment of someone who is a more experienced developer than yourself.</p>
<p>The other thing to consider is that really good developers may pick up on the fact that they are more experienced than yourself, and if you indicate that you are one of the developers it may actually put them off (not trying to be offensive, I just mean in the context of you implying that you are not very experienced.)</p>
http://stackoverflow.com/questions/1041789/can-i-combine-my-two-sqlite-select-statements-into-one/1041801#10418011Answer by Wayne Koorts for Can I combine my two SQLite SELECT statements into one?Wayne Koorts2009-06-25T01:47:10Z2009-06-25T02:04:55Z<p>Look into the <a href="http://www.sqlite.org/lang%5Fselect.html" rel="nofollow">UNION</a> statement (bottom of the link). This will let you combine the results of two queries, generally in the form:</p>
<pre><code><SELECT_STATEMENT_1> UNION <SELECT_STATEMENT_2>
</code></pre>
http://stackoverflow.com/questions/1030270/race-conditions-in-django/1030471#10304710Answer by Wayne Koorts for Race conditions in djangoWayne Koorts2009-06-23T03:15:06Z2009-06-23T03:15:06Z<p>This may be oversimplifying your situation, but what about just a JavaScript link replacement? In other words when the user clicks the link or button wrap the request in a JavaScript function which immediately disables / "greys out" the link and replaces the text with "Loading..." or "Submitting request..." info or something similar. Would that work for you?</p>
http://stackoverflow.com/questions/542490/do-you-expect-your-employees-and-co-workers-to-keep-themselves-up-to-date/1030449#10304490Answer by Wayne Koorts for Do you expect your employees and co-workers to keep themselves up to date?Wayne Koorts2009-06-23T03:00:41Z2009-06-23T03:00:41Z<p>What I <em>expect</em> from my colleagues is for them to be able to do their jobs effectively and be good team players.</p>
<p>What I <em>desire</em> from my colleagues is a passion for their field and self-advancement. Keeping themselves up to date above-and-beyond what their job requires follows on from this.</p>
http://stackoverflow.com/questions/1017463/postgresql-how-to-run-vacuum-from-code-outside-transaction-block0PostgreSQL - how to run VACUUM from code outside transaction block?Wayne Koorts2009-06-19T11:26:33Z2009-06-19T12:22:50Z
<p>I am using Python with psycopg2 and I'm trying to run a full <code>VACUUM</code> after a daily operation which inserts several thousand rows. The problem is that when I try to run the <code>VACUUM</code> command within my code I get the following error:</p>
<pre><code>psycopg2.InternalError: VACUUM cannot run inside a transaction block
</code></pre>
<p>How do I run this from the code outside a transaction block?</p>
<p>If it makes a difference, I have a simple DB abstraction class, a subset of which is displayed below for context (not runnable, exception-handling and docstrings omitted and line spanning adjustments made):</p>
<pre><code>class db(object):
def __init__(dbname, host, port, user, password):
self.conn = psycopg2.connect("dbname=%s host=%s port=%s \
user=%s password=%s" \
% (dbname, host, port, user, password))
self.cursor = self.conn.cursor()
def _doQuery(self, query):
self.cursor.execute(query)
self.conn.commit()
def vacuum(self):
query = "VACUUM FULL"
self._doQuery(query)
</code></pre>
http://stackoverflow.com/questions/1017463/postgresql-how-to-run-vacuum-from-code-outside-transaction-block/1017655#10176555Answer by Wayne Koorts for PostgreSQL - how to run VACUUM from code outside transaction block?Wayne Koorts2009-06-19T12:18:49Z2009-06-19T12:18:49Z<p>After more searching I have discovered the isolation_level property of the psycopg2 connection object. It turns out that changing this to <code>0</code> will move you out of a transaction block. Changing the vacuum method of the above class to the following solves it. Note that I also set the isolation level back to what it previously was just in case (seems to be <code>1</code> by default).</p>
<pre><code>def vacuum(self):
old_isolation_level = self.conn.isolation_level
self.conn.set_isolation_level(0)
query = "VACUUM FULL"
self._doQuery(query)
self.conn.set_isolation_level(old_isolation_level)
</code></pre>
<p><a href="http://www.devx.com/opensource/Article/29071" rel="nofollow">This article</a> (near the end on that page) provides a brief explanation of isolation levels in this context.</p>
http://stackoverflow.com/questions/983336/relational-database-theory-and-sql-book-recommendations4Relational database theory and SQL book recommendations?Wayne Koorts2009-06-11T20:06:36Z2009-06-12T11:59:53Z
<p>I'm looking for a book which combines relational database theory, design and SQL techniques in a generic sense if possible. I have a feeling this is a big ask, and if that's really not available then I don't mind having perhaps two separate specialist books (one for RDBMS theory and one for SQL techniques). Any recommendations?</p>
http://stackoverflow.com/questions/984216/file-wont-write-in-python/984296#9842960Answer by Wayne Koorts for file won't write in pythonWayne Koorts2009-06-11T23:20:50Z2009-06-11T23:26:03Z<p>I don't have the exact answer for you, but what might help is to stick some <code>print</code> lines in there in strategic places, like print each line before it was modified, then again after it was modified. Then place another one after the line was modified just before it is written to the file. Then just before you close the new file do a:</p>
<p><code>print secondfile.read()</code></p>
<p>You could also try to limit the results you get if there are too many for debugging purposes. You can limit string output by attaching a subscript modifier to the end, for example:</p>
<p><code>print secondfile.read()[:n]</code></p>
<p>If <code>n = 100</code> it will limit the output to 100 characters.</p>
http://stackoverflow.com/questions/714965/send-file-to-a-ftp-if-the-local-machine-is-behind-a-http-proxy-using-python/896293#8962930Answer by Wayne Koorts for Send file to a FTP if the local machine is behind a HTTP proxy using PythonWayne Koorts2009-05-22T04:04:12Z2009-05-22T04:04:12Z<p>Here's a code snippet I have put together to demonstrate passing connections through an HTTP proxy in Python:</p>
<pre><code>import urllib2
uri = "http://www.python.org"
http_proxy_server = "someproxyserver.com"
http_proxy_port = "3128"
http_proxy_realm = http_proxy_server # Worked in my (limited) testing environment.
http_proxy_user = "username"
http_proxy_passwd = "password"
# Next line = "http://username:password@someproxyserver.com:3128"
http_proxy_full_auth_string = "http://%s:%s@%s:%s" % (http_proxy_user,
http_proxy_passwd,
http_proxy_server,
http_proxy_port)
def open_url_no_proxy():
urllib2.urlopen(uri)
print "Apparent success without proxy server!"
def open_url_installed_opener():
proxy_handler = urllib2.ProxyHandler({"http": http_proxy_full_auth_string})
opener = urllib2.build_opener(proxy_handler)
urllib2.install_opener(opener)
urllib2.urlopen(uri)
print "Apparent success through proxy server!"
if __name__ == "__main__":
open_url_no_proxy()
open_url_installed_opener()
</code></pre>
http://stackoverflow.com/questions/895066/valid-css-or-hack/895086#8950860Answer by Wayne Koorts for Valid CSS or Hack?Wayne Koorts2009-05-21T20:52:06Z2009-05-21T20:52:06Z<p>It's valid CSS, but technically it could be considered a hack.</p>
<p>Basically it's used to reset the margins and padding on every element in the HTML because different browsers sometimes have different defaults. Using this reset will ensure that all elements start from a common point.</p>
http://stackoverflow.com/questions/871564/who-do-you-hire-and-why/871573#8715732Answer by Wayne Koorts for Who do you hire and why?Wayne Koorts2009-05-16T03:01:52Z2009-05-16T03:01:52Z<p>You really should check out <a href="http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html" rel="nofollow">Joel Spolsky's Guerrilla Guide to Interviewing</a> for a great guide on this subject.</p>
http://stackoverflow.com/questions/871514/where-can-i-find-a-comparison-between-various-software-licence/871568#8715680Answer by Wayne Koorts for Where can I find a comparison between Various software Licence?Wayne Koorts2009-05-16T02:58:15Z2009-05-16T02:58:15Z<ul>
<li>There is a dynamic comparison tool <a href="http://pgl.yoyo.org/lqr/" rel="nofollow">here</a>, albeit somewhat outdated.</li>
<li><a href="http://developer.kde.org/documentation/licensing/licenses%5Fsummary.html" rel="nofollow">Here</a> is a good comparison chart on the KDE website.</li>
<li><a href="http://www.newmediarights.org/open%5Fsource/new%5Fmedia%5Frights%5Fopen%5Fsource%5Flicensing%5Fguide" rel="nofollow">Here</a> is a guide on choosing an Open Source license, with a comparison chart at the bottom.</li>
</ul>
http://stackoverflow.com/questions/827612/windows-xp-hkcu-lastvisitedmru-maximum-number-of-items-allowed0Windows XP, HKCU\...\LastVisitedMRU maximum number of items allowed?Wayne Koorts2009-05-06T01:07:04Z2009-05-15T20:01:43Z
<p>I have a scenario where I need to put together a script to add an entry to the following registry key for the current user:</p>
<pre><code>HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\LastVisitedMRU\
</code></pre>
<p>I am trying to find out the maximum number of values allowed in this key so that I can have my script tack another one onto the end. The value names start at the beginning of the alphabet but I don't want to assume that they end at "Z".</p>
<p>Background: We are re-packaging a proprietary (i.e. not our own, we don't have access to the source) application and trying to set its default File -> Open location. After many painful snapshotting and File/Regmon sessions this seems to be the way to do it. I know it's very hackish but it does work, I have tested the theory manually. That said, I am most certainly open to suggestions around how to do this in a more Win32-friendly way - under the assumption that the application doesn't have a nicer mechanism of its own to do this.</p>
http://stackoverflow.com/questions/1897173/what-is-the-best-way-to-fix-ie6-png-trancparency-with-javascript-and-jquery/1897195#1897195Comment by Wayne Koorts on what is the best way to fix IE6 png trancparency with javascript and JqueryWayne Koorts2009-12-13T18:03:41Z2009-12-13T18:03:41ZThe link seems to be broken.http://stackoverflow.com/questions/1876336/in-what-areas-of-programming-is-a-knowledge-of-mathematics-helpful/1876367#1876367Comment by Wayne Koorts on In what areas of programming is a knowledge of mathematics helpful?Wayne Koorts2009-12-09T20:23:26Z2009-12-09T20:23:26ZDr. Xray: Why didn't you just say "How about an application that doesn't require it?" if that's what you really meant.http://stackoverflow.com/questions/1870844/becoming-a-web-designer-cms-or-by-hand/1870881#1870881Comment by Wayne Koorts on Becoming a Web Designer: CMS, or by handWayne Koorts2009-12-09T00:41:06Z2009-12-09T00:41:06Z@Art: I think a good way to manage that is to focus on the tools that are getting the most mind-space, like the Drupals and the Djangos and the Rails's. Good luck!http://stackoverflow.com/questions/1863874/google-query-from-javaComment by Wayne Koorts on Google Query from Java?Wayne Koorts2009-12-08T01:07:05Z2009-12-08T01:07:05ZGoogle doesn't like being accessed via anything but a browser. I remember even receiving an auto-generated response along those lines from an archaic text-mode web browser I was using that Google didn't recognise.http://stackoverflow.com/questions/598552/should-i-learn-c-before-learning-c/1122290#1122290Comment by Wayne Koorts on Should I learn C before learning C++?Wayne Koorts2009-11-30T22:05:16Z2009-11-30T22:05:16ZI can't believe you didn't get any upvotes for this yet, here's one. I particularly like your last paragraph.http://stackoverflow.com/questions/255470/what-are-the-different-doctypes-in-html-and-what-do-they-meanComment by Wayne Koorts on What are the different doctypes in html and what do they mean?Wayne Koorts2009-11-27T03:20:10Z2009-11-27T03:20:10ZThis should definitely be Community Wiki IMHO.http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238192#238192Comment by Wayne Koorts on What is the best UI you've ever used?Wayne Koorts2009-11-26T03:16:24Z2009-11-26T03:16:24ZI don't think they deserve a special reward for making the interface to an infinitely broad search function a textbox with a button.http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-usedComment by Wayne Koorts on What is the best UI you've ever used?Wayne Koorts2009-11-26T03:13:17Z2009-11-26T03:13:17Z"The only intuitive user interface is the nipple. Everything else is learned." Hmm, this must be why I like TrackPoints.http://stackoverflow.com/questions/1788639/javascript-doesnt-work-in-ie8Comment by Wayne Koorts on Javascript doesn't work in IE8Wayne Koorts2009-11-24T08:33:14Z2009-11-24T08:33:14ZPlease turn this into a "working" example that people can run, then we can help.http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/925397#925397Comment by Wayne Koorts on What's Your Motto As A Developer/Programmer?Wayne Koorts2009-11-23T20:39:47Z2009-11-23T20:39:47ZSo are you saying that your motto is "I don't care if it doesn't work for you, because it works for me."?http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/1536368#1536368Comment by Wayne Koorts on What's Your Motto As A Developer/Programmer?Wayne Koorts2009-11-23T20:31:36Z2009-11-23T20:31:36ZSimple and clear, I love it.http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/92244#92244Comment by Wayne Koorts on What's Your Motto As A Developer/Programmer?Wayne Koorts2009-11-23T20:26:49Z2009-11-23T20:26:49ZAwesome! <comment filler>http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/84586#84586Comment by Wayne Koorts on What's Your Motto As A Developer/Programmer?Wayne Koorts2009-11-23T18:34:39Z2009-11-23T18:34:39ZThat's a bit harsh IMHO. Just because people don't understand computers like we do (usually because they have no interest in doing so) is no reason to call them stupid. Part of our job, if not our WHOLE job, is making those people feel empowered.http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82521#82521Comment by Wayne Koorts on What's Your Motto As A Developer/Programmer?Wayne Koorts2009-11-23T18:30:53Z2009-11-23T18:30:53ZVery nice! <comment length filler>http://stackoverflow.com/questions/1736822/form-inputs-updated-via-js-dont-get-submitted/1737250#1737250Comment by Wayne Koorts on Form Inputs updated via JS don't get submittedWayne Koorts2009-11-15T11:14:04Z2009-11-15T11:14:04ZGood call! <comment length filler text>