Andrey Fedorov

874
Reputation
198 views

Registered User

Name Andrey Fedorov
Member for 1 year
Seen 22 hours ago
Website
Location New York City
Age 23
Nov
30
asked How do I include parameters in a bash alias?
Nov
12
awarded  Self-Learner
Nov
9
awarded  Nice Question
Nov
9
asked Why are two different concepts both called “heap”?
Oct
29
answered How do I use MacPorts to downgrade a dynamic library?
Oct
29
revised How do I use MacPorts to downgrade a dynamic library?
added 162 characters in body
Oct
29
asked How do I use MacPorts to downgrade a dynamic library?
Oct
28
asked How do I move data from Postgres to MySQL running on Amazon’s RDS?
Sep
23
comment Hidden Features of JavaScript?
@harto: the trick is to use the ternary op to do if-else on expressions. It's really neat that the same language feature that does the equivalent of if can also do if-else without modification.
Sep
17
awarded  Yearling
Aug
30
comment Fixing mod_wsgi after upgrading to Snow Leopard.
Compiled mod_wsgi using instructions linked above
Aug
30
comment Fixing mod_wsgi after upgrading to Snow Leopard.
Apache 2.2.1 from MacPorts
Aug
30
answered What is the precedence of multiple JOIN statements in sqlite?
Aug
30
asked Fixing mod_wsgi after upgrading to Snow Leopard.
Aug
20
comment Overriding C# Conditional statements problem
~more cleanly expressed, that is
Aug
20
comment Overriding C# Conditional statements problem
"a == b ? false : true" is cleaner expressed as "!(a == b)"
Aug
17
revised Using Python to read the screen and controlling keyboard/mouse on OSX.
deleted 1 characters in body
Aug
15
asked Using Python to read the screen and controlling keyboard/mouse on OSX.
Jul
24
asked Is it possible to send custom headers with an XHR (”Ajax” request)?
Jul
21
comment Django RelatedManager’s .create() usage?
Thanks for all the help, oggy :)
Jul
21
comment Django RelatedManager’s .create() usage?
I was running Django 1.0.2 at the time with MySQL 5.0.81... will reproduce by itself when I get the chance, and file bug report if it's still reproducible.
Jul
20
comment Django RelatedManager’s .create() usage?
@oggy: this was a typo, corrected. sorry :-/ what version of Django did you use?
Jul
20
revised Django RelatedManager’s .create() usage?
typo in id of play
Jul
9
revised Django RelatedManager’s .create() usage?
typo in player_id
Jul
9
comment Django RelatedManager’s .create() usage?
Also, I'd like to figure out what the bug is rather than work around it (which I did with PlayParticipant.objects.create(...))
Jul
9
revised Django RelatedManager’s .create() usage?
added note field after first response
Jul
9
comment Django RelatedManager’s .create() usage?
Meh, can't as there's an extra field - a note, in the relationship (updated question to include it). Example is identical to: djangoproject.com/documentation/models/…
Jul
9
revised Django RelatedManager’s .create() usage?
added 2 characters in body; deleted 41 characters in body
Jul
9
asked Django RelatedManager’s .create() usage?
Jul
7
comment Adding attributes into Django Model’s Meta class
Most likely! :)
Jul
6
comment Adding attributes into Django Model’s Meta class
For posterity's sake, that doesn't work, but this did: options.DEFAULT_NAMES = options.DEFAULT_NAMES + ('default_values',)
Jul
6
comment Adding attributes into Django Model’s Meta class
Perfect! Merci beaucoup!
Jul
6
asked Adding attributes into Django Model’s Meta class
Jul
1
awarded  Necromancer
Jun
24
comment If you already know LISP, why would you also want to learn F#?
In other words, I have no idea what you're talking about. I didn't mention meta-programming (which, by your definition, JavaScript has). Neither did I mention "quotations", whatever you mean by that.
Jun
24
comment If you already know LISP, why would you also want to learn F#?
Sure, but what is the notation for the data representing the AST of <@ 1 + 2 @>.Eval()? In Lisp, '(eval '(+ 1 2)) is the expression which evaluates to the AST that string parses into. The AST is a list with two elements - a function eval' and a list with three elements - a function +' and two arguments `1' and `2'. That's what it means that Lisp is homoiconic.
Jun
22
comment Hidden Features of JavaScript?
I'm not a big fan of switch statements - they're an artifact of C, not functional programming. In my example, a switch statement would still need three separate statements, all starting with "foo =" - obvious unecessary repetition.
Jun
17
asked How do I create a Django model with ForeignKeys which does not cascade deletes to its children?
Jun
9
comment How do I translate a ISO 8601 datetime string into a Python datetime object?
How in high hell did I miss that? Thanks a ton!
Jun
9
asked How do I translate a ISO 8601 datetime string into a Python datetime object?