User PTBNL - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T17:20:42Zhttp://stackoverflow.com/feeds/user/42971http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/6361/interview-programming-questions-in-house-exam/1689474#16894740Answer by PTBNL for Interview Programming Questions - In house ExamPTBNL2009-11-06T18:39:15Z2009-11-06T18:39:15Z<p>There has only been one time (thus far) that I've been given a written test prior to getting a job. It's been many years now, so it's more than a little fuzzy what the questions were. This was for a C job, and my recollection is that the questions were similar to what you might find on a comprehensive final for an intro to C college level course (or maybe a BrainBench test, but this predated the web), multiple guess, true & false, fill in the blank, tell what a code snippet does, etc. I'd been doing C for a couple years, so it really wasn't too difficult for me at the time (might be now, since I've not seriously written C in over a decade). It seems they were burned by a previous employee who claimed to be a C expert and then turned out to not even know how to open a file. I passed and got the job.</p>
<p>YMMV, of course.</p>
http://stackoverflow.com/questions/1689271/mathematical-programming-languages/1689377#16893770Answer by PTBNL for Mathematical Programming LanguagesPTBNL2009-11-06T18:20:28Z2009-11-06T18:20:28Z<p><a href="http://www.ittvis.com/ProductServices/IDL.aspx" rel="nofollow">Interactive Data Language (IDL)</a> is a proprietary language used in astronomy, medicine and other sciences at least in part because of its built-in array operations and mathematical library.</p>
http://stackoverflow.com/questions/1603648/how-to-convince-a-client-that-all-next-projects-enhancements-should-be-done-via-t/1603832#16038320Answer by PTBNL for How to convince a client that all next projects/enhancements should be done via TDD (with some agile practices)?PTBNL2009-10-21T21:41:47Z2009-10-21T21:41:47Z<p>Firstly, unit testing isn't unique to Agile methodologies; I've been around a while and have seen it used on waterfall projects. In fact, I heard of unit testing long before I heard of Agile!</p>
<p>Afraid I can't point you to any videos that will help convince a client to switch development methodologies. Google may help though; if not with videos, then maybe with studies, blogs, etc.</p>
<p>Anyway, one suggestion for improving the chances that the client will accept your reduced productivity during your learning curve is to reduce his costs somehow. E.g. if you're billing by the hour either charge less by the hour for time spent learning, or just don't bill for those learning hours.</p>
http://stackoverflow.com/questions/1566936/easy-pretty-printing-of-floats-in-python/1566998#1566998-1Answer by PTBNL for Easy pretty printing of floats in python?PTBNL2009-10-14T15:16:18Z2009-10-14T15:16:18Z<p>I agree with SilentGhost's comment, the for loop isn't that bad. You can achieve what you want with:</p>
<pre><code>l = [9.0, 0.052999999999999999, 0.032575399999999997, 0.010892799999999999, 0.055702500000000002, 0.079330300000000006]
for x in l: print "%0.2f" % (x)
</code></pre>
http://stackoverflow.com/questions/718582/whats-the-funniest-user-request-youve-ever-had/1546215#15462154Answer by PTBNL for What's the funniest user request you've ever had?PTBNL2009-10-09T21:45:31Z2009-10-09T21:45:31Z<p>The following happened multiple times with the same person ...</p>
<p>Data Entry Operator (at remote site): Can you fix my terminal? It won't turn on.</p>
<p>ME: Last time you called with this problem it was unplugged, can you please check that?</p>
<p>Data Entry Operator: It's plugged in!</p>
<p>So I drive to the remote site and what do I find? An unplugged terminal, of course! I plugged it in, and it worked just fine.</p>
http://stackoverflow.com/questions/1545831/how-to-browse-web-site-with-script-to-get-informations/1545981#15459810Answer by PTBNL for how to browse web site with script to get informations...PTBNL2009-10-09T20:48:36Z2009-10-09T21:03:54Z<p>I've no knowledge of pre-built general purpose scrapers, but you may be able to find one via Google.</p>
<p>Writing a web scraper is definitely doable. In my very limited experience (I've written only a couple), I did not need to deal with login/security issues, but in Googling around I saw some examples that dealt with them - afraid I don't remember URL's for those pages. I did need to know some specifics about the pages I was scraping; having that made it easier to write the scraper, but, of course, the scrapers were limited to use on those pages. However, if you're just grabbing the entire page, you may only need the URL(s) of the page(s) in question.</p>
<p>Without knowing what language(s) would be acceptable to you, it is difficult to help much more. FWIW, I've done scrapers in PHP and Python. As Ben G. said, PHP has cURL to help with this; maybe there are more, but I don't know PHP very well. Python has several modules you might choose from, including <a href="http://codespeak.net/lxml/" rel="nofollow">lxml</a>, <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">BeautifulSoup</a>, and <a href="http://docs.python.org/library/htmlparser.html" rel="nofollow">HTMLParser</a>.</p>
<p>Edit: If you're on Unix/Linux (or, I presume, CygWin) You may be able to achieve what you want with <a href="http://www.gnu.org/software/wget/" rel="nofollow">wget</a>.</p>
http://stackoverflow.com/questions/1545343/is-reading-too-many-management-books-too-early-for-me/1545408#15454088Answer by PTBNL for Is reading too many management books too early for me?PTBNL2009-10-09T18:37:14Z2009-10-09T18:37:14Z<p>To me, there's no reason to think it's "too early".</p>
<ul>
<li>If you want to go into management, then I don't think it hurts to be reading these books now.</li>
<li>If you just want to understand management - at least an idealized management - then reading these books should help with that. If, as you say, your management is bad, then these readings may help you to "manage up" (of course, you have to do this carefully, so that may lead to more reading! :).</li>
<li>If you just enjoy reading them, then just enjoy! :)</li>
</ul>
<p>To me, the biggest risk is that you could become (further) disenchanted with your workplace by reading some of the books which describe an idealized environment. E.g. if you read something like <a href="http://rads.stackoverflow.com/amzn/click/0932633439" rel="nofollow">Peopleware</a>, you may get disappointed in your current workplace. Just keep in mind that books like this describe an ideal, and IIRC even in Peopleware, the authors say that just implementing one of their ideas would be a big success and should lead to improvement. However, you can mentally guard against that ... and it sounds like you're already somewhat disenchanted anyway.</p>
http://stackoverflow.com/questions/1534070/python-how-to-show-results-on-a-web-page/1534138#15341380Answer by PTBNL for python: how to show results on a web page?PTBNL2009-10-07T20:55:58Z2009-10-07T21:35:48Z<p>I've not read DIVE INTO PYTHON, so maybe what I'm saying is redundant. As Daniel said, CGI may work for you. These days this would only the case for simple stuff with a fairly low number of hits. The Python CGI module is documented <a href="http://docs.python.org/library/cgi.html" rel="nofollow">here</a>. I have always used that module for form processing and just done prints for the output. As best as I've been able to figure out, that's the usual way of doing things, but I have not done a lot of CGI with Python.</p>
<p>You don't say what you're doing, so I'll state what may be obvious: Make sure you're telling the server that you're outputting a web page with your very first output being the content type followed by a blank line. Typically this is done with:</p>
<pre><code>print "Content-Type: text/html"
print
</code></pre>
<p>(For Python 2, for 3 you'll need to make your prints into function calls.) After this, you print your html, header, body, etc. tags and the actual content.</p>
http://stackoverflow.com/questions/1532737/is-there-anyway-to-persuade-pythons-getopt-to-handle-optional-paramters-to-optio/1533040#15330400Answer by PTBNL for Is there anyway to persuade python's getopt to handle optional paramters to options?PTBNL2009-10-07T17:25:16Z2009-10-07T18:49:45Z<p>If you're using version 2.3 or later, you may want to try the <a href="http://docs.python.org/library/optparse.html" rel="nofollow">optparse</a> module instead, as it is "more convenient, flexible, and powerful ...", as well as newer. Alas, as Pynt answered, it doesn't seem possible to get exactly what you want.</p>
http://stackoverflow.com/questions/1500542/programmatically-determine-maximum-command-line-length-with-python0Programmatically determine maximum command line length with PythonPTBNL2009-09-30T20:41:50Z2009-09-30T21:02:42Z
<p>Does anyone know a portable way for Python to determine a system's maximum command line length? The program I'm working on builds a command and feeds it to subprocess. For systems with smaller command line length maximums, it is possible that the command will be too long. If I can detect that, the command can be broken up to avoid exceeding the maximum length, but I've not found a (portable) way to determine the maximum.</p>
http://stackoverflow.com/questions/1500367/getting-started-with-a-personal-wiki-and-moinmoin/1500401#15004011Answer by PTBNL for Getting started with a personal wiki and moinmoinPTBNL2009-09-30T20:14:07Z2009-09-30T20:14:07Z<p>I've not used it yet, but <a href="http://tiddlywiki.com/" rel="nofollow">TiddlyWiki</a> is all in JavaScript, so there's not really an install, other than downloading it. The <a href="http://tiddlywiki.org/wiki/Main%5FPage" rel="nofollow">documentation</a> looks pretty good at first glance.</p>
http://stackoverflow.com/questions/1456269/python-git-module-experiences7Python Git Module experiences?PTBNL2009-09-21T19:10:10Z2009-09-25T21:26:53Z
<p>What are people's experiences with any of the Git modules for Python? (I know of GitPython, PyGit, and Dulwich - feel free to mention others if you know of them.) I am writing a program which will have to interact (add, delete, commit) with a Git repository, but have no experience with Git, so one of the things I'm looking for is ease of use/understanding wrt Git. The other things I'm primarily interested in are maturity and completeness of the library, a reasonable lack of bugs, continued development, and helpfulness of the documentation and developers. If you think of something else I might want/need to know, please feel free to mention it.</p>
http://stackoverflow.com/questions/1456269/python-git-module-experiences/1479669#14796692Answer by PTBNL for Python Git Module experiences?PTBNL2009-09-25T21:26:53Z2009-09-25T21:26:53Z<p>I thought I would answer my own question, since I'm taking a different path than suggested in the answers. Nonetheless, thanks to those who answered.</p>
<p>First, a brief synopsis of my experiences with GitPython, PyGit, and Dulwich:</p>
<ul>
<li>GitPython: After downloading, I got this imported and the appropriate object initialized. However, trying to do what was suggested in the tutorial led to errors. Lacking more documentation, I turned elsewhere.</li>
<li>PyGit: This would not even import, and I could find no documentation.</li>
<li>Dulwich: Seems to be the most promising (at least for what I wanted and saw). I made some progress with it, more than with GitPython, since its egg comes with Python source. However, after a while, I decided it may just be easier to try what I did.</li>
</ul>
<p>Also, StGit looks interesting, but I would need the functionality extracted into a separate module and do not want wait for that to happen right now.</p>
<p>In (much) less time than I spent trying to get the three modules above working, I managed to get git commands working via the subprocess module, e.g.</p>
<pre><code>def gitAdd(fileName, repoDir):
cmd = 'git add ' + fileName
pipe = subprocess.Popen(cmd, shell=True, cwd=repoDir)
pipe.wait()
return
gitAdd('exampleFile.txt', '/usr/local/example_git_repo_dir')
</code></pre>
<p>This isn't fully incorporated into my program yet, but I'm not anticipating a problem, except maybe speed (since I'll be processing hundreds or even thousands of files at times).</p>
<p>Maybe I just didn't have the patience to get things going with Dulwich or GitPython. That said, I'm hopeful the modules will get more development and be more useful soon.</p>
http://stackoverflow.com/questions/238610/secrets-for-burning-the-midnight-oil/1479427#14794271Answer by PTBNL for Secrets for burning the midnight oilPTBNL2009-09-25T20:26:09Z2009-09-25T20:26:09Z<p>According to the book <strong><a href="http://www.brainrules.net/" rel="nofollow">Brain Rules</a></strong> a nap of 30 - 45 minutes will increase your productivity for 5 or 6 hours. Of course, the author is suggesting you do this as a normal part of your afternoon and get 6 to 8 hours sleep at night! However, maybe it would help.</p>
http://stackoverflow.com/questions/1478299/a-free-and-relatively-simple-ide-for-windows-xp-vista-7/1478582#14785821Answer by PTBNL for A free and relatively simple IDE for Windows XP/Vista/7?PTBNL2009-09-25T17:23:30Z2009-09-25T17:23:30Z<p><a href="http://www.scintilla.org/" rel="nofollow">Scintilla</a> provides a simple IDE with <a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a>. I've only used it for dynamic languages, but it has compile and build options - which you may have to configure. I don't see an FTP option, but maybe you can add it.</p>
http://stackoverflow.com/questions/1463710/how-do-i-get-this-program-to-start-over-in-python/1463803#14638030Answer by PTBNL for How do I get this program to start over in python?PTBNL2009-09-23T03:22:47Z2009-09-23T03:22:47Z<p>I agree 100% with those who said this isn't a good case for recursion, but calls for a loop instead. However, for the sake of showing how it might be done, I post the code below:</p>
<pre><code>import random
def do_mult(num_questions):
x = random.randint(0, 10)
y = random.randint(0, 10)
a = x * y
z = int(raw_input('%i * %i = ?' % (x, y)))
if z == a:
print 'good job!'
else:
print 'sorry!'
if num_questions > 1:
do_mult(num_questions - 1)
do_mult(10)
</code></pre>
http://stackoverflow.com/questions/1351860/most-unreasonable-development-assignment/1446007#14460070Answer by PTBNL for Most unreasonable development assignmentPTBNL2009-09-18T17:56:27Z2009-09-18T17:56:27Z<p>Back in the early 1990's, I was assigned the task of debugging a piece of undocumented and poorly written real-time communications software written in C++ and running on DOS. (Yeah, I know, you couldn't really do real-time on DOS, but you could sort of fake it.) I'd already been working there a while, and my employer knew my skills, which did not include any C++ (beyond C, which I did know), or real-time development, and I didn't know DOS or communications software all that well. I was supposed to learn all this without any training or materials supplied by my employer. Oh, and there was no one else around who had any knowledge of the code. I didn't get it done (and later I heard no one else did either), and I was working elsewhere shortly thereafter.</p>
http://stackoverflow.com/questions/1444669/why-is-open-source-software-banned-in-some-shops/1445403#14454031Answer by PTBNL for Why is open source software banned in some shops?PTBNL2009-09-18T15:48:55Z2009-09-18T15:48:55Z<p>In my current place of employment, we use a lot of open source tools. In fact, outside of desktop operating systems (Windows or OSX), and Office apps, almost everything I use is open source.</p>
<p>I hate to say it, and was never 100% sure, but in a previous job - where the main organization was buying thousands of copies of some pieces of software - I (and others) had the suspicion that the selection of what software was to be used was influenced by the stock portfolios of those making the selections. Granted, the usual choice was software which had the widest use for its purpose, but there were some cases where the choices were curious. Anyway, to address the point, historically it seems that most FOSS software comes from sources which don't sell stock, so such software wouldn't be considered in places where stock portfolios are influencing the decision makers.</p>
http://stackoverflow.com/questions/1441100/need-better-way-to-format-a-phone-number-in-c/1441381#14413812Answer by PTBNL for Need better way to format a phone number in C.PTBNL2009-09-17T21:13:01Z2009-09-17T21:26:44Z<p>As Pavel said, you can't strcpy a string onto itself. I'm declaring a new variable for clarity, although my approach doesn't use strcpy - with care, you could re-use the original variable. Anyway, if your input is always of the form (xxx) xxx-xxxx xxxx, and your output is always going to be xxx-xxx-xxxx why not just do:</p>
<pre><code>char newPhone[14];
newPhone[0] = phoneNum[1];
newPhone[1] = phoneNum[2];
newPhone[2] = phoneNum[3];
newPhone[3] = '-';
newPhone[4] = phoneNum[6];
newPhone[5] = phoneNum[7];
newPhone[6] = phoneNum[8];
newPhone[7] = '-';
newPhone[8] = phoneNum[10];
newPhone[9] = phoneNum[11];
newPhone[10] = phoneNum[12];
newPhone[11] = phoneNum[13];
newPhone[12] = '\0';
</code></pre>
<p>Brute force? Sure, but - if your inputs and outputs are always going to be as you state - it should run efficiently.</p>
http://stackoverflow.com/questions/1438806/top-three-most-important-skills-companies-tend-to-ignore/1438993#14389930Answer by PTBNL for Top three most important skills companies tend to ignore?PTBNL2009-09-17T13:48:00Z2009-09-17T13:48:00Z<p>In my experience:</p>
<ol>
<li>Writing code maintainable by a programmer other than themselves.</li>
<li>Communication skills.</li>
<li>General software development ability (vs. the specialized skill(s) for the immediate need).</li>
</ol>
http://stackoverflow.com/questions/1436411/long-index-arrays-in-python/1436450#14364500Answer by PTBNL for long-index arrays in pythonPTBNL2009-09-17T02:34:33Z2009-09-17T02:34:33Z<p>From googling around some , e.g. <a href="http://www.python.org/doc/2.5/whatsnew/pep-353.html" rel="nofollow">PEP 353</a> (assuming I'm understanding it) and <a href="http://mail.python.org/pipermail/python-list/2006-January/532801.html" rel="nofollow">this exchange</a> it looks like the real issue is probably platform/system dependent. Do you have enough memory to handle 10,000,000,000 entries?</p>
http://stackoverflow.com/questions/1343471/bash-error-message-does-not-get-redirected-to-file/1343549#1343549-1Answer by PTBNL for BASH: error message does not get redirected to filePTBNL2009-08-27T20:21:07Z2009-08-28T01:39:17Z<p>It looks like you have an extra '>' in your stderr redirection. Try:</p>
<pre><code>command 1> datafile 2> errorfile
</code></pre>
<p>Edit: As was pointed out in the comments, 2>> redirects stderr, appending to the file, whereas 2> overwrites the file.</p>
<p>I'm keeping this answer in place for reference purposes.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337537#13375370Answer by PTBNL for What is the worst class/variable/function name you have ever encounteredPTBNL2009-08-26T21:16:15Z2009-08-26T21:16:15Z<p>Full disclosure: Something I did in my first couple programming classes while learning Pascal:</p>
<pre><code>done := False;
repeat
{ do stuff }
if end_condition_met then done := True;
until done;
</code></pre>
<p>This might be useful if there are several ways to get out of the loop, but I did this even when there was only one end condition. Fortunately, I outgrew that after a while.</p>
<p>Alas, in trying to remember enough Pascal to make this look right, I just found an online example doing the same thing. :-(</p>
http://stackoverflow.com/questions/1324457/is-it-worthwhile-to-go-back-and-complete-a-cs-degree-after-programming-profession/1324593#13245930Answer by PTBNL for Is it worthwhile to go back and complete a CS degree after programming professionally for several years?PTBNL2009-08-24T20:34:10Z2009-08-24T20:34:10Z<p>As stated elsewhere, this is ultimately up to you. Are you being denied opportunities or promotions due to the lack of a diploma? Is this as important to you as the time away from your kids or doing side jobs?</p>
<p>For those saying it doesn't matter in getting a job, just today my employer sent out vacancy announcements for two software development jobs with this requirement:</p>
<blockquote>
<p>• Bachelors Degree in Computer Science or related field preferred</p>
</blockquote>
<p>FWIW, this is for a government contract where the government may have set the requirements. And I'm not advocating this, as the best programmer I know doesn't have a degree.</p>
http://stackoverflow.com/questions/1300544/what-ways-are-there-to-validate-php-code/1300646#13006464Answer by PTBNL for What ways are there to validate PHP code?PTBNL2009-08-19T15:20:19Z2009-08-19T15:20:19Z<p>I'm not 100% sure what you're wanting, but you may want to review the answers to <a href="http://stackoverflow.com/questions/378959/is-there-a-static-code-analyzer-like-lint-for-php-files">this question</a> ... and, of course, you know about using -l (el) option from the command line to check syntax, right?</p>
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/1247955#12479553Answer by PTBNL for What is the one programming skill you have always wanted to master but haven't had time?PTBNL2009-08-08T04:15:48Z2009-08-08T04:15:48Z<p>Real-time programming</p>
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/1247949#12479490Answer by PTBNL for What is the one programming skill you have always wanted to master but haven't had time?PTBNL2009-08-08T04:11:08Z2009-08-08T04:11:08Z<p>Mathematical Modeling</p>
http://stackoverflow.com/questions/1236940/respecting-fellow-developers/1247833#12478330Answer by PTBNL for Respecting Fellow DevelopersPTBNL2009-08-08T02:58:10Z2009-08-08T02:58:10Z<p>Perhaps not completely on topic, but .... If you have developers who have the time to make changes to code just because they don't like the variable names used, then maybe the conversation should be about whether you have too many developers and which ones should be shown the door ... or how you're going to justify to management the bloated staff you have, especially in the current economic circumstances!</p>
http://stackoverflow.com/questions/1244944/is-the-mythical-man-month-communication-paths-truly-n2/1245097#12450970Answer by PTBNL for Is the Mythical Man Month communication paths truly n^2 ?PTBNL2009-08-07T14:37:08Z2009-08-07T14:37:08Z<p>I didn't remember exactly what the book says, so pulled my copy off the shelf. You may be happy to learn that in chapter 2 - which is also the essay which gave the book its name - Brooks actually does says that the number of communications paths is n(n - 1)/2, matching what you said. So, as others have said, I suspect that the n^2 "quote" is just a simplification along the lines of O(n) notation.</p>
http://stackoverflow.com/questions/1175897/how-to-compile-fortran-77-files-in-linux/1182149#11821490Answer by PTBNL for How to compile Fortran 77 files in linux?PTBNL2009-07-25T14:10:07Z2009-07-25T14:10:07Z<p>In my experience, Red Hat distributions (and those based on it) have gfortran included, but it is an option when you do the installation, so it seems probable that your system was set up without gfortran. If you have installation media, I think you should be able to install gfortran from there.</p>
<p>Otherwise, to get the proper gfortran RPM for your system, I suggest the <a href="http://www.rpmfind.net/linux/rpm2html/search.php?query=gcc-gfortran" rel="nofollow">related rpmfind page</a>.</p>
<p>Once you get gfortran installed, I think the "-std=legacy" (quotes mine) should allow an F77 compile to work.</p>
http://stackoverflow.com/questions/523222/coding-priorities-performance-maintainability-reusability/523281#523281Comment by PTBNL on Coding Priorities: Performance, Maintainability, Reusability?PTBNL2009-12-16T21:05:46Z2009-12-16T21:05:46Z@GuinnessFan, A lot of stuff does utilize the data from those spacecraft which were launched on those rockets, but the processing is done on the ground after the spacecraft have transmitted it to Earth. At that point, good performance is nice, but often not critical.http://stackoverflow.com/questions/1729887/little-math-help-for-image-resize-needed/1729926#1729926Comment by PTBNL on Little Math-help for image resize neededPTBNL2009-11-13T16:03:01Z2009-11-13T16:03:01Z@unwind: Sorry, I mis-read your answer the first time; indeed you do set the height to 60.http://stackoverflow.com/questions/1729887/little-math-help-for-image-resize-needed/1729926#1729926Comment by PTBNL on Little Math-help for image resize neededPTBNL2009-11-13T15:41:16Z2009-11-13T15:41:16ZGiven 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".http://stackoverflow.com/questions/1721071/hi-i-am-new-in-the-field-of-programming/1721179#1721179Comment by PTBNL on Hi! I am new in the Field of Programming?PTBNL2009-11-12T15:12:54Z2009-11-12T15:12:54ZIf 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!http://stackoverflow.com/questions/1643254/submitting-a-form-using-php/1643270#1643270Comment by PTBNL on Submitting a form using PHPPTBNL2009-10-29T13:21:24Z2009-10-29T13:21:24ZAny 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.
http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/238285#238285Comment by PTBNL on The funniest/weirdest error message you've got from a development environment/applicationPTBNL2009-10-27T15:33:54Z2009-10-27T15:33:54ZI even got the "Internet Explorer Cannot Display the Webpage" from FireFox! How'd that happen?! ;-> LOL! http://stackoverflow.com/questions/1615501/python-dictionary-creation-errorComment by PTBNL on Python dictionary creation errorPTBNL2009-10-23T19:59:32Z2009-10-23T19:59:32ZThe 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.http://stackoverflow.com/questions/1597211/whats-the-most-evil-way-of-subverting-a-language-that-youve-seen/1597257#1597257Comment by PTBNL on What's the most evil way of subverting a language that you've seen?PTBNL2009-10-21T01:22:39Z2009-10-21T01:22:39ZBack in the day (when I knew Pascal and was learning C, i.e. the late 1980's), I heard from several different sources that one could get a Pascal program to compile with a C compiler and the right set of #defines, so this isn't so new to me. While I never actually tried it, I believed it could be done without too much difficulty.http://stackoverflow.com/questions/1545343/is-reading-too-many-management-books-too-early-for-me/1545615#1545615Comment by PTBNL on Is reading too many management books too early for me?PTBNL2009-10-09T20:14:41Z2009-10-09T20:14:41Z"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 ...http://stackoverflow.com/questions/1545343/is-reading-too-many-management-books-too-early-for-me/1545389#1545389Comment by PTBNL on Is reading too many management books too early for me?PTBNL2009-10-09T18:41:53Z2009-10-09T18:41:53ZAs 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.http://stackoverflow.com/questions/1543722/problems-with-heap-buffer-error-in-cComment by PTBNL on Problems with 'Heap Buffer' Error in CPTBNL2009-10-09T13:26:36Z2009-10-09T13:26:36ZPlease edit to format your code: Click the 1010 link and indent each code line 4 spaces - more to show indenting within the code.http://stackoverflow.com/questions/1538935/caesars-cipher-using-python-could-use-a-little-help/1539046#1539046Comment by PTBNL on Caesar's Cipher using python, could use a little help.PTBNL2009-10-08T17:44:14Z2009-10-08T17:44:14Z@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.http://stackoverflow.com/questions/1532737/is-there-anyway-to-persuade-pythons-getopt-to-handle-optional-paramters-to-optio/1533040#1533040Comment by PTBNL on Is there anyway to persuade python's getopt to handle optional paramters to options?PTBNL2009-10-08T13:40:14Z2009-10-08T13:40:14Z@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.http://stackoverflow.com/questions/1535076/how-can-i-use-a-switch-statement-to-convert-from-a-numeric-to-a-letter-grade/1535206#1535206Comment by PTBNL on How can I use a switch() statement to convert from a numeric to a letter grade?PTBNL2009-10-08T02:14:00Z2009-10-08T02:14:00ZWhile it's artificial, the constraint on the question is to use a switch and no if's.http://stackoverflow.com/questions/1532737/is-there-anyway-to-persuade-pythons-getopt-to-handle-optional-paramters-to-optio/1533040#1533040Comment by PTBNL on Is there anyway to persuade python's getopt to handle optional paramters to options?PTBNL2009-10-07T18:55:48Z2009-10-07T18:55:48Z@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.