User mike511 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T11:01:02Z http://stackoverflow.com/feeds/user/9593 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/62188/stack-overflow-code-golf/69577#69577 0 Answer by mike511 for Stack overflow code golf mike511 2008-09-16T05:22:41Z 2009-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-cocoa 7 Good ways to Learn Cocoa? mike511 2008-09-15T23:15:00Z 2009-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#202780 2 Answer by mike511 for Is there a human readable programming language? mike511 2008-10-14T20:55:31Z 2008-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#163257 1 Answer by mike511 for How can I detect if I'm compiling for a 64bits architecture in C++ mike511 2008-10-02T16:14:52Z 2008-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#163197 6 Answer by mike511 for Emacs on Mac OS X Leopard key bindings mike511 2008-10-02T16:05:16Z 2008-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#155896 2 Answer by mike511 for Software for Mac OS X Leopard to track and record network usage mike511 2008-10-01T01:47:37Z 2008-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#155878 0 Answer by mike511 for Software for Mac OS X Leopard to track and record network usage mike511 2008-10-01T01:40:39Z 2008-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#155834 0 Answer by mike511 for How to reduce time spent in meetings as a developer? mike511 2008-10-01T01:22:46Z 2008-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#155726 30 Answer by mike511 for Hidden features of C mike511 2008-10-01T00:34:59Z 2008-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#136182 0 Answer by mike511 for Setting environment variables in OS X? mike511 2008-09-25T21:12:55Z 2008-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#136153 1 Answer by mike511 for How to keep from duplicating path variable in csh mike511 2008-09-25T21:07:57Z 2008-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#135238 0 Answer by mike511 for How can I discover if there are other devices on my local sub-net? mike511 2008-09-25T18:58:10Z 2008-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#134801 43 Answer by mike511 for Good excuses NOT to use version control mike511 2008-09-25T17:46:51Z 2008-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#130086 0 Answer by mike511 for how are serial generators / cracks developed? mike511 2008-09-24T21:27:48Z 2008-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#130041 0 Answer by mike511 for telneting backspace key is wrong mike511 2008-09-24T21:17:51Z 2008-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#118299 13 Answer by mike511 for What's your favorite "programmer" cartoon? mike511 2008-09-22T23:54:06Z 2008-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#122606 0 Answer by mike511 for Advice on buying a LCD monitor for development mike511 2008-09-23T17:54:06Z 2008-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#118302 20 Answer by mike511 for What's your favorite "programmer" cartoon? mike511 2008-09-22T23:54:38Z 2008-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#118294 28 Answer by mike511 for What's your favorite "programmer" cartoon? mike511 2008-09-22T23:53:37Z 2008-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#104153 1 Answer by mike511 for What are the Mac OS X terminal choices? mike511 2008-09-19T18:05:52Z 2008-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#98219 1 Answer by mike511 for Do you disable SELinux? mike511 2008-09-19T00:09:22Z 2008-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#97878 0 Answer by mike511 for Auto-indent spaces with C in vim? mike511 2008-09-18T23:09:28Z 2008-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#97791 0 Answer by mike511 for Formatting of if Statements mike511 2008-09-18T22:49:16Z 2008-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#79505 2 Answer by mike511 for Job concentration change.. mike511 2008-09-17T03:00:45Z 2008-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#79230 31 Answer by mike511 for What is the single most influential book every programmer should read? mike511 2008-09-17T02:21:07Z 2008-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#79060 1 Answer by mike511 for What is the single most effective thing you did to improve your programming skills? mike511 2008-09-17T01:47:39Z 2008-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#78933 3 Answer by mike511 for What do you use to keep notes as a developer? mike511 2008-09-17T01:28:06Z 2008-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#74708 1 Answer 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? mike511 2008-09-16T17:17:18Z 2008-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#74334 1 Answer by mike511 for What's the best way to clean a monitor (for cheap) ? mike511 2008-09-16T16:40:06Z 2008-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#73848 0 Answer by mike511 for Good ways to Learn Cocoa? mike511 2008-09-16T15:52:02Z 2008-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#52548 Comment by mike511 on How Can I Know Whether I Am a Good Programmer? mike511 2008-10-02T17:07:38Z 2008-10-02T17:07:38Z You're not expected to understand this http://stackoverflow.com/questions/155584/any-clean-css-method-to-make-each-letter-in-a-word-a-different-color Comment by mike511 on Any clean css method to make each letter in a word a different color? mike511 2008-10-01T01:31:53Z 2008-10-01T01:31:53Z does it need to blink too? :) http://stackoverflow.com/questions/135868/whiteboard-interview-questions/135887#135887 Comment by mike511 on Whiteboard Interview Questions mike511 2008-09-25T21:02:12Z 2008-09-25T21:02:12Z what about sometimes &quot;Y&quot;? :) http://stackoverflow.com/questions/75296/could-we-please-be-a-bit-nicer-to-the-noobs/75316#75316 Comment by mike511 on Could we please be a bit nicer to the noobs? mike511 2008-09-17T03:13:00Z 2008-09-17T03:13:00Z Your 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.