User spoulson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:27:10Z http://stackoverflow.com/feeds/user/3347 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/51130/how-many-real-world-developers-are-involved-with-the-demoscene 9 How many real world developers are involved with the Demoscene? spoulson 2008-09-09T02:24:18Z 2009-12-02T08:12:49Z <p>I grew up learning to code based on what I've experienced with the <a href="http://en.wikipedia.org/wiki/Demoscene" rel="nofollow">demoscene</a>. It seems to be a pretty sparse subculture in the US. How many developers watch or participate in the scene?</p> <p>Teaser: If you haven't checked out the scene before, take a look at one of my favorites: <a href="http://www.pouet.net/prod.php?which=30244" rel="nofollow">Debris</a> by Farbrausch. Watch on <a href="http://demoscene.tv/page.php?id=172&amp;lang=uk&amp;vsmaction=view_prod&amp;id_prod=12909" rel="nofollow">demoscene.tv</a> or download the <a href="http://www.scene.org/file.php?file=/parties/2007/breakpoint07/demo/fr-041_debris.zip&amp;fileinfo" rel="nofollow">app</a> (179k) and run it yourself. No video, all realtime rendering and audio. Think, a small group of guys wrote this for a competition on their free time.</p> http://stackoverflow.com/questions/1821561/c-implications-of-making-a-method-virtual/1821595#1821595 2 Answer by spoulson for C++ : implications of making a method virtual spoulson 2009-11-30T18:40:10Z 2009-11-30T18:40:10Z <p>There is a small implied performance penalty of a vtable lookup every time a virtual function is called. If it were not virtual, function calls are direct, since the code location is known at compile time. Wheras at runtime, a virtual function address must be referenced from the vtable of the object you're calling upon.</p> http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1770454#1770454 5 Answer by spoulson for Code-Golf: What is the shortest program that compiles and crashes? spoulson 2009-11-20T13:34:39Z 2009-11-20T13:50:07Z <p>In C, 20 characters:</p> <pre><code>void main(){main();} </code></pre> <p>Update: Suggested by roe, 15 characters:</p> <pre><code>main(){main();} </code></pre> <p><em>Note: Tested with VC++ 2008.</em></p> http://stackoverflow.com/questions/1770081/initialising-arrays-in-c/1770159#1770159 7 Answer by spoulson for Initialising arrays in C++ spoulson 2009-11-20T12:25:45Z 2009-11-20T12:25:45Z <p>If the variable is a global or static, then its data is typically stored verbatim in the compiled executable. So, your <code>char arrBuffer[1024]</code> will increase executable size by 1024 bytes. Initializing it will ensure the executable contains your data instead of the default 0's or whatever the compiler chooses. When the program starts, no processing is required to initialize the variables.</p> <p>On the other hand, variables on the stack, such as non-static local function variables, are not stored in the executable the same way. Instead, on function entry the space is allocated on the stack and a memcpy places the data into the variable, thereby impacting performance.</p> http://stackoverflow.com/questions/1766208/unix-timestamp-to-net-datetime/1766617#1766617 1 Answer by spoulson for Unix timestamp to .net DateTime spoulson 2009-11-19T21:14:36Z 2009-11-19T21:14:36Z <p><a href="http://www.onlineconversion.com/unix%5Ftime.htm" rel="nofollow">http://www.onlineconversion.com/unix_time.htm</a> confirms your calculations are right. Unix time 1258598728 = "Thu, 19 Nov 2009 02:45:28 GMT"</p> http://stackoverflow.com/questions/1765579/fast-algorithm-for-searching-for-substrings-in-a-string/1765666#1765666 2 Answer by spoulson for Fast algorithm for searching for substrings in a string spoulson 2009-11-19T18:50:10Z 2009-11-19T18:50:10Z <p>Also check the <a href="http://en.wikipedia.org/wiki/Boyer%E2%80%93Moore%5Fstring%5Fsearch%5Falgorithm" rel="nofollow">Boyer-Moore algorithm</a> for single-string pattern matching.</p> http://stackoverflow.com/questions/1731138/jquery-appending-attribute-value-to-each-element/1731163#1731163 5 Answer by spoulson for JQuery: Appending Attribute Value to Each Element spoulson 2009-11-13T18:59:54Z 2009-11-13T18:59:54Z <p>Try:</p> <pre><code>$("img").each(function () { var originalSrc = $(this).attr('src'); $(this).attr('src', 'http://www.domain-name.com/' + originalSrc); }); </code></pre> http://stackoverflow.com/questions/1731077/css-position-fixed-and-bottom/1731101#1731101 3 Answer by spoulson for CSS - position fixed and bottom spoulson 2009-11-13T18:47:25Z 2009-11-13T18:47:25Z <p>See <a href="http://tagsoup.com/cookbook/css/fixed/" rel="nofollow">Fixing position:fixed for Internet Explorer</a> for tips on IE compatibility in either top or bottom positioning. Particularly, it's ugly when bottom positioned block scrolls up with the content, instead of staying fixed as expected.</p> http://stackoverflow.com/questions/1711110/whats-a-good-and-simple-way-to-backup-an-svn-repo-to-an-ftp-server/1711147#1711147 0 Answer by spoulson for What's a good and simple way to backup an SVN repo to an FTP server? spoulson 2009-11-10T21:01:23Z 2009-11-12T21:27:17Z <p>Use <a href="http://svnbook.red-bean.com/en/1.1/re31.html" rel="nofollow"><code>svnadmin dump</code></a> to do a backup, then <a href="http://en.wikipedia.org/wiki/CURL" rel="nofollow"><code>cURL</code></a> to FTP upload.</p> http://stackoverflow.com/questions/1688722/reversing-order-of-elements/1688752#1688752 0 Answer by spoulson for Reversing order of elements spoulson 2009-11-06T16:35:36Z 2009-11-06T16:35:36Z <p>I've used this technique. It's ideal for small collections.</p> <pre><code>jQuery.fn.reverse = function() { return this.pushStack(this.get().reverse(), arguments); }; var r = $('.class').reverse(); </code></pre> http://stackoverflow.com/questions/1684638/a-very-simple-c-oop-question/1684664#1684664 1 Answer by spoulson for a very simple c++ oop question spoulson 2009-11-06T00:42:13Z 2009-11-06T00:42:13Z <p>Try this:</p> <pre><code>class B; // prototype declaration class hello { hello() { //the constructor B an_instance_of_b; // an instance of class b } }; class B { public: void foo() { cout &lt;&lt; "foo"; } }; </code></pre> <p>First, they're not nested in your example. There's also no apparent need to do so, anyway.</p> <p>Second, there were some function and data declaration errors.</p> <p>Lastly, you need a prototype of <code>B</code> so that the <code>hello::an_instance_of_b</code> declaration can work as a forward reference. Or, just declare <code>B</code> before <code>hello</code>.</p> http://stackoverflow.com/questions/1680267/asp-net-application-domain/1680302#1680302 0 Answer by spoulson for ASP.net Application domain spoulson 2009-11-05T12:38:09Z 2009-11-05T12:38:09Z <p>When IIS6 starts up, it starts the App Pools. Each App Pool is a w3wp.exe process. Each process then creates its AppDomains for each associated ASP.NET application and triggers the Application start events on each.</p> http://stackoverflow.com/questions/1629123/to-write-a-bootloader-in-c-or-c/1680259#1680259 0 Answer by spoulson for To write a bootloader in C or C++? spoulson 2009-11-05T12:29:09Z 2009-11-05T12:29:09Z <p>Go with C++ and objchoose what language features you need. You still have full control of the output object code as long as you understand the C++ abstractions that you're using.</p> <p>Use of OO can still run well if you avoid the use of virtual functions. Avoid immutable object types that require a lot of copying in order to pass values, like std::string. But, you can still use features like templates without any real impact on runtime performance.</p> http://stackoverflow.com/questions/1673445/how-to-convert-byte-to-stdstring-in-c/1673466#1673466 1 Answer by spoulson for How to Convert Byte* to std::string in C++? spoulson 2009-11-04T12:23:56Z 2009-11-04T13:27:49Z <pre><code>BYTE *str1 = "Hello World"; std::string str2((char *)str1); /* construct on the stack */ </code></pre> <p>Alternatively:</p> <pre><code>std::string *str3 = new std::string((char *)str1); /* construct on the heap */ cout &lt;&lt; &amp;str3; delete str3; </code></pre> http://stackoverflow.com/questions/1663451/php-and-operators/1663468#1663468 -5 Answer by spoulson for PHP != and == operators spoulson 2009-11-02T20:25:16Z 2009-11-02T20:25:16Z <p>The second snippet is just plain wrong logic. The first example is correct.</p> http://stackoverflow.com/questions/1651874/what-is-the-best-way-to-go-about-writing-a-simple-x86-assembler/1651898#1651898 1 Answer by spoulson for What is the best way to go about writing a simple x86 assembler? spoulson 2009-10-30T19:42:31Z 2009-10-30T19:42:31Z <p>You will need to write a lexer and parser to read in source code and output the abstract syntax tree (AST). The AST can then be traversed to generate the byte code output.</p> <p>I recommend researching books on writing a compiler. This is usually a college level class, so there should be plenty of books. Sorry, I can't recommend one in particular.</p> <p>You can also read up on the <a href="http://antlr.org" rel="nofollow">ANTLR</a> tool. It can take in grammar rules and output code in various languages to do the lexer/parser work for you.</p> <p>On the one-pass or two-pass: you would need a two-pass compiler to resolve forward references. If that's not important, then a one-pass will do. I recommend you keep it simple, since this is your first compiler.</p> http://stackoverflow.com/questions/1471654/reversing-an-md5-hash/1651611#1651611 0 Answer by spoulson for Reversing an MD5 Hash spoulson 2009-10-30T18:43:30Z 2009-10-30T18:43:30Z <p>It's already mentioned multiple times that this is poor practice.</p> <p>But, in the interest of possibilities, there are web tools that do MD5 reverse lookups.</p> <p>One such tool has a web UI and an API: <a href="http://tools.benramsey.com/md5/" rel="nofollow">http://tools.benramsey.com/md5/</a></p> http://stackoverflow.com/questions/1649591/using-operator/1649642#1649642 0 Answer by spoulson for Using || operator spoulson 2009-10-30T12:51:42Z 2009-10-30T12:51:42Z <p>Does this "XML sort of language" support <code>&amp;&amp;</code>? If so, invert the logic:</p> <p><code>if ((x == 2) || (y == 2))</code> converts to: <code>if (!((x != 2) &amp;&amp; (y != 2)))</code></p> http://stackoverflow.com/questions/1639180/how-does-the-function-construct-work-and-why-do-people-use-it/1639246#1639246 4 Answer by spoulson for How does the (function() {})() construct work and why do people use it? spoulson 2009-10-28T18:37:12Z 2009-10-28T18:37:12Z <p>This is considered a <a href="http://stackoverflow.com/questions/1424837/best-asp-net-background-service-implementation">closure</a>. It means the code contained will run within its own lexical scope. This means you can define new variables and functions and they won't collide with the namespace used in code outside of the closure.</p> <pre><code>var i = 0; alert("The magic number is " + i); (function() { var i = 99; alert("The magic number inside the closure is " + i); })(); alert("The magic number is still " + i); </code></pre> <p>This will generate three popups, demonstrating that the <code>i</code> in the closure does not alter the pre-existing variable of the same name:</p> <ul> <li>The magic number is 0</li> <li>The magic number inside the closure is 99</li> <li>The magic number is still 0</li> </ul> http://stackoverflow.com/questions/1637581/c-mfc-vs-net/1638218#1638218 1 Answer by spoulson for C++ MFC vs .NET? spoulson 2009-10-28T15:59:39Z 2009-10-28T15:59:39Z <p>What is the problem you're looking to solve? Suppose you know both C++/MFC and C#/.NET equally. Which toolset would let you build and maintain better? (Better is subjective, but again that depends on your goals)</p> <p>Unless I'm doing a lot of work with native APIs that aren't available in .NET, I will go with .NET by far. C++ is a great language and nothing's to stop you from coding in Managed C++ so as to keep the .NET framework and memory management.</p> <p>By comparison, my observation is the MFC framework is very much a kludge and unwieldy compared to .NET Windows forms.</p> http://stackoverflow.com/questions/1562515/why-does-stri-str-j-not-work-here/1562550#1562550 0 Answer by spoulson for Why does *(str+i) = *(str +j) not work here? spoulson 2009-10-13T19:53:11Z 2009-10-13T20:08:21Z <p>Interesting that I've never noticed this. I was able to replicate this condition in VS2008 C++.</p> <p>Typically, it is a bad idea to do in-place modification of constants.</p> <p>In any case, <a href="http://www.daniweb.com/forums/thread104765.html" rel="nofollow">this post</a> explains this situation pretty clearly.</p> <blockquote> <p>The first (char[]) is local data you can edit (since the array is local data).</p> <p>The second (char *) is a local pointer to global, static (constant) data. You are not allowed to modify constant data.</p> <p>If you have GNU C, you can compile with -fwritable-strings to keep the global string from being made constant, but this is not recommended.</p> </blockquote> http://stackoverflow.com/questions/270333/how-to-generate-an-ssl-client-certificate-from-a-disconnected-network 0 How to generate an SSL client certificate from a disconnected network? spoulson 2008-11-06T21:22:43Z 2009-10-12T14:10:21Z <p>I have a unique situation where I need to implement client certificate authentication over HTTPS between IE browser and IIS 6. The browser and IIS are separated by a firewall that only allows the browser to connect to IIS on the SSL port.</p> <p>We have an internal certificate server on the same network as IIS. I've generated an SSL server cert for IIS and that is installed. I configured IIS to only allow SSL, require client certificates.</p> <p>The limitation here is the browser machine is on a disconnected network, so I can't go to the CA's <a href="http://caserver/CertSrv" rel="nofollow">http://caserver/CertSrv</a> URL and <a href="http://www.windowsecurity.com/articles/Client-Certificate-Authentication-IIS6.html" rel="nofollow">request a client cert</a> like you normally would.</p> <p>I figured if there were a way that I could generate a CSR against the Root CA's public key, I can copy it to the CA server to generate the client cert. But, there appears to be no provision in IE or the Certificates MMC to do this. The Certificates MMC seems to require a direct connection to the CA.</p> <p>Has anyone solved this before?</p> <p>FYI, All servers referenced run Windows Server 2003.</p> <p><strong>Update:</strong> Thanks to Jonas Oberschweiber and Mark Sutton for pointing out the CertReq.exe command line tool. Using this, I've generated a CSR, and consequently a client certificate that installs successfully. However, IE is apparently not sending this client cert when accessing the IIS server in question; it still generates a 403.7 "Forbidden: SSL client certificate is required." I suspect that the reason is that the Subject field of the client cert does not match the user id of the account running IE, thus perhaps not sending a mismatching client cert. The Subject matches that of the user I used to submit the CSR and generate the client cert on the other end of the firewall.</p> <p>Does the Subject field matter? Is there something else I need to do to enable IE to send this cert?</p> http://stackoverflow.com/questions/651798/as-a-developer-is-it-acceptable-to-be-rude-to-your-userbase -3 As a developer, is it acceptable to be rude to your userbase? spoulson 2009-03-16T19:23:46Z 2009-10-12T03:32:39Z <p>Say, you're a developer and you decide to build your next project incorporating the a well known open source project called Foobar. (names changed to protect the innocent) You reference their online documentation to get started, but from time to time have questions that aren't answered by docs alone. You do Googling, but sometimes to no avail.</p> <p>You find they have an IRC channel, so you listen, participate where welcome, and ask questions sparingly. Occasionally, a wise individual answers your question and helps you along.</p> <p>But, suppose it weren't so smooth. What if every question were met with such abrasiveness and insulting nature that you wonder why you ever used their project to begin with. Suppose you believe you found a legitimate bug in the library, so you took the effort to isolate it with a piece of code that can replicate it, then submitted it to the project's bug tracker only to be closed by the lead developer with condescending comments alluding to the submitters inability to design code to a certain own standard. Why help at all if you are to be shouted at for trying?</p> <p>I believe this is an isolated culture of elitist nerd rage. But, is this acceptable to maintain a working relationship and continue using the Foobar project?</p> <p>EDIT: Above is a rhetorical question. Of course you wouldn't stand for such unprofessionalism. But, what can be done about it, assuming you can't simply stop using their product? What stories can you share?</p> http://stackoverflow.com/questions/1539190/size-of-struct-and-corresponding-variable/1539276#1539276 0 Answer by spoulson for size of struct and corresponding variable spoulson 2009-10-08T17:22:39Z 2009-10-08T17:22:39Z <p>Various compilers will optimize to add padding between or at the end of the struct. So, it's not safe on all compilers or platforms to assume the allocated size is what it seems. Check your compiler options for setting struct padding.</p> <p>For instance, Visual Studio uses the <a href="http://msdn.microsoft.com/en-us/library/2e70t5y1%28VS.80%29.aspx" rel="nofollow"><code>#pragma pack</code></a> directive to override default optimizations.</p> http://stackoverflow.com/questions/243196/what-is-the-difference-between-creative-commons-and-gpl-licensing 7 What is the difference between Creative Commons and GPL licensing? spoulson 2008-10-28T13:03:50Z 2009-08-31T19:23:04Z <p>I read the high level details on <a href="http://creativecommons.org/licenses/GPL/2.0/" rel="nofollow">CC-GNU GPL 2.0</a>, and <a href="http://creativecommons.org/licenses/by-sa/2.5/" rel="nofollow">Creative Commons used by SO</a>. I'm not a lawyer, so I'm not sure I get the specific pros and cons of each variation of open source license.</p> <p>What is the difference between the popular GPL's and Creative Commons' licenses in terms of what a software developer or company has to gain or lose by choosing particular terms when releasing an open source project?</p> http://stackoverflow.com/questions/290115/how-did-you-land-your-work-from-home-development-job 6 How did you land your work-from-home development job? spoulson 2008-11-14T13:42:04Z 2009-08-27T19:11:58Z <p>Jobs offering developers the flexibility to work from home are rarely published on job sites. So how is it that you landed your work-from-home gig? Is it worth it?</p> http://stackoverflow.com/questions/654425/how-can-i-aggregate-rows-to-reduce-the-resolution-of-data-in-a-sql-query 1 How can I aggregate rows to reduce the resolution of data in a SQL query? spoulson 2009-03-17T14:11:39Z 2009-08-27T19:09:47Z <p>I'm working with an MSSQL 2000 database containing large amounts of Windows perfmon data collected for all servers in the environment. I'm using SSRS 2005 to build a custom report chart to visualize the metrics over time.</p> <p>If I wanted to view, say, the last month the extensive number of data points would create an ugly report with unreadable labels on the X axis. I would like to reduce the aggregate the data by time down to <em>n</em> data points so to give the average value over the grouped time spans.</p> <p>I've tried building a query with fancy GROUP BY clauses, haven't been able to build something that executes. I figured this ought to be a common task for SQL, but I haven't found any answers online.</p> <p>The table structure basically looks like below. This is actually the <a href="http://technet.microsoft.com/en-us/opsmgr/bb498244.aspx" rel="nofollow">MOM 2005</a> OnePoint database, but I think the application is irrelevant.</p> <pre><code>CREATE TABLE PerfTable ( [time] datetime, value float, Server nvarchar(356), ObjectName nvarchar(225), CounterName nvarchar(225), InstanceName nvarchar(225), Scale float ); </code></pre> http://stackoverflow.com/questions/654425/how-can-i-aggregate-rows-to-reduce-the-resolution-of-data-in-a-sql-query/1343199#1343199 0 Answer by spoulson for How can I aggregate rows to reduce the resolution of data in a SQL query? spoulson 2009-08-27T19:09:47Z 2009-08-27T19:09:47Z <p>I have a solution that works closely to what I was asking for. If I wanted to group by a time unit, it's pretty simple:</p> <p>Group by hour:</p> <pre><code>select dateadd(hh, datediff(hh, '1970-01-01', [time]), '1970-01-01'), Server, ObjectName, CounterName, InstanceName, avg(value) from PerfTable group by dateadd(hh, datediff(hh, '1970-01-01', [time]), '1970-01-01'), ComputerName, ObjectName, CounterName, InstanceName order by dateadd(hh, datediff(hh, '1970-01-01', [time]), '1970-01-01') desc, ObjectName, CounterName, InstanceName, ComputerName </code></pre> <p>This just doesn't address the need to scale down to <em>n</em> data points.</p> http://stackoverflow.com/questions/1295597/why-doesnt-jquery-this-text-work-inside-a-link/1295622#1295622 1 Answer by spoulson for Why doesn't jQuery $(this).text() work inside a link? spoulson 2009-08-18T18:18:17Z 2009-08-18T18:18:17Z <p>If you use the "onclick" event handler, <code>this</code> will be available to obtain the <code>text()</code>.</p> http://stackoverflow.com/questions/1260736/does-jquery-have-built-in-json-support/1260887#1260887 0 Answer by spoulson for Does jQuery have built in JSON support? spoulson 2009-08-11T14:54:50Z 2009-08-11T14:54:50Z <p>jQuery's JSON support is simplistic, throwing caution to the wind. I've used <code>$.ajax</code> and then parse the response text with the <a href="http://www.json.org/js.html" rel="nofollow">json.org javascript library</a>. It lexically parses to avoid using <code>eval()</code> and possibly executing arbitrary code.</p> http://stackoverflow.com/questions/1873505/bit-operations-in-c Comment by spoulson on Bit operations in C spoulson 2009-12-09T12:45:58Z 2009-12-09T12:45:58Z Well duh. Everyone knows what an anonymous user would do. http://stackoverflow.com/questions/190560/jquery-animate-backgroundcolor/1184410#1184410 Comment by spoulson on jQuery animate backgroundColor spoulson 2009-11-27T16:06:15Z 2009-11-27T16:06:15Z This list came from the jQuery color plugin: <a href="http://plugins.jquery.com/project/color" rel="nofollow">plugins.jquery.com/project/color</a> http://stackoverflow.com/questions/1806686/is-it-possible-to-send-a-http-request-only-to-get-the-last-modified-time/1806707#1806707 Comment by spoulson on Is it possible to send a http request only to get the last modified time? spoulson 2009-11-27T04:30:19Z 2009-11-27T04:30:19Z I think he was asking how... http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1770454#1770454 Comment by spoulson on Code-Golf: What is the shortest program that compiles and crashes? spoulson 2009-11-20T13:48:23Z 2009-11-20T13:48:23Z Yes, but standard compliance is not a requirement here. It compiles and crashes in VC++ 2008. http://stackoverflow.com/questions/1770081/initialising-arrays-in-c/1770136#1770136 Comment by spoulson on Initialising arrays in C++ spoulson 2009-11-20T12:27:35Z 2009-11-20T12:27:35Z You're measuring variable initialization on the stack. This is different than a global variable initializer. Though, it's not clear which the poster is using. http://stackoverflow.com/questions/1742775/c-meaning-of-statement-action-wrappedaction/1743068#1743068 Comment by spoulson on C#: meaning of statement... Action wrappedAction = () => spoulson 2009-11-16T18:00:16Z 2009-11-16T18:00:16Z This is syntactic sugar, not framework magic. So, should read &quot;...only available in C# 3.0+. The C# 2.0 version...&quot; http://stackoverflow.com/questions/1742775/c-meaning-of-statement-action-wrappedaction Comment by spoulson on C#: meaning of statement... Action wrappedAction = () => spoulson 2009-11-16T17:58:59Z 2009-11-16T17:58:59Z FWIW, C# 3.0 syntax requires at least .NET 2.0 framework. The project settings determine if it's compiled for 2.0 or 3.5 framework. http://stackoverflow.com/questions/1742848/why-exactly-do-i-need-an-explicit-upcast-when-implementing-queryinterface-in-an Comment by spoulson on Why exactly do I need an explicit upcast when implementing QueryInterface() in an object with multiple interfaces() spoulson 2009-11-16T15:23:20Z 2009-11-16T15:23:20Z How is <code>ppv</code> defined? http://stackoverflow.com/questions/1731007/aspnetwp-at-100-cpu-but-what-website/1731016#1731016 Comment by spoulson on Aspnet_wp at 100% cpu, but what website? spoulson 2009-11-13T19:03:32Z 2009-11-13T19:03:32Z Added IIS7 details for ya http://stackoverflow.com/questions/1711110/whats-a-good-and-simple-way-to-backup-an-svn-repo-to-an-ftp-server/1711147#1711147 Comment by spoulson on What's a good and simple way to backup an SVN repo to an FTP server? spoulson 2009-11-12T21:28:13Z 2009-11-12T21:28:13Z Oops, you're right. Corrected the command. http://stackoverflow.com/questions/6361/interview-programming-questions-in-house-exam/6374#6374 Comment by spoulson on Interview Programming Questions - In house Exam spoulson 2009-11-06T15:10:11Z 2009-11-06T15:10:11Z Looks like the techinterviews.org site is gone. :( http://stackoverflow.com/questions/1629123/to-write-a-bootloader-in-c-or-c/1629758#1629758 Comment by spoulson on To write a bootloader in C or C++? spoulson 2009-11-05T12:24:48Z 2009-11-05T12:24:48Z Have a link to where to find this library? http://stackoverflow.com/questions/588176/invalid-viewstate-error/758085#758085 Comment by spoulson on Invalid viewstate error spoulson 2009-11-04T14:14:27Z 2009-11-04T14:14:27Z Huh? Who's upvoting a &quot;bump&quot; answer? http://stackoverflow.com/questions/1673445/how-to-convert-byte-to-stdstring-in-c/1673466#1673466 Comment by spoulson on How to Convert Byte* to std::string in C++? spoulson 2009-11-04T13:29:52Z 2009-11-04T13:29:52Z You're all right. I hadn't run this through the compiler as I should have. You will need the (char *) typecast, since std::string doesn't handle BYTE/unsigned char types. And the reference example was wrong; it should have been a pointer. http://stackoverflow.com/questions/225546/amazing-programming-achievements/226907#226907 Comment by spoulson on Amazing programming achievements spoulson 2009-11-03T20:45:58Z 2009-11-03T20:45:58Z Geocities is now defunct. Hopefully, this has been hosted elsewhere.