Wayne Koorts
|
Registered User
|
Software development enthusiast who loves learning new techologies. My (mostly) programming blog can be found here. Some current personal projects:
|
|
Nov 30 |
comment |
Should I learn C before learning C++? I can't believe you didn't get any upvotes for this yet, here's one. I particularly like your last paragraph. |
|
Nov 27 |
comment |
What are the different doctypes in html and what do they mean? This should definitely be Community Wiki IMHO. |
|
Nov 26 |
comment |
What is the best UI you’ve ever used? I don't think they deserve a special reward for making the interface to an infinitely broad search function a textbox with a button. |
|
Nov 26 |
comment |
What is the best UI you’ve ever used? "The only intuitive user interface is the nipple. Everything else is learned." Hmm, this must be why I like TrackPoints. |
|
Nov 26 |
answered | Is smtplib pure python or implemented in C? |
|
Nov 24 |
answered | Distribute C++ application as .exe or .msi? |
|
Nov 24 |
answered | Javascript Ternary operator |
|
Nov 24 |
comment |
Javascript doesn’t work in IE8 Please turn this into a "working" example that people can run, then we can help. |
|
Nov 23 |
comment |
What’s Your Motto As A Developer/Programmer? So are you saying that your motto is "I don't care if it doesn't work for you, because it works for me."? |
|
Nov 23 |
comment |
What’s Your Motto As A Developer/Programmer? Simple and clear, I love it. |
|
Nov 23 |
comment |
What’s Your Motto As A Developer/Programmer? Awesome! <comment filler> |
|
Nov 23 |
comment |
What’s Your Motto As A Developer/Programmer? That'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. |
|
Nov 23 |
comment |
What’s Your Motto As A Developer/Programmer? Very nice! <comment length filler> |
|
Nov 23 |
answered | Create a Fully Featured Environment For Tcl/Tk Development Under Windows |
|
Nov 20 |
revised |
Is it a good idea to put all project headers into one file HEADERS.h? edited tags |
|
Nov 18 |
awarded | ● Yearling |
|
Nov 15 |
comment |
Form Inputs updated via JS don’t get submitted Good call! <comment length filler text> |
|
Nov 15 |
answered | What is the best language for game programming? |
|
Nov 13 |
awarded | ● Popular Question |
|
Nov 11 |
comment |
jQuery - keydown() on div not working in Firefox Fantastic! Thank you very much! |
|
Nov 11 |
comment |
jQuery - keydown() on div not working in Firefox @Matt: Just tried that and updated the question, thanks. |
|
Nov 11 |
revised |
jQuery - keydown() on div not working in Firefox Added additional testing notes. |
|
Nov 11 |
asked | jQuery - keydown() on div not working in Firefox |
|
Nov 10 |
revised |
What interview question weeds out ‘bad’ applicants? Removed redundant opening line, this is Stack Overflow - they won't be referring to a chef position. |
|
Nov 10 |
revised |
What interview question weeds out ‘bad’ applicants? Fixed punctuation and grammar. |
|
Nov 10 |
revised |
What interview question weeds out ‘bad’ applicants? Enhanced value. |
|
Nov 10 |
revised |
What interview question weeds out ‘bad’ applicants? Text flow improvements |
|
Nov 10 |
revised |
What interview question weeds out ‘bad’ applicants? Fixed grammar and spelling, to the extent possible without potential disrespect. |
|
Nov 10 |
revised |
What interview question weeds out ‘bad’ applicants? Fixed spelling and grammar. |
|
Nov 10 |
revised |
What interview question weeds out ‘bad’ applicants? Corrected horrific punctuation abuse. |
|
Nov 10 |
answered | Python: “Indentation Error: unindent does not match any outer indentation level” |
|
Nov 6 |
awarded | ● Citizen Patrol |
|
Nov 5 |
comment |
SQL LIKE condition to check for integer? Nice tip for type conversion, thanks. |
|
Nov 5 |
comment |
SQL LIKE condition to check for integer? Great link, thanks. |
|
Nov 5 |
comment |
SQL LIKE condition to check for integer? Option 1 is what I wanted, thanks very much. |
|
Nov 5 |
asked | SQL LIKE condition to check for integer? |
|
Nov 4 |
comment |
Are regular expressions worth the hassle? I think the most important lesson to learn about regular expressions, like any programming concept, is which problems they are good for solving, and which not. Try to find as many usage examples as you possibly can and think carefully why the developer might have used them. You will probably find that you disagree in some cases. I find that the majority of regular expressions I use are very simple ones, either for extracting a matching substring or just for the existance of a match. The most recent one I used was to extract the integers from the end of filename: "\d+$" |
|
Oct 14 |
comment |
Using DPAPI with Python? Thanks for the tip, I will probably start using that from now on. |
|
Oct 13 |
revised |
How much can you make for creating an application for an iPhone? edited tags |
|
Sep 29 |
awarded | ● Self-Learner |
|
Sep 18 |
awarded | ● Popular Question |
|
Aug 30 |
comment |
Best Installer Packages in Windows MSI is not an installer system. MSI is a package format. WIX is an installer system for MSI. |
|
Aug 17 |
revised |
How to weed out the bad programmers from the competent ones in the interview process improved grammar |
|
Aug 17 |
revised |
How to weed out the bad programmers from the competent ones in the interview process fixed grammar. |
|
Aug 14 |
comment |
Would it be a good idea to learn COBOL? If so, how? What would happen if nobody could maintain those old systems once the COBOL programmers are gone? The systems would get replaced by more modern ones, which will make everyone happier long-term. Then in 30 years time someone will come back here and ask the same question about the language you replaced those systems with, and so on. |
|
Aug 13 |
comment |
How to create new folder? This will fail because you haven't double-backslashes in the call to os.makedirs. |
|
Aug 13 |
comment |
Django, The {% if %} tag evaluates "Minor" is a matter of opinion. Believe it or not there are people in the world who are not as experienced as you are. It's all relative. Joel Spolsky has specifically stated that what he envisioned for this site was to have answers to all questions, even the most seemingly trivial. The fact that this has now been asked means it may not have to be asked again. You could have spent that time you used to complain at the start of your answer to instead use your editing privileges to improve his question. |
|
Aug 13 |
comment |
Django, The {% if %} tag evaluates The Django template system is specifically designed to encourage as little logic as possible to be in the templates, which is why at first the tag system may seem limited. The idea is to switch your thinking to more of an MVC state where your data has been prepared before it gets to your template. |
|
Aug 13 |
comment |
Django, The {% if %} tag evaluates You just pointed to the overview of templates, the full tag and filter list is here: docs.djangoproject.com/en/dev/… |
|
Aug 13 |
comment |
What’s your favorite “programmer ignorance” pet peeve? @Dour High Arch: Noone is my homeboy. |
