User Mikael Jansson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T17:32:07Z http://stackoverflow.com/feeds/user/18753 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/176955/offline-access-to-moinmoin-wiki-using-google-gears/177321#177321 -1 Answer by Mikael Jansson for Offline access to MoinMoin wiki using Google Gears Mikael Jansson 2008-10-07T05:33:30Z 2008-10-07T05:33:30Z <p>Have a look at <a href="http://moinmo.in/DesktopEdition" rel="nofollow">MoinMoin Desktop Edition</a>.</p> http://stackoverflow.com/questions/177287/alert-boxes-in-python/177316#177316 -1 Answer by Mikael Jansson for Alert boxes in Python? Mikael Jansson 2008-10-07T05:30:52Z 2008-10-07T05:30:52Z <p>Start an app as a background process that either has a TCP port bound to localhost, or communicates through a file -- your daemon has the file open, and then you <code>echo "foo" &gt; c:\your\file</code>. After, say, 1 second of no activity, you display the message and truncate the file.</p> http://stackoverflow.com/questions/174152/what-does-this-lambda-expression-1-2-mean/174216#174216 0 Answer by Mikael Jansson for what does this lambda expression *_1 > *_2 mean? Mikael Jansson 2008-10-06T13:11:32Z 2008-10-06T13:11:32Z <p>It's clever template magic. What really happens is that an anonymous function is created behind the scenes, with two parameters _1 and _2. Result.</p> <pre><code>template&lt;T&gt; int compare(T *_1, T *_2) { return *_1 &gt; *_2; } </code></pre> <p>sort(vp.begin(), vp.end(), compare);</p> <p>What <em>really</em> happens though is probably that a closure is created. It's essentially a workaround for not having lambdas in the language natively.</p> http://stackoverflow.com/questions/171785/how-do-you-organize-python-modules/171987#171987 2 Answer by Mikael Jansson for How do you organize Python modules? Mikael Jansson 2008-10-05T13:38:32Z 2008-10-05T13:38:32Z <p>Maybe <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP8</a> and <a href="http://peak.telecommunity.com/DevCenter/EasyInstall" rel="nofollow">easy_install</a> can help you?</p> http://stackoverflow.com/questions/171527/best-console-based-no-gui-code-editor/171533#171533 8 Answer by Mikael Jansson for Best console-based (no GUI) code editor? Mikael Jansson 2008-10-05T05:12:12Z 2008-10-05T12:35:45Z <p>Vim. See <a href="http://cream.sourceforge.net/" rel="nofollow">Cream :: a modern configuration of the Vim text editor</a>, or feel free to use (parts or all of) mine. It's also <a href="http://mikael.jansson.be/static/config/vim.tar.bz2" rel="nofollow">available in full (including .vimrc and .vim)</a>:</p> <pre><code>$ cat ~/.vimrc set nocompatible set backspace=indent,eol,start set ruler set showcmd set wildmenu set fo=cqrt set laststatus=2 set textwidth=78 set ww=&lt;,&gt;,h,l set autoindent " set no error bells set noeb visualbell set expandtab set tabstop=4 set shiftwidth=4 set expandtab let mapleader = "," let maplocalleader = "," syn on filetype plugin indent on " always display minimum 5 lines above and below the cursor set scrolloff=5 " do *not* resize all windows. set noequalalways "set winfixheight " can be set if equalalways is on to avoid height/width maximization " folding set foldmethod=indent set foldlevel=0 set foldnestmax=2 "------------------------ " statusline "------------------------ set fillchars=stl:\ ,stlnc:\ ,vert:\|,fold:\ ,diff:- set statusline=%&lt;%f\ %h%m%r%=%-14.(%l,%c%V%)\ %P\ of\ %L\ \(%.45{getcwd()}\) " --------------------------------------------- " Completion w/ Shift-TAB (xfce4-terminal) " Note: SuperTab might remap stuff.. " --------------------------------------------- if !has("gui_running") imap &lt;Esc&gt;[Z &lt;C-P&gt; vmap &lt;Esc&gt;[Z &lt; nmap &lt;Esc&gt;[Z &lt;&lt; nmap &lt;Tab&gt; &gt;&gt; endif " Esc gets you back to original, Enter selects. inoremap &lt;expr&gt; &lt;Esc&gt; pumvisible()?"\&lt;C-E&gt;":"\&lt;Esc&gt;" inoremap &lt;expr&gt; &lt;CR&gt; pumvisible()?"\&lt;C-Y&gt;":"\&lt;CR&gt;" inoremap &lt;expr&gt; j pumvisible()?"\&lt;C-N&gt;":"j" inoremap &lt;expr&gt; k pumvisible()?"\&lt;C-P&gt;":"k" " Look for the tags file in the current directory, " and look for the tags file in the _current file's_ directory. With the ; " appended to the end, vim searches (see |file-searching| until / is reached) set tags=tags,./tags; " jump to tag: ctrl-space (which yields a ctrl-@) map &lt;C-@&gt; &lt;C-]&gt; let OmniCpp_ShowPrototypeInAbbr = 1 " alternate script nmap &lt;Leader&gt;in :A&lt;CR&gt; nmap &lt;Leader&gt;is :AS&lt;CR&gt; nmap &lt;Leader&gt;ivs :AV&lt;CR&gt; " jump to the insert point after pasting nmap &lt;Leader&gt;p p`. nmap &lt;Leader&gt;P P`. " always open new vertical splits to the right set splitright " make mouse work for Terminal-vims set mouse=nv "--------------------------------------------- " Disable cursorline on inactive buffers "--------------------------------------------- autocmd WinLeave * set nocursorline autocmd WinEnter * set cursorline set cursorline " 256 colors, yay! set t_Co=256 colorscheme desert256 if has("gui_running") hi Normal guibg=Black endif hi StatusLine ctermbg=white ctermfg=160 hi StatusLineNC ctermbg=black ctermfg=gray hi Folded term=NONE ctermbg=0 ctermfg=237 guifg=Green guibg=Black hi WildMenu term=NONE cterm=bold ctermbg=blue ctermfg=8 " " clear blue background, white foreground hi CursorLine cterm=NONE guibg=#333333 guifg=#ffffff ctermbg=235 ctermfg=255 hi NonText term=NONE guibg=black guifg=white ctermbg=black ctermfg=white hi TabLineFill ctermfg=black ctermbg=black guifg=black guibg=black hi TabLine term=NONE ctermfg=gray ctermbg=black guifg=gray guibg=black hi TabLineSel term=NONE ctermfg=white ctermbg=black guifg=white guibg=black set number set whichwrap=h,l,[,] set showmatch " move within long lines noremap j gj noremap k gk nnoremap &lt;C-J&gt; &lt;C-W&gt;j nnoremap &lt;C-K&gt; &lt;C-W&gt;k "--------------------------- " Misc "--------------------------- " When editing a file, always jump to the last cursor position autocmd BufReadPost * \ if line("'\"") &gt; 0 &amp;&amp; line ("'\"") &lt;= line("$") | \ exe "normal g'\"" | \ endif " keep 50 lines of command line/search/etc history set history=50 " ignore case, except if there's at least one upper-case character " highlight search results set ignorecase set smartcase set hlsearch "Show menu with possible completions set wildmenu " Ignore these files when completing names and in Explorer set wildignore=.svn,CVS,*.o,*.a,*.class,*.mo,*.la,*.so,*.obj,*.swp,*.jpg,*.png,*.xpm,*.gif " [nvilc]noremap means no remapping of right hand side. " where nvilc is normal, visual, insert, ... "-------------------------- " Tabs "-------------------------- " also, gt/gT... " C-PageUp, C-PageDown nmap &lt;Esc&gt;[5;5~ :tabprevious&lt;cr&gt; nmap &lt;Esc&gt;[6;5~ :tabnext&lt;cr&gt; "-------------------------------- " Buffers "-------------------------------- " switch buffers nmap &lt;Esc&gt;[6;3~ :bnext&lt;CR&gt; nmap &lt;Esc&gt;[5;3~ :bprevious&lt;CR&gt; " C-right, C-left nmap &lt;Esc&gt;[1;5C :bnext&lt;CR&gt; nmap &lt;Esc&gt;[1;5D :bprevious&lt;CR&gt; " switch to previous buffer noremap &lt;F10&gt; :b#&lt;CR&gt; " remap Ex-mode into reformatting the current paragraph in visual mode " or the current paragraph in normal mode (plus following if count specified). nnoremap Q gqap vnoremap Q gq " Spelling! if has("spell") " turn spelling on by default set nospell " toggle spelling with F4 key map &lt;F4&gt; :set spell!&lt;CR&gt;&lt;Bar&gt;:echo "Spell Check: " . strpart("OffOn", 3 * &amp;spell, 3)&lt;CR&gt; " they were using white on white highlight PmenuSel ctermfg=black ctermbg=lightgray " limit it to just the top 10 items set sps=best,10 endif " only the status window left set winminheight=0 " smart indentation everywhere set smartindent " smart-indent for python files, yay! augroup filetypedetect autocmd! BufNewFile,BufRead *.py set cinwords=if,elif,else,for,while,try,except,finally,def,class autocmd! BufNewFile,BufRead *.tac set cinwords=if,elif,else,for,while,try,except,finally,def,class autocmd! BufNewFile *.py 0r ~/.vim/skeleton/python.py " lilypond autocmd! BufNewFile,BufRead *.ly setf lilypond set runtimepath+=/usr/share/lilypond/2.10.5/vim/ augroup END " auto-close XML tags on &lt;C-_&gt; let g:closetag_html_style=1 autocmd Filetype xhtml,html,xml,xsl,php,kid source ~/.vim/plugin/closetag.vim | set tw=0 let python_highlight_all=1 let python_slow_sync=1 runtime plugin/matchit.vim " show tabs as &gt;-xN in Makefiles and Python source autocmd FileType make,py set list listchars=tab:&gt;- </code></pre> http://stackoverflow.com/questions/171326/how-can-i-increase-the-key-repeat-rate-beyond-the-oss-limit/171493#171493 1 Answer by Mikael Jansson for How can I increase the key repeat rate beyond the OS's limit? Mikael Jansson 2008-10-05T04:35:54Z 2008-10-05T05:13:17Z <p>Don't navigate character-by-character.</p> <p>In Vim (see <a href="http://www.viemu.com/" rel="nofollow">ViEmu</a> for Visual Studio):</p> <ul> <li><code>bw</code> -- prev/next word</li> <li><code>()</code> -- prev/next sentence (full stop-delimited text)</li> <li><code>{}</code> -- prev/next paragraph (blank-line delimited sections of text)</li> <li><code>/?</code> -- move the cursor to the prev/next occurence the text found (w/ <code>set incsearch</code>)</li> </ul> <p>Moreover, each of the movements takes a number as prefix that lets you specify how many times to repeat the command, e.g.:</p> <ul> <li><code>20j</code> -- jump 20 lines down</li> <li><code>3}</code> -- three paragraphs down</li> <li><code>4w</code> -- move 4 words forward</li> <li><code>40G</code> -- move to (absolute) line number 40</li> </ul> <p>There are most likely equivalent ways to navigate through text in your editor. If not, you should consider switching to a better one.</p> http://stackoverflow.com/questions/165767/does-common-lisp-have-a-something-like-javas-set-interface-implementing-classes/171511#171511 1 Answer by Mikael Jansson for Does Common Lisp have a something like java's Set Interface/implementing classes? Mikael Jansson 2008-10-05T04:50:27Z 2008-10-05T04:50:27Z <p>Easily solvable using a hash table.</p> <pre><code>(let ((h (make-hash-table :test 'equalp))) ; if you're storing symbols (loop for i from 0 upto 20 do (setf (gethash i h) (format nil "Value ~A" i))) (loop for i from 10 upto 30 do (setf (gethash i h) (format nil "~A eulaV" i))) (loop for k being the hash-keys of h using (hash-value v) do (format t "~A =&gt; ~A~%" k v))) </code></pre> <p>outputs</p> <pre><code>0 =&gt; Value 0 1 =&gt; Value 1 ... 9 =&gt; Value 9 10 =&gt; 10 eulaV 11 =&gt; 11 eulaV ... 29 =&gt; 29 eulaV 30 =&gt; 30 eulaV </code></pre> http://stackoverflow.com/questions/170931/replace-an-item-in-a-list-in-common-lisp/171504#171504 0 Answer by Mikael Jansson for Replace an item in a list in Common Lisp? Mikael Jansson 2008-10-05T04:42:45Z 2008-10-05T04:42:45Z <p>The obvious solution is slow and uses memory, as noted by others. If possible, you should try to defer replacing the element(s) until you need to perform another element-wise operation on the list, e.g. <code>(loop for x in list do ...)</code>.</p> <p>That way, you'll amortize away the consing (memory) and the iteration (cpu).</p> http://stackoverflow.com/questions/171046/tangential-tweaking-your-most-ocd-quest-for-perfection/171082#171082 1 Answer by Mikael Jansson for Tangential Tweaking: Your Most OCD quest for perfection Mikael Jansson 2008-10-04T22:04:20Z 2008-10-04T22:04:20Z <p>I type in the following lines when I move to a new system:</p> <pre><code>$ svn export https://.../.../configuration ~/configuration $ for file in configuration/.*; do ln -sf $file .; done </code></pre> <p>Ready to go.</p> http://stackoverflow.com/questions/169946/choosing-a-new-language/170117#170117 11 Answer by Mikael Jansson for Choosing a new language Mikael Jansson 2008-10-04T10:54:15Z 2008-10-04T15:06:59Z <p><strong>Common Lisp</strong>, because it allows you to <a href="http://stackoverflow.com/questions/106058/practical-example-of-lisps-flexibility#107544">describe your problem in terms of the problem</a> instead of in terms of the underlying language's low-level primitives, effectively boosting your productivity by letting you focus on the problem at hand. Simultaneous top-to-bottom and bottom-to-top programming.</p> <p>While you're at it, the Common Lisp Object System is the most powerful mainstream object system today, with....</p> <ul> <li>multiple dispatch,</li> <li>customizable method combination (makes more sense when you learn about multiple dispatch),</li> <li>a fully programmable object system, and</li> <li>methods, classes and generic functions as classes</li> </ul> <p>See Practical Common Lisp's <a href="http://gigamonkeys.com/book/object-reorientation-generic-functions.html" rel="nofollow">chapter on generic functions</a> and get <a href="http://rads.stackoverflow.com/amzn/click/0201175894" rel="nofollow">Keene's book Common Lisp Object System</a> and <a href="http://rads.stackoverflow.com/amzn/click/0262610744" rel="nofollow">The Art of the Metaobject Protocol</a>.</p> <h1>Practical: Trivial Consumer-Producer in CLOS</h1> <p>Disclaimer: I wrote this in ten minutes, so it's most likely not efficient nor bug-free.</p> <pre><code>(defclass broadcaster () ((listeners :accessor listeners :initform '()))) (defgeneric add-listener (broadcaster listener) (:documentation "Add a listener (a function taking one argument) to a broadcast's list of interested parties")) (defgeneric remove-listener (broadcaster listener) (:documentation "Reverse of add-listener")) (defgeneric broadcast (broadcaster object) (:documentation "Broadcast an object to all registered listeners")) (defmethod add-listener (broadcaster listener) (pushnew listener (listeners broadcaster))) (defmethod remove-listener (broadcaster listener) (let ((listeners (listeners broadcaster))) (setf listeners (remove listener listeners)))) (defmethod broadcast (broadcaster object) (dolist (listener (listeners broadcaster)) (funcall listener object))) </code></pre> <h2>Example Subclass</h2> <pre><code>(defclass direct-broadcaster (broadcaster) ((latest-broadcast :accessor latest-broadcast) (latest-broadcast-p :initform nil)) (:documentation "I broadcast the latest broadcasted object when a new listener is added")) (defmethod add-listener :after ((broadcaster direct-broadcaster) listener) (when (slot-value broadcaster 'latest-broadcast-p) (funcall listener (latest-broadcast broadcaster)))) (defmethod broadcast :after ((broadcaster direct-broadcaster) object) (setf (slot-value broadcaster 'latest-broadcast-p) t) (setf (latest-broadcast broadcaster) object)) </code></pre> <h2>Example Usage</h2> <pre><code>Lisp&gt; (let ((broadcaster (make-instance 'broadcaster))) (add-listener broadcaster #'(lambda (obj) (format t "I got myself a ~A object!~%" obj))) (add-listener broadcaster #'(lambda (obj) (format t "I has object: ~A~%" obj))) (broadcast broadcaster 'cheezburger)) I has object: CHEEZBURGER I got myself a CHEEZBURGER object! Lisp&gt; (defparameter *direct-broadcaster* (make-instance 'direct-broadcaster)) (add-listener *direct-broadcaster* #'(lambda (obj) (format t "I got myself a ~A object!~%" obj))) (broadcast *direct-broadcaster* 'kitty) I got myself a KITTY object! Lisp&gt; (add-listener *direct-broadcaster* #'(lambda (obj) (format t "I has object: ~A~%" obj))) I has object: KITTY </code></pre> <h1>Practical: Macros</h1> <p>Duplicatad from my previous answer, for your convenience.</p> <p>A macro is code that is run at <em>compile-time</ http://stackoverflow.com/questions/170103/what-rare-programming-tools-do-you-use/170107#170107 31 Answer by Mikael Jansson for What rare programming tools do you use? Mikael Jansson 2008-10-04T10:42:59Z 2008-10-04T15:01:19Z <p>Common Lisp.</p> <p>An elegant weapon. For a more ... civilized age.</p> <p>Also see:</p> <ul> <li><a href="http://stackoverflow.com/questions/169946/choosing-a-new-language#170117">Choosing a new language</a></li> <li><a href="http://stackoverflow.com/questions/149439/how-can-circular-dependencies-be-avoided-when-callbacks-are-used#149693">10-minute consumer-producer in CLOS</a></li> </ul> http://stackoverflow.com/questions/168181/double-click-double-insert-resolutions/168198#168198 0 Answer by Mikael Jansson for Double-click double-insert resolutions? Mikael Jansson 2008-10-03T18:23:12Z 2008-10-03T18:23:12Z <p>It seems you already replied to your own question there; #1 seems to be the only viable option.</p> <p>Otherwise, you should really do all three steps -- data integrity should be handled at the database level, but extra checks (such as the explicit transaction) in the code to avoid roundtrips to the databse could be good for performance.</p> http://stackoverflow.com/questions/168043/developers-productivity-measurement/168065#168065 3 Answer by Mikael Jansson for Developers productivity measurement Mikael Jansson 2008-10-03T17:46:28Z 2008-10-03T18:03:53Z <p>You give a developer a task, ask him/her to solve it and measure how long time it takes to solve the problem.</p> <p>Micromanagement is evil. Measuring lines of code is useless, because less truly <em>is</em> more.</p> http://stackoverflow.com/questions/168022/naming-conventions-in-a-python-library/168072#168072 5 Answer by Mikael Jansson for Naming conventions in a Python library Mikael Jansson 2008-10-03T17:48:02Z 2008-10-03T17:48:02Z <p>I suggest you read <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP8</a> (styleguide for Python code).</p> http://stackoverflow.com/questions/160975/diet-advice-for-programmers/161081#161081 2 Answer by Mikael Jansson for Diet advice for programmers Mikael Jansson 2008-10-02T06:20:42Z 2008-10-03T05:57:12Z <p>A low-carb diet (less than 20g of carbs per day). Only eat eggs, fat meat, fat fish, fat cheeses, butter, triple cream. Stay away from any sweeteners, especially artificial.</p> <p><code>=&gt;</code> no after-meal tiredness and no sugar cravings.</p> <p>It's what our species are made to eat, anyway. Fruit and berries are excellent if you want to hibernate in the winter, not so much if you want to stay healthy. Just look up the vitamines and sugar contents if you don't believe me. Or for that matter, consider what's available in the wild during October, November, December, January, February, March, April, May and June...</p> <p>Moreover, when you've had fat to fill yourself up with, you don't want to eat when it's just the insuline hormone messing with your bloodsugar levels (thanks to the spike you got by eating starch). It stays even most of the time, which also paves way for less mood swings! Simply put, it's about letting your body control your hunger the way it's meant to, without interferring by loading it with high-octane food!</p> <p>And oh, it's not a weight-loss plan, it's something you can stay on <em>for life.</em></p> <p>See the <a href="http://en.wikipedia.org/wiki/Low-carbohydrate_diet" rel="nofollow">Wikipedia entry on Low-carb</a> for more info.</p> http://stackoverflow.com/questions/162828/what-are-the-steps-in-starting-a-simple-one-person-web-project-for-a-complete-p/162839#162839 0 Answer by Mikael Jansson for What are the steps in starting a simple one-person web project? (for a complete programming newbie) Mikael Jansson 2008-10-02T15:03:25Z 2008-10-02T15:03:25Z <p>See the <a href="http://lispcast.com/drupal/node/3" rel="nofollow">Reddit-clone tutorial/screencast</a> at LispCast.com</p> http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/161072#161072 0 Answer by Mikael Jansson for Do you have a hobby development project? Mikael Jansson 2008-10-02T06:14:56Z 2008-10-02T06:14:56Z <p>Chiefly <a href="http://cl-user.net/asp/libs/limp" rel="nofollow">Limp</a>, a Lisp IDE for Vim.</p> http://stackoverflow.com/questions/106058/practical-example-of-lisps-flexibility/107544#107544 36 Answer by Mikael Jansson for Practical example of Lisp's flexibility? Mikael Jansson 2008-09-20T07:44:53Z 2008-10-02T05:05:56Z <p>I like macros.</p> <p>Here's code to stuff away attributes for people from LDAP. I just happened to have that code lying around and fiigured it'd be useful for others.</p> <p>Some people are confused over a supposed runtime penalty of macros, so I've added an attempt at clarifying things at the end.</p> <h1>In The Beginning, There Was Duplication</h1> <pre><code>(defun ldap-users () (let ((people (make-hash-table :test 'equal))) (ldap:dosearch (ent (ldap:search *ldap* "(&amp;(telephonenumber=*) (cn=*))")) (let ((mail (car (ldap:attr-value ent 'mail))) (uid (car (ldap:attr-value ent 'uid))) (name (car (ldap:attr-value ent 'cn))) (phonenumber (car (ldap:attr-value ent 'telephonenumber)))) (setf (gethash uid people) (list mail name phonenumber)))) people)) </code></pre> <p>You can think of a "let binding" as a local variable, that disappears outside the LET form. Notice the form of the bindings -- they are very similar, differing only in the attribute of the LDAP entity and the name ("local variable") to bind the value to. Useful, but a bit verbose and contains duplication.</p> <h1>On the Quest for Beauty</h1> <p>Now, wouldn't it be nice if we didn't have to have all that duplication? A common idiom is is WITH-... macros, that binds values based on an expression that you can grab the values from. Let's introduce our own macro that works like that, WITH-LDAP-ATTRS, and replace it in our original code.</p> <pre><code>(defun ldap-users () (let ((people (make-hash-table :test 'equal))) ; equal so strings compare equal! (ldap:dosearch (ent (ldap:search *ldap* "(&amp;(telephonenumber=*) (cn=*))")) (with-ldap-attrs (mail uid name phonenumber) ent (setf (gethash uid people) (list mail name phonenumber)))) people)) </code></pre> <p>Did you see how a bunch of lines suddenly disappeared, and was replaced with just one single line? How to do this? Using macros, of course -- code that writes code! Macros in Lisp is a totally different animal than the ones you can find in C/C++ through the use of the pre-processor: here, you can run <em>real</em> Lisp code (not the <code>#define</code> fluff in cpp) that generates Lisp code, before the other code is compiled. Macros can use any real Lisp code, i.e., ordinary functions. Essentially no limits.</p> <h1>Getting Rid of Ugly</h1> <p>So, let's see how this was done. To replace one attribute, we define a function.</p> <pre><code>(defun ldap-attr (entity attr) `(,attr (car (ldap:attr-value ,entity ',attr)))) </code></pre> <p>The backquote syntax looks a bit hairy, but what it does is easy. When you call LDAP-ATTRS, it'll spit out a list that contains the <em>value</em> of <code>attr</code> (that's the comma), followed by <code>car</code> ("first element in the list" (cons pair, actually), and there is in fact a function called <code>first</code> you can use, too), which receives the first value in the list returned by <code>ldap:attr-value</code>. Because this isn't code we want to run when we compile the code (getting the attribute values is what we want to do when we <em>run</em> the program), we don't add a comma before the call.</p> <p>Anyway. Moving along, to the rest of the macro.</p> <pre><code>(defmacro with-ldap-attrs (attrs ent &amp;rest body) `(let ,(loop for attr in attrs collecting `,(ldap-attr ent attr)) ,@body)) </code></pre> <p>The <code>,@</code>-syntax is to put the contents of a list somewhere, instead of the actual list. </p> <h1>Result</h1> <p>You can easily verify that this will give you the right thing. Macros are often written this way: you start off with code you want to make simpler (the output), what you want to write instead (the input), and then you start molding the macro until your input gives the correct output. The function <code>macroexpand-1</code> will tell you if your macro is correct:</p> <pre><code>(macroexpand-1 '(with-ldap-attrs (mail phonenumber) ent (format t "~a with ~a" mail phonenumber))) </code></pre> <p>evaluates to</p> <pre><code>(let ((mail (car (trivial-ldap:attr-value ent 'mail))) (phonenumber (car (trivial-ldap:attr-value ent 'phonenumber)))) (format t "~a with ~a" mail phonenumber)) </code></pre> <p>If you compare the LET-bindings of the expanded macro with the code in the beginning, you'll find that it is in the same form!</p> <h1>Compile-time vs Runtime: Macros vs Functions</h1> <p>A macro is code that is run at <em>compile-time</em>, with the added twist that they can call any <em>ordinary</em> function or macro as they please! It's not much more than a fancy filter, taking some arguments, applying some transformations and then feeding the compiler the resulting s-exps.</p> <p>Basically, it lets you write your code in verbs that can be found in the problem domain, instead of low-level primitives from the language! As a silly example, consider the following (if <code>when</code> wasn't already a built-in)::</p> <pre><code>(defmacro my-when (test &amp;rest body) `(if ,test (progn ,@body))) </code></pre> <p><code>if</code> is a built-in primitive that will only let you execute <em>one</em> form in the branches, and if you want to have more than one, well, you need to use <code>progn</code>::</p> <pre><code>;; one form (if (numberp 1) (print "yay, a number")) ;; two forms (if (numberp 1) (progn (assert-world-is-sane t) (print "phew!")))) </code></pre> <p>With our new friend, my-when, we could both a) use the more appropriate verb if we don't have a false branch, and b) add an implicit sequencing operator, i.e. <code>progn</code>::</p> <pre><code>(my-when (numberp 1) (assert-world-is-sane t) (print "phew!")) </code></pre> <p>The compiled code will never contain <code>my-when</code>, though, because in the first pass, all macros are expanded so there is <em>no runtime penalty</em> involved!::</p> <pre><code>Lisp&gt; (macroexpand-1 '(my-when (numberp 1) (print "yay!"))) (if (numberp 1) (progn (print "yay!"))) </code></pre> <p>Note that <code>macroexpand-1</code> only does one level of expansions; it's possible (most likely, in fact!) that the expansions continues further down. However, eventually you'll hit the compiler-specific implementation details which are often not very interesting. But continuing expanding the result will eventually either get you more details, or just your input s-exp back.</p> <p>Hope that clarifies things. Macros is a powerful tool, and one of the features in Lisp I like.</p> http://stackoverflow.com/questions/149439/how-can-circular-dependencies-be-avoided-when-callbacks-are-used/149693#149693 3 Answer by Mikael Jansson for How can circular dependencies be avoided when callbacks are used? Mikael Jansson 2008-09-29T17:09:13Z 2008-09-29T17:09:13Z <p>Any OOP language? OK. Here's a ten-minute version in CLOS.</p> <h1>Broadcasting framework</h1> <pre><code>(defclass broadcaster () ((listeners :accessor listeners :initform '()))) (defgeneric add-listener (broadcaster listener) (:documentation "Add a listener (a function taking one argument) to a broadcast's list of interested parties")) (defgeneric remove-listener (broadcaster listener) (:documentation "Reverse of add-listener")) (defgeneric broadcast (broadcaster object) (:documentation "Broadcast an object to all registered listeners")) (defmethod add-listener (broadcaster listener) (pushnew listener (listeners broadcaster))) (defmethod remove-listener (broadcaster listener) (let ((listeners (listeners broadcaster))) (setf listeners (remove listener listeners)))) (defmethod broadcast (broadcaster object) (dolist (listener (listeners broadcaster)) (funcall listener object))) </code></pre> <h1>Example subclass</h1> <pre><code>(defclass direct-broadcaster (broadcaster) ((latest-broadcast :accessor latest-broadcast) (latest-broadcast-p :initform nil)) (:documentation "I broadcast the latest broadcasted object when a new listener is added")) (defmethod add-listener :after ((broadcaster direct-broadcaster) listener) (when (slot-value broadcaster 'latest-broadcast-p) (funcall listener (latest-broadcast broadcaster)))) (defmethod broadcast :after ((broadcaster direct-broadcaster) object) (setf (slot-value broadcaster 'latest-broadcast-p) t) (setf (latest-broadcast broadcaster) object)) </code></pre> <h1>Example code</h1> <pre><code>Lisp&gt; (let ((broadcaster (make-instance 'broadcaster))) (add-listener broadcaster #'(lambda (obj) (format t "I got myself a ~A object!~%" obj))) (add-listener broadcaster #'(lambda (obj) (format t "I has object: ~A~%" obj))) (broadcast broadcaster 'cheezburger)) I has object: CHEEZBURGER I got myself a CHEEZBURGER object! Lisp&gt; (defparameter *direct-broadcaster* (make-instance 'direct-broadcaster)) (add-listener *direct-broadcaster* #'(lambda (obj) (format t "I got myself a ~A object!~%" obj))) (broadcast *direct-broadcaster* 'kitty) I got myself a KITTY object! Lisp&gt; (add-listener *direct-broadcaster* #'(lambda (obj) (format t "I has object: ~A~%" obj))) I has object: KITTY </code></pre> <p>Unfortunately, Lisp solves most of the design pattern problems (such as yours) by eliminating the need for them.</p> http://stackoverflow.com/questions/147693/calculating-the-size-of-arraypack-format-string/147705#147705 0 Answer by Mikael Jansson for Calculating the size of Array::pack format string Mikael Jansson 2008-09-29T06:25:50Z 2008-09-29T06:25:50Z <p>By making an interpreter complying to the specifications found in <a href="http://www.ruby-doc.org/core/classes/Array.html#M002245" rel="nofollow">Array::pack</a>.</p> <p>Or, reusing the existing implementation to count the number of characters instead of appending them to a string.</p> http://stackoverflow.com/questions/147615/looking-for-a-book-on-writing-game-emulators/147621#147621 4 Answer by Mikael Jansson for Looking for a book on writing game emulators. Mikael Jansson 2008-09-29T05:22:20Z 2008-09-29T05:22:20Z <p>Emulation, regardless of games or not, is about properly emulating the platform itself: the CPU, the memory mapped IO ports, sound, graphics and any eventual extra hardware. It's essentially a huge state machine.</p> <p>When you've done that, you basically run game-by-game and break your perfect emulation by adding in the quirks from the original hardware platform.</p> http://stackoverflow.com/questions/146602/upgrading-dos-batch-files-for-windows/146613#146613 3 Answer by Mikael Jansson for Upgrading DOS Batch files for Windows Mikael Jansson 2008-09-28T20:04:56Z 2008-09-28T20:04:56Z <p>Try Python.</p> http://stackoverflow.com/questions/145699/lispphp/145754#145754 4 Answer by Mikael Jansson for Lisp+PHP ? Mikael Jansson 2008-09-28T12:16:31Z 2008-09-28T19:31:17Z <p>You would most likely not want to write code in PHP once you've started developing in Lisp. (New capitalization since circa 80s, by the way)</p> <p>Hunchentoot is a popular server that gives you the basics in terms of connecting dispatchers to requests. There's a series of <a href="http://lispcast.com/drupal/node/3" rel="nofollow">screencasts on writing a reddit clone</a> at LispCast.com</p> <p><a href="http://common-lisp.net/project/ucw/" rel="nofollow">UnCommon Web</a> (sounds like a pun on Peter Norvig's description of Scheme in PAIP) is from what I can tell a more complete framework based heavily on the idea of continuations, much like <a href="http://seaside.st" rel="nofollow">Seaside</a> for Smalltalk.</p> <p><a href="http://common-lisp.net/project/cl-weblocks/" rel="nofollow">Weblocks</a> is yet another continuation-based web framework that looks nice. The author (at <code>defmacro.org</code>) writes good articles, and I like what I've seen in the sample app for Weblocks.</p> http://stackoverflow.com/questions/134887/when-to-use-quote-in-lisp/137774#137774 13 Answer by Mikael Jansson for When to use 'quote in Lisp Mikael Jansson 2008-09-26T04:27:46Z 2008-09-26T10:57:37Z <p><strong>Short answer</strong> Bypass the default evaluation rules and do <em>not</em> evaluate the expression (symbol or s-exp), passing it along to the function exactly as typed.</p> <p><strong>Long Answer: The Default Evaluation Rule</strong></p> <p>When a regular (I'll come to that later) function is invoked, all arguments passed to it are evaluated. This means you can write this:</p> <pre><code>(* (+ a 2) 3) </code></pre> <p>Which in turn evaluates <code>(+ a 2)</code>, by evaluating <code>a</code> and 2. The value of the symbol <code>a</code> is looked up in the current variable binding set, and then replaced. Say <code>a</code> is currently bound to the value 3:</p> <pre><code>(let ((a 3)) (* (+ a 2) 3)) </code></pre> <p>We'd get <code>(+ 3 2)</code>, + is then invoked on 3 and 2 yielding 5. Our original form is now <code>(* 5 3)</code> yielding 15.</p> <p><strong>Explain <code>quote</code> Already!</strong></p> <p>Alright. As seen above, all arguments to a function are evaluated, so if you would like to pass the <em>symbol</em> <code>a</code> and not its value, you don't want to evaluate it. Lisp symbols can double both as their values, and markers where you in other languages would have used strings, such as keys to hash tables.</p> <p>This is where <code>quote</code> comes in. Say you want to plot resource allocations from a Python application, but rather do the plotting in Lisp. Have your Python app do something like this:</p> <pre><code>print "'(" while allocating: if random.random() &gt; 0.5: print "(allocate %d)" random.randint(0, 20) else: print "(free %d)" % random.randint(0, 20) ... print ")" </code></pre> <p>Giving you output looking like this (slightly prettyfied):</p> <pre><code>'((allocate 3) (allocate 7) (free 14) (allocate 19) ...) </code></pre> <p>Remember what I said about <code>quote</code> ("tick") causing the default rule not to apply? Good. What would otherwise happen is that the values of <code>allocate</code> and <code>free</code> are looked up, and we don't want that. In our Lisp, we wish to do:</p> <pre><code>(dolist (entry allocation-log) (case (first entry) (allocate (plot-allocation (second entry))) (free (plot-free (second entry))))) </code></pre> <p>For the data given above, the following sequence of function calls would have been made:</p> <pre><code>(plot-allocation 3) (plot-allocation 7) (plot-free 14) (plot-allocation 19) </code></pre> <p><strong>But What About <code>list</code>?</strong></p> <p>Well, sometimes you <em>do</em> want to evaluate the arguments. Say you have a nifty function manipulating a number and a string and returning a list of the resulting ... things. Let's make a false start:</p> <pre><code>(defun mess-with (number string) '(value-of-number (1+ number) something-with-string (length string))) Lisp&gt; (mess-with 20 "foo") (VALUE-OF-NUMBER (1+ NUMBER) SOMETHING-WITH-STRING (LENGTH STRING)) </code></pre> <p>Hey! That's not what we wanted. We want to <em>selectively</em> evaluate some arguments, and leave the others as symbols. Try #2!</p> <pre><code>(defun mess-with (number string) (list 'value-of-number (1+ number) 'something-with-string (length string))) Lisp&gt; (mess-with 20 "foo") (VALUE-OF-NUMBER 21 SOMETHING-WITH-STRING 3) </code></pre> <p><strong>Not Just <code>quote</code>, But <code>backquote</code></strong></p> <p>Much better! Incidently, this pattern is so common in (mostly) macros, that there is special syntax for doing just that. The backquote:</p> <pre><code>(defun mess-with (number string) `(value-of-number ,(1+ number) something-with-string ,(length string))) </code></pre> <p>It's like using <code>quote</code>, but with the option to explicitly evaluate some arguments by prefixing them with comma. The result is equivalent to using <code>list</code>, but if you're generating code from a macro you often only want to evaluate small parts of the code returned, so the backquote is more suited. For shorter lists, <code>list</code> can be more readable.</p> <p><strong>Hey, You Forgot About <code>quote</code>!</strong></p> <p>So, where does this leave us? Oh right, what does <code>quote</code> actually do? It simply returns its argument(s) unevaluated! Remember what I said in the beginning about regular functions? Turns out that some operators/functions need to <em>not</em> evaluate their arguments. Such as IF -- you wouldn't want the else branch to be evaluated if it wasn't taken, right? So-called <em>special operators</em>, together with macros, work like that. Special operators are also the "axiom" of the language -- minimal set of rules -- upon which you can implement the rest of Lisp by combining them together in different ways. </p> <p>Back to <code>quote</code>, though:</p> <pre><code>Lisp&gt; (quote spiffy-symbol) SPIFFY-SYMBOL Lisp&gt; 'spiffy-symbol ; ' is just a shorthand ("reader macro"), as shown above SPIFFY-SYMBOL </code></pre> <p>Compare to (on Steel-Bank Common Lisp):</p> <pre><code>Lisp&gt; spiffy-symbol debugger invoked on a UNBOUND-VARIABLE in thread #&lt;THREAD "initial thread" RUNNING {A69F6A9}&gt;: The variable SPIFFY-SYMBOL is unbound. Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL. restarts (invokable by number or by possibly-abbreviated name): 0: [ABORT] Exit debugger, returning to top level. (SB-INT:SIMPLE-EVAL-IN-LEXENV SPIFFY-SYMBOL #&lt;NULL-LEXENV&gt;) 0] </code></pre> <p>Because there is no <code>spiffy-symbol</code> in the current scope!</p> <p><strong>Summing Up</strong></p> <p><code>quote</code>, <code>backquote</code> (with comma), and <code>list</code> are some of the tools you use to create lists, that are not only lists of values, but as you seen can be used as lightweight (no need to define a <code>struct</code>) data structures!</p> <p>If you wish to learn more, I recommend Peter Seibel's book <a href="http://gigamonkeys.com/book" rel="nofollow">Practical Common Lisp</a> for a practical approach to learning Lisp, if you're already into programming at large. Eventually on your Lisp journey, you'll start using packages too. Ron Garret's <a href="http://www.flownet.com/ron/packages.pdf" rel="nofollow">The Idiot's Guide to Common Lisp Packages</a> will give you good explanation of those.</p> <p>Happy hacking!</p> http://stackoverflow.com/questions/119098/which-i-o-library-do-you-use-in-your-c-code/119149#119149 9 Answer by Mikael Jansson for Which I/O library do you use in your C++ code? Mikael Jansson 2008-09-23T04:32:44Z 2008-09-26T06:45:44Z <p>It's just too verbose.</p> <p>Ponder the iostream construct for doing the following (similarly for scanf):</p> <pre><code>// nonsense output, just to examplify fprintf(stderr, "at %p/%s: mean value %.3f of %4d samples\n", stats, stats-&gt;name, stats-&gt;mean, stats-&gt;sample_count); </code></pre> <p>That would requires something like:</p> <pre><code>std::cerr &lt;&lt; "at " &lt;&lt; static_cast&lt;void*&gt;(stats) &lt;&lt; "/" &lt;&lt; stats-&gt;name &lt;&lt; ": mean value " &lt;&lt; std::precision(3) &lt;&lt; stats-&gt;mean &lt;&lt; " of " &lt;&lt; std::width(4) &lt;&lt; std::fill(' ') &lt;&lt; stats-&gt;sample_count &lt;&lt; " samples " &lt;&lt; std::endl; </code></pre> <p>String formatting is a case where object-orientedness can, and should be, sidestepped in favour of a formatting DSL embedded in strings. Consider Lisp's <code>format</code>, Python's printf-style formatting, or PHP, Bash, Perl, Ruby and their string intrapolation.</p> <p><code>iostream</code> for that use case is misguided, at best.</p> http://stackoverflow.com/questions/116542/best-way-to-handle-error-messages/116566#116566 1 Answer by Mikael Jansson for Best way to handle error messages Mikael Jansson 2008-09-22T18:20:01Z 2008-09-22T18:20:01Z <p>If you're going to localize them, I would use the English text as the key, and then perform a lookup into your storage of choice (an SQL-based database, file store, or what have you), and then return the properly localized string.</p> <p>Should the requested key not exist in the store, you could yield a plain-text error, perhaps e-mailing a developer?</p> <p>For more inspiration, see <a href="http://www.gnu.org/software/gettext/" rel="nofollow">GNU gettext</a>.</p> http://stackoverflow.com/questions/114431/fast-word-count-function-in-vim/116454#116454 2 Answer by Mikael Jansson for Fast word count function in Vim Mikael Jansson 2008-09-22T18:04:59Z 2008-09-22T18:04:59Z <p>This will recalculate the number of words whenever you stop typing for a while (specifically, <code>updatetime</code> ms).</p> <pre><code>let g:word_count="&lt;unknown&gt;" fun! WordCount() return g:word_count endfun fun! UpdateWordCount() let s = system("wc -w ".expand("%p")) let parts = split(s, ' ') if len(parts) &gt; 1 let g:word_count = parts[0] endif endfun augroup WordCounter au! CursorHold * call UpdateWordCount() au! CursorHoldI * call UpdateWordCount() augroup END " how eager are you? (default is 4000 ms) set updatetime=500 " modify as you please... set statusline=%{WordCount()}\ words </code></pre> <p>Enjoy!</p> http://stackoverflow.com/questions/110433/are-there-any-common-lisp-implementations-for-net/110452#110452 5 Answer by Mikael Jansson for Are there any Common Lisp implementations for .Net? Mikael Jansson 2008-09-21T07:09:11Z 2008-09-21T07:09:11Z <p>If it's OK to go the other way around, you can access .Net from your favourite Lisp through <a href="http://weitz.de/rdnzl/" rel="nofollow">Edi Weitz' RDNZL</a>.</p> http://stackoverflow.com/questions/110390/whats-a-good-common-lisp-implementation-for-windows/110440#110440 4 Answer by Mikael Jansson for What's a good Common Lisp implementation for Windows? Mikael Jansson 2008-09-21T07:04:03Z 2008-09-21T07:04:03Z <ul> <li><p><a href="http://www.lispworks.com/products/features.html" rel="nofollow">LispWorks</a></p> <p>Free for personal use, slightly crippled in that version (most notably you can only use the IDE for 5 hours at a time; saving works, though). The commercial versions has a distribution mechanism (i.e., creating stand-alone executables), and the possibility to create your application as a DLL. Moreover, it has the CAPI cross-platform GUI library.</p></li> <li><p><a href="http://bitfauna.com/projects/cusp/" rel="nofollow">Cusp</a> (Emacs+SLIME alternative; uses SBCL)</p> <p>Lisp plugin for Eclipse connecting to <a href="http://www.sbcl.org" rel="nofollow">SBCL</a> (very much like SLIME). On Windows, the port is reportedly a bit lacking, but seemingly improved a lot recently. I've used CUSP w/ SBCL myself on Windows without any problems.</p></li> </ul> <p>More pointers to <a href="http://wiki.alu.org/Implementation" rel="nofollow">Lisp implementations</a> can be found on the <a href="http://www.lisp.org" rel="nofollow">ALU (Association of Lisp Users)</a> wiki.</p> http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without/109519#109519 3 Answer by Mikael Jansson for What Language Feature Can You Just Not Live Without? Mikael Jansson 2008-09-20T21:42:46Z 2008-09-20T21:42:46Z <p>The ability to define DSLs, incorporated directly into the language. As easy to define an operator in the custom DSL language as it is to define a normal function in the "plain" language.</p> <p>Writing my code as a description of the problem using a vocabulary that fits the problem and lets me focus on the hard parts, instead of writing low-level plumbing and boilerplate code.</p> <p><em>Lisp macros.</em></p> http://stackoverflow.com/questions/687/keyboard-for-programmers/192199#192199 Comment by Mikael Jansson on Keyboard for programmers Mikael Jansson 2009-08-20T13:24:49Z 2009-08-20T13:24:49Z #0, Or, you could just remap the keys in your operating system. :-) &#211;lafur, UK keyboards are also 104/105 keys w/ the &lt;&gt; button, i.e., same physical layout. Might be easier to get hold of than Icelandic (?). http://stackoverflow.com/questions/687/keyboard-for-programmers/28355#28355 Comment by Mikael Jansson on Keyboard for programmers Mikael Jansson 2009-08-17T22:36:06Z 2009-08-17T22:36:06Z How does the Das Keyboard compare to the Kinesis Freestyle? I've come to love the switches. Alternatively, can you get a split (like the Kinesis Freestyle) Cherry? http://stackoverflow.com/questions/237804/user-defined-literals-in-c0x-a-much-needed-addition-or-making-c-even-more-bl/237885#237885 Comment by Mikael Jansson on User-defined literals in C++0x, a much needed addition or making C++ even more bloated? Mikael Jansson 2008-10-26T12:56:42Z 2008-10-26T12:56:42Z You'd write <code>`auto val = 3.14i</code>`. http://stackoverflow.com/questions/177287/alert-boxes-in-python/177316#177316 Comment by Mikael Jansson on Alert boxes in Python? Mikael Jansson 2008-10-07T14:11:01Z 2008-10-07T14:11:01Z Right; I assumed the design choices behind the application was the hardest part, not going to docs.python.org. How did you get 3k+ points... http://stackoverflow.com/questions/177287/alert-boxes-in-python/177316#177316 Comment by Mikael Jansson on Alert boxes in Python? Mikael Jansson 2008-10-07T05:38:11Z 2008-10-07T05:38:11Z You did not specify the conditions upon which the dialog box would be displayed. I assumed inter-application dependencies. http://stackoverflow.com/questions/176011/python-list-vs-array-when-to-use/176043#176043 Comment by Mikael Jansson on Python List vs. Array - when to use? Mikael Jansson 2008-10-06T20:29:52Z 2008-10-06T20:29:52Z Should be faster as well. http://stackoverflow.com/questions/172935/executing-code-stored-as-a-list Comment by Mikael Jansson on Executing code stored as a list Mikael Jansson 2008-10-06T13:13:37Z 2008-10-06T13:13:37Z I'm thinking you're asking the wrong question. What do you <i>really</i> want to do? http://stackoverflow.com/questions/171527/best-console-based-no-gui-code-editor/171533#171533 Comment by Mikael Jansson on Best console-based (no GUI) code editor? Mikael Jansson 2008-10-05T11:42:02Z 2008-10-05T11:42:02Z It was meant as inspiration. You can still use parts of Cream and/or my configuration file; nobobdy really copies configuration right over without modifying it to their own needs. http://stackoverflow.com/questions/171046/tangential-tweaking-your-most-ocd-quest-for-perfection/171082#171082 Comment by Mikael Jansson on Tangential Tweaking: Your Most OCD quest for perfection Mikael Jansson 2008-10-04T22:14:13Z 2008-10-04T22:14:13Z Yup, just don't need /all/ of it. e.g. media are stored by remotely on the file server, ~/hacking is stored in one or more other repositories, ... and well, that's pretty much it! http://stackoverflow.com/questions/169946/choosing-a-new-language/170000#170000 Comment by Mikael Jansson on Choosing a new language Mikael Jansson 2008-10-04T16:45:01Z 2008-10-04T16:45:01Z You mean it has the minimum to at include an object system in the list of features? http://stackoverflow.com/questions/170479/html-data-exceeds-field-length-after-being-hex-sanitized Comment by Mikael Jansson on HTML Data exceeds field length after being hex-sanitized Mikael Jansson 2008-10-04T15:11:36Z 2008-10-04T15:11:36Z In what programming environment? Win32, HTML, ...? http://stackoverflow.com/questions/168022/naming-conventions-in-a-python-library/168107#168107 Comment by Mikael Jansson on Naming conventions in a Python library Mikael Jansson 2008-10-04T09:37:30Z 2008-10-04T09:37:30Z ... as well as variables. ;) http://stackoverflow.com/questions/168043/developers-productivity-measurement/168065#168065 Comment by Mikael Jansson on Developers productivity measurement Mikael Jansson 2008-10-03T20:19:11Z 2008-10-03T20:19:11Z Not much. What you can do to make the programmer more efficient, is to provide a good working environment: dual or triple 24&quot; monitors, a good keyboard (I prefer mechanical such as the Das Keyboard), a <i>comfortable</i> chair, large desk and silence. http://stackoverflow.com/questions/160975/diet-advice-for-programmers/160992#160992 Comment by Mikael Jansson on Diet advice for programmers Mikael Jansson 2008-10-03T11:18:07Z 2008-10-03T11:18:07Z Yup, make sure you don't trick yourself into thinking you've burned so much calories you can eat more. 'cause the difference between talking that walk and not is miniscule. Moreover, exercise makes you hungrier, so you tend to (over)compensate in your next meal. http://stackoverflow.com/questions/160975/diet-advice-for-programmers/160987#160987 Comment by Mikael Jansson on Diet advice for programmers Mikael Jansson 2008-10-03T11:16:45Z 2008-10-03T11:16:45Z Fruits? Excellent for weight gain. Weight loss, or keeping your weight, on the other hand, requires fat.