technomalogical

728
Reputation
99 views

Registered User

Name technomalogical
Member for 1 year
Seen yesterday
Website
Location US
Age
Nov
23
comment Create a new Tuple with one element modified
This is why I should always keep a copy of "Python in a Nutshell" on my desk. I had no idea about the enumerate built-in, having never needed it before. While waiting for responses, I concocted a similar construct using itertools.izip and itertools.count. Thanks Alex!
Nov
23
comment Create a new Tuple with one element modified
Unfortunately, the number of columns I'll be working with varies from table to table, so I can't assign each to a concrete variable.
Nov
23
asked Create a new Tuple with one element modified
Oct
7
comment Supporting Multiple Python Versions In Your Code?
+1, but here's a direct link to the relevant section: diveintopython.org/file_handling/…
Oct
7
asked Supporting Multiple Python Versions In Your Code?
Sep
29
comment Classifying Text Based on Groups of Keywords?
You're both right, and what I'd ideally like to do is normalize tense and plurality in both keywords and sentences. That way, I only list "customer" and not "customers", "deposit" and not "deposits" or "deposited". I think Hamming still runs the risk of under-representation, but I think it's a good first stab at what I'm trying to do.
Sep
29
asked Classifying Text Based on Groups of Keywords?
Sep
13
awarded  Yearling
Aug
25
comment Sorting words (not lines) in VIM
Still new to some of the language integration into Vim, but does this use compiled-in Python support or use an external executable?
Aug
25
comment Sorting words (not lines) in VIM
As @spatz mentioned in the comment for answer from @Al, this sorts the whole line, not a selection on the line.
Aug
23
comment Which Python book would you recommend for a Linux Sysadmin?
Thanks, the link is fixed.
Aug
23
revised Which Python book would you recommend for a Linux Sysadmin?
fixed Dive into Python link per comment
Aug
13
comment Marking duplicate lines
Any chance we could get some code?
Aug
11
comment ASP.Net Master Page and File path issues
See my comment below in the accepted answer for caveats when dealing with nested master pages.
Aug
11
comment ASP.Net Master Page and File path issues
FYI, my co-worker and I just tried this out. This doesn't seem to work in a nested master page scenario in the parent master page. Moving it to the child master page, however, did the trick.
Aug
10
comment In vim, how can I delete all lines in a file except the last 100 lines?
simple and elegant. I like it!
Jul
22
comment difference between vi/vim
This answer gets my vote for "best answer that helps one do their own research". I had no idea about the {} notes. Thanks!
Jul
22
comment difference between vi/vim
fileformat.info is your friend: fileformat.info/info/unicode/… The character is 'KANNADA LETTER TTHA' (U+0CA0)
Jul
13
comment Ways to save enums in database
I'm using a hybrid approach of your solution and @Ian Boyd's solution with great success. Thanks for the tip!
Jul
6
comment How to get rid of empty blocks in vim
+1, great explanation
Jun
19
accepted ASP.NET AJAX and UserControls: handling client side scripting
Jun
16
answered ASP.NET AJAX and UserControls: handling client side scripting
Jun
16
comment ASP.NET AJAX and UserControls: handling client side scripting
It sounds like your approach is on the right track, but RegisterStartupScript doesn't hook into page_load auto-magically, that I can see anyway. Any suggestions on how to do this?
Jun
16
revised ASP.NET AJAX and UserControls: handling client side scripting
added 294 characters in body
Jun
16
comment ASP.NET AJAX and UserControls: handling client side scripting
Whoops, had a typo (ClientID should have a capital 'D') but I'm still not sure how to handle calling each of these functions on the AJAX page load (to my knowledge, client onLoad will only happen on the first page load.)
Jun
16
comment ASP.NET AJAX and UserControls: handling client side scripting
That was my first instinct, but ClientId doesn't exist in the context of the UserControl. Would I need to inherit from a certain class or interface?
Jun
16
asked ASP.NET AJAX and UserControls: handling client side scripting