TM

4,308
Reputation
397 views

Registered User

Name TM
Member for 1 year
Seen 58 mins ago
Website
Location Michigan
Age 24
36m
comment Python: Nested Loop
much better off using the answer that tgray provided rather than this
41m
comment Python: Nested Loop
To see what I'm getting at, read tgray's answer, with the *a notation.
42m
comment Python: Nested Loop
+1, star notation is the way to go for this.
48m
comment Python: Nested Loop
This works but I'm guessing (although not positive) that in his real code he has n number of tuples, not a predefined set that he can hardcode.
5h
comment The Pragmatic Programmer: After PHP, what’s next?
@heyjude no, you definitely don't need to master pure JavaScript, but it still goes a VERY long way to understand the language itself even when you only use jQuery (and by the way, I pretty much only use jQuery as well). I've fixed (and avoided) a lot of bugs in my jQuery code (and my coworkers) that come down to details of the language, not necessarily jQuery.
5h
answered The Pragmatic Programmer: After PHP, what’s next?
Nov
25
comment What are the limits of Python?
So is it bad that I like Python AND JavaScript?
Nov
24
revised long dropdown menu solution
fixed link
Nov
22
awarded  Good Question
Nov
22
awarded  Popular Question
Nov
20
comment Django - Set Up A Scheduled Job?
Re reading this answer I'm wondering why I didn't upvote it a long time ago. +1
Nov
20
comment What are some authoritative/respected “best known implementation” websites/resources?
True, but you probably could come up with something like "a pretty good implementation that a lot of people agree is suitable for use case". Sure, it's not BEST, but still useful.
Nov
20
comment XML cannot be the whole program
Could you elaborate on where the error is coming from? Is it the response from the webservice?
Nov
20
comment PostgreSQL and JMS (Or other Pub-Sub/Callback Mechanism)
PostgreSQL does offer stored procedures in Java. "PostgreSQL runs stored procedures in more than a dozen programming languages, including Java, Perl, Python, Ruby, Tcl, C/C++, and its own PL/pgSQL, which is similar to Oracle's PL/SQL." - postgresql.org/about
Nov
20
comment Should I use SQLite for automatically build a list of banned IPs of comment spammers?
I've got to ask: if the anti spam system has been working flawlessly for a year now, why do you need to start banning the ip addresses?
Nov
20
comment Code-Golf: What is the shortest program that compiles and crashes?
@roe yes this is a valid statement because javascript will perform semicolon insertion. Also, just like C, a pointless evaluation statement is allowed in javascript, someVar; doesn't really do anything useful, but the variable gets evaluated and it is part of the spec.
Nov
18
comment Rails or Django? (or something else?)
Just a note, nowadays mod_wsgi is the "preferred" way to host a Django app, rather than mod_python.
Nov
18
comment Rails or Django? (or something else?)
@Fabian that is true but you have to remember that a large chunk of "Ruby programmers" have only used Ruby for Rails.
Nov
18
comment Rails or Django? (or something else?)
@Ryan I agree... personally I like to understand what is happening. Learning is more fun to me than saying to myself "wow, something happened behind the scenes and then it worked!". Also, in my experience, you ALWAYS get to a point where you've got to figure out the magic.
Nov
18
comment Python-specific antipatterns and bad practices
Wow I never realized this could happen. How should this be handled ideally? default arg as None and create new empty list if it's still None?
Nov
18
comment Python-specific antipatterns and bad practices
I do this myself, it seems some frameworks even encourage this behavior in the docs... but I see your point, had never really thought about it since I was never altering the framework.
Nov
18
comment How to apply css property using javascript?
Shouldn't use the attr function, as it could blow away existing style attributes. Go for css.
Nov
16
comment Django: use custom class for request.user?
This is the correct way to do it.
Nov
14
awarded  Popular Question
Nov
13
accepted Jquery: i have a function $.fn.my_function with other functions inside, how can i call them?
Nov
13
answered Jquery: i have a function $.fn.my_function with other functions inside, how can i call them?
Nov
8
revised jQuery closest();
added 188 characters in body
Nov
8
comment jQuery closest();
@ScottyUCSD, yes, you are right, I misread the HTML. The answer you posted will work.
Nov
8
answered jQuery closest();
Nov
7
awarded  Favorite Question
Nov
6
comment Struts - Uploading Files
@OMGPonies, thats exactly the problem! If I call getFile(), it's always null (as I described in the question). I can look deep inside the request and find a different form object with the file on it. Even though the rest of the fields on the form are being properly mapped to the ActionForm I made, file is always null.
Nov
6
comment Struts - Uploading Files
Thanks, but that's just the problem. I already have one of those fields on the ActionForm, but it is always null.
Nov
6
awarded  Popular Question
Nov
4
comment Gaming Development vs Corporate Software Development
" I have never heard of programmers being hired based on who costs less (as Cletus suggests happens). The only time salary has been a factor is when someone's requirements haven't matched their (perceived by us) skillset, or they're out of sync with people in the company of a similar level. " These two parts you posted contradict each other.
Oct
30
awarded  Nice Answer
Oct
30
answered Why use monospaced font for programming?
Oct
30
comment When, if ever, is “number of lines of code” a useful metric?
Even more than a harder problem, "Y" might be writing better code for the SAME problem that is a lot more DRY and maintainable.
Oct
29
awarded  Good Question
Oct
26
comment Django model fields validation
That link is broken for me...
Oct
22
awarded  Nice Question
Oct
22
answered How to avoid argument validation
Oct
21
revised Hidden features of Python
improved formatting for easier readability (hopefully)
Oct
21
comment How do you attract programmers in rural areas?
Good info. As for that last point, it might actually be a legal risk to give the impression that you are only looking for people with children (although the law generally relates to looking for people WITHOUT children, I think it's a two-way street). But I'm no lawyer so I could be totally wrong here :)
Oct
21
comment Position Fixed in CSS within a bounding box?
@antony.trupe no, it doesn't. The community has spoken, SO is a perfectly valid place for HTML/CSS questions: meta.stackoverflow.com/questions/14637/…
Oct
21
asked Git and Mercurial - Compare and Contrast
Oct
20
asked Where can I learn about recommendation systems?
Oct
20
comment Django - how can I get permalink to work with “throwaway” slug
@thornomad attempt #1 in my question was what I ended up with. turns out there was no problem with the get_absolute_url methods I had, just with my url pattern.
Oct
19
comment Cache a django view that has URL parameters.
Is there some reason you don't want to just use: http://mysites/ajaxthing/user/foo/items/10/ This way you can side step this problem nicely.
Oct
19
revised How do I convert a JSON object to an array for use in jQuery?
deleted 1 characters in body
Oct
16
comment Hiding a div using JQuery
@Russ I was wondering the same thing. To me this is a better answer.