User Rich - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:51:11Z http://stackoverflow.com/feeds/user/22003 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1396652/lisp-soap-client/1414083#1414083 0 Answer by Rich for Lisp soap client Rich 2009-09-12T02:33:29Z 2009-09-12T02:33:29Z <p>Allegro Common Lisp has both <a href="http://www.franz.com/support/documentation/current/doc/soap.htm" rel="nofollow">a SOAP server and a SOAP client</a>. I've used both with success, and they're currently maintained and supported (unlike CL-SOAP).</p> <p>My SOAP server easily handles a few hundred requests a second (from both Java and .NET clients), so I'm happy with the performance.</p> http://stackoverflow.com/questions/1317023/what-is-the-definition-of-a-lisp-cons-cell/1391855#1391855 2 Answer by Rich for What is the Definition of a Lisp Cons Cell? Rich 2009-09-08T03:42:21Z 2009-09-08T03:42:21Z <p>I think the other answers here, while accurate, aren't explicit about one thing.</p> <p>In a traditional C++ linked list implementation, the two fields (<code>val</code> and <code>next</code>, say) are <em>typed</em>. <code>next</code> is defined as pointing to another node in the list, with <code>null</code> being the terminator. You can't point to anything <em>but</em> another node with <code>next</code>.</p> <p>Lisps are dynamically typed, so either field in a cons cell can be <em>anything</em> (either an atom or a reference). You can implement a linked list with cons cells (that's all a Lisp list is: a chain of cons cells with a <code>nil</code> terminator), but you can also put arbitrary values in each field, using a cons cell as a coordinate pair, a tree node, etc.</p> <p>You can even combine these; e.g., a list of <code>x</code> <code>y</code> coordinates:</p> <pre><code>;; (cons foo (cons bar nil)) == (list foo bar) (cons (cons 5 4) (cons (cons 9 10) nil)) =&gt; ((5 . 4) (9 . 10)) </code></pre> <p>A cons cell is thus strictly more general than a linked list node; it's closer to an "applied pair", so to speak. All of the standard list processing functions (<code>map</code>, <code>dolist</code>, etc.) are simply functions that <em>assume</em> you're putting values in <code>car</code> and another list in <code>cdr</code>.</p> <p>All this means that — if you wished — you could define lists <em>backwards</em>, with <code>car</code> pointing to the next cons cell and <code>cdr</code> pointing to the value! To do that with a linked list node you'd have to redefine the class or data structure to alter the types.</p> http://stackoverflow.com/questions/1079046/deploying-compojure-sinatra-applications/1156984#1156984 1 Answer by Rich for Deploying Compojure/Sinatra Applications. Rich 2009-07-21T02:11:58Z 2009-07-21T02:11:58Z <p>I've been doing this kind of thing with various standalone servers (e.g., AllegroServe) for years. I've found the best approach to be:</p> <ul> <li>Run each server on a different, non-privileged port (such as 8080)</li> <li>Run <code>pound</code> (or Nginx etc.) on 80, configured to map requests to each application.</li> </ul> <p>Pound is great, and the configurations end up very simple (unlike Nginx). It will also do SSL fronting and HTTP sanitization for you, which takes the burden off your application.</p> http://stackoverflow.com/questions/1122112/small-problem-accessing-a-map-inside-a-list-in-clojure/1156970#1156970 0 Answer by Rich for Small problem accessing a map inside a list in Clojure Rich 2009-07-21T02:07:12Z 2009-07-21T02:07:12Z <p>I would write your code like this:</p> <pre><code>(def entry {:name tempName :num tempNum}) (def tempList (list entry)) (println (:name (first tempList))) </code></pre> <p>Note that <code>first</code> is much neater than using <code>nth</code>, and keywords can act as functions to look themselves up in the map. Another equivalent approach is to compose the functions and apply them to the list:</p> <pre><code>((comp println :name first) tempList) </code></pre> http://stackoverflow.com/questions/1073013/how-do-i-setup-repl-on-vim/1156951#1156951 0 Answer by Rich for How do I setup REPL on vim? Rich 2009-07-21T02:01:45Z 2009-07-21T02:01:45Z <p>I don't have a mapping for sr in my .vimrc, but it works for me.</p> <p>Have you checked that your Nailgun server is running, and that you have turned on Gorilla?</p> <p>E.g.,</p> <pre><code>let clj_want_gorilla = 1 let vimclojure#NailgunClient = "/Users/foo/vimclojure-2.1.0/ng" </code></pre> http://stackoverflow.com/questions/539108/should-developers-really-have-private-offices/1025261#1025261 1 Answer by Rich for Should developers *really* have private offices? Rich 2009-06-22T02:07:44Z 2009-06-22T02:07:44Z <p>My company has completely open-plan working areas: nobody, even the CEO, has an office. Desks are grouped into pods.</p> <p>This is great for working on things as a team — deployments, joking around, asking for help. It's not great for coding: there are distractions that even in-ear headphones can't cancel out. (I'm talking about you, horse-laugh woman.)</p> <p>I've managed just fine for four years, but I can see the downsides as well as the upsides.</p> <p>I'm fortunate that I can simply go home whenever I want… but there are times I'd love a private office to avoid home distractions as well as workplace distractions.</p> <p>The best scenario I can imagine would be a team-specific part of the building, with a shared space, shared kitchen, and adjoining private offices. Working on something on your own that needs concentration? Close your door. Not too much concentration needed? Open door. Just waiting for a content push? Take your laptop into the shared space.</p> <p>This might be costly, but I can dream, can't I? :)</p> http://stackoverflow.com/questions/293040/function-persistence-in-common-lisp/293118#293118 4 Answer by Rich for Function persistence in Common Lisp Rich 2008-11-15T22:04:25Z 2009-05-20T05:32:35Z <p>It's not a database persistence mechanism, but most Common Lisps have a way of <a href="http://www.franz.com/support/documentation/8.1/doc/operators/excl/fasl-write.htm" rel="nofollow">writing FASLs</a> for all kinds of objects, including functions. For example:</p> <pre><code>cl-user(1): (compile (defun hello () (format t "~&amp;Hello~%"))) hello nil nil cl-user(2): (excl:fasl-write (symbol-function 'hello) "/tmp/hello.fasl") t cl-user(3): (excl:fasl-read "/tmp/hello.fasl") (#&lt;Function hello @ #x1000a964d2&gt;) </code></pre> <p>You can write to a stream (here I used a file for convenience), so you can trivially capture those bytes and stuff them into a database if you wished.</p> http://stackoverflow.com/questions/456216/how-do-classes-help-you-manage-large-applications/456289#456289 0 Answer by Rich for How do classes help you manage large applications? Rich 2009-01-19T01:18:52Z 2009-01-19T01:18:52Z <p>Two things.</p> <p>The first is the idea that a class is an <strong>opaque</strong> domain entity. <em>When done correctly</em>, object-oriented programs introduce a layer of abstraction: at the next highest layer, you marshal objects to do what you want, rather than dealing with details. You don't need to know how the objects and classes work: only what they do. This is a kind of information hiding, and it reduces the complexity that a team has to keep in their heads as they work.</p> <p>The second is that OO programming allows for one kind of code reuse: you can define classes that override certain behaviors in other classes (inheritance), or classes whose instances include instances of other classes, using them to achieve their aims (encapsulation and composition).</p> <p><em>Correctly</em> using OO techniques can reduce the amount of code you need to manage, and reduce the number of things you need to bear in mind as you work or maintain the system. In practice this approach doesn't always work.</p> http://stackoverflow.com/questions/361066/functional-programming-immutability-etc/361409#361409 1 Answer by Rich for Functional programming: immutability etc. Rich 2008-12-11T23:21:27Z 2008-12-11T23:21:27Z <p>"Immutable" means exactly that: it doesn't change.</p> <p>The way functional programs do updates is by passing around new things. An existing value never changes: you just build a new value and pass that instead. Very often the new value shares state with the old one; good examples of the technique are lists composed of cons cells, and the <a href="http://en.wikibooks.org/wiki/Haskell/Zippers" rel="nofollow">zipper</a>.</p> http://stackoverflow.com/questions/345672/fun-programming-languages/345724#345724 2 Answer by Rich for Fun programming languages Rich 2008-12-06T01:46:15Z 2008-12-06T01:46:15Z <p>I spent a little time over Thanksgiving re-familiarizing myself with Haskell, and it was surprisingly fun. Each little function is like a puzzle, and picking which functions to write is another layer of puzzle. Great stuff.</p> http://stackoverflow.com/questions/345566/why-are-usability-evaluation-methods-so-rarely-employed/345720#345720 1 Answer by Rich for Why are usability evaluation methods so rarely employed? Rich 2008-12-06T01:43:45Z 2008-12-06T01:43:45Z <p>Usability analysis (in particular user testing) has a significant up-front cost, both time and money. It also typically unveils a whole batch of things to fix that people would rather ignore...</p> http://stackoverflow.com/questions/332734/is-yacc-still-used-in-the-industry/332779#332779 0 Answer by Rich for Is Yacc still used in the industry? Rich 2008-12-02T01:38:57Z 2008-12-02T01:38:57Z <p>A general rule of thumb: code lasts a long time, so the technologies used in that code last a long time, too. It would take an enormous amount of time to replace the codebase you mention (it took 15 years to build it...), which in turn implies that it will still be around in 5, 10, or more years. (There's even a chance that someone who reads this answer will end up working on it!)</p> <p>Another rule of thumb: if a general-purpose technology is commonplace enough that you have encountered it already, it's probably commonplace enough that you should familiarize yourself with it, because you'll see it again one day. Who knows: by familiarizing yourself with it, maybe you added a useful tool to your toolbox...</p> <p>Yacc is one of these technologies: you're probably going to run into it again, it's not that difficult, and the principles you'll learn apply to the whole family of parser constructors.</p> http://stackoverflow.com/questions/332398/why-does-making-simple-edits-then-uploading-crash-my-site/332514#332514 4 Answer by Rich for Why does making simple edits then uploading crash my site? Rich 2008-12-01T22:50:25Z 2008-12-01T22:50:25Z <p>Try setting binary mode in your FTP client. That will allow you to experiment with different line endings (dos2unix) on the client side, without worrying about them being translated during transfer.</p> http://stackoverflow.com/questions/294562/what-does-a-college-degree-provide-that-experience-doesnt/310782#310782 6 Answer by Rich for What does a college degree provide that experience doesn't? Rich 2008-11-22T02:43:02Z 2008-11-22T02:43:02Z <p>A college degree gives you the opportunity to learn (and fail) in an environment with fewer and different pressures than the workplace. Furthermore, in contrast to learning at home, one is compelled to continue learning, guided in what to learn, and provided with support from experts.</p> <p>For example, in the workplace or at home you are unlikely to ever walk through all the stages of a parser and compiler from first principles, with the guidance and answers of an expert at hand, despite the fantastic importance of parsing techniques and compilation in most developers' day to day work.</p> <p>In the workplace you have deadlines, external limitations, and existing codebases: you would never choose to write your own lexer (to take a particular example), so when:</p> <ul> <li>your lexer library doesn't work correctly</li> <li>an existing lexer at your company is too slow</li> <li>a new problem is really lexing/parsing/compiling <em>in disguise</em> (this happens quite often)</li> <li>you have to work on a resource constrained platform, and end up writing your own parser</li> </ul> <p>you are missing the required experience, and have to learn under very different pressures.</p> <p>The particularly important part about all this is that someone who earned their degree can go to the workplace and experience all of the different pressures, learning both sets of skills... but it's much rarer for someone who has spent years in the workplace to go back to school full-time to learn in that environment.</p> <p>Put another way, the workplace teaches you to get something working, while a university teaches you the principles of making it work, or how to make it work <em>right</em>. It's possible to learn the latter in the workplace, but it's harder.</p> <p>My personal perspective is that my time at a university taught me a tremendous number of underlying principles that I use every day in my work without thinking, and some that I consciously use. Some of my coworkers without those experiences have noticeably different approaches, and they often start on a course which — with greater insight into the character of the problem (algorithmic complexity being one such area) — would be obviously foolish.</p> <p>All that said, I wouldn't refuse to hire a programmer without a university education... but I do think they would have a harder time meeting my requirements than if they had one.</p> http://stackoverflow.com/questions/296245/what-do-you-put-on-your-cubicle-walls/301137#301137 0 Answer by Rich for What do you put on your cubicle walls? Rich 2008-11-19T06:11:33Z 2008-11-19T06:11:33Z <p>I work in an open-plan office, so… nothing. Sometimes I would like walls to stick things to, but then I realize that they would end up like my corkboard at home: covered in old pieces of paper.</p> http://stackoverflow.com/questions/297470/use-get-or-post-for-a-search-form/297561#297561 2 Answer by Rich for Use GET or POST for a search form Rich 2008-11-18T01:16:52Z 2008-11-18T01:16:52Z <p>You mention in a comment that many of the fields "are hidden and can be opened as required".</p> <p>If you are willing to discard graceful degradation, you could always actually add and remove the fields from the form, rather than just hiding and showing them: the browser won't submit the ones that aren't included in the form.</p> <p>This is a variant of the "Make and model" forms that online insurance etc. pages use -- select the make, submit back to the server and get the list of models for that manufacturer.</p> http://stackoverflow.com/questions/278199/best-way-to-communicate-with-a-programmer-to-define-a-project/293106#293106 0 Answer by Rich for Best way to communicate with a programmer to define a project? Rich 2008-11-15T21:56:28Z 2008-11-15T21:56:28Z <p>A lot of programmers I know are very fast learners, and have an innate knack for spotting inconsistencies, alternatives, and simplifications.</p> <p>You might do best to <em>teach him</em> about your domain: if you yourself had a good intuition about what needs to be built, he'll figure out the same thing, and then you can discuss details.</p> <p>Quite possibly, on learning about your domain he will suggest a simpler or radically different solution at a higher level that makes your first problem go away, or an existing tool that you can easily put into use.</p> <p>If you're trying to define a project to build heated handlebars, an hour talking to a good programmer will lead him to suggest gloves.</p> <p>I've had this happen to me: a customer was willing to pay me to build something, and after a 20 minute chat I pointed them to an existing open-source tool that solved their problem in the general case. They just didn't have the knowledge or mindset to analyze their problem to that extent.</p> <p>The most important point in all of this is that this is a <em>dialog</em>: you need to share your knowledge with the developer, and together work towards a solution. Throwing a design brief and a spec over the wall is not enough, because you aren't leveraging their abilities to target the problem.</p> http://stackoverflow.com/questions/291019/why-are-web-applications-more-popular-than-local-applications/291035#291035 9 Answer by Rich for Why are web applications more popular than local applications? Rich 2008-11-14T19:01:48Z 2008-11-14T19:01:48Z <p>Your point in general is false: web applications aren't more popular than local applications.</p> <p>In <strong>your specific case</strong>, the client probably wants to take advantage of these things:</p> <ul> <li>seamless upgrades</li> <li>availability from any machine without you having to install client software</li> <li>"no crashes"</li> <li>ability to try it out before you finish the software</li> <li>perceived reduced cost.</li> </ul> <p>If you happen to disagree with their evaluation, you could try to persuade them that your experience suggests that a web app is not the best fit for this.</p> <p>Or perhaps you should consider exploring continuation-based web frameworks, such as <a href="http://www.seaside.st/" rel="nofollow">Seaside</a>. They make persisting state through stateless interactions more straightforward.</p> http://stackoverflow.com/questions/288856/best-keyboard-for-high-wpm/288889#288889 4 Answer by Rich for Best Keyboard for High WPM Rich 2008-11-14T00:33:52Z 2008-11-14T00:33:52Z <p><strong>A good text editor is as important as a good keyboard</strong>. If I had to use a basic text editor, I would produce code more slowly. Vim makes me quick.</p> <p>Speaking of keyboards, I'm very happy with my <strong>Kinesis Advantage</strong> for a non-obvious reason: <em>less wrist pain</em> means I can write more code more quickly. It's also a pretty fast keyboard (at least to my subjective analysis): good key feedback, space/enter/backspace/delete under your thumbs, so your fingers don't have to reach.</p> http://stackoverflow.com/questions/273854/how-do-i-process-enormous-numbers/273906#273906 1 Answer by Rich for How do I process enormous numbers? Rich 2008-11-07T22:51:09Z 2008-11-07T22:51:09Z <p>I find it very frustrating to use a language without arbitrarily large numbers: it seems nonsensical to be able to use ordinary operators like addition on most numbers, but to have to switch to method calls on a BigInt instance simply because of its size.</p> <p>A whole bunch of languages have more complete numeric towers, and seamlessly coerce when needed; e.g., Allegro Common Lisp evaluates and prints all 45,155 digits of (expt 2 150000) in 1ms. </p> <pre><code>cl-user(2): (time (expt 2 150000)) ; cpu time (non-gc) 0 msec user, 0 msec system ; cpu time (gc) 0 msec user, 0 msec system ; cpu time (total) 0 msec user, 0 msec system ; real time 1 msec ; space allocation: ; 2 cons cells, 18,784 other bytes, 0 static bytes </code></pre> http://stackoverflow.com/questions/257236/the-shell-dotfile-cookbook/257513#257513 5 Answer by Rich for The shell dotfile cookbook Rich 2008-11-02T22:40:33Z 2008-11-02T22:40:33Z <p>Any post on dotfiles would be missing something without a link to <a href="http://dotfiles.org/" rel="nofollow">dotfiles.org</a>, a repository of such.</p> <p>Have a browse there whenever you go to customize a new application.</p> http://stackoverflow.com/questions/256625/when-to-use-closure/256630#256630 4 Answer by Rich for When to use closure? Rich 2008-11-02T07:39:45Z 2008-11-02T07:39:45Z <p>Typically, if one doesn't have closures, one must define a class to carry with it the equivalent of the closure's environment, and pass it around.</p> <p>For example, in a language like Lisp, one can define a function that returns a function (with a closed-over environment) to add some predefined amount to its argument thusly:</p> <pre><code>(defun make-adder (how-much) (lambda (x) (+ x how-much))) </code></pre> <p>and use it like this:</p> <pre><code>cl-user(2): (make-adder 5) #&lt;Interpreted Closure (:internal make-adder) @ #x10009ef272&gt; cl-user(3): (funcall * 3) ; calls the function you just made with the argument '3'. 8 </code></pre> <p>In a language without closures, you would do something like this:</p> <pre><code>public class Adder { private int howMuch; public Adder(int h) { howMuch = h; } public int doAdd(int x) { return x + howMuch; } } </code></pre> <p>and then use it like this:</p> <pre><code>Adder addFive = new Adder(5); int addedFive = addFive.doAdd(3); // addedFive is now 8. </code></pre> <p>The closure implicitly carries its environment with it; you seamlessly refer to that environment from inside the executing part (the lambda). Without closures you must make that environment explicit.</p> <p>That should explain to you when you would use closures: <em>all the time</em>. Most instances where a class is instantiated to carry with it some state from another part of the computation and apply it elsewhere are elegantly replaced by closures in languages which support them.</p> <p>One can implement an object system with closures.</p> http://stackoverflow.com/questions/254397/what-are-these-stray-zero-byte-files-extracted-from-tarball-osx/254417#254417 -1 Answer by Rich for What are these stray zero-byte files extracted from tarball? (OSX) Rich 2008-10-31T18:13:02Z 2008-10-31T18:13:02Z <p>I don't know (and boy is this a hard problem to Google for!), but here's a troubleshooting step: try <code>tar</code> without <code>Z</code>. That will determine whether <code>compress</code> or <code>tar</code> is causing the issue.</p> http://stackoverflow.com/questions/254350/in-python-is-there-a-concise-way-of-comparing-whether-the-contents-of-two-text-f/254373#254373 10 Answer by Rich for In Python, is there a concise way of comparing whether the contents of two text files are the same? Rich 2008-10-31T17:56:15Z 2008-10-31T17:56:15Z <p>If you're going for even basic efficiency, you probably want to check the file size first:</p> <pre><code>if os.path.getsize(filename1) == os.path.getsize(filename2): if open('filename1','r').read() == open('filename2','r').read(): # Files are the same. </code></pre> <p>This saves you reading every line of two files that aren't even the same size, and thus can't be the same.</p> <p>(Even further than that, you could call out to a fast MD5sum of each file and compare those, but that's not "in Python", so I'll stop here.)</p> http://stackoverflow.com/questions/167397/lisp-web-frameworks/249548#249548 3 Answer by Rich for Lisp Web Frameworks? Rich 2008-10-30T08:14:10Z 2008-10-30T08:14:10Z <p><strong>Common Lisp</strong></p> <p>A lot of the usual suspects (Hunchentoot, UCW, LoL) have already been mentioned. Franz makes available for Allegro Common Lisp (and ported to other Lisps): </p> <ul> <li>at a lower level (handling HTTP requests yourself), <a href="http://opensource.franz.com/aserve/" rel="nofollow">AllegroServe</a>.</li> <li>at a higher level (more of a "framework"), <a href="http://opensource.franz.com/aserve/aserve-dist/webactions/doc/webactions.html" rel="nofollow">WebActions</a>.</li> </ul> <p>Both are open source. I tend to use AllegroServe, factoring out utilities as I need them, but some people really like WebActions.</p> <p>I used <a href="http://www.cliki.net/araneida" rel="nofollow">Araneida</a> for quite some time, and I prefer its style to AllegroServe, but it hasn't been maintained since 2006.</p> http://stackoverflow.com/questions/239185/what-is-the-best-way-to-tell-an-excellent-programmer-in-a-job-interview/248888#248888 9 Answer by Rich for What is the best way to tell an excellent programmer in a job interview? Rich 2008-10-30T00:10:29Z 2008-10-30T00:10:29Z <p>This answer is a little outside the box, but I think it's a valuable point.</p> <p>The very best programmers rarely interview. <em>They don't have to</em>. If your company is particularly world-changing, or excitingly shrouded in secrecy, or several programmers they respect have gone there, then they might apply, but ordinarily great programmers get jobs through their network of associates, not by sending in résumés.</p> <p>So: the best way to tell an excellent programmer in a job interview is that <em>he's not there</em>.</p> http://stackoverflow.com/questions/241602/what-non-technical-items-do-you-keep-on-your-desk/244321#244321 0 Answer by Rich for What non-technical items do you keep on your desk? Rich 2008-10-28T18:28:20Z 2008-10-28T18:28:20Z <p>Whiskey, lots of glasses, a bottle opener, and a "That was easy" button from Staples.</p> <p>Why are you looking at me like that?</p> <p>I also keep a lint roller: we have dogs in the office, and their fur likes my clothes. It's probably something to do with me playing with them, too.</p> http://stackoverflow.com/questions/242147/how-do-i-tell-my-application-to-close/242388#242388 1 Answer by Rich for How do i tell my application to close? Rich 2008-10-28T06:23:34Z 2008-10-28T06:23:34Z <pre><code>exit(0); </code></pre> <p>will do the trick...</p> http://stackoverflow.com/questions/242149/when-should-i-optimize/242208#242208 2 Answer by Rich for When should I optimize? Rich 2008-10-28T03:54:38Z 2008-10-28T03:54:38Z <p>Short answer: when it's too slow.</p> <p>The real answer: when it's too slow <em>for your users</em>. That means you have someone using the feature and it's not fast enough for them. The first part is important: a slow feature that nobody uses isn't yet a problem worth solving.</p> http://stackoverflow.com/questions/242094/why-does-ruby-seem-to-have-fewer-projects-than-other-programming-languages/242171#242171 14 Answer by Rich for Why does Ruby seem to have fewer projects than other programming languages? Rich 2008-10-28T03:36:08Z 2008-10-28T03:36:08Z <p>You're mistakenly attributing something to Ruby. <a href="http://rubyforge.org/" rel="nofollow">RubyForge</a> alone reports over 1,000 open-source projects, let alone all Ruby on Rails apps that exist, and the projects hosted on Github, Sourceforge, and elsewhere.</p> <p>Unless you spend a lot of time on other sites (Reddit is a good example) you will be unaware of just how .NET/Oracle/SQL Server/etc.-centric Stack Overflow is. (I use a Greasemonkey plugin to hide a broad swathe of these Windows- and "Enterprise"-centric technologies, because they don't interest me.)</p> <p>I actually had the complementary experience to you: I started spending time on Stack Overflow, and had something of a "woah" moment when I realized just how many people spend their days futzing with ASP.NET. That's not a world in which I'd spent any time, so I had underestimated its size.</p> <p>Some parts of the internet (e.g., Reddit) are primarily concerned with free software and its associated languages: Perl, Python, Ruby, PHP.</p> <p>Some parts (e.g., <a href="http://lambda-the-ultimate.org/" rel="nofollow">Lambda the Ultimate</a>) are concerned with more esoteric languages: Haskell, Lisp, Joy, Coq.</p> <p>Other parts (e.g., Stack Overflow) are more mainstream: Java, .NET.</p> <p>You cannot draw any conclusions about the popularity of a language by sampling just one of these 'pools'.</p> http://stackoverflow.com/questions/391710/in-vim-what-is-the-simplest-way-to-join-all-lines-in-a-file-into-a-single-line/391719#391719 Comment by Rich on In Vim, what is the simplest way to join all lines in a file into a single line? Rich 2009-09-05T19:03:17Z 2009-09-05T19:03:17Z Note: %j! will join without spaces. (Add an exclamation mark.) You can't use gJ with %. http://stackoverflow.com/questions/783716/footnote-spacing-in-latex/783751#783751 Comment by Rich on footnote spacing in LaTeX Rich 2009-07-08T05:13:53Z 2009-07-08T05:13:53Z Thanks for this Torsten! http://stackoverflow.com/questions/1025081/would-an-open-source-project-have-copyright-all-rights-reserved-written-on-it/1025102#1025102 Comment by Rich on Would an open source project have "Copyright. All rights reserved." written on its licensing disclaimer? Rich 2009-06-22T02:01:26Z 2009-06-22T02:01:26Z An important side note: many jurisdictions DO NOT allow the revocation of copyright. It can be assigned, but not necessarily assigned to the public domain. http://stackoverflow.com/questions/172380/programming-texts-and-reference-material-for-my-kindle-dx-creating-the-ultimate/172617#172617 Comment by Rich on Programming texts and reference material for my Kindle DX, creating the ultimate reference device? Rich 2009-02-14T03:39:38Z 2009-02-14T03:39:38Z … from the OP: &quot;preferably PDF to preserve things such as code samples&quot;. http://stackoverflow.com/questions/3553/one-piece-of-advice/3562#3562 Comment by Rich on One piece of advice Rich 2008-12-11T06:59:04Z 2008-12-11T06:59:04Z Au contraire: I know plenty of people that I'd advise to learn the mental rigor required to debug using print statements, rather than the crutch of a debugger... http://stackoverflow.com/questions/294562/what-does-a-college-degree-provide-that-experience-doesnt/310782#310782 Comment by Rich on What does a college degree provide that experience doesn't? Rich 2008-11-23T03:56:41Z 2008-11-23T03:56:41Z Simply a second-year compiler course at my university. I'm afraid I don't have any specific resources to point you to apart from Google and the keywords &quot;how to write a compiler&quot;. This book walks through start to finish: <a href="http://tinyurl.com/5878t2" rel="nofollow">tinyurl.com/5878t2</a> http://stackoverflow.com/questions/41925/is-there-a-standard-for-storing-normalized-phone-numbers-in-a-database/41982#41982 Comment by Rich on Is there a standard for storing normalized phone numbers in a database? Rich 2008-11-22T06:45:39Z 2008-11-22T06:45:39Z E164 sets much stricter limits on the length of numbers: 1-3 for countries, and a maximum length of 15. This will not change any time soon, knowing the global telephony system. http://stackoverflow.com/questions/53132/mouse-for-programmer/53144#53144 Comment by Rich on Mouse for programmer Rich 2008-11-22T02:44:54Z 2008-11-22T02:44:54Z Heh, one of my coworkers has one of these. I think I'm the only person who ever has to use her machine who can cope with it! http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1713#1713 Comment by Rich on What is the single most influential book every programmer should read? Rich 2008-11-19T06:08:44Z 2008-11-19T06:08:44Z I was deeply unimpressed by Code Complete. I hate to use an over-used PGism, but it's mired in Blub. So much of the book was irrelevant to me. http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/297074#297074 Comment by Rich on What tricks do you use to get yourself "in the zone"? Rich 2008-11-18T01:08:53Z 2008-11-18T01:08:53Z Heh... when I close my email client -- even when I close everything but my text editor and a shell! -- I find myself hitting Cmd-Tab and looking at an almost empty list of programs. I am conditioned! http://stackoverflow.com/questions/291019/why-are-web-applications-more-popular-than-local-applications/291035#291035 Comment by Rich on Why are web applications more popular than local applications? Rich 2008-11-14T23:33:33Z 2008-11-14T23:33:33Z @John Topley: firstly, as @Herms states, everyone who uses a web application is using a whole stack of local applications to do it. Secondly, every web application uses a whole stack of local applications to <i>be</i> a web app. Thirdly, take one look at MSFT's profits last quarter. http://stackoverflow.com/questions/270666/non-relational-databases-need-a-recommendation/270780#270780 Comment by Rich on non relational databases : need a recommendation Rich 2008-11-07T03:09:32Z 2008-11-07T03:09:32Z 32GB is not big enough to warrant a distributed system. http://stackoverflow.com/questions/270666/non-relational-databases-need-a-recommendation/270682#270682 Comment by Rich on non relational databases : need a recommendation Rich 2008-11-07T03:08:24Z 2008-11-07T03:08:24Z I've heard enough horror stories at scale to suggest that BDB is not going to be a good solution for 32GB of data. However, it <i>is</i> very easy to test this out... http://stackoverflow.com/questions/270666/non-relational-databases-need-a-recommendation/270685#270685 Comment by Rich on non relational databases : need a recommendation Rich 2008-11-07T03:07:25Z 2008-11-07T03:07:25Z It's &quot;glean&quot;, not &quot;gleam&quot;. http://stackoverflow.com/questions/267763/defensive-coding-practices/267897#267897 Comment by Rich on defensive coding practices Rich 2008-11-06T08:37:18Z 2008-11-06T08:37:18Z GCC will warn you by default when you do this; it advises you to put an assignment inside nested parens to make your intention clear.