User steveth45 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T00:37:07Zhttp://stackoverflow.com/feeds/user/1892http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327327/best-resource-for-serious-commodore-64-programming10Best resource for serious Commodore 64 programming.steveth452008-11-29T07:59:31Z2009-11-20T23:29:15Z
<p>What is the best resource for serious Commodore 64 programming?</p>
<p>Assume that serious programming on the Commodore 64 is not done in BASIC V2 that ships with the Commodore 64.</p>
<p>I feel like most of the knowledge is tied up in old books and not available on the internet.</p>
<p>All that I have found online are either very beginner style introductions to Commodore 64 programming (Hello world), or arcane demo-coder hacks to take advantage of strange parts of the hardware. I haven't found a well-explained list of opcodes, memory locations for system calls, and general mid-level examples and tips.</p>
<p>Main portals I have found:<br />
<a href="http://www.lemon64.com/" rel="nofollow">lemon64</a><br />
<a href="http://noname.c64.org/csdb/" rel="nofollow">C-64 Scene Database</a><br />
<a href="http://www.c64web.com/" rel="nofollow">c64web</a> Actually hosted on a Commodore 64! </p>
<p>Tools I have found:<br />
<a href="http://www.cc65.org/" rel="nofollow">cc65</a> A C compiler that can target Commodore 64.</p>
http://stackoverflow.com/questions/1765171/c-null-0x0-or-0/1765180#17651802Answer by steveth45 for C++: NULL 0x0 or 0?steveth452009-11-19T17:44:07Z2009-11-19T17:44:07Z<p>0x0 is just an expression of the value 0 in hexadecimal. I doubt the compiler will care about the difference.</p>
http://stackoverflow.com/questions/1764561/are-there-any-high-profile-commercial-users-of-git/1765016#17650162Answer by steveth45 for Are there any high profile commercial users of GIT?steveth452009-11-19T17:18:03Z2009-11-19T17:18:03Z<p>Have you been to <a href="http://github.com/" rel="nofollow">GitHub</a> recently? The list is too long to post here and would quickly become stale.</p>
http://stackoverflow.com/questions/1696047/casting-const-void-pointer-to-array-of-const-char-pointers-properly-in-c1Casting const void pointer to array of const char pointers properly in C.steveth452009-11-08T11:06:50Z2009-11-08T18:15:49Z
<p>I have a piece of C code that looks like this:</p>
<pre><code>const char (*foo)[2] = bar();
</code></pre>
<p>Now bar() is a function that returns a (const void *). How do I properly cast this const pointer? The code produces this warning from GCC : "initialization discards qualifiers from pointer target type". Here are some of my unsuccessful attempts:</p>
<pre><code>const char (*foo)[2] = (const char *)bar();
const char (*foo)[2] = (const void **)bar();
</code></pre>
<p>The original code does work, I just can't get rid of the warnings by properly casting the return value.</p>
<p>EDIT : This has been suggested:</p>
<pre><code>const char (*foo)[2] = (const char (*)[2])bar();
</code></pre>
<p>It appears to be correct, but GCC gives this warning : "cast discards qualifiers from pointer target type" which is nearly identical to the original warning.</p>
<p>EDIT 2 : OK, I think I've got it. The real problem here is the ( const void * ) definition of bar(). The const in the definition (const char( * )[2]) refers to the elements of the array, not the pointer to the array. This type definition is essentially an array, which when represented by a void pointer is <em>not</em> const. The real answer is that a ( const void * ) loses its const-ness when cast to (const char ( * )[2]). </p>
http://stackoverflow.com/questions/1680390/code-completion-in-vi-editor/1680468#16804681Answer by steveth45 for code completion in vi editorsteveth452009-11-05T13:11:33Z2009-11-05T13:11:33Z<p>I use <a href="http://netbeans.org/" rel="nofollow">NetBeans</a> with the <a href="http://jvi.sourceforge.net/" rel="nofollow">jVi</a> plugin. It gives me the editing power of vi with the intelligent auto-completion features of NetBeans.</p>
http://stackoverflow.com/questions/1609167/why-not-use-php-as-a-desktop-programming-language/1609426#16094261Answer by steveth45 for Why NOT use PHP as a desktop programming language?steveth452009-10-22T19:27:35Z2009-10-22T19:27:35Z<p>I'm surprised nobody has said this. As a web developer, I only use PHP because that's what the clients usually ask for. They want to deploy on any hosting they can find and all web hosting share one common denominator: PHP. Also, we do a lot of rescue mission style coding where we have to fix sites already written in PHP. As an honest developer can't recommend PHP as a platform in good conscience for serious web development. I would never choose PHP for <em>any</em> project, web or desktop. Python is pretty great for desktop apps. It's more dynamic than PHP, more sane, and more productive.</p>
http://stackoverflow.com/questions/1428598/can-a-json-object-returned-by-php-contain-a-date-object/1428699#14286994Answer by steveth45 for Can a JSON object returned by PHP contain a date objectsteveth452009-09-15T17:54:59Z2009-09-15T17:54:59Z<p>You could pass the date / time as a UNIX timestamp which is an integer, a natively supported data type in JSON. DateTime in PHP has a "getTimestamp()" function which will give you that value.</p>
http://stackoverflow.com/questions/1428545/structure-of-orders-in-restaurant/1428614#14286141Answer by steveth45 for Structure of orders in restaurantsteveth452009-09-15T17:43:13Z2009-09-15T17:43:13Z<p>Here is one way.</p>
<pre><code>function item(name, price)
{
this.name = name;
this.price = price;
}
function order(id, table)
{
this.id = id;
this.table = table;
this.items = [];
}
order.prototype.countItems = function()
{
return this.items.length;
}
order.prototype.getTotal = function()
{
var total = 0.0;
for(var i = 0;i < this.items.length; i++)
{
total += this.items[i].price;
}
return total;
}
var myorder = new order(1234, 12);
myorder.items.push(new item("coke", 1.25));
</code></pre>
http://stackoverflow.com/questions/1317960/optimization-suggestions-for-javascript/1318066#13180661Answer by steveth45 for Optimization Suggestions for Javascript. steveth452009-08-23T08:27:42Z2009-08-23T08:27:42Z<p>All the answers so far seem to be using uninitialized variables (minX, etc) in comparisons. Here is a functional, elegant solution:</p>
<pre><code>var minX = anarray.reduce( function(a,b) { return {x : Math.min(a.x,b.x)};}).x;
var minY = anarray.reduce( function(a,b) { return {y : Math.min(a.y,b.y)};}).y;
var maxX = anarray.reduce( function(a,b) { return {x : Math.max(a.x,b.x)};}).x;
var maxY = anarray.reduce( function(a,b) { return {y : Math.max(a.y,b.y)};}).y;
</code></pre>
<p>Look <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Objects/Array/reduce" rel="nofollow">here</a> for an explanation of the reduce function and how to enable it in browsers that do not support it natively.</p>
http://stackoverflow.com/questions/1184086/how-to-incoparate-or-implement-a-dom-api-to-v8/1317921#13179211Answer by steveth45 for How to incoparate or implement a DOM API to v8?steveth452009-08-23T06:43:00Z2009-08-23T06:43:00Z<p>The DOM is created and linked to the V8 engine in Chrome. The V8 sources know nothing about the browser DOM. The quickest way to get this working for you would be to try to extract the parts of Chrome (Chromium, really) that load HTML into a structure, and the parts that link the DOM and DOM methods into V8. It's probably not as bad as you think. If anything, Google produces pretty clean C++, as far as I can tell from looking at the V8 source code. It's probably not as bad as you think.</p>
http://stackoverflow.com/questions/1149340/how-do-you-include-another-js-file-in-googles-v8/1317908#13179082Answer by steveth45 for How do you include another js file in Google's v8?steveth452009-08-23T06:34:10Z2009-08-23T06:34:10Z<p>You have to add this functionality manually, here is how I did it:</p>
<pre><code>Handle<Value> Include(const Arguments& args) {
for (int i = 0; i < args.Length(); i++) {
String::Utf8Value str(args[i]);
// load_file loads the file with this name into a string,
// I imagine you can write a function to do this :)
std::string js_file = load_file(*str);
if(js_file.length() > 0) {
Handle<String> source = String::New(js_file.c_str());
Handle<Script> script = Script::Compile(source);
return script->Run();
}
}
return Undefined();
}
Handle<ObjectTemplate> global = ObjectTemplate::New();
global->Set(String::New("include"), FunctionTemplate::New(Include));
</code></pre>
<p>It basically adds a globally accessible function that can load and run a javascript file within the current context. I use it with my project, works like a dream.</p>
<pre><code>// beginning of main javascript file
include("otherlib.js");
</code></pre>
http://stackoverflow.com/questions/28668/best-way-to-extract-data-from-a-filemaker-pro-database-in-a-script1Best way to extract data from a FileMaker Pro database in a script?steveth452008-08-26T17:20:47Z2009-06-24T17:37:14Z
<p>My job would be easier, or at least less tedious if I could come up with an automated way (preferably in a Python script) to extract useful information from a FileMaker Pro database. I am working on Linux machine and the FileMaker database is on the same LAN running on an OS X machine. I can log into the webby interface from my machine.</p>
<p>I'm quite handy with SQL, and if somebody could point me to some FileMaker plug-in that could give me SQL access to the data within FileMaker, I would be pleased as punch. Everything I've found only goes the other way: Having FileMaker get data from SQL sources. Not useful.</p>
<p>It's not my first choice, but I'd use Perl instead of Python if there was a Perl-y solution at hand.</p>
<p><em>Note</em>: XML/XSLT services (as suggested by some folks) are only available on FM Server, not FM Pro. Otherwise, that would probably be the best solution. ODBC is turning out to be extremely difficult to even get working. There is absolutely zero feedback from FM when you set it up so you have to dig through /var/log/system.log and parse obscure error messages.</p>
<p><em>Conclusion</em>: I got it working by running a python script locally on the machine that queries the FM database through the ODBC connections. The script is actually a TCPServer that accepts socket connections from other systems on the LAN, runs the queries, and returns the data through the socket connection. I had to do this to bypass the fact that FM Pro only accepts ODBC connections locally (FM server is required for external connections).</p>
http://stackoverflow.com/questions/382171/use-javascript-to-change-which-submit-is-activated-on-enter-key-press6Use Javascript to change which submit is activated on enter key press.steveth452008-12-19T20:50:37Z2009-05-27T08:12:20Z
<p>I have a form on an HTML page with multiple submit buttons that perform different actions. However, when the user is typing a value into a text input and hit enters, the browsers generally act as though the next submit button sequentially was activated. I want a particular action to occur, so one solution I found was to put in invisible submit buttons into the HTML directly after the text inputs in question, like this:</p>
<pre><code><input type="text" name="something" value="blah"/>
<input type=submit name="desired" value="Save Earth" style="display: none"/>
...
<input type=submit name="something_else" value="Destroy Earth" />
...
<input id="foobar" type=submit name="desired" value="Save Earth" />
</code></pre>
<p>This works like a charm in most browsers, except that it doesn't in webkit browsers like Safari and Chrome. For some reason they skip over the invisible submit button. I've been trying to figure out how to intercept the enter key press and activate the proper submission using Javascript, but I haven't been able to get it to work. Intercepting the keydown and setting focus on the proper submit does not work. </p>
<p>Is there any way using Javascript or otherwise to select which submit button will be used when the user hits the enter key in a text input on an HTML form?</p>
<p><em>Edit: To clarify, the form can't require Javascript to "work" fundamentally. I don't care if the enter key submission is undesireable without Javascript on webkit browsers, but I can't remove or change the order of the submit buttons.</em></p>
<p><strike>This is what I tried, it doesn't change the submission behavior in webkit browsers.</strike><br />
What worked is to change the <em>focus()</em> in the following code to <em>click()</em>.</p>
<pre><code>document.onkeypress = processKey;
function processKey(e)
{
if (null == e)
e = window.event ;
if (e.keyCode == 13) {
document.getElementById("foobar").click(); // previously: focus()
}
}
</code></pre>
<p><strong>EDIT: FINAL SOLUTION:</strong></p>
<p>Works with every browser and only intercepts the enter key when needed:</p>
<p>HTML:</p>
<pre><code><input type="text" name="something" value="blah"
onkeydown="return processKey(event)" />
<input type=submit name="desired" value="Save Earth" style="display: none"/>
...
<input type=submit name="something_else" value="Destroy Earth" />
...
<input id="foobar" type=submit name="desired" value="Save Earth" />
</code></pre>
<p>Javascript:</p>
<pre><code>function processKey(e)
{
if (null == e)
e = window.event ;
if (e.keyCode == 13) {
document.getElementById("foobar").click();
return false;
}
}
</code></pre>
http://stackoverflow.com/questions/889527/mysql-move-node-in-nested-set/899968#8999680Answer by steveth45 for MySQL: Move node in nested setsteveth452009-05-22T20:58:24Z2009-05-22T20:58:24Z<p>I have a stored procedure that moves a node in a nested set to a new parent node. I am using a table called "category" in a MySQL / InnoDB database called "somedb". Of course, if the destination is a subcategory of the category you want to move this procedure will screw things up, so make sure that you aren't trying to embed a node inside of itself. I will leave it as an exercise to the reader to make this procedure safe for that case.</p>
<pre><code>CREATE PROCEDURE `somedb`.`moveCatParent` (IN cat_a VARCHAR(45), IN cat_b VARCHAR(45))
BEGIN
START TRANSACTION;
/* cat_b.lft + 1 is the destination. */
SELECT @destination := (lft + 1)
FROM category
WHERE name = cat_b;
SELECT @cat_a_width := ((rgt - lft) + 1)
FROM category
WHERE name = cat_a;
/* Rip this table a new cat_a sized hole inside cat_b. */
UPDATE category SET rgt = rgt + @cat_a_width WHERE rgt >= @destination;
UPDATE category SET lft = lft + @cat_a_width WHERE lft >= @destination;
SELECT @cat_a_lft := lft, @cat_a_rgt := rgt
FROM category
WHERE name = cat_a;
SELECT @diff := @destination - @cat_a_lft;
/* Move cat_a and all inhabitants to new hole */
UPDATE category SET rgt = rgt + @diff WHERE rgt BETWEEN @cat_a_lft AND @cat_a_rgt;
UPDATE category SET lft = lft + @diff WHERE lft BETWEEN @cat_a_lft AND @cat_a_rgt;
/* Close the gap created when we moved cat_a. */
UPDATE category SET rgt = rgt - @cat_a_width WHERE rgt >= @cat_a_lft;
UPDATE category SET lft = lft - @cat_a_width WHERE lft >= @cat_a_lft;
COMMIT;
END
</code></pre>
http://stackoverflow.com/questions/625394/are-there-any-valid-arguments-for-using-unnamed-constants/625490#6254900Answer by steveth45 for Are there any valid arguments for using unnamed constants?steveth452009-03-09T09:03:27Z2009-03-09T09:03:27Z<p>Here's a list of reasons to use them, there are plenty more:</p>
<ul>
<li><p>Simple unit conversions, like dollars to cents, MB to KB, etc.</p></li>
<li><p>SQL statements or anything else that will be parsed by machines, not humans. HTML tags fall into this category.</p></li>
<li><p>Single-use scripts or interactive interpreter sessions.</p></li>
<li><p>Logging.</p></li>
<li><p>Anything that is not going to change, ever. Eg. SIDESONATRIANGLE. </p></li>
</ul>
http://stackoverflow.com/questions/73745/long-term-source-code-archiving-is-it-possible6Long term source code archiving: Is it possible?steveth452008-09-16T15:42:49Z2009-02-27T18:07:21Z
<p>I'm curious about keeping source code around reliably and securely for several years. From my research/experience:</p>
<ol>
<li><p>Optical media, such as burned DVD-R's lose bits of data over time. After a couple years, I don't get all the files off that I put on them. Read errors, etc.</p></li>
<li><p>Hard drives are mechanical and subject to failure/obsolescence with expensive data recovery fees, that hardly keep your data private (you send it away to some company).</p></li>
<li><p>Magnetic tape storage: see #2.</p></li>
<li><p>Online storage is subject to the whim of some data storage center, the security or lack of security there, and the possibility that the company folds, etc. Plus it's expensive, and you can't guarantee that they aren't peeking in.</p></li>
</ol>
<p>I've found over time that I've lost source code to old projects I've done due to these problems. Are there any other solutions?</p>
<p><em>Summary of answers:</em><br />
1. Use multiple methods for redundancy.<br />
2. Print out your source code either as text or barcode.<br />
3. RAID arrays are better for local storage.<br />
4. Open sourcing your project will make it last forever.<br />
5. Encryption is the answer to security.<br />
6. Magnetic tape storage is durable.<br />
7. Distributed/guaranteed online storage is cheap and reliable.<br />
8. Use source control to maintain history, and backup the repo.</p>
http://stackoverflow.com/questions/584231/do-you-consider-yourself-as-programmer-or-software-engineer/584371#58437110Answer by steveth45 for Do you consider yourself as programmer or software engineer ?steveth452009-02-25T01:07:55Z2009-02-25T07:01:55Z<p>To non-techie friends I am a <strong>programmer</strong>.</p>
<p>On my resume I am a <strong>software developer</strong>.</p>
<p>In the credits of Godzilla:Unleashed I am an <a href="http://www.gamefaqs.com/console/wii/data/938068.html" rel="nofollow"><strong>engineer</strong></a>.</p>
<p>In the credits of Coraline I am a "<a href="http://cdguide.com/movie/Coraline/2443546" rel="nofollow"><strong>render resource assistant</strong></a>".</p>
<p>I consider myself a <a href="http://en.wikipedia.org/wiki/Hacker%5F%28programmer%5Fsubculture%29" rel="nofollow"><strong><em>hacker</em></strong></a>.</p>
http://stackoverflow.com/questions/582493/c-on-linux-anyone-got-an-opinion-based-on-experience-using-mono/582609#5826092Answer by steveth45 for C# on Linux - Anyone got an opinion based on experience using mono?steveth452009-02-24T17:08:19Z2009-02-24T17:08:19Z<p>This question has already been asked and answered many times on SO.</p>
<p><a href="http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time">Is Mono ready for prime time?</a></p>
<p><a href="http://stackoverflow.com/questions/573982/why-use-mono">Why Use Mono?</a></p>
http://stackoverflow.com/questions/571734/finding-all-string-in-a-php-code-base/571820#5718204Answer by steveth45 for Finding all string in a PHP code basesteveth452009-02-21T00:53:34Z2009-02-21T00:53:34Z<p>There are some other situations that are likely to exist in the code base that you will utterly break by doing an automatic search and replace in addition to associative arrays.</p>
<p>SQL queries:</p>
<pre><code>$myname = "steve";
$sql = "SELECT foo FROM bar WHERE name = " . $myname;
</code></pre>
<p>Indirect variable reference.</p>
<pre><code>$bar = "Hello, World"; // a string that needs localization
$foo = "bar"; // a string that should not be localized
echo($$foo);
</code></pre>
<p>SQL string manipulation.</p>
<pre><code>$sql = "SELECT CONCAT('Greetings, ', firstname) as greeting from users where id = ?";
</code></pre>
<p>There is no automatic way to filter for all possibilities. Perhaps the solution would be to write an application that creates a "moderation" queue of possible strings and displays each one highlighted and in context of several lines of code. You could then glance at the code to determine if it is a string that needs localization or not and hit a single key to localize or ignore the string.</p>
http://stackoverflow.com/questions/571766/why-dont-large-programs-such-as-games-use-loads-of-different-threads/571787#57178718Answer by steveth45 for Why don't large programs (such as games) use loads of different threads?steveth452009-02-21T00:35:19Z2009-02-21T00:35:19Z<p>I don't know about the games that you have played, but most games run the sound on a separate thread. Networking code, at least the socket listeners run on a separate thread.</p>
<p>However, the rest of the game engine generally runs in a single thread. There are reasons for this. For example, most processing in a game runs a single chain of dependencies. Graphics depend on state of physics engine as does the artificial intelligence. Designing for multiple threads means that you have to have frame latency between the various subsystems for concurrency. You get quicker response time and snappier game play if these subsystems are computed linearly each frame. The part of the game that benefits the most from parallelization is of course the rendering subsystem which is offloaded to highly parallelized graphics accelerator cards.</p>
http://stackoverflow.com/questions/554205/with-mysql-how-do-i-insert-into-a-table-on-condition-that-the-value-does-not-exi1With MySQL, how do I insert into a table on condition that the value does not exist in another table?steveth452009-02-16T19:02:53Z2009-02-16T20:15:06Z
<p>I have a MySQL database and I would like to insert some values into one table, assuming that a particular value that I am inserting does not match a value in a different table.</p>
<p>Here is a simplified/example structure:</p>
<pre><code>Table: invites
id : int (auto-increment index)
name : varchar
message : varchar
Table: donotinvite
name : varchar (index)
</code></pre>
<p>Is it possible to do a conditional insert of a 'name' and 'message' pair into the 'invites' table assuming the 'name' does not match any 'name' from the 'donotinvite' table with a single statement?</p>
<p>Something like this, perhaps?</p>
<pre><code>INSERT INTO invites
SET name = 'joe', message = 'This is an invite'
WHERE NOT EXISTS
(SELECT name
FROM donotinvite
WHERE name = 'joe')
</code></pre>
http://stackoverflow.com/questions/554205/with-mysql-how-do-i-insert-into-a-table-on-condition-that-the-value-does-not-exi/554353#5543531Answer by steveth45 for With MySQL, how do I insert into a table on condition that the value does not exist in another table?steveth452009-02-16T19:48:37Z2009-02-16T20:15:06Z<p>Here is a re-posting of <a href="http://stackoverflow.com/users/67009/jonstjohn">jonstjohn</a>'s strangely deleted answer, slightly modified by me:</p>
<pre><code>INSERT INTO invites (name, message)
SELECT 'joe','This is an invite'
FROM donotinvite
WHERE name <> 'joe'
</code></pre>
<p>EDIT: this doesn't do what I want :) .</p>
http://stackoverflow.com/questions/548751/should-i-become-proficient-with-stl-libraries-before-learning-boost-alternatives/548827#5488277Answer by steveth45 for Should I become proficient with STL libraries before learning BOOST alternatives?steveth452009-02-14T09:20:10Z2009-02-14T09:20:10Z<p>I'd suggest getting a clear handle on STL, before looking at Boost. Boost is meant to build on top of STL and many of the libraries are slated to become part of the standard library eventually. Boost libraries are generally less mature and less standard than STL. Also, many boost libraries go too far, in my opinion, adding "features" that don't natively exist in C++ (leading to really insane syntax). In many cases there are more sane C++ idioms available for solving most programming problems without using these arcane Boost libraries.</p>
http://stackoverflow.com/questions/548793/a-good-tutorial-on-creating-a-php-forum-from-scratch/548810#5488102Answer by steveth45 for a good tutorial on creating a php forum from scratchsteveth452009-02-14T09:12:40Z2009-02-14T09:12:40Z<p>PHP does very little to encourage good designs. I would suggest finding a popular PHP framework, look at some example code for that framework and try building the forum in a structured way. You could learn quite a bit from this exercise. The frameworks are not necessary, only helpful for taming the madness that is PHP. </p>
http://stackoverflow.com/questions/548744/php-xpath-question/548752#5487521Answer by steveth45 for PHP & xPath Questionsteveth452009-02-14T08:27:36Z2009-02-14T08:27:36Z<p>Just a wild guess, but <em>echo $elements;</em> is line 46, right? I believe the echo command expects something that is a string or convertible to a string, which $elements is not. Try removing that line.</p>
http://stackoverflow.com/questions/548676/how-useful-difficult-would-it-be-for-me-to-learn-linux-shell-scripting-alternati/548707#5487073Answer by steveth45 for How useful/difficult would it be for me to learn linux shell scripting? Alternative recommendations?steveth452009-02-14T07:53:59Z2009-02-14T07:53:59Z<p>Shell scripting is mostly useless. I'm a Linux guy, and I can write a shell script if I have to, but any task that would normally need a shell script can be done in a more programmer-like way in Python. If you need a lot of scripts, you can factor out some of your more useful code into classes that can be shared and consumed by multiple scripts. The Python scripts will run orders of magnitude faster than the pure shell counterparts. I find that shell script syntax (Bash, for example) doesn't support decent data structures. Even Perl is an improvement over pure shell scripting.</p>
<p>If you are looking to expand your horizons learn different programming languages and paradigms. If you were taught with Java, learn a dynamic language like Python or Perl, and a low-level language like C or Pascal. If you wrote CLI apps, write an application that has a GUI layer. If you only learned how to write traditional desktop applications, write a database backed web application.</p>
<p>Oh, yeah, learn Javascript. It is probably the single language that every programmer should know for career advancement purposes.</p>
http://stackoverflow.com/questions/452806/multiple-windows-in-opengl/452818#4528182Answer by steveth45 for Multiple windows in OpenGL?steveth452009-01-17T05:03:11Z2009-01-17T05:03:11Z<p>Yes, this is possible. For each window you will need to create a unique device context and render context.</p>
<pre><code>HDC hDC = GetDC( hWnd ); /* get the device context for a particular window */
/* snip */
HGLRC hRC;
hRC = wglCreateContext( hDC ); /* get a render context for the same window */
/* repeat with hDC2 and hRC2 with another window handle*/
</code></pre>
<p>Before making GL calls to the window you must call wglMakeCurrent like this:</p>
<pre><code>wglMakeCurrent( hDC, hRC );
/* GL calls for first window */
wglMakeCurrent( NULL, NULL);
wglMakeCurrent( hDC2, hRC2 );
/* GL calls for second window */
wglMakeCurrent( NULL, NULL);
</code></pre>
http://stackoverflow.com/questions/449803/how-can-i-show-file-sizes-with-commas-when-getting-a-directory-listing-with-ls/449830#4498303Answer by steveth45 for How can I show file sizes with commas when getting a directory listing with 'ls -l'?steveth452009-01-16T08:25:09Z2009-01-16T08:25:09Z<p>I don't think 'ls' has exactly that capability. If you are looking for readability, 'ls -lh' will give you file sizes that are easier for humans to parse.</p>
<pre><code>-rw-rw-rw- 1 alice themonkeys 1.2G 2008-08-20 07:01 foo.log
-rw-rw-rw- 1 bob bob 244M 2008-08-20 05:30 bar.txt
</code></pre>
http://stackoverflow.com/questions/449665/using-activerecord-and-rails-to-insert-data-into-postgresql-database-get-this-err/449815#4498151Answer by steveth45 for Using ActiveRecord and Rails to insert Data into postgresql database get this error: RuntimeError: ERROR C22003 Minteger osteveth452009-01-16T08:17:38Z2009-01-16T08:17:38Z<p>The error is at the PostgreSQL level. Error 22003 is the "NUMERIC VALUE OUT OF RANGE" error for PostgreSQL as seen <a href="http://www.postgresql.org/docs/8.1/static/errcodes-appendix.html" rel="nofollow">here</a>. A quick glance at your insert statement shows integers that are greater than 32 bits, those might be the culprits.</p>
http://stackoverflow.com/questions/418612/what-calculator-is-an-aid-to-you-as-a-programmer/418644#4186448Answer by steveth45 for What calculator is an aid to you as a programmer?steveth452009-01-06T23:38:01Z2009-01-07T00:59:47Z<p><a href="http://www.google.com/" rel="nofollow">Google</a> works fantastically well as a calculator, as does the search bar. In Firefox 3 it will give you mathematical answers as the first "suggestion" in the drop down even without hitting enter.</p>
<p>It does unit conversions, too.</p>
http://stackoverflow.com/questions/94226/how-to-switch-back-to-a-previous-version-of-a-file-without-deleting-its-subsequen/94392#94392Comment by steveth45 on How to switch back to a previous version of a file without deleting its subsequent revisions?steveth452009-11-10T02:26:18Z2009-11-10T02:26:18ZThis was very helpful, thanks.http://stackoverflow.com/questions/1696047/casting-const-void-pointer-to-array-of-const-char-pointers-properly-in-cComment by steveth45 on Casting const void pointer to array of const char pointers properly in C.steveth452009-11-08T11:27:00Z2009-11-08T11:27:00ZGCC 4.4.1 with -Wallhttp://stackoverflow.com/questions/1680390/code-completion-in-vi-editor/1680468#1680468Comment by steveth45 on code completion in vi editorsteveth452009-11-05T16:48:56Z2009-11-05T16:48:56ZHonestly, its a different type of power. IDE's have powerful capabilities, like scanning a project and providing intelligent auto-completion, syntax highlighting, etc. Vi-style editing provides power at a low-level, pure text editing way. With the jVi plugin, you lose none of the underlying power of the IDE, so you get the best of both worlds. It's a win-win. Vi/vim is still <i>very</i> popular: <a href="http://answers.polldaddy.com/poll/2150554/" rel="nofollow">answers.polldaddy.com/poll/2150554</a>http://stackoverflow.com/questions/1661796/why-doesnt-perl-support-the-normal-operator-to-index-a-stringComment by steveth45 on Why doesn't Perl support the normal [] operator to index a string?steveth452009-11-02T16:13:44Z2009-11-02T16:13:44ZIt's not a feature. It's just syntax.http://stackoverflow.com/questions/281803/is-there-an-object-centric-perl-orm/281859#281859Comment by steveth45 on Is there an object-centric Perl ORM?steveth452009-10-31T05:22:46Z2009-10-31T05:22:46ZI've never had any trouble mapping my objects to tables in a database. Where is the difficulty?http://stackoverflow.com/questions/1633000/list-of-large-projects-built-using-perlComment by steveth45 on List of large projects built using Perlsteveth452009-10-28T16:48:56Z2009-10-28T16:48:56ZModern Perl being a poor fit for large projects is a myth. It works exactly as well as any other functional, object oriented, dynamic language. Take a look at the source for a large, successful Perl project like Movable Type.http://stackoverflow.com/questions/108699/good-php-orm-library/924828#924828Comment by steveth45 on Good PHP ORM Library?steveth452009-10-01T20:46:34Z2009-10-01T20:46:34ZPlease, please, please drop your host. Don't support hosting companies who think that PHP without pdo_mysql is a reasonable platform.http://stackoverflow.com/questions/1317107/javascript-function-not-get-called-when-arguments-from-php/1317126#1317126Comment by steveth45 on javascript function not get called when arguments from phpsteveth452009-08-23T08:53:16Z2009-08-23T08:53:16ZSingle quotes are valid Javascript, but not HTML. It only tends to work in browsers because the browser developers happen to be very lenient. Don't do this, please. http://stackoverflow.com/questions/93692/which-javascript-engine-would-you-embed-in-an-application/97195#97195Comment by steveth45 on Which Javascript engine would you Embed in an application?steveth452009-08-23T06:00:13Z2009-08-23T06:00:13ZCompiles natively to x64 now, too.http://stackoverflow.com/questions/93692/which-javascript-engine-would-you-embed-in-an-application/190106#190106Comment by steveth45 on Which Javascript engine would you Embed in an application?steveth452009-08-23T05:59:21Z2009-08-23T05:59:21ZAs an update, I re-picked up the project I was working on several months ago with v8. I grabbed the latest version of v8, and my program compiles and runs just like it did before. It's a very stable API. I'm duly impressed.http://stackoverflow.com/questions/105572/a-script-to-change-all-tables-and-fields-to-the-utf-8-bin-collation-in-mysql/105912#105912Comment by steveth45 on A script to change all tables and fields to the utf-8-bin collation in MYSQLsteveth452009-07-23T22:12:08Z2009-07-23T22:12:08ZShould have been a comment, this is not a solution.http://stackoverflow.com/questions/550632/favorite-django-tips-features/946443#946443Comment by steveth45 on Favorite Django Tips & Features?steveth452009-07-16T04:54:15Z2009-07-16T04:54:15ZThis is ONLY way to roll!http://stackoverflow.com/questions/947621/c-long-to-string/947704#947704Comment by steveth45 on C++ long to stringsteveth452009-06-03T23:05:10Z2009-06-03T23:05:10ZThis is doing the opposite conversion from what was asked.http://stackoverflow.com/questions/780837/what-is-a-good-linux-ide-for-code-completion/781024#781024Comment by steveth45 on What is a good Linux IDE for code completion?steveth452009-05-27T21:28:57Z2009-05-27T21:28:57ZI can attest that the code completion (C++) is decent in NetBeans.http://stackoverflow.com/questions/889527/mysql-move-node-in-nested-set/899968#899968Comment by steveth45 on MySQL: Move node in nested setsteveth452009-05-26T07:01:23Z2009-05-26T07:01:23ZHmm, an off by one error. I'll take a closer look. It's a modified version of a very similar function I use that works slightly differently and so far without error.