Peter Rowell

3,208
reputation
208 views

Registered User

name Peter Rowell
member for 1 year
seen 11 mins ago
website
location Sebastopol, CA
age 60
I'm a geezer geek living in wine country and doing websites. I'm a Python/Django evangelist. My most recent site is http://www.princeofpinot.com/.
4s
comment First programming job: Small Base Salary + Profit Sharing
@ChrisW: I think we are both saying that it's a bet, maybe a big one for the OP. Without a lot more specifics about the company -- background of the execs, funding, industry segment, location, competition, etc. -- it's all wild speculation. But even if all of those looked really good, the company is asking a new employee to make a major bet on them. And it's that aspect of this that really feels hinky.
54m
comment Imposing an order on related (via a foreign key) objects
@shylent: I pasted a slightly tweaked copy (added some comments): pastebin.com/m568bc926 . Let me know if you have questions/problems. stackoverflow@techbuddy.us
1h
answered Imposing an order on related (via a foreign key) objects
2h
answered First programming job: Small Base Salary + Profit Sharing
2h
answered Methods to create text preview from a font
2h
comment How to run server script indefinitely
You say "a remote Linux server" but you don't say if this is a shared hosting account. If it is, your hosting company may specifically forbid long-running programs, kill them, and then suspend your account. E.g. 1and1.com.
4h
revised packaging cryptography software and distributing
Typo
4h
revised Django’s Satchmo and flatpages issue
Updated based on updated question.
5h
comment packaging cryptography software and distributing
@Adrien: I tried to address this in my update. I spent a little time trying to find the exact current French law in this area, but what I found mostly dated from 1998-2002. They may have made changes since then, but I wouldn't bet my life (or my company's life) on it.
5h
revised packaging cryptography software and distributing
Updated archaic ideas on ITAR
15h
answered packaging cryptography software and distributing
16h
comment how to focus a tr or td tag using jquery or java script?
You don't focus on a tr or a td, you can only focus on an input field. You are also setting two objects to the same id: your newly created input element and a td. An id must be unique on any given page. I would suggest using Firefox + Firebug and setting a breakpoint at foc.focus(); and do a little variable inspecting.
21h
revised What are some uses of Python?
Typo fix
21h
answered What are some uses of Python?
22h
comment How to change the max_length in a django subclass?
Mohamed is correct. Read docs.djangoproject.com/en/dev/…. Depending on the specifics of your problem, you might want to consider using Abstract Base Classes as opposed to true Multi-Table Inheritance.
1d
answered Django’s Satchmo and flatpages issue
1d
accepted Issue with ManyToMany Relationships not updating inmediatly after save
1d
comment PHP: How to generate biased random numbers
"Biased random numbers" There are so many possible jokes here.
1d
answered Django TemplateDoesNotExist?
1d
revised Issue with ManyToMany Relationships not updating inmediatly after save
Improved the answer + more links
1d
revised Issue with ManyToMany Relationships not updating inmediatly after save
Updated to 1.1.1
1d
answered Issue with ManyToMany Relationships not updating inmediatly after save
2d
answered regex to match spaces and apostrophes
2d
comment Mercurial: how can I see only the changes introduced by a merge?
This sounds like a very useful command. I'm looking forward to the answer.
2d
comment Django bug with a tag
@Chase: Unfortunately, I am unconvinced of the existence of these people called "template designers." That means that the template is either being done by a designer ... nah, ain't gonna happen, or a programmer ... yeah, that's what happens in my neighborhood. I think they really need to look at reality here and go with Jinja2 or something very close to it (it's faster, too).
2d
comment What are your favorite metaphors for technical concepts?
@back2dos: Agreed. Assignment is so fundamentally different from equality they really should have done something like that in other lagnuages.
Dec
16
comment What does the schedule during the first few days look like for new hires in your company?
@Byron: You're right, it would be cruel to do this to a n00b. Since I had a small company I really was only looking at / hiring people who were journeyman level or better.
Dec
16
answered What does the schedule during the first few days look like for new hires in your company?
Dec
16
comment Is there a way to express Django admin settings inside the models, instead of admin.py?
I agree ... sort of. Although it's true that contrib.admin is not in the core like models.Model (well, it's not in django.core, but you know what I mean), many of us consider admin to be one of the crown Jewels of Django. And the fact is that I often fiddle with the field ordering and grouping for the admin change page. When I add a new field to the model it feels ... not quite right to have to go edit some other file to make that show in admin. Of course, I still yearn for curly braces, so maybe I'm just a dinosaur.
Dec
16
answered Is there a way to express Django admin settings inside the models, instead of admin.py?
Dec
16
answered Installing a source control without admin rights
Dec
16
answered post/redirect/get
Dec
16
comment Python: List and Integers
Does it matter that this is a list of strings, not integers? Just asking ...
Dec
16
answered Django bug with a tag
Dec
15
comment Is there a use for uninitialized pointers in C or C++?
Makes me think of the old Fram Oil Filter commercial -- Pay me now, or pay me later. Back when I was doing commercial products in C we used our own memory allocator. In debug mode we would initialize all memory blocks to 0xa5a5a5a5. When something blew up you could immediately tell that something didn't get initialized.
Dec
15
accepted Django template access to nested data
Dec
15
comment Can some please explain this jQuery code?
I strongly recommend you go through the jQuery tutorials and maybe a few basic JavaScript tutorials. These are very basic questions and seem to indicate you may not have a lot of programming background.
Dec
15
comment How to avoid username clashing with a large number of users in django?
Agreed, but note that you will need to increase the size of the 'username' field in the User model and also change its validation routine. We increased it to 75 characters. We also created a routine, NormalizeUsername(), that forces everything to lowercase and makes sure it could be a valid email address. This needs to be used in UserManager.create_user and in your authentication process. A bit of a pain, but their email address tends to be something people can remember (although not always).
Dec
15
comment port forwarding for facebook to reach me?
Agreed, not programming related.
Dec
15
comment Is there a visualizer for jQuery selectors?
This isn't an answer, but a great jQuery documentation site is Visual jQuery, visualjquery.com
Dec
15
comment What non-programming books should programmers read?
Interesting but a bit self-serving ...
Dec
15
comment How can I sort by the id of a ManyToManyField in Django?
Interesting/strange question. The id field of the intermediate table used by ManyToMany to do the join is interesting because ... ?
Dec
15
accepted Is there any way to make Django’s get_or_create() to create an object without saving it to database?
Dec
14
comment phantom php echo?
Ah, Grasshopper, but Python is more awesomer! (?) Be careful about mixing your Business logic with your Presentation logic in your PHP pages. The language makes it so easy to do and it's a really bad habit to get into.
Dec
14
comment How to fade images using javascript?
@Jay: Remember links don't kill links, people do! Thanks for the heads up. I agree the fadeIn/fadeOut is good, I was just trying to point him at the All Singing, All Dancing version. I find I always learn more from seeing how a real Pro does it.
Dec
14
revised How to fade images using javascript?
Fixed typo in link.
Dec
14
answered Getting a list of all churches in a certain state using Python.
Dec
14
answered How to fade images using javascript?
Dec
14
comment phantom php echo?
You're welcome. By the way, I've noticed that the probability of doing this particular stupid thing goes up exponentially after I've been working for more than 8 hours, sort of O((h-8)^2). I stopped pulling all-nighters 20 years ago when I started factoring in all the time it took the next day to fix all of the clever things I had done the night before.
Dec
14
comment What non-programming books should programmers read?
In 1975 I had a nervous breakdown while reading page 119 of this book. It took me a year to recover and then I ended up in Scientology for the next 4 years. I don't know if that counts as a recommendation or not. :-)