PTBNL

1,075
Reputation
345 views

Registered User

Name PTBNL
Member for 1 year
Seen Dec 2 at 4:27
Website
Location
Age 45
2d
awarded  Yearling
Nov
13
comment Little Math-help for image resize needed
@unwind: Sorry, I mis-read your answer the first time; indeed you do set the height to 60.
Nov
13
comment Little Math-help for image resize needed
Given I'm not 100% sure I understand the intent of the question, but I think the OP wants to ADD 60 px to the original height, not multiply it by 60. Also, I've nearly always heard/used the term as "aspect ratio", not just "aspect".
Nov
12
comment Hi! I am new in the Field of Programming?
If you want to improve, it depends on the code, IMO. In my experience, there's a lot of pretty bad stuff out there. Of course, looking at bad stuff can show you what not to do - as well as why you shouldn't do it - but you must learn to discern the good from the bad!
Nov
10
awarded  
Nov
6
answered Interview Programming Questions - In house Exam
Nov
6
answered Mathematical Programming Languages
Oct
29
comment Submitting a form using PHP
Any downvoting is likely due to the fact that you said PHP cannot do what the user was asking, but it has libraries which can accomplish what was asked, as other answers have pointed out. I suggest that if you don't want downvotes, modify your answer somehow or delete it.
Oct
27
comment The funniest/weirdest error message you’ve got from a development environment/application
I even got the "Internet Explorer Cannot Display the Webpage" from FireFox! How'd that happen?! ;-> LOL!
Oct
23
comment Python dictionary creation error
The 2nd method worked fine for me on two systems. One runs 2.4.3 and the other 2.6. I tried to look up bugs on the Python.org pages, but for some reason, the link on the Python page to the bugtracker isn't working for me.
Oct
21
answered How to convince a client that all next projects/enhancements should be done via TDD (with some agile practices)?
Oct
14
answered Easy pretty printing of floats in python?
Oct
10
accepted how to browse web site with script to get informations…
Oct
9
answered What’s the funniest user request you’ve ever had?
Oct
9
revised how to browse web site with script to get informations…
Added ref to wget and statement about only needing URL for full page grab.
Oct
9
answered how to browse web site with script to get informations…
Oct
9
comment Is reading too many management books too early for me?
"You can't excel at both technical and management aspects at the same time." Why do you say that? I've known people who do. And yes, I've know some who try, but fail at both ...
Oct
9
comment Is reading too many management books too early for me?
As you said, it depends on the place: When I was 27 I had a degree in C.S. and 2+ years of development experience ... was working for a another 27 year old who had less development experience. However, he was ex-military in a shop where almost all the management was ex-military (and I was not) ... and he was hired a month before me.
Oct
9
answered Is reading too many management books too early for me?
Oct
9
comment Problems with ‘Heap Buffer’ Error in C
Please edit to format your code: Click the 1010 link and indent each code line 4 spaces - more to show indenting within the code.
Oct
8
comment Caesar’s Cipher using python, could use a little help.
@Josh: In Python, you can build a new string similar to using formatting characters in prints, e.g.: new_str = "String part: %s, Int part: %d" % (some_string, some_int) If you need to put it in a loop, first initialize the string to '' and then use += to add to it within the loop.
Oct
8
comment Is there anyway to persuade python’s getopt to handle optional paramters to options?
@stsquad: Yes, I noted that in the (edited) answer. My point was that you may want to consider optparse instead of get_opt if you're going to do this.
Oct
8
comment How can I use a switch() statement to convert from a numeric to a letter grade?
While it's artificial, the constraint on the question is to use a switch and no if's.
Oct
7
revised python: how to show results on a web page?
corrected typos
Oct
7
answered python: how to show results on a web page?
Oct
7
comment Is there anyway to persuade python’s getopt to handle optional paramters to options?
@SilentGhost: In my reading of Pynt's answer, I see nothing recommending optparse over get_opt, which is what I was getting at. Admittedly, I didn't explain that well originally, but have edited to do so.
Oct
7
revised Is there anyway to persuade python’s getopt to handle optional paramters to options?
Expanded on explanation in reply to comments
Oct
7
answered Is there anyway to persuade python’s getopt to handle optional paramters to options?
Oct
2
comment What are some techniques you use to remain active during the day while programming?
As noted in my comment to Blaenk, Steelcase sells a "walkstation": steelcase.com/na/files/…
Oct
2
comment What are some techniques you use to remain active during the day while programming?
You may laugh, and okay, maybe deep thought coding would be difficult, but for simple stuff there's this: steelcase.com/na/files/…
Sep
30
comment Programmatically determine maximum command line length with Python
Now why couldn't I find that? Thanks! Alas, it doesn't work on my Windows system, but that may be okay. However, I expect I'll need to make it work on a Mac, even though I don't have access to one. Do you know if sysconf is available on OS X?
Sep
30
asked Programmatically determine maximum command line length with Python
Sep
30
answered Getting started with a personal wiki and moinmoin
Sep
30
comment Should Software Engineers take the PE Exam?
If you're looking for a software engineering certification, you might want to consider the IEEE Computer Society's CSDP: www2.computer.org/portal/web/certification However, I doubt that this meets Canada's requirements for a PE.
Sep
28
accepted Python Git Module experiences?
Sep
26
comment How to Check for Certain Characters in C
Is this homework?
Sep
25
answered Python Git Module experiences?
Sep
25
comment Secrets for burning the midnight oil
Somebody had to do it!
Sep
25
answered Secrets for burning the midnight oil
Sep
25
answered A free and relatively simple IDE for Windows XP/Vista/7?
Sep
25
comment What do you recommend for web development frameworks?
According to the FAQ, you have to have at least 50 reputation to comment. Then "add comment" will magically appear under answers and I expect the rest should be pretty straightforward. On topic - not that I've used either - but from my quick looks at them, web2py seems more lightweight than django. I've not looked at RoR, since I've not learned Ruby (yet).
Sep
23
comment What’s the most egregious pop culture perversion of programming?
Backup tapes? What backup tapes? True at some places I've worked at. Also, even if there are backups, are they readable? One place I worked at did backups religiously, but never actually tested the tapes. So, maybe this isn't so far fetched ...
Sep
23
comment Programming-psychology: When, why and how long are your totaly unmotivated-phases?
Side projects can cut both ways: Working too much (or too late into the evening) can leave me unmotivated (or just too tired) to program on the job. OTOH, last week I was pretty unmotivated at the job, but worked on some personal stuff over the weekend. This got me going again, and I have been much more motivated on the job this week.
Sep
23
answered How do I get this program to start over in python?
Sep
23
comment How do I get this program to start over in python?
@freiksenet: Most things are more efficient - in terms of execution time - with loops rather than recursion, since you don't have the overhead of repeatedly calling the function. Some things are just easier for us humans to understand when done recursively.
Sep
21
asked Python Git Module experiences?
Sep
18
comment How much can you infer about the programmers at a company based on the test/interview?
Regarding testing: Computer Adaptive Testing checks the test takers answers as they go along, and follows up with harder questions when correct answers are given and easier ones when wrong answers are given. It would be more difficult to set up for a single job opening, but then again it might be fun to code it!
Sep
18
comment How much can you infer about the programmers at a company based on the test/interview?
While I realize lots (most?) of PHP involves MySQL work, the only significant web app I've done with PHP didn't involve any sort of SQL database; they're two separate things, and whether you know one when you know the other depends on your problem domain. In my case, I'd say I have PHP experience, but not MySQL. IMO, it's fine to be told that my experience doesn't match your needs, but I despise being told I am claiming to have experience I don't (i.e. I'm lying) when I really do have that experience.
Sep
18
answered Most unreasonable development assignment
Sep
18
answered Why is open source software banned in some shops?