User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T16:55:06Z http://stackoverflow.com/feeds/user/9282 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/366274/what-should-we-not-choose-for-our-next-programming-language-and-why/366313#366313 2 Answer by mamama for What should we *not* choose for our next programming language, and why? mamama 2008-12-14T08:41:59Z 2008-12-14T08:41:59Z <p>COBOL. 'nuff said.</p> http://stackoverflow.com/questions/35809/why-are-vi-and-emacs-popular/362578#362578 0 Answer by mamama for Why are Vi and Emacs popular ? mamama 2008-12-12T12:08:53Z 2008-12-12T12:08:53Z <p>You do not merely "use" an editor: You become one with it.</p> http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-101/328737#328737 -4 Answer by mamama for What programming language should be taught in Computer Science 101? mamama 2008-11-30T10:57:15Z 2008-11-30T10:57:15Z <p>None. They should have learned to program in high school.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237737#237737 3 Answer by mamama for What coding mistakes are a telltale giveaway of an inexperienced programmer? mamama 2008-10-26T08:30:31Z 2008-10-26T08:30:31Z <p>Using constants in code and wildly hunting for them whenever they need to be changed.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/236645#236645 11 Answer by mamama for The single most useful Emacs feature mamama 2008-10-25T16:24:34Z 2008-10-25T16:24:34Z <p><a href="http://in.youtube.com/watch?v=18xYbPCJOho" rel="nofollow">yasnippets</a></p> <p>Textmate-like refactoring functionality for Emacs.</p> http://stackoverflow.com/questions/225546/amazing-programming-achievements/226849#226849 1 Answer by mamama for Amazing programming achievements mamama 2008-10-22T17:52:42Z 2008-10-25T08:29:52Z <p><a href="http://sdh33b.blogspot.com/2008/07/icfp-contest-2008.html" rel="nofollow">The Lone TeXnician</a>, who -- all by himself -- put up a convincing entry for the ICFP contest <strong>written completely in teX</strong> and ended up getting the Judges prize.</p> http://stackoverflow.com/questions/207278/career-day-how-do-i-make-computer-programmer-sound-cool-to-8-year-olds/215004#215004 2 Answer by mamama for Career Day: how do I make "computer programmer" sound cool to 8 year olds? mamama 2008-10-18T12:56:07Z 2008-10-18T12:56:07Z <p>You don't need to make programming cool enough for kids, you need to make kids cool enough for programming.</p> http://stackoverflow.com/questions/212442/how-to-create-a-for-loop-like-command-in-c/212464#212464 8 Answer by mamama for How to create a for loop like command in C++ ? mamama 2008-10-17T14:48:22Z 2008-10-18T06:47:11Z <pre><code>#define superFor(n) for(int i = 0; i &lt; (n); i++) </code></pre> <p>Edit: Be careful to not use another variable called i in the loop.</p> http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182241#182241 32 Answer by mamama for How do you advance beyond being an 'advanced' programmer? mamama 2008-10-08T11:27:48Z 2008-10-08T14:57:28Z <p>You can reassess your proficiency by looking at this <a href="http://www.indiangeek.net/wp-content/uploads/Programmer%20competency%20matrix.htm" rel="nofollow">Programmer Comptency Matrix</a>.</p> http://stackoverflow.com/questions/179911/where-can-i-get-the-missing-figures-from-the-freely-available-classic-programmi/179960#179960 -1 Answer by mamama for Where can I get the missing figures from the freely available, classic "Programming Ruby" e-book? mamama 2008-10-07T19:28:57Z 2008-10-07T19:28:57Z <p>Arrrrgh! From the Seven Seas!</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/170803#170803 3 Answer by mamama for What real life bad habits has programming given you? mamama 2008-10-04T18:28:36Z 2008-10-04T18:28:36Z <p>I needed to watch Wall-E (or any other Pixar movie, for the matter) ten times before I could pay attention to the story: I spent most of my time trying to figure out the polygon count.</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159473#159473 6 Answer by mamama for What do you consider the 1st principle(s) of programming? mamama 2008-10-01T20:09:03Z 2008-10-01T20:09:03Z <p>Coffee in, code out.</p> http://stackoverflow.com/questions/159366/is-there-a-best-coding-style-for-identations-same-line-next-line/159421#159421 2 Answer by mamama for Is there a best coding style for identations (same line, next line)? mamama 2008-10-01T19:54:34Z 2008-10-01T19:54:34Z <p>Linus explains it really well in the <a href="http://pantransit.reptiles.org/prog/CodingStyle.html" rel="nofollow">Linux kernel coding style guide</a>.</p> <blockquote> <p>note that this brace-placement also minimizes the number of empty (or almost empty) lines, without any loss of readability. Thus, as the supply of new-lines on your screen is not a renewable resource (think 25-line terminal screens here), you have more empty lines to put comments on.</p> </blockquote> <p>and</p> <blockquote> <p>However, there is one special case, namely functions: they have the opening brace at the beginning of the next line, thus:... Heretic people all over the world have claimed that this inconsistency is ... well ... inconsistent, but all right-thinking people know that (a) K&amp;R are right and (b) K&amp;R are right. Besides, functions are special anyway (you can't nest them in C).</p> </blockquote> http://stackoverflow.com/questions/143760/what-books-should-i-read-to-have-an-undergraduate-education-in-computer-science/143914#143914 1 Answer by mamama for What books should I read to have an undergraduate education in Computer Science? mamama 2008-09-27T16:05:52Z 2008-09-27T16:05:52Z <p>Concrete Mathematics</p> http://stackoverflow.com/questions/141110/what-is-the-single-software-company-that-you-most-want-to-work-for-why/143250#143250 0 Answer by mamama for What is the single software company that you most want to work for? Why? mamama 2008-09-27T08:42:23Z 2008-09-27T08:42:23Z <p>ITA Software: they do highly algorithmic stuff.</p> http://stackoverflow.com/questions/133607/what-is-the-best-way-to-learn-c-what-next-after-kr/133796#133796 2 Answer by mamama for What is the best way to learn C? What next after K&R? mamama 2008-09-25T14:43:43Z 2008-09-25T14:43:43Z <p>Reading K&amp;R doesn't really do much unless you have done the equivalent of taking a course on machine structures. For instance, learning C is completely useless if you don't know what a stack frame is.</p> <p>And the C you see in K&amp;R is quite different from the C in, say, the kernel. Read some production C code to get a feel of "modern" idiomatic C.</p> http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/133730#133730 7 Answer by mamama for Best programming novel to take on holiday mamama 2008-09-25T14:34:36Z 2008-09-25T14:34:36Z <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/0812972155" rel="nofollow">Masters of Doom</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0029356717" rel="nofollow">Show Stopper!</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/1587990652" rel="nofollow">High Stakes, No Prisoners</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0393330435" rel="nofollow">iWoz</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0066620732" rel="nofollow">Just for Fun</a></li> </ul> http://stackoverflow.com/questions/128517/any-business-examples-of-using-markov-chains/128546#128546 6 Answer by mamama for Any business examples of using Markov chains? mamama 2008-09-24T17:32:11Z 2008-09-24T17:32:11Z <p>The obvious one: Google's PageRank.</p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/65525#65525 2 Answer by mamama for Computer Language puns and jokes mamama 2008-09-15T18:40:44Z 2008-09-21T19:50:53Z <p>Another koan:</p> <blockquote> <p>The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said "Master, I have heard that objects are a very good thing - is this true?" Qc Na looked pityingly at his student and replied, "Foolish pupil - objects are merely a poor man's closures." Chastised, Anton took his leave from his master and returned to his cell, intent on studying closures. He carefully read the entire "Lambda: The Ultimate..." series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system. He learned much, and looked forward to informing his master of his progress.</p> <p>On his next walk with Qc Na, Anton attempted to impress his master by saying "Master, I have diligently studied the matter, and now understand that objects are truly a poor man's closures." Qc Na responded by hitting Anton with his stick, saying "When will you learn? Closures are a poor man's object." At that moment, Anton became enlightened.</p> </blockquote> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/107547#107547 2 Answer by mamama for Should a function have only one return statement ? mamama 2008-09-20T07:45:27Z 2008-09-20T07:45:27Z <p>What if the function is recursive? Huh? Huh?</p> http://stackoverflow.com/questions/107462/the-best-of-the-non-obese-technical-books/107524#107524 1 Answer by mamama for The best of the non-obese technical books? mamama 2008-09-20T07:32:55Z 2008-09-20T07:32:55Z <p><em>The Unix Programming Environment</em></p> <p><em>C Traps and Pitfalls</em></p> <p><em>Higher Order Perl</em></p> <p><em>Hacker's Delight</em></p> <p>Most O'Reilly books</p> <p>And everything else mentioned on this page</p> http://stackoverflow.com/questions/34437/what-are-good-projects-to-develop-c-skills/107447#107447 0 Answer by mamama for What are good projects to develop C skills? mamama 2008-09-20T06:52:04Z 2008-09-20T06:52:04Z <p>Just rewrite all Unix utilities. You'll get an epiphany that I won't want to spoil right now.</p> http://stackoverflow.com/questions/107397/best-ways-to-use-cygwin/107421#107421 0 Answer by mamama for best ways to use cygwin mamama 2008-09-20T06:42:15Z 2008-09-20T06:42:15Z <p>They're pretty much the same old timeless Unix shell-scripting hacks.</p> http://stackoverflow.com/questions/107165/big-o-for-eight-year-olds/107392#107392 1 Answer by mamama for Big-O for Eight Year Olds? mamama 2008-09-20T06:35:35Z 2008-09-20T06:35:35Z <p>Most Jon Bentley books (e.g. <em>Programming Pearls</em>) cover such stuff in a really pragmatic manner. <a href="http://video.google.com/videoplay?docid=-1031789501179533828" rel="nofollow">This talk</a> given by him includes one such analysis of a quicksort. </p> <p>While not entirely relevant to the question, Knuth came up with an <a href="http://micromath.wordpress.com/2008/04/14/donald-knuth-calculus-via-o-notation/" rel="nofollow">interesting idea</a>: teaching Big-O notation in high school calculus classes, though I find this idea quite eccentric. </p> http://stackoverflow.com/questions/91445/best-ide-for-ruby-on-rails/93031#93031 0 Answer by mamama for best IDE for ruby on rails mamama 2008-09-18T14:28:14Z 2008-09-18T14:28:14Z <p>I think DHH was a very early adopter of and code contributor to TextMate, and he still uses it. But I prefer to use Emacs.</p> http://stackoverflow.com/questions/92230/python-beyond-the-basics/92691#92691 2 Answer by mamama for Python, beyond the basics mamama 2008-09-18T13:49:59Z 2008-09-18T13:49:59Z <p><em>The Python Cookbook</em> is absolutely essential if you want to master idiomatic Python. Besides, that's the book that made me fall in love with the language.</p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/92660#92660 1 Answer by mamama for What do you use to keep notes as a developer? mamama 2008-09-18T13:46:11Z 2008-09-18T13:46:11Z <p>I use a combination of physical notebooks, Emacs modes and LaTeX (just so that I do not lose my typesetting skills - they're invaluable.)</p> http://stackoverflow.com/questions/92001/what-is-the-real-difference-between-pointers-and-references/92636#92636 1 Answer by mamama for What is the real difference between Pointers and References? mamama 2008-09-18T13:42:39Z 2008-09-18T13:42:39Z <p>If you haven't seen pointers before, you're surely missing out on this mini-gem:</p> <pre><code>void strcpy(char *dest, char *src) { while(*dest++ = *src++); } </code></pre> http://stackoverflow.com/questions/16918/beginners-guide-to-haskell/91579#91579 2 Answer by mamama for Beginners Guide to Haskell? mamama 2008-09-18T10:51:13Z 2008-09-18T10:51:13Z <p><a href="http://book.realworldhaskell.org/read/" rel="nofollow">Real World Haskell</a> is a really good book.</p> http://stackoverflow.com/questions/71029/best-source-for-algorithms/71156#71156 1 Answer by mamama for Best source for Algorithms? mamama 2008-09-16T10:50:47Z 2008-09-16T10:50:47Z <p>My first suggestion isn't exactly an algorithms book - it's <a href="http://rads.stackoverflow.com/amzn/click/0201657880" rel="nofollow"><em>Programming Pearls</em></a> by Jon Bentley. It really makes good passive reading. The sequel <a href="http://rads.stackoverflow.com/amzn/click/0201657880" rel="nofollow"><em>More Programming Pearls</em></a> is pretty good, too. <a href="http://www-old.oberon.ethz.ch/WirthPubl/AD.pdf" rel="nofollow">Wirth's book</a> (<strong>PDF ALERT</strong>) is a really good introduction to this business. <a href="http://rads.stackoverflow.com/amzn/click/0201000237" rel="nofollow"><em>Aho, Hopcroft and Ullman</em></a> is a bit baroque, but nice. </p> <p>This <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-046JFall-2005/LectureNotes/index.htm" rel="nofollow">OCW course</a> is okay, but I find the course textbook CLRS a little too academic for my tastes. I feel <a href="http://rads.stackoverflow.com/amzn/click/0387948600" rel="nofollow"><em>The Algorithm Design Manual</em></a> is a better read. Once you have read all these, open up you copy of Knuth: you won't regret it.</p> <p>If you really want to hone your algorithm skills, try out some <a href="http://topcoder.com/" rel="nofollow">Topcoder</a> problems, and look at previous years' Google Code Jam and ACM ICPC problems. Some good tutorials can be found <a href="http://www.topcoder.com/tc?module=Static&amp;d1=tutorials&amp;d2=alg_index" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895323#895323 Comment by on How can you tell if a person is a programmer? 2009-05-27T12:33:03Z 2009-05-27T12:33:03Z Python programmers would answer &quot;yes&quot; if they want A, but &quot;B&quot; if they want B. http://stackoverflow.com/questions/753138/whats-a-good-recursion-question-to-ask-a-prospective-employee/753185#753185 Comment by on What's a good recursion question to ask a prospective employee? 2009-04-16T06:33:11Z 2009-04-16T06:33:11Z It's better to do that without recursion. http://stackoverflow.com/questions/700205/what-is-your-best-friend-as-a-programmer Comment by on What is your "best friend" as a programmer? 2009-03-31T06:21:13Z 2009-03-31T06:21:13Z Please tag such questions as &quot;subjective&quot;. Thanks :). http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer Comment by on Fastest way to determine if an integer's square root is an integer 2009-03-11T06:27:36Z 2009-03-11T06:27:36Z Please don't call it the &quot;John Carmack hack.&quot; He didn't come up with it. http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52751#52751 Comment by on What are the core mathematical concepts a good developer should know? 2008-12-02T13:08:46Z 2008-12-02T13:08:46Z Except Boolean algebra. http://stackoverflow.com/questions/36746/the-art-of-computer-programming-what-can-i-get-from-reading-the-lot/36770#36770 Comment by on The Art of Computer Programming - What Can I Get From Reading the Lot? 2008-11-29T05:28:54Z 2008-11-29T05:28:54Z In Asia, you could get one of those &quot;Low Price Editions (LPEs)&quot;. The entire set costs only about $30. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234518#234518 Comment by on What is your best programmer joke? 2008-10-26T08:44:47Z 2008-10-26T08:44:47Z Dear God, that is awesome. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234092#234092 Comment by on What is your best programmer joke? 2008-10-26T08:42:41Z 2008-10-26T08:42:41Z &quot;And don't tell me there isn't one bit of difference between null and space, because that's exactly how much difference there is. :-)&quot; -- Larry Wall http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237554#237554 Comment by on What coding mistakes are a telltale giveaway of an inexperienced programmer? 2008-10-26T08:28:11Z 2008-10-26T08:28:11Z At least the guy has a working knowledge of recursion. http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237244#237244 Comment by on What coding mistakes are a telltale giveaway of an inexperienced programmer? 2008-10-26T08:19:13Z 2008-10-26T08:19:13Z Umm... missing close brace? http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218203#218203 Comment by on What was the strangest coding standard rule that you were forced to follow? 2008-10-22T17:57:48Z 2008-10-22T17:57:48Z Tell your boss to look at the source of Scheme48. http://stackoverflow.com/questions/226469/what-is-the-most-clever-code-youve-ever-seen/226791#226791 Comment by on What is the most clever code you've ever seen? 2008-10-22T17:40:40Z 2008-10-22T17:40:40Z Umm... that actually wasn't Carmack's idea. http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182147#182147 Comment by on How do you advance beyond being an 'advanced' programmer? 2008-10-08T15:01:07Z 2008-10-08T15:01:07Z The guy probably knows CLRS backwards. He should try TAOCP. Competing in TopCoder might be a good idea. http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182241#182241 Comment by on How do you advance beyond being an 'advanced' programmer? 2008-10-08T14:29:59Z 2008-10-08T14:29:59Z <a href="http://www.reddit.com/r/programming/comments/6pmj5/programmer_competency_matrix/?sort=hot" rel="nofollow">reddit.com/r/programming/&hellip;</a> <a href="http://news.ycombinator.com/item?id=232192" rel="nofollow">news.ycombinator.com/item?id=232192</a> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166916#166916 Comment by on What real life bad habits has programming given you? 2008-10-04T18:34:20Z 2008-10-04T18:34:20Z Configure your editor to do that.