Zach

2,869
Reputation
296 views

Registered User

Name Zach
Member for 1 year
Seen 2 days ago
Website
Location US
Age 22

Cooooooooool.

Nov
6
comment Why are ruby projects so dominant at Github?
Save typcasting for the code...
Sep
16
awarded  Yearling
Sep
7
awarded  Taxonomist
Jul
31
awarded  Nice Answer
Jul
20
awarded  Nice Answer
Jul
13
revised jQuery and $ questions
added 95 characters in body
Jul
13
answered jQuery and $ questions
Jul
13
revised How to package a command line Python script
added 458 characters in body
Jul
13
comment Href for Javascript links: “#” or “javascript:void(0)”?
My web apps are designed to degrade gracefully, so the link will still be a useful page. Unless your web app is a chat client or something that interactive, this should work if you put in the time to design with degradation in mind.
Jul
12
comment How to package a command line Python script
Ideally, *nix or windows.
Jul
12
comment How to package a command line Python script
It consists of two python files. I want to package it to be distributed on PiPy, for example, and installed with easy_install.
Jul
12
asked How to package a command line Python script
Jul
11
comment What are five things you hate about your favorite language?
For null and undefined: sometimes you really want to know if the variable has been assigned a value or not. Since null is a value, undefined is the only way to tell. Granted, the only time I've found this useful was for creating getter/setter functions.
Jun
29
comment Hidden Features of HTML
I believe it uses SOP, same as with iframes.
Jun
29
comment Hidden Features of HTML
Yes, error codes like 404 would trigger the event.
Jun
26
revised How do I wait until the user has finished writing down in a text input to call a function?
for setTimeout, better to use the function name instead of a string
Jun
10
comment Hidden Features of HTML
iframe is not deprecated in HTML 5.
Jun
8
awarded  Nice Answer
Jun
6
comment How do you reverse a string in place in JavaScript?
I made an edit to convert str to an array first because str[i] on a string is non standard and doesn't work in some js engines.
Jun
6
revised How do you reverse a string in place in JavaScript?
accessing string characters with str[i] is non standard. convert to array first.
Jun
5
answered Hidden Features of HTML