1,019 reputation
311
bio website jerrykindall.com
location Seattle, WA
age 44
visits member for 2 years, 8 months
seen Apr 25 at 16:26
stats profile views 49

I'm a technical writer at Tecplot, Inc., makers of fine data visualization software for aerospace/CFD, oil and gas exploration, and general scientific/engineering uses. Python is my Swiss Army Knife of choice. I use it to help build and validate our documentation and help, among other things. I also have some proficiency with HTML, XML, AppleScript, C#, C, and if anyone ever has a question about 6502 assembly language, I'm your man. :-)


Sep
25
revised How often do experienced programmers have trouble getting their code to perform its intended purpose?
deleted 4 characters in body
Sep
24
awarded  Yearling
Jun
13
comment In plain English, what is recursion?
Yes, the function a still calls itself, just indirectly (by calling b).
Jun
4
answered Does heavy JavaScript use adversely impact Googleability?
Apr
19
comment does one method overload an other, or are both methods “overloaded”
@leftaroundabout: "Overloading" implies that you're doing more "loading" than usual, so the term is only used when you have more than one function with the same name.
Apr
9
awarded  Good Answer
Apr
8
comment How often do experienced programmers have trouble getting their code to perform its intended purpose?
All bugs are a result of someone's mistake (even if that mistake was not taking appropriate preventive measures), but you're right that the programmer's not always at fault, so I've added some verbiage about this.
Apr
8
revised How often do experienced programmers have trouble getting their code to perform its intended purpose?
added 65 characters in body
Apr
8
awarded  Mortarboard
Apr
8
awarded  Nice Answer
Apr
8
comment How to generate “language-safe” UUIDs?
I once wrote a program that generated passwords for an online service. They were random, but there were a few heuristics that made them sorta pronounceable, so they would be more easily remembered. And these heuristics led to profanity. The solution was as described here: check for vulgar substrings, including those that could be pronounced similarly to vulgar words (e.g. look for FUC and FUK) and regenerate the password. (For giggles, the program wrote the rejected passwords to a separate file.)
Apr
8
revised How often do experienced programmers have trouble getting their code to perform its intended purpose?
added 64 characters in body
Apr
8
revised How often do experienced programmers have trouble getting their code to perform its intended purpose?
added 45 characters in body
Apr
8
answered How often do experienced programmers have trouble getting their code to perform its intended purpose?
Mar
23
awarded  Nice Answer
Mar
23
revised What's shell script's advantage over interpreted programming languages?
added 10 characters in body
Mar
23
revised What's shell script's advantage over interpreted programming languages?
added 148 characters in body
Mar
23
answered What's shell script's advantage over interpreted programming languages?
Mar
23
comment Why is verbosity bad for a programming language?
The worst thing about AppleScript is that every application you want to drive with it can have different terminology. Apple defines certain suites of commands that all programs should support, but in general, knowing how to script one application is only of limited help in scripting another.
Feb
6
comment Do coding puzzles make good interview questions
Heh, indeed. :-)