User mike511 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T11:01:02Zhttp://stackoverflow.com/feeds/user/9593http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/62188/stack-overflow-code-golf/69577#695770Answer by mike511 for Stack overflow code golfmike5112008-09-16T05:22:41Z2009-06-22T18:46:46Z<p>why not</p>
<pre><code>mov sp,0
</code></pre>
<p>(stack grows down)</p>
http://stackoverflow.com/questions/67875/good-ways-to-learn-cocoa7Good ways to Learn Cocoa?mike5112008-09-15T23:15:00Z2009-03-31T16:56:10Z
<p>I'd love to learn Cocoa, it seems like the best systems language for Mac OS X.</p>
<p>Can you recommend any useful ways to learn the language? Books, websites, example projects or even classes to take?</p>
http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language/202780#2027802Answer by mike511 for Is there a human readable programming language?mike5112008-10-14T20:55:31Z2008-10-14T20:55:31Z<p><a href="http://en.wikipedia.org/wiki/Cobol" rel="nofollow">Cobol</a> was kind of like that.</p>
http://stackoverflow.com/questions/163058/how-can-i-detect-if-im-compiling-for-a-64bits-architecture-in-c/163257#1632571Answer by mike511 for How can I detect if I'm compiling for a 64bits architecture in C++mike5112008-10-02T16:14:52Z2008-10-02T16:14:52Z<p>Here's a good overview for Mac OS X:</p>
<p><a href="http://developer.apple.com/documentation/Darwin/Conceptual/64bitPorting" rel="nofollow">http://developer.apple.com/documentation/Darwin/Conceptual/64bitPorting</a></p>
http://stackoverflow.com/questions/162896/emacs-on-mac-os-x-leopard-key-bindings/163197#1631976Answer by mike511 for Emacs on Mac OS X Leopard key bindingsmike5112008-10-02T16:05:16Z2008-10-02T16:05:16Z<p>The other answer was very complete, but additionally I'd mention I just set the caps lock
key to a second control key instead of swapping them.</p>
<p>Also, you'll notice that the large majority of the text entry fields in Mac OS X
already accept emacs keystrokes (^A beginning of line, ^E end of line, ^P, ^N, ^K, ^Y, etc)</p>
<p>good luck</p>
http://stackoverflow.com/questions/154501/software-for-mac-os-x-leopard-to-track-and-record-network-usage/155896#1558962Answer by mike511 for Software for Mac OS X Leopard to track and record network usagemike5112008-10-01T01:47:37Z2008-10-01T01:47:37Z<p>You could run a local web proxy, then analyze the logs.</p>
<p>It's simple to download and install <a href="http://homepage.mac.com/adg/SquidMan/index.html" rel="nofollow">SquidMan</a>, which is a point and click
way of enabling the squid web proxy on your system.</p>
<p>You will have to configure your machine to go through the proxy on localhost
instead of directly to the website. You can find this in advanced tab of
your network interface in System Preferences -> Network</p>
<p>Then, you can analyze the logs and see not only how much you've downloaded, but also
what and when.</p>
http://stackoverflow.com/questions/154501/software-for-mac-os-x-leopard-to-track-and-record-network-usage/155878#1558780Answer by mike511 for Software for Mac OS X Leopard to track and record network usagemike5112008-10-01T01:40:39Z2008-10-01T01:40:39Z<p>Ok, this isn't a complete package or anything, but netstat will show you bytes
transmitted on an interface</p>
<pre><code>netstat -ib
</code></pre>
<p>you can record this somewhere every day. "man netstat" for more info.</p>
http://stackoverflow.com/questions/154705/how-to-reduce-time-spent-in-meetings-as-a-developer/155834#1558340Answer by mike511 for How to reduce time spent in meetings as a developer?mike5112008-10-01T01:22:46Z2008-10-01T01:22:46Z<p><strong>dial-in?</strong></p>
<p>If your meetings have dial-in numbers, you can sit at your
desk and dial in.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/155726#15572630Answer by mike511 for Hidden features of Cmike5112008-10-01T00:34:59Z2008-10-01T00:34:59Z<p><strong>initializing structure to zero</strong></p>
<pre><code>struct mystruct a = {0};
</code></pre>
<p>this will zero all stucture elements.</p>
http://stackoverflow.com/questions/135688/setting-environment-variables-in-os-x/136182#1361820Answer by mike511 for Setting environment variables in OS X?mike5112008-09-25T21:12:55Z2008-09-25T21:12:55Z<p>well, I'm unsure about /etc/paths and ~/.MacOSX/environment.plist those are new.</p>
<p>But with bash, you should know that .bashrc is executed with every new shell invocation
and .bash_profile is only executed once at startup. Don't know how often this is
with macos, I think the distinction has broken down with the window system launching
everything.</p>
<p>Personally, I eliminate the confusion by creating a .bashrc with everything I
need and then do:</p>
<pre><code>ln -s .bashrc .bash_profile
</code></pre>
http://stackoverflow.com/questions/135754/how-to-keep-from-duplicating-path-variable-in-csh/136153#1361531Answer by mike511 for How to keep from duplicating path variable in cshmike5112008-09-25T21:07:57Z2008-09-25T21:07:57Z<p>ok, <strong>not</strong> in csh, but this is how I append $HOME/bin to my path in bash...</p>
<pre><code>case $PATH in
*:$HOME/bin | *:$HOME/bin:* ) ;;
*) export PATH=$PATH:$HOME/bin
esac
</code></pre>
<p>season to taste...</p>
http://stackoverflow.com/questions/135149/how-can-i-discover-if-there-are-other-devices-on-my-local-sub-net/135238#1352380Answer by mike511 for How can I discover if there are other devices on my local sub-net?mike5112008-09-25T18:58:10Z2008-09-25T18:58:10Z<p>you could also run <strong>tcpdump -n</strong> to see what's active on the network too.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134801#13480143Answer by mike511 for Good excuses NOT to use version controlmike5112008-09-25T17:46:51Z2008-09-25T17:46:51Z<p><strong>you want to leave no evidence :)</strong></p>
http://stackoverflow.com/questions/130058/how-are-serial-generators-cracks-developed/130086#1300860Answer by mike511 for how are serial generators / cracks developed?mike5112008-09-24T21:27:48Z2008-09-24T21:27:48Z<p>I assume each crack is different, but I would guess in most cases somebody spends
a lot of time in the debugger tracing the application in question.</p>
<p>The serial generator takes that one step further by analyzing the algorithm that
checks the serial number for validity and reverse engineers it.</p>
http://stackoverflow.com/questions/129826/telneting-backspace-key-is-wrong/130041#1300410Answer by mike511 for telneting backspace key is wrongmike5112008-09-24T21:17:51Z2008-09-24T21:17:51Z<p>actually, I've run into multiple levels of this before. X windows sometimes
maps DEL to Backspace and vice versa. Sometimes logging into one machine through
another machine also does this.</p>
<p>Here's a comprehensive look at how to solve this:
<a href="http://www.ibb.net/~anne/keyboard.html" rel="nofollow">http://www.ibb.net/~anne/keyboard.html</a></p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/118299#11829913Answer by mike511 for What's your favorite "programmer" cartoon?mike5112008-09-22T23:54:06Z2008-09-24T18:23:28Z<p><img src="http://wondermark.com/comics/128.gif" alt="alt text" /></p>
<p>(guess you have to work on sev zero bugs to get this one)</p>
http://stackoverflow.com/questions/122459/advice-on-buying-a-lcd-monitor-for-development/122606#1226060Answer by mike511 for Advice on buying a LCD monitor for developmentmike5112008-09-23T17:54:06Z2008-09-23T17:54:06Z<p>Probably <strong>not</strong> the answer you want, but I believe a 30" monitor is
the best thing I've done to increase my productivity.</p>
<p>I don't mean a low-resolution 30" monitor, I mean a 2560x1600 monitor.</p>
<p>Dell sells the 3007WFP for ~1200 (but I think the price changes from time to
time). You can see a lot of information at once on it. I think it's just
over 100 dpi.</p>
<p>There are large tv monitors that are 30" or more, but they have rediculously low
resolution and if you're having trouble now seeing the individual pixels/DPI,
they will make it much worse. </p>
<p>Note that you should check to make sure your graphics card handles
dual link dvi. Most do, but check to be sure.</p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/118302#11830220Answer by mike511 for What's your favorite "programmer" cartoon?mike5112008-09-22T23:54:38Z2008-09-22T23:54:38Z<p><img src="http://wondermark.com/comics/352.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/118294#11829428Answer by mike511 for What's your favorite "programmer" cartoon?mike5112008-09-22T23:53:37Z2008-09-22T23:53:37Z<p><img src="http://wondermark.com/comics/190.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/103924/what-are-the-mac-os-x-terminal-choices/104153#1041531Answer by mike511 for What are the Mac OS X terminal choices?mike5112008-09-19T18:05:52Z2008-09-19T18:05:52Z<p>Don't overlook <a href="http://riffraff.livejournal.com/356503.html" rel="nofollow">glterminal</a> (or <a href="http://ldopa.net/2006/01/14/glterminal/" rel="nofollow">here</a>), which is lots of fun if you've ever used a real terminal. It has the old green (or amber) fonts, the flickering and even the distortion that make you feel right back in the 80's (or is it 70's?).</p>
http://stackoverflow.com/questions/97816/do-you-disable-selinux/98219#982191Answer by mike511 for Do you disable SELinux?mike5112008-09-19T00:09:22Z2008-09-19T00:09:22Z<p>I do not disable it, but there are some problems.</p>
<p>Some applications don't work particularly well with it.</p>
<p>For example, I believe I enabled smartd to try and keep track of my
raid disks s.m.a.r.t. status, but selinux would get confused about the
new /dev/sda* nodes created at boot (I think that's what the problem was)</p>
<p>You have to download the source to the rules to understand things.</p>
<p>Just check /var/log/messages for the "avc denied" messages and you
can decode what is being denied.</p>
<p>google "selinux faq" and you'll find a fedora selinux faq that will
tell you how to work through these problems.</p>
http://stackoverflow.com/questions/97694/auto-indent-spaces-with-c-in-vim/97878#978780Answer by mike511 for Auto-indent spaces with C in vim?mike5112008-09-18T23:09:28Z2008-09-18T23:09:28Z<p>and always remember this venerable explanation of Spaces + Tabs:</p>
<p><a href="http://www.jwz.org/doc/tabs-vs-spaces.html" rel="nofollow">http://www.jwz.org/doc/tabs-vs-spaces.html</a></p>
http://stackoverflow.com/questions/97506/formatting-of-if-statements/97791#977910Answer by mike511 for Formatting of if Statementsmike5112008-09-18T22:49:16Z2008-09-18T22:49:16Z<p>If you do something like this:</p>
<pre><code>if(x)
{
somecode;
}
else
{
morecode;
}
</code></pre>
<p>This works out better for source control and preprocessor directives
on code that lives a long time. It's easier to add a #if or so without
inadvertently breaking the statement or having to add extra lines.</p>
<p>it's a little strange to get used to, but works out quite well after a
while.</p>
http://stackoverflow.com/questions/79453/job-concentration-change/79505#795052Answer by mike511 for Job concentration change.. mike5112008-09-17T03:00:45Z2008-09-17T03:00:45Z<p>on one hand, on a resume, your last job tends to define you.</p>
<p>on the other hand, taking a job that's not your primary focus can sometimes
be very broadening.</p>
<p>For instance, I was primarily a software developer and took a job in tech support for
a while and found it to be a wonderful experience and made me a much better developer.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/79230#7923031Answer by mike511 for What is the single most influential book every programmer should read?mike5112008-09-17T02:21:07Z2008-09-17T02:21:07Z<p>ok, this is a slightly off-center answer, but believe it or not, it was on the reading list for a compsci course way back in the day. An excellent role model and a good book about curiosity.</p>
<p><img src="http://www.wwnorton.com/cover/031604.GIF" alt="alt text" /></p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/79060#790601Answer by mike511 for What is the single most effective thing you did to improve your programming skills?mike5112008-09-17T01:47:39Z2008-09-17T01:47:39Z<p>in order of effectiveness, the ways I've found to learn something are:</p>
<ul>
<li>learn by reading</li>
<li>have someone teach you</li>
<li>learn by doing</li>
<li>teach someone</li>
<li>present to a group</li>
</ul>
<p>There is no substitute for having to teach someone or present on a subject to
get on top of something. I guess the list is in order of passive vs active
involvement.</p>
<p>So for programming, presenting what I did is definitely a level above actually
doing it.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78933#789333Answer by mike511 for What do you use to keep notes as a developer?mike5112008-09-17T01:28:06Z2008-09-17T01:28:06Z<p>Ok, this is a mac-centric answer...</p>
<p>I used to use <a href="http://flyingmeat.com/voodoopad/" rel="nofollow">voodoo pad</a>, which is a desktop wiki program. It's quite nice to
use because it's a fully integrated mac app. You can copy and paste rich text into
it and preserve the fonts and formatting and so forth. It's really pretty nice to
be able to dump procedures, notes, stuff you received in email and so forth. And
it has a great search feature.</p>
<p>One thing I should note -- I initially bought this application because I thought I
could have a nice-to-edit desktop wiki, and be able to access it remotely through
a webserver/wiki type interface. It never lived up to the hype though. Maybe it's
better now.</p>
<p>Then I used <a href="http://www.omnigroup.com/applications/omnioutliner/" rel="nofollow">Omni Outliner</a>. This had many of the great qualities of Voodoo pad,
but would allow me to hide and rearrange things. It gave me the ability to prioritize
stuff, and conversely, hide unimportant stuff. And search too.</p>
<p>Now, I'm using <a href="http://www.omnigroup.com/applications/omnifocus/" rel="nofollow">Omni Focus</a>. The <a href="http://www.omnigroup.com" rel="nofollow">Omni Group</a> came out with it after they came
out with Omni Outliner, so I switched.
It does most of the stuff Omni Outliner does, but with all the <a href="http://www.davidco.com/" rel="nofollow">Getting Things Done (GTD)</a>
goodies that helps you manage the tasks.</p>
<p>To be honest, I haven't really taken advantage of the OmniFocus extras, but it's
part of the plan...</p>
http://stackoverflow.com/questions/74447/is-it-possible-to-connect-to-mac-os-x-10-5-leopards-built-in-vnc-server-at-a-low/74708#747081Answer by mike511 for Is it possible to connect to Mac OS X 10.5 Leopard's built in vnc server at a low color depth from Windows?mike5112008-09-16T17:17:18Z2008-09-16T17:17:18Z<p>The built-in vnc seems to have very little configurability that I can see.</p>
<p>As an alternative, you can try using <a href="http://sourceforge.net/projects/osxvnc/" rel="nofollow">osxvnc</a> which I believe allows different bit depths</p>
http://stackoverflow.com/questions/74290/whats-the-best-way-to-clean-a-monitor-for-cheap/74334#743341Answer by mike511 for What's the best way to clean a monitor (for cheap) ?mike5112008-09-16T16:40:06Z2008-09-16T16:40:06Z<p>this is a good article:</p>
<p><a href="http://support.apple.com/kb/HT1307?viewlocale=en_US" rel="nofollow">http://support.apple.com/kb/HT1307?viewlocale=en_US</a></p>
http://stackoverflow.com/questions/67875/good-ways-to-learn-cocoa/73848#738480Answer by mike511 for Good ways to Learn Cocoa?mike5112008-09-16T15:52:02Z2008-09-16T15:52:02Z<p>thanks so much for the wonderful answers! I'm starting with the blog
post by Andy Matuschak</p>
http://stackoverflow.com/questions/52378/how-can-i-know-whether-i-am-a-good-programmer/52548#52548Comment by mike511 on How Can I Know Whether I Am a Good Programmer?mike5112008-10-02T17:07:38Z2008-10-02T17:07:38ZYou're not expected to understand thishttp://stackoverflow.com/questions/155584/any-clean-css-method-to-make-each-letter-in-a-word-a-different-colorComment by mike511 on Any clean css method to make each letter in a word a different color?mike5112008-10-01T01:31:53Z2008-10-01T01:31:53Zdoes it need to blink too? :)http://stackoverflow.com/questions/135868/whiteboard-interview-questions/135887#135887Comment by mike511 on Whiteboard Interview Questionsmike5112008-09-25T21:02:12Z2008-09-25T21:02:12Zwhat about sometimes "Y"? :)http://stackoverflow.com/questions/75296/could-we-please-be-a-bit-nicer-to-the-noobs/75316#75316Comment by mike511 on Could we please be a bit nicer to the noobs?mike5112008-09-17T03:13:00Z2008-09-17T03:13:00ZYour logic depends on the accuracy of search. I asked a question in the search box, came up with nothing even close, then posted the question. Later I found that there were similar answers, but the search left something to be desired.