Hank Gay

12,042
reputation
860 views

Registered User

name Hank Gay
member for 1 year
seen 13 mins ago
website
location Georgia
age 29
I like to spend time with my beautiful wife and our dog. I'm also a fan of geek humor, and I've been known to flip out and write code… elegant code, if I'm really lucky.
1h
answered regex to get value of inside a particular TD in HTML
1h
answered Calculate the depth of a binary search tree?
2h
answered How to set a breakpoint on a default Java constructor in Eclipse?
5h
answered Using paired certificates with urllib2
7h
accepted Django 1.1.1: How should I store an empty IP address using PostgreSQL?
2d
answered Grep and regular expression
2d
answered Unable to push code to git remote
2d
answered What is the best single-source shortest path algorithm for programming contests?
2d
answered Regenerate a git repository
2d
comment Django 1.1.1: How should I store an empty IP address using PostgreSQL?
Getting the devs to accept one of the patches does seem to be the ideal fix, and then you only have to handle a patched version of Django for a little while. As for package management, virtualenv and pip seem to be a better fit for most web applications, so you can use the specific version of Django you need without impacting other apps.
2d
answered Multithreading Puzzles
2d
answered symbols in restructuredText
2d
answered Django 1.1.1: How should I store an empty IP address using PostgreSQL?
2d
revised HashMap with StringKey problem?
Referenced R. Bemrose's solution, since it was cleaner.
2d
answered Teamworking in software development etiquette
2d
comment HashMap with StringKey problem?
A couple of caveats: it needs to implement hashCode() and equals(); the equality checks must depend only on the name property.
2d
comment HashMap with StringKey problem?
I think containsKey is the most straightforward way to capture the programmer's intent, and it doesn't rely on implicit constraints on the allowed values (since some Map implementations allow null values). Unless I had profiler output proving this was a hotspot, I wouldn't waste my time "optimizing" it into a less clear version.
2d
revised HashMap with StringKey problem?
Added code for yet another interpretation of the question.
2d
revised HashMap with StringKey problem?
added a disclaimer
2d
answered HashMap with StringKey problem?
2d
answered Python IO Gurus: what are the differences between these two methods?
2d
accepted Representation of enums
2d
answered Representation of enums
2d
answered Django search capabilities
2d
awarded  Mortarboard
Dec
5
revised How to sign data properly in Ruby (HMAC?)
Added a lot of detail to try to remove potential misunderstandings
Dec
5
comment How to sign data properly in Ruby (HMAC?)
HTTPS (as typically implemented) only requires a certificate for the server side of the communications. HMAC is typically sufficient for verifying the contents of a message haven't changed, but if you want to make sure nobody in the middle inspects it, you need to encrypt the signed message.
Dec
5
answered RESTful services and
Dec
4
answered What do you call the extra third table involved in a many-to-many relationship?
Dec
4
answered simple encryption tutorial?
Dec
4
answered How to sign data properly in Ruby (HMAC?)
Dec
3
answered JQuery UI draggable not working at all!
Dec
3
comment Diagrams/Explanations of Django request processing?
Thanks. The blog had exactly the details I needed (where in the Django source it delegated to the handlers, etc.)
Dec
2
asked Diagrams/Explanations of Django request processing?
Dec
2
comment How to use OpenID in RESTful API?
In that case, maybe one of the pastes at pylonshq.com/pasties/by_tag/openid will help.
Dec
2
answered How to use OpenID in RESTful API?
Dec
2
comment pythonic way to aggregate arrays (numpy or not)
That's a good call, but I was trying to highlight the defaultdict stuff by making that the only change. Your return is definitely better, though.
Dec
1
answered pythonic way to aggregate arrays (numpy or not)
Dec
1
revised pythonic way to aggregate arrays (numpy or not)
Formatted the code
Dec
1
awarded  Enlightened
Dec
1
awarded  Nice Answer
Dec
1
accepted Which language should one try out after basic c/c++?
Dec
1
revised Which language should one try out after basic c/c++?
added subjective tag
Dec
1
answered Which language should one try out after basic c/c++?
Nov
30
revised Java Collections.sort - help me remove the unchecked warning
formatted for code
Nov
30
answered Java Collections.sort - help me remove the unchecked warning
Nov
30
answered What is GitHub all about?
Nov
30
awarded  Nice Answer
Nov
30
answered Are there any good reasons NOT to use jQuery instead of plain old JavaScript?
Nov
29
revised Any good tutorials on using OAuth with Piston?
fixed a grammar problem (I forgot a word before)