User Steve Hanov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T13:56:39Zhttp://stackoverflow.com/feeds/user/15947http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829586/how-do-i-give-an-html-canvas-the-keyboard-focus-using-jquery1How do I give an HTML canvas the keyboard focus using jquery?Steve Hanov2009-12-01T23:06:42Z2009-12-02T05:35:50Z
<p>I am implementing a game using Javascript, jquery, and the Canvas tag. How can I prevent the browser from processing keyboard shortcuts when the canvas tag has the focus? I have tried event.stopPropagation() and it has no effect.</p>
<p>I can pick up keyboard events. However, when the user presses the spacebar, the web page scrolls down in Firefox. The same happens with the arrow keys. </p>
http://stackoverflow.com/questions/83439/remove-spaces-from-stdstring-in-c8Remove spaces from std::string in C++Steve Hanov2008-09-17T13:51:34Z2009-11-18T09:14:49Z
<p>What is the preferred way to remove spaces from a string in C++? I could loop through all the characters and build a new string, but is there a better way?</p>
http://stackoverflow.com/questions/515803/should-i-disable-the-c-compiler-signed-unsigned-mismatch-warning4Should I disable the C compiler signed/unsigned mismatch warning?Steve Hanov2009-02-05T13:03:53Z2009-11-02T20:14:01Z
<p>The Microsoft C compiler warns when you try to compare two variables, and one is signed, and the other is unsigned. For example:</p>
<pre><code>int a;
unsigned b;
if ( a < b ) { // warning C4018: '&lt;' : signed/unsigned mismatch
}
</code></pre>
<p>Has this warning, in the history of the world, ever caught a real bug? Why's it there, anyway?</p>
http://stackoverflow.com/questions/1505131/visual-representation-of-nodes-in-python/1505330#15053300Answer by Steve Hanov for Visual representation of nodes in PythonSteve Hanov2009-10-01T17:31:43Z2009-10-01T17:31:43Z<p>Consider using a textual representation of the tree. Otherwise, I'd go with graphviz (dotty, actually).</p>
<pre><code>[root]
+------child1
+------child2
+-------child3
+-------child4
</code></pre>
<p>To show the same tree in graphviz, put this in a text file:</p>
<pre><code>digraph graphname {
root -> child1;
root -> child2;
child2 -> child3;
child2 -> child4;
}
</code></pre>
<p>Then run dotty on it, or your tool or choice.</p>
http://stackoverflow.com/questions/880227/what-is-the-minimum-i-have-to-do-to-create-an-rpm-file3What is the minimum I have to do to create an RPM file?Steve Hanov2009-05-18T23:10:14Z2009-09-28T17:51:00Z
<p>I just want to create an RPM file to distribute my Linux binary "foobar", with only a couple of dependencies. It has a config file, /etc/foobar.conf and should be installed in /usr/bin/foobar. </p>
<p>Unfortunately the <a href="http://docs.fedoraproject.org/drafts/rpm-guide-en/" rel="nofollow">documentation for RPM</a> is 27 chapters long and I really don't have a day to sit down and read this, because I am also busy making .deb and EXE installers for other platforms. </p>
<p>Stackoverflow: What is the absolute minimum I have to do to create an RPM? Assume the foobar binary and foobar.conf are in the current working directory.</p>
http://stackoverflow.com/questions/176922/do-you-use-kibibyte-as-a-unit-of-measurement-in-your-programs10Do you use "kibibyte" as a unit of measurement in your programs?Steve Hanov2008-10-07T01:41:31Z2009-09-10T00:21:30Z
<p>For decades, in the field of computing (except disk manufacturers), a KB (kilobyte) was understood to mean 1024 bytes. In the past few years, there has been a movement to use KiB ("kibibyte") to mean 1024 bytes, and <i>change the meaning of kilobyte to be 1000 bytes</i>, dooming us to many more years of confusion. On the other hand, the movement seems to be confined to Gnome, and some <a href="http://en.wikipedia.org/wiki/Talk:Kilobyte#Kibibyte.3F" rel="nofollow">overzealous wikipedia editing</a>.</p>
<p><i>Will you be converting your programs to use KiB?</i> If you have ever displayed a filesize in KB, did you divide by 1000 or 1024?</p>
http://stackoverflow.com/questions/1080499/are-weekly-status-meetings-necessary7Are weekly status meetings necessary?Steve Hanov2009-07-03T19:07:21Z2009-07-03T20:55:21Z
<p>What is your experience with weekly status meetings for a development team? How can they be made useful?</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1038064#103806432Answer by Steve Hanov for How do I move the turtle in LOGO?Steve Hanov2009-06-24T12:30:45Z2009-06-24T12:52:57Z<p>First, you have to understand that there is a lot of legacy turtle-moving code at Fog Creek in VBScript. This code contains <em>years</em> of bugfixes and special cases for turtle-moving. If you re-write it from scratch you are asking for disaster. Plus, it would set back the next release by months. Customers want new features, such as new turtle shapes and 3D motion, and they literally <em>don't care</em> what the code looks like. <em>They just want to move their turtle.</em> </p>
<p>It's <a href="http://www.joelonsoftware.com/items/2006/09/01b.html" rel="nofollow">actually easier</a> to write your own compiler to translate your legacy code into Logo. This allows you to add other features to the language that VBScript didn't originally support, like Excel macros. It's not that hard, as long as you hire someone smart.</p>
http://stackoverflow.com/questions/882620/embedded-cellphone-code/882651#882651-1Answer by Steve Hanov for Embedded Cellphone CodeSteve Hanov2009-05-19T13:07:52Z2009-05-19T13:12:58Z<p>Hardware things, like setting registers and handling interrupts to run the radio, are all done in C. </p>
<p>Two problems with C++ are, in my opinion, that </p>
<ol>
<li>It is harder to design efficient programs in it. The CPU may only be a few hundred MHz. </li>
<li>The compilers for more exotic CPUs barely work in C, so running them in C++ would be a miracle.</li>
</ol>
http://stackoverflow.com/questions/171301/whats-the-fastest-way-to-divide-an-integer-by-3/859429#8594290Answer by Steve Hanov for What's the fastest way to divide an integer by 3?Steve Hanov2009-05-13T17:57:40Z2009-05-13T18:15:16Z<p>What if you <i>really</i> don't want to multiply or divide? Here is is an approximation I just invented. It works because (x/3) = (x/4) + (x/12). But since (x/12) = (x/4) / 3 we just have to repeat the process until its good enough.</p>
<pre><code>#include <stdio.h>
void main()
{
int n = 1000;
int a,b;
a = n >> 2;
b = (a >> 2);
a += b;
b = (b >> 2);
a += b;
b = (b >> 2);
a += b;
b = (b >> 2);
a += b;
printf("a=%d\n", a);
}
</code></pre>
<p>The result is 330. It could be made more accurate using b = ((b+2)>>2); to account for rounding.</p>
<p>If you <em>are</em> allowed to multiply, just pick a suitable approximation for (1/3), with a power-of-2 divisor. For example, n * (1/3) ~= n * 43 / 128 = (n * 43) >> 7.</p>
<p>This technique is most useful in <a href="http://www.wired.com/science/discoveries/news/2008/02/dayintech_0205" rel="nofollow">Indiana.</a></p>
http://stackoverflow.com/questions/128099/what-is-the-longest-human-name-you-can-expect80What is the longest human name you can expect?Steve Hanov2008-09-24T16:09:24Z2009-05-06T02:41:52Z
<p>What is the longest name that you should expect to get as input to your program or database? </p>
<p>I don't want to truncate unusual names, but I also don't want people to paste a novel in my name field as this could result in security problems. Has anybody ever been bitten by setting this field size too short?</p>
http://stackoverflow.com/questions/809794/use-both-static-and-dynamically-linked-libraries-in-gcc1Use both static and dynamically linked libraries in gccSteve Hanov2009-05-01T00:56:12Z2009-05-05T02:32:22Z
<p>I need to distribute a binary that will run on as many x86 Linux distributions as possible. That means that I have to statically link some libraries, like glibc, because the user might not have the version I use. Other libraries have to be dynamically linked, like fontconfig, because it relies on a cache file format and hard coded locations that may differ on each system.</p>
<p>What are the command line options to do this? If I specify -static, then gcc will refuse to dynamically link any libraries at all.</p>
http://stackoverflow.com/questions/85459/is-it-possible-to-combine-a-series-of-pdfs-into-one-using-ruby/646651#6466511Answer by Steve Hanov for Is it possible to combine a series of PDFs into one using Ruby?Steve Hanov2009-03-14T20:22:29Z2009-05-01T00:58:54Z<p>If you have ghostscript on your platform, shell out and execute this command:</p>
<p>gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=finished.pdf <your source pdf files></p>
http://stackoverflow.com/questions/677253/what-are-alternatives-to-sql-database-storage-for-a-web-site12What are alternatives to SQL database storage for a web site?Steve Hanov2009-03-24T12:58:04Z2009-04-27T00:06:31Z
<p>An SQL database is overkill if your storage needs are small. When I was young and dumb, I used a text file and flock()ed it when I needed to access it. This doesn't scale, but I still feel that non-database solutions have been completely ignored in Web 2.0.</p>
<p>Does anyone <em>not</em> use an SQL database for storage? What are the alternatives?</p>
http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/679010#67901020Answer by Steve Hanov for How do you read a file line by line in your language of choice?Steve Hanov2009-03-24T19:58:14Z2009-03-24T19:58:14Z<h1>Commodore 64 BASIC</h1>
<pre><code>10 OPEN2,8,2,"0:TESTFILE,S,R"
20 L=1
30 INPUT#2,A$:IF STATUS AND 64 THEN GOTO 50
40 PRINT L " " A$:L=L+1:GOTO30
50 CLOSE2
</code></pre>
<p>Much shorter than VB6.</p>
http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/632242#6322422Answer by Steve Hanov for What made programming easier in the last couple of years?Steve Hanov2009-03-10T20:57:19Z2009-03-10T20:57:19Z<p>Vim highlights the opening bracket when you type the closing one. </p>
http://stackoverflow.com/questions/624348/how-can-i-build-different-versions-of-a-project-using-the-jam-make-tool2How can I build different versions of a project using the Jam make tool?Steve Hanov2009-03-08T21:39:27Z2009-03-09T14:53:31Z
<p>I have a C++ project that compiles to different versions, including release, debug, shared library, and executable, with different compiler flags for each. I am trying out Jam as an alternative to Make, because it looks like a simpler system. </p>
<p>Is Jam capable of this? The main problem is that it always places the .o files into the same folder as the source file, so it overwrites them when building multiple versions.</p>
<h3>Update</h3>
<p>I found a solution that seems to work. Using this file, I can build debug and release configurations of a library or executable.</p>
<p>Command to build release library:</p>
<pre><code>jam -s config=lib -s release=1
</code></pre>
<p>If you only type <code>jam</code>, it builds the debug executable. Here is the Jamfile:</p>
<pre><code>FILES =
main.cpp
;
BASENAME = steve ;
OBJ = obj ;
if $(release)
{
OBJ = $(OBJ)r ;
}
else
{
DEFINES += DEBUG ;
OBJ = $(OBJ)d ;
}
if $(config) = lib
{
OBJ = $(OBJ)_lib ;
OUTFILE = lib$(BASENAME).so ;
DEFINES += SHARED_LIBRARY ;
LINKFLAGS +=
-shared -Wl,-soname,$(OUTFILE) -fvisibility=hidden -fPICS
;
}
else
{
OUTFILE = $(BASENAME) ;
}
LOCATE_TARGET = $(OBJ) ;
MkDir $(LOCATE_TARGET) ;
Main $(OUTFILE) : $(FILES) ;
</code></pre>
http://stackoverflow.com/questions/623543/best-way-to-keep-a-large-number-of-hobby-projects-alive-open-sourcing/623547#62354711Answer by Steve Hanov for Best way to keep a large number of hobby projects alive; open sourcing?Steve Hanov2009-03-08T13:09:31Z2009-03-08T14:57:25Z<p>Your projects will still waste away as open source. An open source project takes even more work, because you will have to:</p>
<ul>
<li>keep documentation up to date so other developers will be able to understand it</li>
<li>If you actually get people submitting changes, integrate them or explain to them why their changes can't be included..</li>
<li>maintain a vision as to what your product is supposed to be, and keep people from implementing features that detract from that vision.</li>
</ul>
http://stackoverflow.com/questions/594799/how-can-i-use-stprintf-in-my-programs-with-and-without-unicode-support0How can I use _stprintf in my programs, with and without UNICODE support?Steve Hanov2009-02-27T13:42:23Z2009-02-28T11:56:58Z
<p>Microsoft's <tchar.h> defines _stprintf as 'swprintf' if _UNICODE is defined, and 'sprintf' if not. But these functions take different arguments! In swprintf, the second argument is the buffer size, but sprintf doesn't have this.</p>
<p>Did somebody goof? If so, this is a big one. How can I use _stprintf in my programs, and have them work with and without _UNICODE?</p>
http://stackoverflow.com/questions/89480/how-can-i-ban-a-whole-company-from-my-web-site0How can I ban a whole company from my web site?Steve Hanov2008-09-18T02:28:21Z2009-02-27T16:50:16Z
<p>For reasons I won't go into, I wish to ban an entire company from accessing my web site. Checking the remote hostname in php using gethostbyaddr() works, but this slows down the page load too much. Large organizations (eg. hp.com or microsoft.com) often have blocks of IP addresses. Is there anyway I get the full list, or am I stuck with the slow reverse-DNS lookup? If so, can I speed it up?</p>
<p>Edit: Okay, now I know I can use the .htaccess file to ban a range. Now, how can I figure out what that range should be for a given organization?</p>
http://stackoverflow.com/questions/576034/is-learning-the-win32-api-worthwhile/576128#5761283Answer by Steve Hanov for Is Learning the win32 API Worthwhile?Steve Hanov2009-02-22T23:57:24Z2009-02-22T23:57:24Z<p>When they invented C to replace assembly language, people where probably asking: "is it worthwhile to learn assembly language?" The value in knowing both was being able to drop to assembly to do the things which were impossible to accomplish in C (eg. trigger an interrupt).</p>
<p>The same can be said for Win32. There are some things which are impossible to do in C#. If you didn't know the win32 api, then you would dismiss some things as being impossible. However, once you know what you are missing, in those rare situations, you would be able to "drop to win32" and do them.</p>
<p>Another way of looking at it is this: programming is all about being able to think in multiple levels of abstraction at the same time. For example, if you know your language uses immutable strings, you don't write an algorithm that adds a single character to one 10000 times, because it will be slow. If you know the win32 api, you will be able to think about how each line you write in C# is actually implemented and that will help you write better code.</p>
http://stackoverflow.com/questions/255202/how-do-i-view-git-diff-output-with-visual-diff-program/573579#5735791Answer by Steve Hanov for How do I view 'git diff' output with visual diff program?Steve Hanov2009-02-21T19:10:35Z2009-02-21T19:10:35Z<p>After reading the answers, I discovered a simpler way that involves changing only one file. This solution is for Windows/msys git.</p>
<ol>
<li>Create a batch file to invoke your diff program, with argument 2 and 5. This file must be somewhere in your path. (If you don't know where that is, put it in c:\windows). Call it, for example, "gitdiff.bat". Mine is:</li>
</ol>
<pre>
@echo off
REM This is gitdiff.bat
"C:\Program Files\WinMerge\WinMergeU.exe" %2 %5
</pre>
<p>Next, set the environment variable to point to your batch file. For example: <code>GIT_EXTENAL_DIFF=gitdiff.bat</code>. It is important to not use quotes, or specify any path information, otherwise it won't work. That's why gitdiff.bat must be in your path.</p>
<p>Now when you type "git diff", it will invoke your external diff viewer.</p>
http://stackoverflow.com/questions/509310/how-do-you-draw-like-a-crayon/509838#5098383Answer by Steve Hanov for How do you draw like a Crayon?Steve Hanov2009-02-04T02:09:16Z2009-02-04T02:09:16Z<p>Here's a <a href="http://www.cs.usask.ca/~mould/npr.html" rel="nofollow">paper</a> that uses a lot of math to simulate the deposition of wax on paper using a model of friction. But I think your best bet is to just use a repeating pattern, as another reader mentioned, and vary the opacity according to pressure.</p>
<p>For the imperfect line drawing parts, I have a <a href="http://gandolf.homelinux.org/~smhanov/blog/?id=33" rel="nofollow">blog entry</a> describing how to do it using bezier curves. </p>
http://stackoverflow.com/questions/450749/should-i-go-open-source-even-if-i-want-to-retain-all-rights3Should I go open-source even if I want to retain all rights?Steve Hanov2009-01-16T15:30:07Z2009-01-16T15:36:34Z
<p>Years ago I released a program called <a href="http://www.hanovsolutions.com/?prod=alarm" rel="nofollow">Banshee Screamer Alarm</a> and at the time it included the full source code, "for educational purposes only." You couldn't extend it to make your own version, but you could learn from it. It actually helped somebody fix a bug in wine.</p>
<p>If I release more software like this (open source, but copyrighted and non-free), are there any legal thorns that I should know about? Are there any suitable licenses for this purpose?</p>
http://stackoverflow.com/questions/389047/how-to-reduce-the-memory-usage-of-a-wpf-app/389173#3891731Answer by Steve Hanov for How to reduce the memory usage of a WPF app.Steve Hanov2008-12-23T15:33:09Z2008-12-23T15:33:09Z<p>Not sure if this helps, but in MS Visual C++, the default stack size is 1 MB, and can be set to whatever you want using a compiler option. Obviously, C# apps inherited this default size (So each thread takes at minimum 1MB). But there doesn't seem to be anyway to set it when I do "csc /?"</p>
http://stackoverflow.com/questions/165038/which-terminal-emulator-do-you-use-why/165384#1653843Answer by Steve Hanov for Which terminal emulator do you use? Why?Steve Hanov2008-10-03T02:02:39Z2008-10-03T02:02:39Z<p>xterm. </p>
<p>1) It's as lightweight as you can get.
2) it's always available
3) it has some advanced key combinations to change things like font sizes on the fly.</p>
http://stackoverflow.com/questions/15376/whats-the-best-uml-diagramming-tool/143039#14303946Answer by Steve Hanov for What's the best UML diagramming tool?Steve Hanov2008-09-27T05:07:25Z2008-09-27T05:07:25Z<p>For sequence diagrams, try <a href="http://websequencediagrams.com" rel="nofollow">websequencediagrams.com</a>. It's free, and lets you quickly bang out a diagram without any fussing around with lines and stencils.</p>
<pre>
Alice->Bob: Authentication Request
note left of Bob: Bob thinks about it
Bob->Alice: Authentication Response
</pre>
<p><img src="http://www.websequencediagrams.com/cgi-bin/cdraw?lz=QWxpY2UtPkJvYjogQXV0aGVudGljYXRpb24gUmVxdWVzdApub3RlIHJpZ2h0IG9mIAAlBUJvYiB0aGlua3MgYWJvdXQgaXQuCkJvYi0tPgBMBQA5E3Nwb25zZQ&s=omegapple"></p>
http://stackoverflow.com/questions/121685/how-can-i-ensure-fopen-wont-block-when-not-connected-to-the-network0How can I ensure fopen() won't block when not connected to the network?Steve Hanov2008-09-23T15:21:38Z2008-09-23T15:42:11Z
<p>My win32 C++ application frequently checks a file that normally resides on a network share [in our corporate network]. But if the computer isn't connected to a network, the application freezes for several minutes and the user usually has to end the process. How can I check if the file is accessible before I open it?</p>
<p>Checking if any network connection exists may not be good enough. The reason the users disconnect is to use to a test network where the file does not exist.</p>
http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/120577#12057711Answer by Steve Hanov for Is there a wiki that also contains architectural diagrams?Steve Hanov2008-09-23T12:10:45Z2008-09-23T12:10:45Z<p><a href="http://www.websequencediagrams.com" rel="nofollow">websequencediagrams.com</a> also works with Confluence and Trac as well as output to images. If your wiki lets you insert raw html, you can include the diagram right in the page. That way, the diagram automatically updates.</p>
<p><div class=wsd wsd_style="modern-blue" ><pre></p>
<pre>
Alice->Bob: Programming Question
Bob->StackOverflow: (forward request)
StackOverflow-->Bob:
Bob-->Alice: answer
note right of Bob: he he he!
</pre>
<p></pre></div><script type="text/javascript" src="http://www.websequencediagrams.com/service.js"></script></p>
<p>Result:</p>
<p><img src="http://www.websequencediagrams.com/cgi-bin/cdraw?lz=QWxpY2UtPkJvYjogUHJvZ3JhbW1pbmcgUXVlc3Rpb24KQm9iLT5TdGFja092ZXJmbG93OiAoZm9yd2FyZCByZXF1ZXN0KQoAFA0tAEoGADYFLT4AXQU6IGFuc3dlcgpub3RlIHJpZ2h0IG9mIAByBWhlIGhlIGhlIQo&s=modern-blue"></p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88706#8870610Answer by Steve Hanov for What's your favorite "programmer" cartoon?Steve Hanov2008-09-17T23:34:33Z2008-09-21T19:22:42Z<p>I like <a href="http://gandolf.homelinux.org/~smhanov/comics" rel="nofollow">these ones (link)</a>...</p>
<p><img src="http://gandolf.homelinux.org/~smhanov/comics/comic_20050324.png"></p>
<p><img src="http://gandolf.homelinux.org/~smhanov/comics/comic_20041022.png"></p>
<p>.. but it could be because I wrote them myself.</p>
http://stackoverflow.com/questions/1649676/open-source-language-translation-engineComment by Steve Hanov on open source language translation engineSteve Hanov2009-10-30T13:00:31Z2009-10-30T13:00:31ZHuman or computer languages?http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1470347#1470347Comment by Steve Hanov on What's the worst security hole you've ever seen?Steve Hanov2009-09-24T13:33:10Z2009-09-24T13:33:10ZDon't worry, as long as the web site is copyrighted, the DMCA provides 100% protection. You're not allowed to "circumvent" the Javascript.http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/632242#632242Comment by Steve Hanov on What made programming easier in the last couple of years?Steve Hanov2009-08-10T22:12:53Z2009-08-10T22:12:53Zvim never had it turned on by default until version 6 something.http://stackoverflow.com/questions/1080499/are-weekly-status-meetings-necessaryComment by Steve Hanov on Are weekly status meetings necessary?Steve Hanov2009-07-03T21:57:03Z2009-07-03T21:57:03ZYou can vote to re-open. I did with only 1500 rep.http://stackoverflow.com/questions/898797/where-is-the-regkey-for-show-hide-desktop-icons-on-win-xpComment by Steve Hanov on Where is the RegKey for Show/Hide Desktop Icons on Win XPSteve Hanov2009-05-22T17:05:37Z2009-05-22T17:05:37ZI don't see any View option in the right click menu. Only refresh/Paste/Undo Copy/New/Properties.http://stackoverflow.com/questions/880227/what-is-the-minimum-i-have-to-do-to-create-an-rpm-file/892894#892894Comment by Steve Hanov on What is the minimum I have to do to create an RPM file?Steve Hanov2009-05-21T21:19:13Z2009-05-21T21:19:13ZI've done this for .deb and it's dead simple. I can't believe RPM doesn't have a way.http://stackoverflow.com/questions/677253/what-are-alternatives-to-sql-database-storage-for-a-web-site/677260#677260Comment by Steve Hanov on What are alternatives to SQL database storage for a web site?Steve Hanov2009-03-24T13:10:46Z2009-03-24T13:10:46Z99% of the time there are better alternatives to xML supported in the language... for php, I'd use var_export/eval so I don't have to parse anything.http://stackoverflow.com/questions/674578/what-magnitude-of-personal-projects-do-you-put-on-your-resume/674640#674640Comment by Steve Hanov on What magnitude of personal projects do you put on your resume?Steve Hanov2009-03-23T18:58:27Z2009-03-23T18:58:27ZInclude ANY programming projects, relevant or not, for a programming position. I am a hiring manager for embedded software development, and I'm delighted to see any outside projects. Hobby work is so rare, it will make you stand out.http://stackoverflow.com/questions/313778/generate-dependencies-for-a-makefile-for-a-project-in-c-c/313787#313787Comment by Steve Hanov on generate dependencies for a makefile for a project in C/C++Steve Hanov2009-03-08T12:57:42Z2009-03-08T12:57:42ZDon't fall into this trap if you have more than 100 files, because it's too slow the first time. In this case, you should use something that is invoked once, not once for each file. Makedepend might have this option. At work, we use a custom perl script.http://stackoverflow.com/questions/594582/do-people-actually-still-use-cin-and-coutComment by Steve Hanov on Do people actually still use cin and cout?Steve Hanov2009-02-27T13:17:21Z2009-02-27T13:17:21ZAh! Maybe that's why people can't pass my job interviews questions like "print out this word backwards". They simply DONT KNOW HOW TO PRINT!http://stackoverflow.com/questions/515803/should-i-disable-the-c-compiler-signed-unsigned-mismatch-warning/515814#515814Comment by Steve Hanov on Should I disable the C compiler signed/unsigned mismatch warning?Steve Hanov2009-02-05T13:12:57Z2009-02-05T13:12:57ZThe issue is that I am turning on /Wall, which in the MS compiler spews out many things that don't really matter (I think gcc is better at this).http://stackoverflow.com/questions/515645/possible-downside-to-immediate-if-operator-in-c/515676#515676Comment by Steve Hanov on Possible downside to immediate if operator (?:) in C#?Steve Hanov2009-02-05T13:08:03Z2009-02-05T13:08:03Zreturn error == ERR_REOF ? "End of File" :
error == ERR_NOMEM ? "Out of memory" :
error == ERR_NOTFOUNT ? "File not found" :
"Unknown error";
Perfectly readable use of my favourite nested operator.http://stackoverflow.com/questions/358010/why-do-people-continue-to-use-sourceforge/358015#358015Comment by Steve Hanov on Why do people continue to use SourceForge?Steve Hanov2008-12-10T23:44:37Z2008-12-10T23:44:37ZGoogle code only allows certain licenses. It doesn't even allow public domain.http://stackoverflow.com/questions/52874/how-do-you-keep-the-machine-awake/52906#52906Comment by Steve Hanov on How do you keep the machine awake?Steve Hanov2008-11-03T13:31:57Z2008-11-03T13:31:57ZVery bad idea. If the program crashes then you've just changed user settings without permission. You should process the WM_POWERBROADCAST message instead.http://stackoverflow.com/questions/176922/do-you-use-kibibyte-as-a-unit-of-measurement-in-your-programs/176941#176941Comment by Steve Hanov on Do you use "kibibyte" as a unit of measurement in your programs?Steve Hanov2008-10-07T02:12:49Z2008-10-07T02:12:49ZHow long until we have file sizes labeled "small" "large" "very large"? Outlook email already does this when you sort by size.