User Jason Etheridge - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T05:27:00Zhttp://stackoverflow.com/feeds/user/2193http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/166044/sleeping-in-a-dos-batch-file13Sleeping in a DOS batch fileJason Etheridge2008-10-03T09:10:29Z2009-11-28T02:00:40Z
<p>When writing a batch file to automate something on a Windows box, I've needed to pause its execution for several seconds (usually in a test/wait loop, waiting for a process to start). At the time, the best solution I could find uses ping (I kid you not) to achieve the desired effect. I've found a better write-up of it <a href="http://malektips.com/dos0017.html" rel="nofollow">here</a>, which describes a callable "wait.bat", implemented as follows:</p>
<pre><code>@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
</code></pre>
<p>You can then include calls to wait.bat in your own batch file, passing in the number of seconds to sleep.</p>
<p><a href="http://malektips.com/xp_dos_0002.html" rel="nofollow">Apparently</a> the Windows 2003 Resource Kit provides a Unix-like sleep command (at last!). In the meantime, for those of us still using XP, 2K or (sadly) NT, is there a better way?</p>
<p><strong>Update</strong></p>
<p>I've accepted <a href="http://stackoverflow.com/users/6899/">ΤΖΩΤΖΙΟΥ</a>'s <a href="http://stackoverflow.com/questions/166044/sleeping-in-a-dos-batch-file#166290">answer</a>, as its the most lightweight and portable solution (the fact that Python is my language of choice may have influenced this decision :-). Many thanks to everyone who responded.</p>
<p>I modified his suggested sleep.py script, so that it defaults to 1 second if no arguments are passed on the command line:</p>
<pre><code>import time, sys
time.sleep(float(sys.argv[1]) if len(sys.argv) > 1 else 1)
</code></pre>
http://stackoverflow.com/questions/214357/how-to-make-a-living-by-programming-from-home28How to make a living by programming from homeJason Etheridge2008-10-18T01:33:01Z2009-10-26T13:59:36Z
<p>I've been working full-time as a programmer for 16 years across three different companies. While that has been fun (and not so fun), I'm at a point where I'd like to abandon the daily commute and corporate life, and instead try to make a living working from home. The model I've got in mind is taking on projects for companies located anywhere on the planet (given I live in Brisbane, Australia, the opportunities for remote employment locally aren't so good). The employers would have to be happy with never meeting me in person.</p>
<p>There's the obvious parallel with contributing to open source projects, though I'm specifically looking for paying jobs; this would become my primary source of income, rather than a volunteer effort.</p>
<p>I'm assuming that if it's not someone who already knows me, I'd have to have a way of demonstrating to a potential employer that I can actually code. For example, verifiable contributions to open source; one or more reference sites or projects; anything that can show what I can do.</p>
<p>I've come across several people in recent times who do this successfully, but in all cases the work obtained was through prior relationships. Is that the only way it can work?</p>
<p>Is using a "payment on delivery" model wise? That is, take on a project, on the understanding that I don't get paid until I'm done. I can see the potential for exploitation, though that could be avoided if the employer was reputable. At least at the beginning, this <em>seems</em> like a way of building trust with an employer.</p>
<p>Are there any trustworthy employers who support this style of working? <a href="http://www.canonical.com/" rel="nofollow">Canonical</a> comes to mind, though I get the impression they're fairly unique in that regard.</p>
<p>Am I kidding myself that this is even viable? Is it too non-traditional for the vast majority of companies that need code written?</p>
http://stackoverflow.com/questions/186044/is-it-considered-bad-practice-to-use-absolute-positioning9Is it considered bad practice to use absolute positioning?Jason Etheridge2008-10-09T05:48:35Z2009-03-04T19:49:33Z
<p>I was developing a web page, where I was laying out a board for a Chess-like game, along with a couple of piece trays. It's all done using HTML (with jQuery for dynamic updating as the game is played). Somewhere I'd got the notion that using absolute positioning of elements within a page was considered a bad practice, and that it was preferable to use relative positioning.</p>
<p>After struggling with relative positioning for too long, I realized that absolute positioning of the board elements would be much, much easier to get right... and it was.</p>
<p>Is anyone aware of a reason that relative positioning is preferable over relative? Are there any guidelines or rules of thumb that you apply when deciding which approach to take?</p>
http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/214522#2145222Answer by Jason Etheridge for What surprised you the most about the software industry?Jason Etheridge2008-10-18T03:51:03Z2008-10-18T03:51:03Z<p>I remember quite clearly (from 1993!) that what surprised me the most was that all these professional-looking people were taking the creation of software seriously. While I was at Uni, it all seemed like play; now, in the real world, the code I'd write would be part of something that people were paying money for.</p>
http://stackoverflow.com/questions/214321/what-c-features-do-you-avoid/214414#2144148Answer by Jason Etheridge for What C++ features do you avoid?Jason Etheridge2008-10-18T02:15:12Z2008-10-18T02:15:12Z<p>STL algorithms and function objects. While they're a cool idea, and certainly work effectively, it almost always seems to work out that I can do the same thing with a loop with much less code.</p>
http://stackoverflow.com/questions/194760/what-requirements-refining-techniques-have-worked-best-for-you/194778#1947781Answer by Jason Etheridge for What requirements refining techniques have worked best for you?Jason Etheridge2008-10-11T23:00:45Z2008-10-11T23:00:45Z<p>What I've learned from a requirement-heavy defense project is that trying to pin down the system's requirements into a concise set of "shall" statements is effectively impossible, if those requirements are meant to stand alone.</p>
<p>What does work is to provide the facility to have elaboration for those requirements easily added. This could be additional explanatory text, test procedures, diagrams, models; anything that makes things clearer, to help capture what's intended. It's essential that both the system provider and the stakeholders agree that this elaboration has equal weight to the "shall" statements themselves.</p>
<p>We've used use cases as one way of capturing the behavioural aspect of the system, though more as part of the system design than the requirements. In retrospect, use cases could have helped defined the system, though the danger there is that they get to prescriptive (more "how" than "what").</p>
http://stackoverflow.com/questions/194464/have-you-ever-crashed-the-compiler/194476#1944760Answer by Jason Etheridge for Have you ever crashed the compiler?Jason Etheridge2008-10-11T19:25:18Z2008-10-11T19:25:18Z<p>VC++ has crashed on me when compiling C++ if template usage is messed up (e.g., missing out on a closing ">").</p>
http://stackoverflow.com/questions/193715/atoi-conversion-error/193717#1937173Answer by Jason Etheridge for atoi() conversion errorJason Etheridge2008-10-11T05:50:13Z2008-10-11T07:41:43Z<p>You'll have to create a string:</p>
<pre><code>int pid = atoi(std::string(1, token.at(0)).c_str());
</code></pre>
<p>... assuming that token is a std::vector of char, and using std::string's constructor that accepts a single character (and the number of that character that the string will contain, one in this case).</p>
http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/192840#19284010Answer by Jason Etheridge for What is your favorite "programmer" t-shirt?Jason Etheridge2008-10-10T19:58:15Z2008-10-10T19:58:15Z<p>The "code monkey" shirt from <a href="http://www.thinkgeek.com/tshirts/itdepartment/3817/" rel="nofollow">ThinkGeek</a>, which I wear to work on a regular basis...</p>
<p><img src="http://www.thinkgeek.com/images/products/zoom/code-monkey.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/192689/the-art-of-programming/192731#1927313Answer by Jason Etheridge for The art of programmingJason Etheridge2008-10-10T19:24:24Z2008-10-10T19:24:24Z<p>From my experience, programmers love making things, for themselves and other people. They enjoy solving problems, and find an intellectual challenge hard to resist.</p>
<p>I'd suggest that programmers are more like craftsman, which I suppose you could say is where art meets engineering, but it's mostly about making cool things.</p>
<p>As far as benefiting, what we do is usually reward enough; the passion for our craft is usually what drives us. To enhance that, the freedom to practice our craft as we see fit, to learn and improve at our own pace and in our own way, would be ideal... not often possible in typical corporate environments.</p>
http://stackoverflow.com/questions/190243/how-to-acquire-specific-revision-of-a-newly-added-file-from-cvs-via-command-line/190301#1903011Answer by Jason Etheridge for How to acquire specific revision of a newly added file from CVS via command line?Jason Etheridge2008-10-10T06:07:18Z2008-10-10T06:07:18Z<p>One solution would be to change the tool to issue a "cvs co" for the file, specifying the revision as is being now with the update. The checkout command would have to be done from the top of your tree, not in the directory containing the file. I've come across similar cases where the update fails to find a new file, requiring a checkout of the file as I've described.</p>
http://stackoverflow.com/questions/189663/how-do-you-keep-your-brain-sharp-for-daily-programming/189705#1897051Answer by Jason Etheridge for How do you keep your brain sharp for daily programming?Jason Etheridge2008-10-10T00:32:06Z2008-10-10T00:32:06Z<p>Coding itself keeps your brain limber; that is, the very act of writing code on a daily basis is probably all you need to remain mentally on the ball.</p>
http://stackoverflow.com/questions/188437/programmer-vs-architect/188450#18845012Answer by Jason Etheridge for Programmer vs Architect?Jason Etheridge2008-10-09T18:08:45Z2008-10-09T18:08:45Z<p>I have been in the position of software architect on several projects for the last ten years or so. Team sizes have varied (initially 3-4 programmers, now 15-20). In every role, I ensured that I would be building at least part of the system. I've found that an architect who isn't also coding is in very real danger of getting out of touch, and so it's critical to keep my hands dirty.</p>
<p>So, the answer is yes, being a software architect does not mean that you are prevented from doing low-level work at the same time. You've just got to design your role to make sure that coding remains a part of it.</p>
<p>I've found that doing things this way gives me the best of both worlds: I get to do the higher-level work of system design, while still doing enough coding to scratch that itch as well. It's a great mix if you can arrange it!</p>
http://stackoverflow.com/questions/185802/what-is-the-single-most-important-project-vital-sign-to-track-that-will-help-eval/185866#1858661Answer by Jason Etheridge for What is the single most important project vital sign to track that will help evaluate project health?Jason Etheridge2008-10-09T03:42:59Z2008-10-09T03:42:59Z<p>From a programmer's point of view (i.e., a non-manager), I'm most interested in working features. Tracking progress in terms of the implementation of features is possibly one of the only meaningful statistics that apply; anything else can be too easily gamed.</p>
http://stackoverflow.com/questions/185624/static-variables-in-an-inlined-function/185630#1856300Answer by Jason Etheridge for static variables in an inlined functionJason Etheridge2008-10-09T01:47:40Z2008-10-09T01:47:40Z<p>I believe you will end up with one per translation unit. You've effectively got many versions of that function (and its declared static variable), one for every translation unit that includes the header.</p>
http://stackoverflow.com/questions/147339/visual-studio-6-tips-and-tricks/184950#1849500Answer by Jason Etheridge for Visual Studio 6 tips and tricksJason Etheridge2008-10-08T21:11:42Z2008-10-08T21:11:42Z<p>My <a href="http://stackoverflow.com/questions/154661/pre-setting-locations-for-looking-for-source-files-in-visual-c-60#173240">answer</a> to the question <a href="http://stackoverflow.com/questions/184930/if-you-are-not-satisfied-with-answers-on-someone-elses-question-should-you-star">"If you are not satisfied with answers on someone else’s question, should you start your own?"</a> shows how to pre-populate VC++ with all your source paths. It's useful for those of us who build from the command line, but debug using msdev.</p>
http://stackoverflow.com/questions/184742/what-is-a-good-cms-written-in-python-and-not-plone/184892#1848925Answer by Jason Etheridge for What is a good CMS written in Python (and not Plone)?Jason Etheridge2008-10-08T21:00:08Z2008-10-08T21:00:08Z<p>I did a similar investigation a while ago, and settled on Plone. It does wrap most of the Zope complexity fairly well, but it continues to seem heavy-weight for what it does. Then again, the functionality offered is fairly substantial, so some trade-off in terms of increased complexity should be expected.</p>
<p>I'd recommend giving Plone a go; the unified installer means you can build and run it up very easily (it includes its own version of Python, stuck as it is on 2.4).</p>
<p>All that said, if I wanted to build another CMS-based site, I'd go with something non-Python, such as Drupal (PHP).</p>
http://stackoverflow.com/questions/184310/do-you-ever-feel-confident-in-your-skills/184349#1843490Answer by Jason Etheridge for Do you ever feel confident in your skills?Jason Etheridge2008-10-08T19:03:04Z2008-10-08T19:03:04Z<p>Once you've worked on multiple systems, that have been taken through the lifecycle from conception, deployment and then maintenance, you realise that you really can do this stuff. The more you build, the more confidence you should get in your abilities. It's not about what you know, but what you can do.</p>
<p>I wasn't that confident early in my career, but can safely say that given as you progress, you should feel better about what you can do.</p>
http://stackoverflow.com/questions/154661/pre-setting-locations-for-looking-for-source-files-in-visual-c-6-02Pre-setting locations for looking for source files in Visual C++ 6.0Jason Etheridge2008-09-30T19:48:08Z2008-10-06T05:05:45Z
<p>Due to the legacy nature of some of our code, we're still using Microsoft Visual 6.0 (SP6). When I attach to a running process to debug it for the first time, it has no knowledge of where the source files are located when I break into the process. It therefore asks me to navigate to the appropriate directory in my source tree, given a source file name. It remembers these directories, so I don't have to enter the same directory twice, but it's still painful.</p>
<p>Is there a way of pre-configuring VC6 with all the source file directories in my tree? Note that our project is built using makefiles (using nmake), rather than via DSPs.</p>
http://stackoverflow.com/questions/154661/pre-setting-locations-for-looking-for-source-files-in-visual-c-6-0/173240#1732400Answer by Jason Etheridge for Pre-setting locations for looking for source files in Visual C++ 6.0Jason Etheridge2008-10-06T05:05:45Z2008-10-06T05:05:45Z<p>Absolute path information is not recorded in our PDBs files, since we are deliberately not wanting to tie our source tree to a particular top-level directory; when it is deployed, it is not possible to drop the source tree in the same position as was used on the build machine.</p>
<p><a href="http://stackoverflow.com/users/7734/evilteach">EvilTeach</a>'s <a href="http://stackoverflow.com/questions/154661/pre-setting-locations-for-looking-for-source-files-in-visual-c-60#155689">solution</a> certainly gives the desired effect, though our source tree consists of literally hundreds of directories, making entering them manually somewhat cumbersome. There's also the problem that a developer may have multiple source trees that they're running from at any given time, so being able to switch between those trees when debugging a given executable is essential.</p>
<p>I subsequently found that you can programmatically (well, at least from the command line) switch a set of source directories by directly updating the registry:</p>
<pre><code>REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Devstudio\6.0\Build
System\Components\Platforms\Win32 (x86)\Directories]
"Source Dirs"="<path1>;<path2>"
</code></pre>
<p>That's not too bad, and would certainly do the trick.</p>
<p>However, the solution I settled upon was setting the SOURCE environment variable to contain all the source paths (as a semicolon-separated list of directories). A very simple batch file could do this, and allow switching between different trees. Then, you run up Visual C++ from the command line, using the option telling it from read SOURCE (and INCLUDE, LIB and PATH) from the environment:</p>
<pre><code>msdev /useenv
</code></pre>
<p>Looking under Tools->Options, you'll see that the directories from SOURCE have indeed been loaded. I was then able to attach to a running process, and the debugger was able to locate any code that I debugged into.</p>
<p>Life just got that much easier!</p>
http://stackoverflow.com/questions/171202/developing-during-the-weekend/171204#1712040Answer by Jason Etheridge for Developing during the weekend?Jason Etheridge2008-10-05T00:01:45Z2008-10-05T00:01:45Z<p>I'm working on various projects, and spend time on them on the weekend, as well as after work during the week. They're things I want to do because they help people, or are fun; they won't make me money directly, but I know that anything I do in public will showcase my skills. It's much easier to convince a potential employer to hire me if I can point to something online and say "See that? I built it."</p>
http://stackoverflow.com/questions/169713/whats-the-toughest-bug-you-ever-found-and-fixed/169715#1697154Answer by Jason Etheridge for What's the toughest bug you ever found and fixed?Jason Etheridge2008-10-04T04:08:33Z2008-10-04T04:08:33Z<p>While I don't recall a specific instance, the toughest category are those bugs which only manifest after the system has been running for hours or days, and when it goes down, leaves little or no trace of what caused the crash. What makes them particularly bad is that no matter how well you think you've reasoned out the cause, and applied the appropriate fix to remedy it, you'll have to wait for another few hours or days to get any confidence at all that you've really nailed it.</p>
http://stackoverflow.com/questions/160379/improving-the-quality-of-code/160387#1603870Answer by Jason Etheridge for Improving the quality of code?Jason Etheridge2008-10-02T00:35:43Z2008-10-02T00:35:43Z<p>Leading by example is always a good thing, though convincing others that your example is better than however they're currently doing it is not so easy. Constructive criticism through code review is probably your best bet for gently suggesting alternative approaches to how your colleagues work. The key point is to convince others that what you're proposing really is better in a tangible way that they can appreciate.</p>
http://stackoverflow.com/questions/159597/how-to-convince-people-to-comment-their-code/159602#15960213Answer by Jason Etheridge for How to convince people to comment their codeJason Etheridge2008-10-01T20:43:16Z2008-10-01T20:43:16Z<p>Perhaps it's just something that has to be learned from experience; specifically, the experience of coming back to your own code after six months, and trying to work out what the hell you were thinking (or what you were on) when you wrote it. That certainly convinced me that comments weren't such a bad idea.</p>
http://stackoverflow.com/questions/151046/c-last-loop-iteration-stl-map-iterator/151112#1511120Answer by Jason Etheridge for C++ last loop iteration (STL map iterator)Jason Etheridge2008-09-29T23:01:10Z2008-09-29T23:01:10Z<p>A simple, yet effective, approach:</p>
<pre><code> size_t items_remaining = someMap.size();
for (iter = someMap.begin(); iter != someMap.end(); iter++) {
bool last_iteration = items_remaining-- == 1;
}
</code></pre>
http://stackoverflow.com/questions/148042/using-or-comparisons-with-if-statements/148050#1480501Answer by Jason Etheridge for Using OR comparisons with IF statementsJason Etheridge2008-09-29T09:14:18Z2008-09-29T09:14:18Z<p>While I don't think you can do what you want directly, one alternative is:</p>
<pre><code>if job in [ "mechanic", "tech" ]:
print "awesome"
elif job in [ "tool", "rock" ]:
print "dolt"
</code></pre>
http://stackoverflow.com/questions/147865/will-learning-a-couple-of-languages-in-parallel-blow-my-mind/147868#1478689Answer by Jason Etheridge for Will learning a couple of languages in parallel blow my mind?Jason Etheridge2008-09-29T08:04:18Z2008-09-29T08:04:18Z<p>Probably best to focus on one language at a time, preferably by using it to build a small project. In my experience, using a language in anger is the only way to really grok it.</p>
http://stackoverflow.com/questions/146389/defect-free-software/146519#1465190Answer by Jason Etheridge for Defect-free SoftwareJason Etheridge2008-09-28T19:14:34Z2008-09-28T19:14:34Z<p>While it's a laudable goal, in reality one can never assume that any given software is going to be truly defect free. If high reliability is called for, then the service being offered must be supported by redundant, parallel servers.</p>
<p>No matter what we do, no matter how careful we are, or how thoroughly we verify and test, our software will fail eventually. Whatever SLA (formal or informal) that is offered must take this into account.</p>
http://stackoverflow.com/questions/144669/how-do-i-restore-a-deleted-file-in-cvs/145418#1454180Answer by Jason Etheridge for How do I restore a deleted file in CVS?Jason Etheridge2008-09-28T07:25:57Z2008-09-28T08:33:06Z<p>Given Harry's lack of success, here's a transcript of what I did to demonstrate that the above answer works (apologies in advance for its length):</p>
<pre><code>C:\foo>dir
Volume in drive C is Local Disk
Volume Serial Number is 344F-1517
Directory of C:\foo
28/09/2008 05:12 PM <DIR> .
28/09/2008 05:12 PM <DIR> ..
28/09/2008 05:12 PM <DIR> CVS
28/09/2008 05:11 PM 19 file.txt
1 File(s) 19 bytes
3 Dir(s) 22,686,416,896 bytes free
C:\foo>cvs status file.txt
===================================================================
File: file.txt Status: Up-to-date
Working revision: 1.2 Sun Sep 28 07:11:58 2008
Repository revision: 1.2 C:\jason\CVSROOT/foo/file.txt,v
Sticky Tag: (none)
Sticky Date: (none)
Sticky Options: (none)
C:\foo>cvs rm -f file.txt
cvs remove: scheduling `file.txt' for removal
cvs remove: use 'cvs commit' to remove this file permanently
C:\foo>cvs commit -m "" file.txt
Removing file.txt;
C:\jason\CVSROOT/foo/file.txt,v <-- file.txt
new revision: delete; previous revision: 1.2
done
C:\foo>cvs status file.txt
===================================================================
File: no file file.txt Status: Up-to-date
Working revision: No entry for file.txt
Repository revision: 1.3 C:\jason\CVSROOT/foo/Attic/file.txt,v
C:\foo>more file.txt
Cannot access file C:\foo\file.txt
C:\foo>dir
Volume in drive C is Local Disk
Volume Serial Number is 344F-1517
Directory of C:\foo
28/09/2008 05:12 PM <DIR> .
28/09/2008 05:12 PM <DIR> ..
28/09/2008 05:12 PM <DIR> CVS
0 File(s) 0 bytes
3 Dir(s) 22,686,400,512 bytes free
C:\foo>cvs add file.txt
cvs add: Resurrecting file `file.txt' from revision 1.2.
U file.txt
cvs add: Re-adding file `file.txt' (in place of dead revision 1.3).
cvs add: use 'cvs commit' to add this file permanently
C:\foo>cvs commit -m "" file.txt
Checking in file.txt;
C:\jason\CVSROOT/foo/file.txt,v <-- file.txt
new revision: 1.4; previous revision: 1.3
done
C:\foo>more file.txt
This is a test...
C:\jason\work\dev1\nrta\foo>dir
Volume in drive C is Local Disk
Volume Serial Number is 344F-1517
Directory of C:\jason\foo
28/09/2008 05:15 PM <DIR> .
28/09/2008 05:15 PM <DIR> ..
28/09/2008 05:13 PM <DIR> CVS
28/09/2008 05:13 PM 19 file.txt
1 File(s) 19 bytes
3 Dir(s) 22,686,375,936 bytes free
</code></pre>
<p>Clearly he's doing the right thing, but the behaviour he's observing is different. Perhaps there's a difference due to CVS version (I'm using 1.11.22 on Windows).</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144765#1447656Answer by Jason Etheridge for When is it good (if ever) to scrap production code and start over?Jason Etheridge2008-09-27T23:43:15Z2008-09-27T23:43:15Z<p>A rule of thumb I've found useful is that if given a code base, if I have to re-write more than 25% of the code to make it work or modify it based upon new requirements, you may as well re-write it from scratch.</p>
<p>The reasoning is that you can only patch a body of code so far; beyond a certain point, it's quicker to do over.</p>
<p>There's an underlying assumption that you have a mechanism (such as thorough unit and/or system tests) that will tell you whether your re-written version is functionally equivalent (where it needs to be) as the original.</p>
http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronousComment by Jason Etheridge on Pattern for wrapping an Asynchronous JavaScript function to make it synchronousJason Etheridge2008-10-18T03:57:03Z2008-10-18T03:57:03ZIt'll be interesting to see if you do get an answer, because I suspect it's just not possible (at least without thread support, which Safari isn't going to give you).http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/214478#214478Comment by Jason Etheridge on What surprised you the most about the software industry?Jason Etheridge2008-10-18T03:48:10Z2008-10-18T03:48:10ZOh, yes. True words!http://stackoverflow.com/questions/214357/how-to-make-a-living-by-programming-from-home/214376#214376Comment by Jason Etheridge on How to make a living by programming from homeJason Etheridge2008-10-18T02:12:04Z2008-10-18T02:12:04ZAll good points, Draemon. Thanks!http://stackoverflow.com/questions/214357/how-to-make-a-living-by-programming-from-home/214401#214401Comment by Jason Etheridge on How to make a living by programming from homeJason Etheridge2008-10-18T02:11:23Z2008-10-18T02:11:23ZGood point. If I'm competing with those willing to work for substantially less, then I agree I've got no chance. Still, people do make a living this way, so it can't all go to India or China.http://stackoverflow.com/questions/172668/full-time-programmer-or-software-development-consultant/188068#188068Comment by Jason Etheridge on Full-time programmer or software development consultant?Jason Etheridge2008-10-18T00:07:01Z2008-10-18T00:07:01ZThe boat analogy is fantastic. Very nice!http://stackoverflow.com/questions/193715/atoi-conversion-error/193717#193717Comment by Jason Etheridge on atoi() conversion errorJason Etheridge2008-10-11T07:42:13Z2008-10-11T07:42:13ZOther way around: number of characters, and the character. But you're right otherwise, Lev.http://stackoverflow.com/questions/193547/what-is-the-best-way-to-do-loops-in-javascript/193553#193553Comment by Jason Etheridge on What is the best way to do loops in JavaScriptJason Etheridge2008-10-11T01:41:12Z2008-10-11T01:41:12ZThe environment is going to be "polluted" anyway, given that in Javascript the scope of a variable is the enclosing function, not the block in which it is declared.http://stackoverflow.com/questions/168191/what-dont-you-like-in-agile-development/168300#168300Comment by Jason Etheridge on What don't you like in Agile development?Jason Etheridge2008-10-04T23:56:51Z2008-10-04T23:56:51ZFrew, if this really is Kent Beck, chances are he's more familiar with the Agile Manifesto and its underlying assumptions and intentions than we're ever going to be. Regardless, he's making a very good point.http://stackoverflow.com/questions/154661/pre-setting-locations-for-looking-for-source-files-in-visual-c-6-0/155547#155547Comment by Jason Etheridge on Pre-setting locations for looking for source files in Visual C++ 6.0Jason Etheridge2008-09-30T23:59:01Z2008-09-30T23:59:01ZMike, we're building (using cl.exe and link.exe) without absolute path names, which means the PDBs don't have the full path to the files (or so I am guessing). That's why I'm after an alternative way of specifying the source file directories.http://stackoverflow.com/questions/144669/how-do-i-restore-a-deleted-file-in-cvs/145462#145462Comment by Jason Etheridge on How do I restore a deleted file in CVS?Jason Etheridge2008-09-28T08:31:21Z2008-09-28T08:31:21ZI'm glad we got to the bottom of that, Harry. I was getting a little concerned. :-)http://stackoverflow.com/questions/144669/how-do-i-restore-a-deleted-file-in-cvs/144712#144712Comment by Jason Etheridge on How do I restore a deleted file in CVS?Jason Etheridge2008-09-27T23:46:25Z2008-09-27T23:46:25ZTry a "cvs update" in the directory containing file.txt; or "cvs update file.txt". (I ran through your scenario to confirm the solution works, so it should work! :-)http://stackoverflow.com/questions/61605/is-it-pythonic-for-a-function-to-return-multiple-values/61629#61629Comment by Jason Etheridge on Is it pythonic for a function to return multiple values?Jason Etheridge2008-09-15T01:24:22Z2008-09-15T01:24:22ZVinko, an example is tempfile.mkstemp() from the standard library, which returns a tuple containing a file handle and an absolute path.
JFS, yes, you're right.http://stackoverflow.com/questions/60740/which-jquery-plugin-should-be-used-to-fix-the-ie6-png-transparency-issueComment by Jason Etheridge on Which jQuery plugin should be used to fix the IE6 PNG transparency issue?Jason Etheridge2008-09-13T19:01:33Z2008-09-13T19:01:33ZBrian, is there a reason that you can't use GIFs instead?