User mreggen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:17:36Z http://stackoverflow.com/feeds/user/613 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/6520/is-the-quality-of-programming-books-between-publishers-noticeably-different/6525#6525 8 Answer by mreggen for Is the quality of programming books between publishers noticeably different? mreggen 2008-08-09T01:56:29Z 2009-01-14T17:20:30Z <p>To me this is almost as saying "I only watch films from <a href="http://en.wikipedia.org/wiki/Universal_Pictures" rel="nofollow">Universal</a>". E.g. Microsoft Press is mentioned here as bad, but they are the publisher of <a href="http://en.wikipedia.org/wiki/Code_Complete" rel="nofollow">Code Complete</a>, a really great book. I'm sure likewise you can find bad books from Apress and O'Reilly. Buy books by authors or recommendation, not publishers. As movie studios, publishers mostly are there for funding and they will all have some bad and some good books. Therefore it's a bad metric to go buy when buying books. Check out some of the <a href="http://beta.stackoverflow.com/questions/4651/whats-on-your-bookshelf" rel="nofollow">recommended</a> <a href="http://beta.stackoverflow.com/questions/559/what-books-would-you-recommend-for-a-beginning-software-developer" rel="nofollow">lists</a> here on stackoverflow.</p> <p>Regardless of this, there probably are some publishers that are consistently bad, Steve Yegge has a <a href="http://steve.yegge.googlepages.com/ten-great-books" rel="nofollow">post that touches on this subject</a>:</p> <blockquote> <p>Have you noticed how occasionally a publisher will intrude into your consciousness as being exceptionally good (or bad)?</p> <p>Example: I think of SAMS publishing as being an atrociously bad publishing house. I've bought a few of their titles and have been uniformly horrified at the quality. The books are typically thrown together by multiple authors, each writing different chapters. The authors are evidently unaware of each others' existence, and they often wind up covering the same material redundantly in different chapters -- sometimes even with conflicting terminology or outright contradictions. I just visited their website to make sure it was really Sams, and yep, most of their books have anywhere from two to ten authors. Trust me: just stay away from them.</p> <p>...</p> <p>O'Reilly is the Starbucks/McDonalds of technical publishing. You know you're getting consistent quality -- not necessarily great quality, but it's consistent. And more importantly, you're getting a consistent experience. You know what to expect. A big, ugly creature on the cover, that's what you should expect. They won't assume you know any math, which is a good thing, because I do all my basic arithmetic using a desk calculator now (M-x calc!). They don't assume anything other than that you're marginally familiar with the English language and that you don't really have much time to spare. Just like Starbucks and McDonalds.</p> </blockquote> http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/4727#4727 8 Answer by mreggen for What are some good free programming books? mreggen 2008-08-07T13:57:58Z 2008-12-21T23:22:09Z <p><a href="http://en.wikipedia.org/wiki/Bruce_Eckel" rel="nofollow">Bruce Eckel</a> has free books on several topics <a href="http://www.mindviewinc.com/Books/" rel="nofollow">here</a>.</p> <p><a href="http://diveintopython.org/" rel="nofollow">Dive Into Python</a> is a nice free Python book. Check out <a href="http://www.mindview.net/Books/TIJ/" rel="nofollow">Thinking in Java</a> and <a href="http://mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">Thinking in C++</a> as well.</p> http://stackoverflow.com/questions/35809/why-are-vi-and-emacs-popular/35850#35850 2 Answer by mreggen for Why are Vi and Emacs popular ? mreggen 2008-08-30T10:02:59Z 2008-08-30T10:02:59Z <p>Uhh, I had a good answer for this somewhere, but it seems the entire question was deleted? (It was about IDE's vs text editors). Short version is that you can do whatever you want with Vim and Emacs, they have absolutely no limits. There are scripts and tools available for almost everything you would want to do, and if not; you are a programmer, you can make it yourself. The advantage for people like us to have full control over our tools is HUGE, and the GPL makes sure that it will never be taken away from us.</p> http://stackoverflow.com/questions/32458/random-data-in-unit-tests/32531#32531 2 Answer by mreggen for Random data in Unit Tests? mreggen 2008-08-28T15:12:04Z 2008-08-28T15:12:04Z <p>In the book <a href="http://oreilly.com/catalog/9780596510046/" rel="nofollow">Beautiful Code</a>, there is a chapter called "Beautiful Tests", where he goes through a testing strategy for the <a href="http://en.wikipedia.org/wiki/Binary_search" rel="nofollow">Binary Search</a> algorithm. One paragraph is called "Random Acts of Testing", in which he creates random arrays to thoroughly test the algorithm. You can read some of this online at Google Books, <a href="http://books.google.com/books?id=gJrmszNHQV4C&amp;printsec=frontcover&amp;dq=beautiful+code&amp;sig=ACfU3U370KhEVM8EHhDI6SYDXmEzHwuAow#PRA1-PA95,M1" rel="nofollow">page 95</a>, but it's a great book worth having.</p> <p>So basically this just shows that generating random data for testing is a viable option. </p> http://stackoverflow.com/questions/13830/what-is-the-best-free-iso-mounting-software/13836#13836 0 Answer by mreggen for What is the best free ISO mounting software? mreggen 2008-08-17T18:53:07Z 2008-08-17T18:53:07Z <p><a href="http://linux.die.net/man/8/mount" rel="nofollow" title="Cherry G80-11900">Mount</a> (Yes, I know this probably wasn't what you were looking for, but it's free :)</p> http://stackoverflow.com/questions/12830/most-elegant-amusing-or-strange-code-one-liners/12837#12837 1 Answer by mreggen for Most elegant, amusing or strange code one liners mreggen 2008-08-15T22:24:09Z 2008-08-15T22:24:09Z <p>From the <a href="http://www.python.org/doc/faq/programming/#is-it-possible-to-write-obfuscated-one-liners-in-python" rel="nofollow" title="Araxis Merge">Python FAQ</a></p> <pre><code>print map(lambda x,f=lambda x,f:(x&lt;=1) or (f(x-1,f)+f(x-2,f)): f(x,f),range(10)) </code></pre> http://stackoverflow.com/questions/12171/what-kinds-of-non-technical-courses-should-a-software-engineer-or-computer-scient/12172#12172 3 Answer by mreggen for What kinds of non-technical courses should a software engineer or computer scientist take? mreggen 2008-08-15T12:14:33Z 2008-08-15T12:30:54Z <p>Economics. Entrepreneurship (starting/running a business, marketing). Maybe some writing/literature/poetry class. This is highly subjective and depends on what your interests are.</p> http://stackoverflow.com/questions/11743/useful-math-for-programmers/11765#11765 14 Answer by mreggen for Useful math for programmers mreggen 2008-08-14T23:16:39Z 2008-08-14T23:16:39Z <p>Steve Yegge has an <a href="http://steve-yegge.blogspot.com/2006/03/math-for-programmers.html" rel="nofollow" title="excanvas">informative blog post</a> about this (as usual, it's a exceptionally long, but good). <a href="http://en.wikipedia.org/wiki/Concrete_Mathematics" rel="nofollow">Concrete Mathematics</a> by Knuth et al. is maybe THE programming math book that comes to mind. Made to lay the foundation of math needed to understand <a href="http://en.wikipedia.org/wiki/Art_of_Computer_Programming" rel="nofollow">The Art of Computer Programming</a>, it was the basis of a course Knuth taught at Standford in 1970. Other than that various linear algebra books comes to mind, but none as important as this Knuth book.</p> http://stackoverflow.com/questions/10601/what-are-you-doing-to-become-a-better-developer/10608#10608 2 Answer by mreggen for What are you doing to become a better developer? mreggen 2008-08-14T03:02:38Z 2008-08-14T03:02:38Z <p>This has mostly been <a href="http://beta.stackoverflow.com/questions/6327/what-are-your-programming-excercises" rel="nofollow">covered</a> <a href="http://beta.stackoverflow.com/questions/4002/code-katas" rel="nofollow">before</a>.</p> http://stackoverflow.com/questions/9603/what-is-some-great-source-code-to-read/10570#10570 4 Answer by mreggen for What is some great source code to read? mreggen 2008-08-14T01:50:18Z 2008-08-14T01:50:18Z <p>It may be a bit daunting (and all in C no less), but the entire Linux codebase is easily browseable at <a href="http://lxr.linux.no/" rel="nofollow">the Linux Cross Reference</a>.</p> http://stackoverflow.com/questions/2573/vim-tutorials/10430#10430 3 Answer by mreggen for vim Tutorials mreggen 2008-08-13T22:27:20Z 2008-08-13T22:27:20Z <p>In most *nix installations you can just run 'vimtutor'. It starts a tutorial that lets you try out vim.</p> http://stackoverflow.com/questions/8748/should-i-move-from-c-to-python-or-another-language/8771#8771 5 Answer by mreggen for Should I move from C++ to Python? ... Or another language? mreggen 2008-08-12T12:38:01Z 2008-08-12T12:38:01Z <blockquote> <p>I like the idea of not needing to compile the programs each time we make a change. I understand that the interpreted languages probably wont hit the same performance we currently get.</p> </blockquote> <p>This is the biggest issue; can you live with the performance hit. You could try to use Python and <a href="http://www.python.org/doc/ext/intro.html" rel="nofollow" title="http://www.scribd.com/doc/2547864/msnetformattingstrings">extending it with your current C++ modules</a> for the performance heavy parts. Still, switching your entire system seems like a big effort if the only reason is the lack of C++ talent. Hiring people who know C++ seems like the cheaper option.</p> http://stackoverflow.com/questions/7880/how-do-you-open-a-file-in-c/7882#7882 9 Answer by mreggen for How do you open a file in C++? mreggen 2008-08-11T15:53:34Z 2008-08-11T15:53:34Z <p><a href="http://www.cplusplus.com/doc/tutorial/files.html" rel="nofollow" title="Presentation Zen">C++: Input/Output with files</a></p> http://stackoverflow.com/questions/7388/best-ides-for-different-programming-languages/7425#7425 2 Answer by mreggen for Best IDE's for different programming languages mreggen 2008-08-10T23:44:27Z 2008-08-10T23:51:23Z <p>My answer is Vim (or Emacs depending on your religion) to all of the above (<a href="http://eclim.sourceforge.net/" rel="nofollow" title="Reading List: Fog Creek Software Management Training Program">Java, PHP, Javascript, Python, </a><a href="http://www.vim.org/scripts/script.php?script_id=213" rel="nofollow" title="Bootstrap">C/C++, </a><a href="http://www.vim.org/scripts/script.php?script_id=1567" rel="nofollow" title="Micro-ISV: From Vision to Reality">Ruby, </a><a href="http://www.vim.org/scripts/script.php?script_id=747" rel="nofollow" title="MicroISV/Startup Bootcamp">C#</a>).</p> <p>Choose ONE editor and master it.</p> http://stackoverflow.com/questions/7139/should-a-first-release-be-an-0-1-version-or-1-0b/7160#7160 5 Answer by mreggen for Should a first release be an 0.1 version or 1.0b? mreggen 2008-08-10T11:10:44Z 2008-08-10T13:10:50Z <p>There are literally a dozen ways to do this. I suggest taking a look at the wikipedia <a href="http://en.wikipedia.org/wiki/Version_numbering" rel="nofollow" title="BenQ X-Touch">article</a> first. As you can see it mostly depends on if you are making <a href="http://en.wikipedia.org/wiki/Free_and_Open_Source_Software" rel="nofollow" title="Apple Aluminum Keyboard">FOSS</a> or commercial software, but even then there are completely different ways to go. </p> <p>For FOSS software, with VLC as you mention as an example, 1.0 is often a <a href="http://en.wikipedia.org/wiki/Version_numbering#Version_1.0_as_a_milestone" rel="nofollow">major milestone</a>. <a href="http://en.wikipedia.org/wiki/Wine_%28software%29" rel="nofollow">Wine</a> is also a great example for this, which was <strong>15 years</strong> in development before reaching 1.0. Another version numbering that is growing more popular is following the <a href="http://en.wikipedia.org/wiki/Version_numbering#Date" rel="nofollow">date</a>, this is used by <a href="http://en.wikipedia.org/wiki/Ubuntu#Releases" rel="nofollow">Ubuntu</a>, having releases in April and October of every year and numbering them Y.04 and Y.10. You might gain some insight into the options for FOSS software by reading the recent discussion on the subject on the <a href="http://kerneltrap.org/Linux/Kernel_Release_Numbering_Redux" rel="nofollow">linux kernel mailing list</a>.</p> <p>If you are making commercial software though, you almost always want to keep 0-0.9 releases internal and show nothing to any customers before you have a 1.0 release.</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/4762#4762 45 Answer by mreggen for Keyboard for programmers mreggen 2008-08-07T14:28:39Z 2008-08-10T09:28:45Z <p><a href="http://en.wikipedia.org/wiki/Happy_Hacking_Keyboard" rel="nofollow" title="Drosera">The Happy Hacking keyboard</a>:</p> <p><a href="http://www.pfusystems.com/hhkeyboard/hhkeyboard.html" rel="nofollow"><img src="http://www.fentek-ind.com/hhlite2lrg.jpg" width="600"></a></p> http://stackoverflow.com/questions/6547/two-marbles/6565#6565 12 Answer by mreggen for Two marbles mreggen 2008-08-09T02:45:43Z 2008-08-10T03:28:23Z <p>The interesting thing here is how you can do it in the least amount of drops possible. Going to the 50th floor and dropping the first would be disastrous if the breaking floor is the 49th, resulting in us having to do 50 drops. We should drop the first marble at floor n, where n is the max amount of drops required. If the marble breaks at floor n, we may have to make n-1 drops after that. If the marble doesn't break we go up to floor 2n-1 and if it breaks here we have to drop the second marble n-2 times in the worst case. We continue like this up to the 100th floor and try to break it at 3n-2, 4n-3.... <br> and n+(n-1)+(n-2)+...1 &lt;=100 <br> <strong>n=14 Is the maximum drops required</strong></p> http://stackoverflow.com/questions/5119/what-are-the-best-rss-feeds-for-programmers-developers/5150#5150 93 Answer by mreggen for What are the best RSS feeds for programmers/developers? mreggen 2008-08-07T18:56:33Z 2008-08-08T20:24:54Z <p>Here are my feeds from Google Reader (10 and out added from other answers)</p> <ol> <li><a href="http://www.joelonsoftware.com/rss.xml" rel="nofollow">Joel on Software</a> (<a href="http://en.wikipedia.org/wiki/Joel_Spolsky" rel="nofollow">Joel Spolsky</a>, software engineer, writer, co-founder of Fog Creek Software)</li> <li><a href="http://feeds.feedburner.com/codinghorror" rel="nofollow">Coding Horror</a> (<a href="http://www.codinghorror.com/blog/archives/000021.html" rel="nofollow">Jeff Atwood</a>, developer, writer, Stackoverflow <a href="http://beta.stackoverflow.com/about" rel="nofollow">team member</a>)</li> <li><a href="http://herbsutter.wordpress.com/feed" rel="nofollow">Sutter's Mill</a> (<a href="http://en.wikipedia.org/wiki/Herb_Sutter" rel="nofollow">Herb Sutter</a>, ISO C++ committee chair, MS software architect)</li> <li><a href="http://steve-yegge.blogspot.com/feeds/posts/default" rel="nofollow">Stevey's Blog Rants</a> (Google employee, creator of <a href="http://en.wikipedia.org/wiki/Wyvern_%28Online_Game%29" rel="nofollow">Wyvern</a>, great blogger)</li> <li><a href="http://thunk.org/tytso/blog/feed" rel="nofollow">Thoughts by Ted</a> (<a href="http://en.wikipedia.org/wiki/Theodore_Tso" rel="nofollow">Ted Tso</a>, IBM employee, Linux kernel developer, file systems guru)</li> <li><a href="http://www.pragprog.com/feed/global" rel="nofollow">Pragmatic Bookshelf</a> (Authors of <a href="http://en.wikipedia.org/wiki/The_Pragmatic_Programmer" rel="nofollow">The Pragmatic Programmer</a>)</li> <li><a href="http://se-radio.net/rss" rel="nofollow">Software Engineering Radio</a> (Not really a reading feed, but great podcast from Germany)</li> <li><a href="http://developers.sun.com/rss/java.xml" rel="nofollow">Java Technology Headlines</a> (Java news)</li> <li><a href="http://commandline.org.uk/feeds/full" rel="nofollow">commandline.org.uk</a> (GNU/Linux, Python, techno-ethics and best practices) </li> <li><a href="http://www.schneier.com/blog/index.rdf" rel="nofollow">Schneier on Security</a> (<a href="http://en.wikipedia.org/wiki/Bruce_schneier" rel="nofollow">Bruce Schneier</a>, cryptographer and computer security specialist) (prakash)</li> <li><a href="http://feeds.feedburner.com/10xSoftwareDevelopment" rel="nofollow">10x Software Development</a> (<a href="http://en.wikipedia.org/wiki/Steve_McConnell" rel="nofollow">Steve McConnell</a>, author of <a href="http://en.wikipedia.org/wiki/Code_Complete" rel="nofollow">Code Complete</a>) (prakash)</li> <li><a href="http://www.artima.com/weblogs/feeds/bloggers/beckel.rss" rel="nofollow">Computing Thoughts</a> (<a href="http://en.wikipedia.org/wiki/Bruce_Eckel" rel="nofollow">Bruce Eckel</a>, author, ISO C++ committee member) (prakash)</li> <li><a href="http://www.aaronsw.com/2002/feeds/pgessays.rss" rel="nofollow">Paul Graham's Essays</a> (<a href="http://en.wikipedia.org/wiki/Paul_Graham" rel="nofollow">Paul Graham</a>, Lisp programmer, VC, author) (prakash)</li> <li><a href="http://digg.com/rss/indexprogramming.xml" rel="nofollow">Digg:Programming Feed</a> (Digg Programming) (Tom)</li> <li><a href="http://feeds.feedburner.com/particletree" rel="nofollow">Particletree</a> (Web development) (Tom)</li> <li><a href="http://feeds.feedburner.com/SixRevisions" rel="nofollow">Six Revisions</a> (Web development) (Tom)</li> <li><a href="http://feeds.feedburner.com/37signals/beMH" rel="nofollow">Signal vs. Noise</a> (Design &amp; Usability blog) (Tom)</li> <li><a href="http://www.reddit.com/r/programming/.rss" rel="nofollow">Proggit</a> (Reddit programming) (saint_groceon)</li> </ol> http://stackoverflow.com/questions/4942/how-to-sell-python-to-a-client-boss-person-with-lots-of-cash/4958#4958 1 Answer by mreggen for How to sell Python to a client/boss/person with lots of cash mreggen 2008-08-07T16:50:43Z 2008-08-07T16:50:43Z <p>Focus on the shorter time needed for development/prototype and possibly easier maintenance (none of this may apply against Ruby).</p> http://stackoverflow.com/questions/2756/lightweight-ide-for-linux/4937#4937 6 Answer by mreggen for Lightweight IDE for Linux mreggen 2008-08-07T16:38:30Z 2008-08-07T16:38:30Z <p><a href="http://en.wikipedia.org/wiki/Vim_" rel="nofollow" title="text_editor">Vim</a> (or Emacs varying on religion) will always be my first answer to this question, over any point-and-click IDE. As they write in <a href="http://en.wikipedia.org/wiki/Pragmatic_Programmer" rel="nofollow">The Pragmatic Programmer</a></p> <blockquote> <p>Choose an editor, know it thoroughly, and use it for all editing tasks. [...] The editor will be an extension of your hand; the keys will sing as they slice their way through text and thought. That's our goal.</p> <p>Make sure that the editor you choose is available on all platforms you use.</p> </blockquote> <p>Vim is configurable, extensible, programmable and can be turned into an IDE with all the regular features. Lately I've been using <a href="http://eclim.sourceforge.net/" rel="nofollow">Eclim</a> to "bring Eclipse functionality to the Vim editor" (projects, better java support etc.) making it a complete platform with advanced IDE features.</p> http://stackoverflow.com/questions/4783/interview-questions-for-an-intern/4882#4882 2 Answer by mreggen for Interview Questions for an Intern mreggen 2008-08-07T15:55:17Z 2008-08-07T15:55:17Z <p>Steve Yegge put up these <a href="http://steve.yegge.googlepages.com/five-essential-phone-screen-questions" rel="nofollow">phone-screen questions</a> that is supposed to eliminate the worst candidates before the real interview. Since they are tailored for asking over the phone most of them should be easy enough for the interns you want.</p> http://stackoverflow.com/questions/4736/learning-regular-expressions/4742#4742 12 Answer by mreggen for Learning Regular Expressions mreggen 2008-08-07T14:09:19Z 2008-08-07T15:39:20Z <p><a href="http://oreilly.com/catalog/9780596528126/" rel="nofollow">Mastering Regular Expressions</a>, it's in the recommended reading list of both <a href="http://steve.yegge.googlepages.com/ten-great-books" rel="nofollow">Steve Yegge</a> and <a href="http://www.codinghorror.com/blog/archives/000020.html" rel="nofollow">Jeff Atwood</a>.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4856#4856 97 Answer by mreggen for What is the easiest language to start with? mreggen 2008-08-07T15:28:07Z 2008-08-07T15:33:58Z <p>In <a href="http://en.wikipedia.org/wiki/Eric_S_Raymond" rel="nofollow">Eric S. Raymond</a>'s quite amusing text <a href="http://www.catb.org/%7Eesr/faqs/hacker-howto.html" rel="nofollow">How To Become A Hacker</a>, he <a href="http://www.catb.org/%7Eesr/faqs/hacker-howto.html#skills1" rel="nofollow">writes</a></p> <blockquote> <p>If you don't know any computer languages, I recommend starting with Python. It is cleanly designed, well documented, and relatively kind to beginners. Despite being a good first language, it is not just a toy; it is very powerful and flexible and well suited for large projects. I have written a more detailed <a href="http://www.linuxjournal.com/article.php?sid=3882" rel="nofollow">evaluation of Python</a>. <a href="http://www.python.org/doc/Intros.html" rel="nofollow">Good tutorials</a> are available at the <a href="http://wiki.python.org/moin/BeginnersGuide" rel="nofollow">Python web site</a>.</p> <p>I used to recommend Java as a good language to learn early, but <a href="http://www.stsc.hill.af.mil/CrossTalk/2008/01/0801DewarSchonberg.html" rel="nofollow">this critique</a> has changed my mind (search for “The Pitfalls of Java as a First Programming Language” within it). A hacker cannot, as they devastatingly put it “approach problem-solving like a plumber in a hardware store”; you have to know what the components actually do. Now I think it is probably best to learn C and Lisp first, then Java.</p> </blockquote> <p>So in short; Python is a good first language, but you should eventually learn C to learn low-level stuff. If your question was targeted for an adolescent, then <a href="http://en.wikipedia.org/wiki/Alice_%28software%29" rel="nofollow">Alice</a> would be a nice suggestion.</p> http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4652#4652 1 Answer by mreggen for What is your solution to the FizzBuzz problem? mreggen 2008-08-07T12:42:57Z 2008-08-07T12:42:57Z <p>Simple python:</p> <pre><code>for i in range(1,101):<br> if (i % 5 == 0) and (i % 3 == 0):<br> print "FizzBuzz"<br> continue<br> if i % 3 == 0:<br> print "Fizz"<br> continue<br> if i % 5 == 0:<br> print "Buzz"<br> continue<br> print i<br></code></pre> http://stackoverflow.com/questions/131608/do-you-use-a-single-editor-well/131655#131655 Comment by mreggen on Do you use a single editor (well)? mreggen 2008-11-06T09:43:42Z 2008-11-06T09:43:42Z third. vimperator is a gift from god...or something. http://stackoverflow.com/questions/153064/why-isnt-bittorrent-more-widespread/153082#153082 Comment by mreggen on Why isn't bittorrent more widespread? mreggen 2008-09-30T14:07:16Z 2008-09-30T14:07:16Z The problem with it killing the connection for everyone else in the house, comes from not having enough connections. Look at limiting the No. of connections used in the torrent client, and search for guides increasing the number of connections in your router and shortening the time they are alive.