Gregg Lind

2,029
Reputation
376 views

Registered User

Name Gregg Lind
Member for 1 year
Seen 16 hours ago
Website
Location Minneapolis, MN, USA
Age 31
Gregg Lind is a professional programmer living in Minneapolis, Minnesota, USA. Originally from Massachusetts, he stayed in the midwest after earning an undergrad degree in anthropology and biology from Grinnell. After a few years of shovelbumming, he found himself in Milwaukee, with weak prospects. After conning his way into a statistics job, and realizing that the people asking him for advice knew even less than he did about numbers, he decided to do the normal thing, and actually return to school, earning his M.S. from the U of Minnesota's School of Public Health's Division of Biostatistics in 2005.

From there, it's been up, up, up, including a stint at the U of M Epidemiology Department where he worked on statistical genetics and statistical simulation projects. Now he works at Renesys, which is a fantastic place to work, filled with smart hackers.

Areas of interest: NoSQL, Literate programming, math phobia, gender gap in the hard sciences, information visualization, photography, snooty food, fixed-gear bicycles, Minneapolis, wind-power, dark beer, numbers, math and other kinky topics.

likes: long walks on the beach, financially-secure men, flowers, data visualization, robot conspiracies, bicycles built for two.

dislikes: eggplants, 2nd ring suburbs.

