User Allen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T18:26:10Z http://stackoverflow.com/feeds/user/6043 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1088387/what-specific-productivity-gains-does-vim-emacs-provide-over-gui-text-editors/1092761#1092761 1 Answer by Allen for What specific productivity gains does vim/emacs provide over GUI text editors? Allen 2009-07-07T14:44:24Z 2009-07-07T14:44:24Z <p>I'm semi-competent with vi keybindings, but I prefer Emacs overall. The reason these editors have such fervent adherents is because the editing model they provide is more powerful than newer systems, which is why providing "vi keybindings" or "emacs keybindings" isn't enough, even if you aren't using any extension features or customizations for emacs or vi.</p> <p>I'm only going to talk about Emacs' model because I understand it best. The common model for text editing today involves a buffer of text, in which text can be inserted, deleted, selected, and cut/copied/pasted to the system clipboard.</p> <p>Emacs buffers, of course, can support these operations. Along with tracking cursor position for each window they're visible in, they also keep track of "marks" made in them. The text between the "point" (cursor position) and the "mark" is called the "region", and roughly corresponds to the selection in mainstream editors.</p> <p>The difference is that Emacs keeps track of the last several locations the mark was set at in the mark ring, and you can return to them with a keystroke (or two, depending on your configuration). I find this extremely useful, especially since a lot of Emacs commands that change your location in the buffer set the mark at your old location. An example is when I'm editing a Python module and need to add an import statement to the top of the file. The keystroke for going to the top of the buffer (Alt-&lt;) sets the mark. I add the import statement. I press Ctrl-u Ctrl-Space and I'm back where i started. I can keep doing this to cycle back to previous positions as well. (Maybe I needed to select some text while adding that import statement.)</p> <p>The other (and more well-known) Emacs difference is the kill ring. Most of the keystrokes for removing text from the buffer save text to the kill ring, which can then be recalled with the "yank" command (Ctrl-y). The essential feature is that subsequent yank commands retrieve older killed text. So you can kill several sections of text in a row, then retrieve them in order. You can also cycle through the kill ring with Alt-y after a yank, removing the retrieved text and inserting the next entry in the ring.</p> <p>Emacs had these features in 1978. The only other major system to adopt them to any extent is NeXTStep (and now inherited by Cocoa). Other tools provide more features for specific tasks, can be extended in languages way easier to use than Emacs Lisp, and have nicer visual interfaces... but Emacs remains better at text editing. Which is why, once you know how to use it, it's so hard to quit.</p> http://stackoverflow.com/questions/1056380/emacs-wishlist/1056564#1056564 5 Answer by Allen for Emacs Wishlist Allen 2009-06-29T04:33:42Z 2009-06-30T00:10:11Z <p>An implementation of elisp that's not 1985's state of the art. I mean, seriously -- global variables everywhere? A non-reentrant parser? It's like they don't <em>want</em> people to work on it. I briefly looked at adapting Emacs to be a shared library, but I couldn't get past even <em>parsing</em> elisp files.</p> http://stackoverflow.com/questions/1044400/display-same-file-successive-pages-on-emacs-split-screen/1044546#1044546 4 Answer by Allen for Display same file successive pages on Emacs split screen Allen 2009-06-25T15:21:27Z 2009-06-25T15:21:27Z <p>This question appears to be a duplicate: <a href="http://stackoverflow.com/questions/970292/emacs-multiple-columns-one-buffer">http://stackoverflow.com/questions/970292/emacs-multiple-columns-one-buffer</a></p> http://stackoverflow.com/questions/1041332/emacs-reselect-region-as-vim-shortcut-gv-does/1042365#1042365 2 Answer by Allen for Emacs reselect region, as Vim shortcut 'gv' does Allen 2009-06-25T05:53:58Z 2009-06-25T05:53:58Z <p>If Transient Mark mode is off, the region is always active. If it's on (which it sounds like is your situation), you can set <code>mark-even-if-inactive</code> to non-nil to allow region commands to work while the region isn't highlighted.</p> <p>However, note you also can cycle back through previous mark positions using <code>C-u C-SPC</code> -- this will pop the mark ring. Once you're back to where you want to be, C-x C-x will rehighlight the region you want. (It may take a little bit of playing with this feature to get a feel for it, but it's why I can't switch away from Emacs now.)</p> http://stackoverflow.com/questions/593383/how-do-i-do-closures-in-emacs-lisp/593589#593589 4 Answer by Allen for How do I do closures in Emacs lisp? Allen 2009-02-27T05:14:10Z 2009-02-27T05:14:10Z <p>Emacs lisp only has dynamic scoping. There's a <code>lexical-let</code> macro that approximates lexical scoping through a rather terrible hack.</p> http://stackoverflow.com/questions/488516/extended-res-in-emacs-lgrep/488711#488711 3 Answer by Allen for extended REs in emacs lgrep? Allen 2009-01-28T18:16:07Z 2009-01-28T18:16:07Z <p>If you use a <code>C-u</code> prefix to <code>M-x lgrep</code>, you can edit the resulting command line before it's executed. <code>grep-command</code> is the default command string used by Emacs' various grep functions, and you can do <code>M-x customize-variable RET grep-command</code> to change it.</p> http://stackoverflow.com/questions/486360/uses-for-both-static-strong-typed-languages-like-haskell-and-dynamic-strong-lan/486523#486523 10 Answer by Allen for Uses for both static strong typed languages like Haskell and dynamic (strong) languages like Common LIsp Allen 2009-01-28T04:54:46Z 2009-01-28T04:54:46Z <p>Programming languages are tools for thinking with. You can express any program in any language, if you're willing to work hard enough. The chief value provided by one programming language over another is how much support it gives you for thinking about problems in different ways. </p> <p>For example, Haskell is a language that emphasizes thinking about your problem in terms of types. If there's a convenient way to express your problem in terms of Haskell's data types, you'll probably find that it's a convenient language to write your program in. </p> <p>Common Lisp's strengths (which are numerous) lie in its dynamic nature and its homoiconicity (that is, Lisp programs are very easy to represent and manipulate as Lisp data) -- Lisp is a "programmable programming language". If your program is most easily expressed in a new domain-specific language, for example, Lisp makes it very easy to do that. Lisp (and other dynamic languages) are a good fit if your problem description deals with data whose type is poorly specified or might change as development progresses.</p> <p>Language choice is often as much an aesthetic decision as anything. If your project requirements don't limit you to specific languages for compatibility, dependency, or performance reasons, you might as well pick the one you feel the best about.</p> http://stackoverflow.com/questions/192049/is-it-possible-to-have-an-alias-for-the-function-name-in-lisp/192336#192336 10 Answer by Allen for Is it possible to have an alias for the function name in lisp? Allen 2008-10-10T17:23:04Z 2008-10-10T17:23:04Z <p>You want <code>defalias</code>. <code>(defalias 'newname oldname)</code> will preserve documentation and even show "newname is an alias for `oldname'" when its documentation is requested.</p> http://stackoverflow.com/questions/165408/what-programming-acronyms-do-you-frequently-use-without-knowing-the-meaning-of/167660#167660 0 Answer by Allen for What Programming acronyms do you frequently use without knowing the meaning of Allen 2008-10-03T16:14:38Z 2008-10-03T16:14:38Z <p>"OOP". Everybody seems to know what object-oriented programming is, but nobody ever seems to agree on it. I've been left wondering if it means anything more than "programming in a style that I like".</p> http://stackoverflow.com/questions/115496/glasses-mode-in-emacs/115940#115940 5 Answer by Allen for Glasses mode in emacs. Allen 2008-09-22T16:32:00Z 2008-09-22T16:32:00Z <p>There's no option to set the face for the inserted separator (and from a brief study of the docs for emacs overlays, I don't think it's simple to add).</p> <p>You can customize the face used for the capital letters that glasses-mode splits on; it's called <code>glasses-face</code>.</p> http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/103886#103886 5 Answer by Allen for How do I merge a 2D array in Python into one string with List Comprehension? Allen 2008-09-19T17:26:51Z 2008-09-19T17:26:51Z <p>There's a couple choices. First, you can just create a new list and add the contents of each list to it:</p> <pre><code>li2 = [] for sublist in li: li2.extend(sublist) </code></pre> <p>Alternately, you can use the <code>itertools</code> module's <code>chain</code> function, which produces an iterable containing all the items in multiple iterables:</p> <pre><code>import itertools li2 = list(itertools.chain(*li)) </code></pre> <p>If you take this approach, you can produce the string without creating an intermediate list:</p> <pre><code>s = ",".join(itertools.chain(*li)) </code></pre> http://stackoverflow.com/questions/90413/what-is-the-best-easiest-to-use-encryption-library-in-python/90455#90455 3 Answer by Allen for what is the best/easiest to use encryption library in python Allen 2008-09-18T06:14:16Z 2008-09-18T06:14:16Z <p>See Google's <a href="http://code.google.com/p/keyczar/" rel="nofollow">Keyczar</a> project, which provides a nice set of interfaces to PyCrypto's functionality.</p> http://stackoverflow.com/questions/90418/exit-shell-script-based-on-process-exit-code/90440#90440 4 Answer by Allen for Exit Shell Script Based on Process Exit Code Allen 2008-09-18T06:09:55Z 2008-09-18T06:09:55Z <p>"<code>set -e</code>" is probably the easiest way to do this. Just put that before any commands in your program.</p> http://stackoverflow.com/questions/89620/do-anyone-do-test-cases-for-pojos/89628#89628 0 Answer by Allen for Do anyone do test cases for pojos? Allen 2008-09-18T02:59:56Z 2008-09-18T02:59:56Z <p>Of course it's needed. All the code that has to work has to be tested.</p> http://stackoverflow.com/questions/89266/how-to-implement-closures-without-gc/89346#89346 7 Answer by Allen for How to implement closures without gc? Allen 2008-09-18T02:00:22Z 2008-09-18T02:00:22Z <p>This would be a better question if you can explain what you're trying to avoid by not using GC. As I'm sure you're aware, most languages that provide lexical closures allocate them on the heap and allow them to retain references to variable bindings in the activation record that created them. </p> <p>The only alternative to that approach that I'm aware of is what <code>gcc</code> uses for nested functions: create a trampoline for the function and allocate it on the stack. But as the gcc manual says:</p> <blockquote> <p>If you try to call the nested function through its address after the containing function has exited, all hell will break loose. If you try to call it after a containing scope level has exited, and if it refers to some of the variables that are no longer in scope, you may be lucky, but it's not wise to take the risk. If, however, the nested function does not refer to anything that has gone out of scope, you should be safe. </p> </blockquote> <p>Short version is, you have three main choices: </p> <ul> <li>allocate closures on the stack, and don't allow their use after their containing function exits.</li> <li>allocate closures on the heap, and use garbage collection of some kind.</li> <li>do original research, maybe starting from the region stuff that ML, Cyclone, etc. have.</li> </ul> http://stackoverflow.com/questions/89178/in-python-what-is-the-fastest-algorithm-for-removing-duplicates-from-a-list-so-t/89218#89218 9 Answer by Allen for In Python, what is the fastest algorithm for removing duplicates from a list so that all elements are unique *while preserving order*? Allen 2008-09-18T01:33:44Z 2008-09-18T01:33:44Z <p>What's going to be fastest depends on what percentage of your list is duplicates. If it's nearly all duplicates, with few unique items, creating a new list will probably be faster. If it's mostly unique items, removing them from the original list (or a copy) will be faster.</p> <p>Here's one for modifying the list in place:</p> <pre><code>def unique(items): seen = set() for i in xrange(len(items)-1, -1, -1): it = items[i] if it in seen: del items[i] else: seen.add(it) </code></pre> <p>Iterating backwards over the indices ensures that removing items doesn't affect the iteration.</p> http://stackoverflow.com/questions/88399/how-do-i-duplicate-a-whole-line-in-emacs/88468#88468 2 Answer by Allen for How do I duplicate a whole line in Emacs? Allen 2008-09-17T22:48:35Z 2008-09-17T22:48:35Z <p>@[Kevin Conner]: Pretty close, so far as I know. The only other thing to consider is turning on <code>kill-whole-line</code> to include the newline in the C-k.</p> http://stackoverflow.com/questions/88137/what-are-the-principles-of-system-architecture/88164#88164 0 Answer by Allen for What are the Principles of system architecture? Allen 2008-09-17T22:01:56Z 2008-09-17T22:01:56Z <p>Yes.</p> <p>(Why do you think there is a finite list of these?)</p> http://stackoverflow.com/questions/87666/what-is-your-preferred-method-for-moving-directory-structures-around-in-subversio/87690#87690 1 Answer by Allen for What is your preferred method for moving directory structures around in Subversion? Allen 2008-09-17T21:09:22Z 2008-09-17T21:09:22Z <p>Moves in subversion are done by removing the old files and adding the new ones, so there's nothing special to do. The series of 'svn mv' commands in a loop recommended in the other question should probably work just fine.</p> http://stackoverflow.com/questions/85577/search-for-host-with-mac-address-using-python/85613#85613 5 Answer by Allen for Search for host with MAC-address using Python Allen 2008-09-17T17:28:21Z 2008-09-17T17:28:21Z <p>You need <a href="http://en.wikipedia.org/wiki/Address_Resolution_Protocol" rel="nofollow">ARP</a>. Python's standard library doesn't include any code for that, so you either need to call an external program (your OS may have an 'arp' utility) or you need to build the packets yourself (possibly with a tool like <a href="http://www.secdev.org/projects/scapy/" rel="nofollow">Scapy</a>.</p> http://stackoverflow.com/questions/84339/how-to-implement-in-process-full-text-search-engine/84483#84483 0 Answer by Allen for How to implement in-process full text search engine Allen 2008-09-17T15:27:38Z 2008-09-17T15:27:38Z <p>I'd recommend having a look at SQLite -- full-text search is included in the latest version.</p> http://stackoverflow.com/questions/84143/what-programming-paradigm-will-be-most-successful-in-future-multi-core-computers/84167#84167 2 Answer by Allen for What programming paradigm will be most successful in future multi-core computers? Allen 2008-09-17T15:00:44Z 2008-09-17T15:00:44Z <p>This question has already been asked: <a href="http://stackoverflow.com/questions/79999/what-parallel-programming-model-do-you-recommend-today-to-take-advantage-of-the">http://stackoverflow.com/questions/79999/what-parallel-programming-model-do-you-recommend-today-to-take-advantage-of-the</a></p> http://stackoverflow.com/questions/79999/what-parallel-programming-model-do-you-recommend-today-to-take-advantage-of-the-m/80044#80044 3 Answer by Allen for What parallel programming model do you recommend today to take advantage of the manycore processors of tomorrow? Allen 2008-09-17T04:36:19Z 2008-09-17T04:36:19Z <p>I'm betting on communicating event loops with promises, as realized in systems like <a href="http://twistedmatrix.com" rel="nofollow">Twisted</a>, <a href="http://erights.org" rel="nofollow">E</a>, <a href="http://prog.vub.ac.be/amop/start" rel="nofollow">AmbientTalk</a>, and others. They retain the ability to write code with the same execution-model assumptions as non-concurrent/parallel applications, but scaling to distributed and parallel systems. (That's why I'm working on <a href="http://launchpad.net/ecru" rel="nofollow">Ecru</a>.)</p> http://stackoverflow.com/questions/79968/split-a-string-by-spaces-preserving-quoted-substrings-in-python/79989#79989 5 Answer by Allen for Split a string by spaces -- preserving quoted substrings -- in Python Allen 2008-09-17T04:27:59Z 2008-09-17T04:27:59Z <p>Have a look at the <code>shlex</code> module, particularly <code>shlex.split</code>.</p> <blockquote> <p><code>&gt;&gt;&gt; import shlex</code></p> <p><code>&gt;&gt;&gt; shlex.split('This is "a test"')</code></p> <p><code>['This', 'is', 'a test']</code></p> </blockquote> http://stackoverflow.com/questions/79754/unittest-causing-sys-exit/79826#79826 6 Answer by Allen for Unittest causing sys.exit() Allen 2008-09-17T03:58:24Z 2008-09-17T03:58:24Z <p>Don't try to run <code>unittest.main()</code> from IDLE. It's trying to access <code>sys.argv</code>, and it's getting the args that IDLE was started with. Either run your tests in a different way from IDLE, or call <code>unittest.main()</code> in its own Python process.</p> http://stackoverflow.com/questions/79709/worse-sin-side-effects-or-passing-massive-objects/79768#79768 4 Answer by Allen for Worse sin: side effects or passing massive objects? Allen 2008-09-17T03:48:29Z 2008-09-17T03:48:29Z <p>use variables in the outer function instead of global variables. This gets you the best of both approaches: you're not mutating global state, and you're not copying a big wad of data. If you have to exit early, just return the partial results.</p> <p>(See the "Scope" section in the R manual: <a href="http://cran.r-project.org/doc/manuals/R-intro.html#Scope" rel="nofollow">http://cran.r-project.org/doc/manuals/R-intro.html#Scope</a>)</p> http://stackoverflow.com/questions/78704/good-python-network-programing-resource/79724#79724 2 Answer by Allen for Good Python Network Programing Resource Allen 2008-09-17T03:41:23Z 2008-09-17T03:41:23Z <p>I wrote a SIP proxy and other VoIP tools using Twisted: <a href="http://twistedmatrix.com" rel="nofollow">http://twistedmatrix.com</a> It's an excellent networking engine for any sort of task. </p> <p>You can view the VoIP code I wrote here: <a href="http://divmod.org/trac/browser/trunk/Sine/" rel="nofollow">http://divmod.org/trac/browser/trunk/Sine/</a></p> http://stackoverflow.com/questions/79584/are-there-any-parsing-expression-grammar-peg-libraries-for-javascript-or-php/79604#79604 6 Answer by Allen for Are there any Parsing Expression Grammar (PEG) libraries for Javascript or PHP? Allen 2008-09-17T03:20:14Z 2008-09-17T03:20:14Z <p>There is in fact one for Javascript: OMeta. <a href="http://www.cs.ucla.edu/~awarth/ometa/" rel="nofollow">http://www.cs.ucla.edu/~awarth/ometa/</a></p> <p>I also implemented a version of this in Python: <a href="http://launchpad.net/pymeta" rel="nofollow">http://launchpad.net/pymeta</a></p> http://stackoverflow.com/questions/79231/why-dont-they-teach-these-things-in-school/79272#79272 6 Answer by Allen for Why don't they teach these things in school? Allen 2008-09-17T02:26:58Z 2008-09-17T02:26:58Z <p>Why not, indeed? My experience getting my CS degree was pretty much the same. The reason is that people who teach programming don't program, as far as I can tell. It's not required to teach that stuff for accreditation, the teachers aren't familiar with it, and students never develop projects of any significance as part of their coursework. There's no motivation to actually teach programming, as opposed to teaching CS theory or Java syntax.</p> http://stackoverflow.com/questions/79023/c-gdb-gui/79058#79058 1 Answer by Allen for C++ gdb GUI Allen 2008-09-17T01:47:34Z 2008-09-17T01:47:34Z <p>What can be stepped through is going to be limited by the debugging information that g++ produces, to a large extent. Emacs provides an interface to gdb that lets you control it via the toolbars/menus and display data in separate windows, as well as type gdb commands directly. Eclipse's CDT provides similar tools. I've heard of Anjuta and Code::Blocks but never used them.</p> http://stackoverflow.com/questions/1430164/differences-between-emacs-and-vim/1430200#1430200 Comment by Allen on Differences between Emacs and Vim Allen 2009-09-16T00:38:06Z 2009-09-16T00:38:06Z &quot;better as an editor&quot; is pretty vague. I'd be interested in seeing reasons why. http://stackoverflow.com/questions/1056380/emacs-wishlist/1056564#1056564 Comment by Allen on Emacs Wishlist Allen 2009-06-30T00:07:55Z 2009-06-30T00:07:55Z No, global. <a href="http://cvs.savannah.gnu.org/viewvc/emacs/src/lread.c?root=emacs&amp;view=annotate" rel="nofollow">cvs.savannah.gnu.org/viewvc/emacs/&hellip;</a> See for example, lines 171-174. http://stackoverflow.com/questions/657672/how-to-select-or-highlight-a-block-in-emacs/657727#657727 Comment by Allen on How to select or highlight a block in emacs? Allen 2009-03-18T16:51:23Z 2009-03-18T16:51:23Z That doesn't kill regions, it kills rectangles, which is a lot different from what vim's visual mode does, in my experience. http://stackoverflow.com/questions/90715/what-are-the-best-programming-puzzles-you-came-across Comment by Allen on What are the best programming puzzles you came across? Allen 2008-09-18T07:32:00Z 2008-09-18T07:32:00Z &quot;Every single programmer worth his salt is inspired by great programming puzzles&quot;? As they say on Wikipedia, [citation needed]. http://stackoverflow.com/questions/90418/exit-shell-script-based-on-process-exit-code Comment by Allen on Exit Shell Script Based on Process Exit Code Allen 2008-09-18T06:09:26Z 2008-09-18T06:09:26Z Please phrase your question in the form of a question. ;) http://stackoverflow.com/questions/90413/what-is-the-best-easiest-to-use-encryption-library-in-python Comment by Allen on what is the best/easiest to use encryption library in python Allen 2008-09-18T06:06:33Z 2008-09-18T06:06:33Z Encryption is a tricky subject. Please add more information about what you're encrypting and why, and how your app needs to manage it. Specifically, you need to talk about how the secrets should be managed -- that'll determine whether you should use public key encryption or just a shared secret. http://stackoverflow.com/questions/90052/python-reg-ex-problem/90138#90138 Comment by Allen on Python Reg Ex. problem Allen 2008-09-18T05:06:45Z 2008-09-18T05:06:45Z Don't forget that html5lib can parse non-conforming documents into a reasonable structure as well. http://stackoverflow.com/questions/88613/how-do-i-split-a-string-into-a-list-python Comment by Allen on How do I split a string into a list Python? Allen 2008-09-18T02:57:21Z 2008-09-18T02:57:21Z You should mention that you're working on a program that needs to be able to evaluate these strings as arithmetic expressions. Jerub's answer covers that, but that's because he's a mindreader. http://stackoverflow.com/questions/79584/are-there-any-parsing-expression-grammar-peg-libraries-for-javascript-or-php/79610#79610 Comment by Allen on Are there any Parsing Expression Grammar (PEG) libraries for Javascript or PHP? Allen 2008-09-18T02:30:40Z 2008-09-18T02:30:40Z ANTLR does a lot of stuff, but it doesn't do PEGs. http://stackoverflow.com/questions/89266/how-to-implement-closures-without-gc/89366#89366 Comment by Allen on How to implement closures without gc? Allen 2008-09-18T02:07:43Z 2008-09-18T02:07:43Z You can still pass it to stuff you call. Same value as any other stack-allocated data structure, really. I'd say it's about half the point of closures. http://stackoverflow.com/questions/89266/how-to-implement-closures-without-gc Comment by Allen on How to implement closures without gc? Allen 2008-09-18T01:47:50Z 2008-09-18T01:47:50Z What does it mean to be &quot;not a fan of GC&quot;? Keep in mind that reference counting is a form of garbage collection. Also, what does &quot;lexical closures&quot; mean in a situation where you &quot;won't... follow any call conventions&quot;? http://stackoverflow.com/questions/79709/worse-sin-side-effects-or-passing-massive-objects/79741#79741 Comment by Allen on Worse sin: side effects or passing massive objects? Allen 2008-09-17T03:48:55Z 2008-09-17T03:48:55Z The language he's using is R: <a href="http://r-project.org/" rel="nofollow">r-project.org</a> http://stackoverflow.com/questions/78172/using-c-pthreads-do-shared-variables-need-to-be-volatile/78185#78185 Comment by Allen on Using C/Pthreads: do shared variables need to be volatile? Allen 2008-09-16T23:17:14Z 2008-09-16T23:17:14Z <code>volatile</code> doesn't guarantee atomicity, though. It's for indicating something outside the program is modifying the contents of the variable.