Nick Retallack

2,064
reputation
170 views

Registered User

name Nick Retallack
member for 1 year
seen Nov 23 at 23:37
website
location US
age 23
1d
awarded  Taxonomist
Nov
18
revised How do you make a Django Form for a model and all of its children following a particular foreign key?
mistake
Nov
18
comment How do you make a Django Form for a model and all of its children following a particular foreign key?
I was this far already, but wanted to make sure I was on the right track. How does this know to display the underlings that already exist under the current supervisor? Also, how can you create extra underling items using javascript? I guess you have to manually save every form and apply the relationships in your view, right? There's no way to create a ModelForm that manages its children, is there?
Nov
18
revised How do you make a Django Form for a model and all of its children following a particular foreign key?
added 56 characters in body
Nov
18
comment How do you make a Django Form for a model and all of its children following a particular foreign key?
Create or update. *edited it
Nov
18
revised How do you make a Django Form for a model and all of its children following a particular foreign key?
made more clear
Nov
18
revised How do you make a Django Form for a model and all of its children following a particular foreign key?
made it simpler.
Nov
18
asked How do you make a Django Form for a model and all of its children following a particular foreign key?
Nov
15
accepted Can you recommend a database that scales horizontally?
Nov
12
awarded  Notable Question
Nov
6
revised Opinion: in HTML, Possible Duplicate IDs or Non-Standard Attributes?
Data attributes instead of non-standard ones.
Nov
6
revised Online Interactive Consoles
edited tags
Nov
6
answered Online Interactive Consoles
Nov
6
comment Best Static Website Generator
Done. I still can't decide which of these things to use.
Nov
6
revised Best Static Website Generator
deleted 2 characters in body; edited tags
Oct
23
awarded  Nice Question
Oct
18
comment How to merge two arrays in Javascript
Why would I mean that? The purpose of that condition is to ignore properties that may be in the object's prototype.
Oct
18
revised How to merge two arrays in Javascript
true is more setty; added 40 characters in body
Oct
18
revised How to merge two arrays in Javascript
tweaks
Oct
18
answered How to merge two arrays in Javascript
Oct
6
comment Trailing slashes in Pylons Routes
This works and is a lot simpler than all the other solutions. You deserve upvotes, good sir.
Aug
28
asked Drawing a Smooth Line from Tablet Input
Aug
28
comment How would you implement Undo in a raster drawing program?
No. Just crowd-sourcing for ideas. I put down my answer. Any other ideas?
Aug
28
answered How would you implement Undo in a raster drawing program?
Aug
28
asked How would you implement Undo in a raster drawing program?
Aug
24
awarded  Yearling
Aug
2
awarded  Popular Question
Jun
29
revised why the class margin not work?
being more generic
Jun
29
revised why the class margin not work?
removed the obvious
Jun
29
accepted why the class margin not work?
Jun
29
answered why the class margin not work?
Jun
23
comment What makes Ruby slow?
Finally, a real answer! Too much evangelism in this thread. I was most interested in hearing about ambitious language features that make it difficult to optimize compared to other dynamic languages. It never occurred to me that you could have concurrency issues with redefining classes at runtime. That's good that 1.9 has improved at basic math -- I'll have to try it now. I wish ruby programmers didn't use eval so much, but sometimes I stumble across a class that's half string literal with interpolation. It just seems wrong.
Jun
23
comment What makes Ruby slow?
Very good answer! If I could select two answers, I'd choose you too. Yes, it was probably silly of me to try to build realtime graphical applications in Ruby, and I ended up disabling and manually triggering the GC between frames to make it at least animate somewhat smoothly, if not very slowly. I had better luck with Python -- particularly with Pyglet, an amazing little opengl library that's far more useful than SDL, which everyone seems to be binding to these days.