22h
comment Standard library - higher-precision floating point?
Fwiw, that documentation is different between 2.5 and 2.6, so good on python-doc maintainers. I didn't think the exp part would be relevant in my internal model, honestly, and it pleasantly surprises me that Decimal() has its own math functions as methods, but it's not expected, considering it's at odds with cmath. I was expecting the idiom something more like exp(SpecialType()), not SpecialType().exp. I'm glad to be educated on it.
1d
comment Standard library - higher-precision floating point?
I would accept yours as well. I don't know why I just couldn't see it! Thanks!
1d
comment Standard library - higher-precision floating point?
Well, for one, as I pointed out below, I didn't realize that Decimal() had a exp method. Doing math.exp(Decimal()) doesn't work. If you want to give me the RTFM treatment, then at least link to TFM.
1d
comment Standard library - higher-precision floating point?
Thank you for demonstrating how to actually use Decimal here. I didn't realize it had a 'exp' method.
1d
comment Standard library - higher-precision floating point?
Good to know, but not part of standard library. Thanks for linking though!
1d
comment Standard library - higher-precision floating point?
Thank you! I knew there was something i was missing here. Jeepers, I feel like a moron! I tried to take the log of all of it, which obviously fails.
1d
asked Standard library - higher-precision floating point?
Nov
23
comment Designing a multi-process spider in Python
I'm imagining (in a synchronous system), you'd keep a queue or stack (adding pages when look a group page, or whatever) and when it gets to empty, you're done.
Nov
23
answered Designing a multi-process spider in Python
Nov
17
answered Typesetting music in LaTeX
Nov
16
accepted Python web framework with low barrier to entry
Nov
13
awarded  Notable Question
Nov
11
comment Is there a programming language where the static data type is optional?
In what sense do you claim "Python works in a similar fashion" to this?
Nov
5
comment Is there a pretty printer for python data?
Well, can also import an ipython shell into your program. I point out ipython because it has many many other useful features besides pretty-printing.
Oct
24
revised Modern, Non-trivial, Pygame Tutorials?
added description of what this tutorial covers
Oct
24
comment Modern, Non-trivial, Pygame Tutorials?
Excellent start Eli!
Oct
24
comment Creating a board game simulator (Python?) (Pygame?)
The point of separating things out is to make it simpler to actually get working bits done. Then when it comes time to learn Pygame, the author just has to learn Pygame, as an interface. Otherwise sprites end up storing game state. Pygame is hard to debug, a text interface isn't.
Oct
24
asked Modern, Non-trivial, Pygame Tutorials?
Oct
21
comment Handling renames: svn vs. git vs. mercurial
That 'git log --follow' is a hidden gem.
Oct
21
comment Git and Mercurial - Compare and Contrast
Dustin, maybe list some of those "git easy, hg not so much" cases?
Oct
19
comment How can I check to see if a Python script was started interactively?
at least use the conventional "--scheduled"
Oct
14
comment Easy pretty printing of floats in python?
so kaizer.se, are you proposing " ".join(["%.2f" % x for x in yourlist]) . I have having to do this kind of construction in python.
Oct
14
answered Wrapping an interactive command line application in a python script
Oct
14
comment Is there a business proven cloud store / Key=>Value Database? (Open Source)
Correction: Hypertable is in C++
Oct
10
comment How do I get fluent in Python?
Practice what? What does that mean?
Oct
8
comment Dimension Reduction
It sounds like you have it quite well in hand :) I can never remember the exact formulae, so I just noodle around until I get the right size end matrix, just as you are!
Oct
8
comment How to sort all possible words out of a string?
This could use some retitling, since it's not about sorting at all.
Oct
8
accepted Dimension Reduction
Oct
8
comment Dimension Reduction
I'm pretty sure it's exactly that simple (assuming matlab orders the columns such that the cols and eigenvals correspond)
Oct
8
answered How to sort all possible words out of a string?
Oct
8
answered Dimension Reduction
Oct
8
comment Why is Perl the best choice for most string manipulation tasks?
C'mon. 1993 (or 1995) (Ruby) en.wikipedia.org/wiki/… vs 1991 (Python). Neither is exactly a toddler.
Oct
8
comment Why is Perl the best choice for most string manipulation tasks?
It turns out regexes aren't the only way of manipulating / dealing with strings either. Yes Perl has great regexes. Other languages have good regex support, and plenty of other fine features to boot.
Oct
8
accepted Replace newlines with BR tags, but only inside PRE tags
Oct
7
accepted How do I run a Python program?
Oct
7
revised Non-repeating pseudo random number stream with ‘clumping’
eating crow
Oct
7
answered Non-repeating pseudo random number stream with ‘clumping’
Oct
7
comment Non-repeating pseudo random number stream with ‘clumping’
To amplify, over long periods most (okay, all, I'll leap!) normal generators are going to have repeats, since near their tails, they poorly approximate uniformity and have discontinuity. Making it non-repeating (globally) and non-tracking is impossible.
Oct
6
comment How do I run a Python program?
The Windows section here seems very... odd and non-standard for how to launch it.
Oct
6
revised How do I run a Python program?
edited tags
Oct
6
answered How do I run a Python program?
Oct
6
revised Put bar at the end of every line that includes foo
improved formatting
Oct
6
comment Put bar at the end of every line that includes foo
Aha, then what you might really want is to look at NetworkX (networkx.lanl.gov), which can make both the plots (using Graphviz) and and the graphs. Read other postings on it, it's really easy to use.
Oct
5
comment Put bar at the end of every line that includes foo
Now you changed it!
Oct
5
comment Put bar at the end of every line that includes foo
for those keeping track at home: 'with' doesn't work for those of us in 2.4 land... (the OP has 2.5, so all good there).
Oct
5
comment Put bar at the end of every line that includes foo
Karasu, to help unthorn Millikin's answer, is it true that the 'verb' will be the only lower case thing on the line. It sounds like the true file spec is line :== name verb name , where name :== (one or two capitalized words). If not, then the code will have a tough time sniffing out verbs, and can get confused by sentences like "jon likes hates wendy"
Oct
5
answered Cost of list functions in Python
Oct
5
comment Put bar at the end of every line that includes foo
don't forget the semi-colon in the last line (see original spec). The defaultdict is a nice touch, maybe explain that it makes it that if a verb isn't found, it just does an empty string, which may or may not be what the OP wants.
Oct
5
comment Put bar at the end of every line that includes foo
why do you loop the dict every time? Verb is always 2nd position (sez the OP).
Oct
5
answered Put bar at the end of every line that includes foo