User Steve M - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T17:10:58Zhttp://stackoverflow.com/feeds/user/1693http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/25403/is-a-college-university-degree-still-relevant28Is a College/University Degree Still Relevant?Steve M2008-08-24T22:33:32Z2009-11-15T05:14:55Z
<p>In an age where experience seems to be paramount, does anyone still see great value in having a college (specifically Computer Science) degree? Would those three years be better spent working in a top-shelf software company?</p>
http://stackoverflow.com/questions/119969/javascript-chart-library5JavaScript Chart LibrarySteve M2008-09-23T09:04:18Z2009-10-30T01:38:33Z
<p>Would anyone recommend a particular JavaScript charting library - specifically one that doesn't use flash at all?</p>
http://stackoverflow.com/questions/17435/will-server-side-javascript-take-off-which-implementation-is-most-stable9Will server-side JavaScript take off? Which implementation is most stable?Steve M2008-08-20T05:33:28Z2009-10-07T09:15:03Z
<p>Does anyone see server-side JavaScript taking off? There are a couple of implementations out there, but it all seems to be a bit of a stretch (as in, "doing it BECAUSE WE CAN" type of attitude). </p>
<p>I'm curious to know if anyone actually writes JavaScript for the server-side and what their experiences with it have been to date.</p>
<p>Also, which implementation is generally seen as the most stable?</p>
http://stackoverflow.com/questions/27731/whats-wrong-with-c13What's wrong with C#?Steve M2008-08-26T10:50:35Z2009-10-06T00:00:43Z
<p><a href="http://beta.stackoverflow.com/questions/15528/whats-wrong-with-java" rel="nofollow">Asking the same of Java</a> yielded some very interesting responses, so I thought it would be only fair to ask the same thing of C#, probably Java's closest rival.</p>
<p>I actually like this sort of question because it's a lot less subjective than "why should I choose this language" or "why is this language so great."</p>
<p>So.. what's wrong with C#?</p>
http://stackoverflow.com/questions/1204684/command-line-web-browser-that-outputs-the-dom0Command-line web browser that outputs the DOMSteve M2009-07-30T05:54:09Z2009-07-30T08:41:46Z
<p>I'm looking for a way to process a web page and associated Javascript from the command-line, so that the resulting DOM model can be outputted. </p>
<p>The purpose for this is to identify forms within the page without doing any nasty HTML (and Javascript) parsing with regular expressions.</p>
<p>Are there any command-line tools that will do this? So hypothetically speaking, a command-line web browser that downloads the content and outputs the DOM as text rather than producing a pretty page.</p>
http://stackoverflow.com/questions/1197503/fastest-way-to-build-a-basic-flash-app1Fastest way to build a basic Flash appSteve M2009-07-29T00:36:37Z2009-07-29T01:09:14Z
<p>I need to write a really basic Flash app for my website in order to leverage XMLSocket() functionality. </p>
<p>What's the easiest way to compile some basic flash source without having to download a lot of bloatware?</p>
http://stackoverflow.com/questions/1163078/reliably-getting-a-web-client-ip1Reliably getting a web client IPSteve M2009-07-22T04:32:49Z2009-07-22T04:56:45Z
<p>What is the most reliable way of obtaining the IP address of a remote client connecting to your website? Some options I've looked into are:</p>
<ul>
<li>Server variables (such as REMOTE_ADDR in Apache), though this is usually the proxy address.</li>
<li>A Java applet, but IE (at least the one I'm using) seems to deny it.</li>
</ul>
<p>The only other thing I'm thinking about is having the client connect over HTTPS, in which case the proxy should be bypassed (generally speaking), and so REMOTE_ADDR would be accurate.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/15373/non-tech-skills-that-complement-programming8Non-tech skills that complement programmingSteve M2008-08-18T23:27:11Z2009-06-10T12:22:33Z
<p>What non-tech skills have you found to enhance and/or complement programming skills? Try and think outside of the office setting, too.</p>
http://stackoverflow.com/questions/25552/using-java-to-get-os-level-system-information16Using Java to get OS-level system informationSteve M2008-08-25T01:49:55Z2009-06-02T02:01:18Z
<p>I'm currently building a Java app that could end up being run on many different platforms, but primarily variants of Solaris, Linux and Windows.</p>
<p>Has anyone been able to successfully extract information such as the current disk space used, CPU utilisation and memory used in the underlying OS? What about just what the Java app itself is consuming?</p>
<p>Preferrably I'd like to get this information without using JNI.</p>
http://stackoverflow.com/questions/25041/span-height-in-firefox3SPAN Height in FirefoxSteve M2008-08-24T13:40:00Z2009-05-26T08:26:52Z
<p>Using CSS, I'm trying to specify the height of a SPAN tag in Firefox, but it's just not accepting it (IE does, funnily enough).</p>
<p>Firefox accepts the height if I use a DIV, but the problem with using a DIV is the annoying line break after it, which I can't have in this particular instance. </p>
<p>I tried setting the CSS style attribute of: <pre>display: inline</pre> for the DIV, but Firefox seems to then revert to SPAN behaviour anyway, and ignores the height attribute once again.</p>
http://stackoverflow.com/questions/852822/java-arraylist-and-hashmap-on-the-fly4Java ArrayList and HashMap on-the-flySteve M2009-05-12T13:33:07Z2009-05-12T14:50:43Z
<p>Can someone please provide an example of creating a Java ArrayList and HashMap on the fly? So instead of doing an add() or put(), actually supplying the seed data for the array/hash at the class instantiation?</p>
<p>To provide an example, something similar to PHP for instance:</p>
<p><code>
$array = array (3, 1, 2);<br>
$assoc_array = array( 'key' => 'value' );
</code></p>
http://stackoverflow.com/questions/781167/kr-equivalent-for-python-java4K&R equivalent for Python, Java, ...Steve M2009-04-23T10:37:42Z2009-04-23T20:10:35Z
<p>I think it's universally recognised that the K&R book, <em>The C Programming Language</em>, is the C bible. What I'm wondering is if anyone can say the same about any other books for other languages? Are there any books that are recognised as <em>the</em> ultimate be-all-and-end-all guides for learning Python, Java, C#, Ruby and others.</p>
<p>Please bear in mind that I'm not really asking for your personal book recommendations - I am sure we have our favourites for different languages, some of which may not be considered "bibles" but have worked for us just the same. </p>
<p>What I am asking is if you are aware of a general consensus on any books that are considered bibles for their particular language. In other words, this would mean that you and many others within the industry immediately associate a certain book with a particular language.</p>
http://stackoverflow.com/questions/781167/kr-equivalent-for-python-java/781178#7811782Answer by Steve M for K&R equivalent for Python, Java, ...Steve M2009-04-23T10:44:12Z2009-04-23T10:44:12Z<p>I figured I'd get the ball rolling:</p>
<p>Perl - <em>Learning Perl</em> and <em>Programming Perl</em> (O'Reilly)</p>
http://stackoverflow.com/questions/767009/wrapping-up-a-c-api-in-java-or-net2Wrapping up a C++ API in Java or .NETSteve M2009-04-20T05:27:46Z2009-04-20T13:21:22Z
<p>Has anyone successfully "wrapped up" a C++ API in Java or .NET? I have an application that provides a C++ API for writing plug-ins. What I'd like to do is access that API from .NET or Java.</p>
<p>Would I need to use COM, or are there simpler/better alternatives?</p>
http://stackoverflow.com/questions/767012/help-for-the-copy-paste-generation-of-coders/767027#7670273Answer by Steve M for Help For The Copy & Paste Generation Of CodersSteve M2009-04-20T05:37:34Z2009-04-20T05:37:34Z<p>We all learn differently, so don't feel handicapped because of the way you've entered the field.</p>
<p>I guess the simplest, easiest thing I can suggest would be to get yourself a PHP book (seeing as that's what you're familiar with right now) and start from there to build up confidence.</p>
<p>In your spare time, just create some very small basic apps to practice without any pressure. Then take on a language like Python, Java or .NET.. depending on what takes your fancy. With a language or two under your belt, then you can take on books like Code Complete, which will cover some of the more esoteric areas of software development.</p>
<p>Good luck, this is a profession where you really never stop learning.</p>
http://stackoverflow.com/questions/21486/programming-tech-documentaries7Programming / Tech DocumentariesSteve M2008-08-22T00:10:48Z2009-02-23T19:28:34Z
<p>Aside from Startup.com, are there any (relatively recent) good documentaries of a tech nature, such as about programming, tech start-ups, notable people in the industry, etc.</p>
http://stackoverflow.com/questions/80394/what-constitutes-real-time3What constitutes 'real time'Steve M2008-09-17T05:55:08Z2009-02-18T22:16:02Z
<p>I am having trouble deciding on whether to classify my application as 'real time' or 'near real time', or perhaps even something else.</p>
<p>The software receives data immediately as it is generated from the source, then based on certain rules, raises an alert when certain conditions are met. It takes the approach of checking the last 30 seconds of data every 30 seconds to see whether the criteria for a rule has been met.</p>
<p>Is that real time? What are the thresholds for the definitions of real time vs. near real-time?</p>
<p><strong>EDIT</strong></p>
<p>I think this is a duplicate of <a href="http://stackoverflow.com/questions/51135/define-realtime-on-the-web-for-business">http://stackoverflow.com/questions/51135/define-realtime-on-the-web-for-business</a>.</p>
<p>Please decide if the above thread is insufficient to answer your question.</p>
http://stackoverflow.com/questions/559207/javascript-syntax-errors-in-ie1Javascript syntax errors in IESteve M2009-02-17T23:33:28Z2009-02-18T02:42:56Z
<p>I have created a fairly large Javascript app that works in Firefox and up until yesterday, IE. I've made quite a few changes and now I'm getting syntax errors in IE, but all is fine in Firefox. Obviously I have a trailing comma somewhere but I can't see it. IE's error message is less than helpful, not even telling me which JS file has the error.</p>
<p>Is there a syntax checker for Javascript that will inform me of such errors in more detail?</p>
http://stackoverflow.com/questions/252371/vi-indentation5vi indentationSteve M2008-10-31T01:37:14Z2009-02-14T23:09:33Z
<p>What's the easiest way to increase or decrease indentation for a large block of code in vi?</p>
http://stackoverflow.com/questions/21411/php-sleep-silently-hogs-cpu4PHP sleep() silently hogs CPUSteve M2008-08-21T23:17:41Z2009-01-31T11:28:58Z
<p>I'm running Apache on Linux within VMWare. One of the PHP pages I'm requesting does a sleep(), and I find that if I attempt to request a second page whilst the first page is sleep()'ing, the second page hangs, waiting for the sleep() from the first page to finish.</p>
<p>Has anyone else seen this behaviour? I know that PHP isn't multi-threaded, but this seems like gross mishandling of the CPU.</p>
<p>Edit: I should've mentioned that the CPU usage doesn't spike. What I mean by CPU "hogging" is that no other PHP page seems able to use the CPU whilst the page is sleep()'ing.</p>
http://stackoverflow.com/questions/229168/what-is-perls-equivalent-to-phps-printr7What is Perl's equivalent to PHP's print_r()?Steve M2008-10-23T10:00:15Z2009-01-28T20:22:00Z
<p>I find print_r in PHP extremely useful, but wonder if there is anything remotely equivalent in Perl?</p>
http://stackoverflow.com/questions/17717/migrating-from-mysql-to-postgresql7Migrating from MySQL to PostgreSQLSteve M2008-08-20T10:40:38Z2008-11-26T23:06:31Z
<p>We are currently using MySQL for a product we are building, and are keen to move to PostgreSQL as soon as possible, primarily for licensing reasons.</p>
<p>Has anyone else done such a move? Our database is the lifeblood of the application and will eventually be storing TBs of data, so I'm keen to hear about experiences of performance improvements/losses, major hurdles in converting SQL and stored procedures, etc.</p>
<p>Edit: Just to clarify to those who have asked why we don't like MySQL's licensing. We are developing a commercial product which (currently) depends on MySQL as a database back-end. Their license states we need to pay them a percentage of our list price per installation, and not a flat fee. As a startup, this is less than appealing.</p>
http://stackoverflow.com/questions/229152/must-have-developer-tools/229162#2291621Answer by Steve M for Must have developer toolsSteve M2008-10-23T09:57:09Z2008-10-23T09:57:09Z<p>Your list is pretty good, in addition I think VMWare (or others such as Virtualbox) add a whole new dimension to the testing aspect of software development.</p>
http://stackoverflow.com/questions/15735/firefox-extension-for-website-interaction-recording-and-repetition1Firefox extension for website interaction recording and repetitionSteve M2008-08-19T05:02:35Z2008-10-05T13:56:06Z
<p>Does anyone know of a firefox extension, or some other tool, that enables you to 'record' the interactions with a website, and then play them back, as a way of testing a website?</p>
http://stackoverflow.com/questions/156026/mysql-commercial-license-costs3MySQL commercial license costsSteve M2008-10-01T02:43:32Z2008-10-02T00:35:43Z
<p>We are building a commercial product that is using MySQL as the back-end. The product will not be open source (at least not initially).</p>
<p>We have had a very hard time getting any costing information from MySQL, they seem to want a percentage of the list price of the product, but no clarity is given on what that percentage is.</p>
<p>Has anyone sold a commercial product based on MySQL and successfully worked out a commercial arrangement with them? I'd be interested to hear your story and any numbers along with it.</p>
http://stackoverflow.com/questions/156114/best-way-to-get-result-count-before-limit-was-applied-in-php-postgres/156227#1562270Answer by Steve M for Best way to get result count before LIMIT was applied in PHP/postgresSteve M2008-10-01T04:20:53Z2008-10-01T04:20:53Z<p>Seeing as you need to know for the purpose of paging, I'd suggest running the full query once, writing the data to disk as a server-side cache, then feeding that through your paging mechanism.</p>
<p>If you're running the COUNT query for the purpose of deciding whether to provide the data to the user or not (i.e. if there are > X records, give back an error), you need to stick with the COUNT approach.</p>
http://stackoverflow.com/questions/156121/what-programming-languages-will-be-around-in-100-years/156135#1561354Answer by Steve M for What programming languages will be around in 100 years?Steve M2008-10-01T03:30:01Z2008-10-01T03:30:01Z<p>Unfortunately, Perl.</p>
http://stackoverflow.com/questions/155938/distributed-file-source/156061#1560612Answer by Steve M for Distributed file sourceSteve M2008-10-01T02:58:36Z2008-10-01T02:58:36Z<p>If you have only a small number of servers, you could try <a href="http://samba.anu.edu.au/rsync/" rel="nofollow">rsync</a>. Couple it with SSH for some security.</p>
http://stackoverflow.com/questions/156032/how-do-you-store-date-ranges-which-are-actually-timestamps/156042#1560420Answer by Steve M for How do you store Date ranges, which are actually timestampsSteve M2008-10-01T02:48:49Z2008-10-01T02:48:49Z<p>Based on my experiences, there are four main ways to do it:</p>
<p>1) Convert the date to an epoch integer (seconds since 1st Jan 1970) and store it in the database as an integer.</p>
<p>2) Convert the date to a YYYYMMDDHHMMSS integer and store it in the database as an integer.</p>
<p>3) Store it as a date</p>
<p>4) Store it as a string</p>
<p>I've always stuck with 1 and 2, because it enables you to perform quick and simple arithmetic with the date and not rely on the underlying database functionality.</p>
http://stackoverflow.com/questions/147636/best-way-to-detect-when-user-leaves-a-web-page/147639#1476393Answer by Steve M for Best way to detect when user leaves a web pageSteve M2008-09-29T05:33:51Z2008-09-29T05:33:51Z<p>One (slightly hacky) way to do it is replace and links that lead away from your site with an AJAX call to the server-side, indicating the user is leaving, then use that same javascript block to take the user to the external site they've requested.</p>
<p>Of course this won't work if the user simply closes the browser window or types in a new URL.</p>
<p>To get around that, you'd potentially need to use Javascript's setTimeout() on the page, making an AJAX call every few seconds (depending on how quickly you want to know if the user has left).</p>
http://stackoverflow.com/questions/1204684/command-line-web-browser-that-outputs-the-dom/1204750#1204750Comment by Steve M on Command-line web browser that outputs the DOMSteve M2009-07-31T01:30:42Z2009-07-31T01:30:42ZGood point, I guess "close enough is good enough" in this case. I really just need something that will give me a best effort listing of form elements.http://stackoverflow.com/questions/1197503/fastest-way-to-build-a-basic-flash-appComment by Steve M on Fastest way to build a basic Flash appSteve M2009-07-29T01:19:16Z2009-07-29T01:19:16ZI didn't downvote it..http://stackoverflow.com/questions/1163078/reliably-getting-a-web-client-ip/1163124#1163124Comment by Steve M on Reliably getting a web client IPSteve M2009-07-27T03:26:24Z2009-07-27T03:26:24ZNo that's only if the page refreshes or waits until after Tor is disabled. Javascript is not able to fetch the local IP.http://stackoverflow.com/questions/1163078/reliably-getting-a-web-client-ip/1163124#1163124Comment by Steve M on Reliably getting a web client IPSteve M2009-07-22T05:40:24Z2009-07-22T05:40:24ZYou mention Javascript as an example, but you cannot obtain the local IP using Javascript. Otherwise it would be possible to get the IP with Javascript and AJAX it back to the server.http://stackoverflow.com/questions/823138/understanding-empty-mains-translation-into-assemblyComment by Steve M on Understanding empty main()'s translation into assemblySteve M2009-05-05T03:25:00Z2009-05-05T03:25:00Z.. and what version of GCC are you using?http://stackoverflow.com/questions/823138/understanding-empty-mains-translation-into-assemblyComment by Steve M on Understanding empty main()'s translation into assemblySteve M2009-05-05T03:24:16Z2009-05-05T03:24:16ZWhat was your compile command-line?http://stackoverflow.com/questions/781167/kr-equivalent-for-python-java/781178#781178Comment by Steve M on K&R equivalent for Python, Java, ...Steve M2009-04-23T11:07:13Z2009-04-23T11:07:13ZThat's probably a fair call, but I think you'd be hard pressed to find anyone who a) hadn't read these books and b) doesn't automatically think of the camel when they think of Perl.http://stackoverflow.com/questions/781167/kr-equivalent-for-python-javaComment by Steve M on K&R equivalent for Python, Java, ...Steve M2009-04-23T10:45:40Z2009-04-23T10:45:40ZYep, I guess that is ok, it could just get a bit out of hand that way.http://stackoverflow.com/questions/119867/how-to-improve-the-program-codingComment by Steve M on How to improve the program coding.Steve M2008-09-23T08:45:18Z2008-09-23T08:45:18ZMight help to be a little more specific? Are you talking about learning programming skills in general, or C# skills? Different learning styles suit different people.