George

280
Reputation
36 views

Registered User

Name George
Member for 1 year
Seen 6 hours ago
Website
Location Brooklyn, NY
Age 24
Software Engineer at a financial services company
7h
comment Python syntax highlighting / Intellisense?
@Kugel - Eclipse + PyDev is the way to go
Nov
27
answered Render PDF on a Blackberry?
Nov
27
comment What’s the best C++ JSON parser?
I'm using jsoncpp also. it requires a little clean-up on my (work) system so integrations for new revisions are a little harder
Nov
25
answered What do you do to write better code?
Nov
25
comment MySql Query takes forever…
p.model, p.descriptionsmall, p.brandname cause a much larger chunk of data to group ( write out to disk & sort ), and the behavior is not defined - you get a random value back
Nov
25
comment MySql Query takes forever…
right. make this a sub-query and join back to purchaseorders.product to get the rest of the fields
Nov
25
comment What are the limits of Python?
you CAN write more complicated applications in Python. python.org/about/success But given a choice, you probably wouldn't
Nov
25
answered What are the limits of Python?
Nov
24
answered Python HTML scraping
Nov
24
revised C++ dynamic allocated array
added 15 characters in body
Nov
24
comment C++ dynamic allocated array
this assumes size is incremented appropriately outside the loop
Nov
24
answered C++ dynamic allocated array
Nov
24
comment C++ dynamic allocated array
why does your function return a bool ?
Oct
29
comment What did I do wrong following the Django tutorial?
is this a question ?
Oct
29
revised Programmer, not a blogger
added 5 characters in body
Oct
29
asked referencing a key/value in django-templates after applying a filter
Oct
26
comment Strategy for interleaving jobs on AppEngine?
I don't understand the question. Are there dependencies between these jobs ? Time required to run ?
Oct
26
comment How to manage local vs production settings in Django?
this is the solution I use. hacking up a settings file to be used for both production or development is messy
Oct
14
comment What area of Development are really hot from current market perspective ?
winner winner chicken dinner
Oct
14
answered Programmer, not a blogger
Oct
8
comment JSON serialization of Google App Engine models
good question. I've had the same issue
Oct
8
answered Cannot create a for loop inside a java thread - why?
Oct
1
answered How to transpose rows and columns in Access 2003?
Sep
29
comment C/C++ Identify the digits in a given number.
good interview question. thanks!
Sep
25
comment iPhone - convert mp3 to wav?
maybe this should be on SU ?
Sep
25
revised How can I read multiple lines in Perl?
added summary
Sep
25
comment How can I read multiple lines in Perl?
this is A way to do it, but it's slightly indirect. File::Slurp is prefered
Sep
25
comment How can I read multiple lines in Perl?
this is A way to do it, but it's slightly indirect.
Sep
25
comment How can I read multiple lines in Perl?
that's kind of hacky and error prone. might as well undef it
Sep
25
answered How can I read multiple lines in Perl?
Sep
22
answered Ignore lines with same next fields as previous
Sep
22
comment AI / inference problem
is this a homework problem? tag it so if it is
Sep
17
comment How can I make my relationship with QA less adversarial?
Try redmine for bugtracking
Sep
14
accepted Job Scheduler
Sep
11
answered How to become a “faster” programmer?
Sep
11
revised python database / sql programming - where to start
added 425 characters in body
Sep
11
comment python database / sql programming - where to start
going this route, you'll hack up something that's sort of mimics what Django offers.
Sep
11
comment python database / sql programming - where to start
I don't understand this 'lightweight' requirement and how ORM doesn't fit. By 'heavyweight' do you mean: 1. too complicated to figure out 2. memory / disk requirements ? 3. too much functionality ?
Sep
11
comment python database / sql programming - where to start
what makes it "heavy" ? what "footprint" are you talking about ?
Sep
10
answered python database / sql programming - where to start
Sep
10
comment Industrial partitioning problem
Linear Programming is your friend indeed. Use Excel.
Sep
8
awarded  Commentator
Sep
8
comment Fighting the system: colleague woes
no. I think it's a legit strategy in your situation
Sep
3
answered How To Transfer data from one database to another Database?
Sep
3
answered Fighting the system: colleague woes
Sep
3
answered Job Scheduler
Sep
3
revised boost::multi_index index by function call with parameter(s)
added 226 characters in body
Sep
2
answered Should I do a degree and get some accredited qualifications, or continue to go down the self-taught route?
Sep
2
comment simple thread work in c++
does not seem like a complicated enough task to do in a different thread.
Sep
2
comment Map of boost function of different types?
boost::variant is the way to go here. I've done this in code and it works great. In a few lines (of MPL) I support a map of int,float,double,String and a function0 of each of those types.