User Jason Dufair - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T22:57:06Zhttp://stackoverflow.com/feeds/user/20540http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/154097/whats-in-your-emacs/158057#15805715Answer by Jason Dufair for What's in your .emacs?Jason Dufair2008-10-01T14:58:29Z2008-10-01T14:58:29Z<p>My favorite snippet. The ultimate in Emacs eye candy:</p>
<pre><code>;; real lisp hackers use the lambda character
;; courtesy of stefan monnier on c.l.l
(defun sm-lambda-mode-hook ()
(font-lock-add-keywords
nil `(("\\<lambda\\>"
(0 (progn (compose-region (match-beginning 0) (match-end 0)
,(make-char 'greek-iso8859-7 107))
nil))))))
(add-hook 'emacs-lisp-mode-hook 'sm-lambda-mode-hook)
(add-hook 'lisp-interactive-mode-hook 'sm-lamba-mode-hook)
(add-hook 'scheme-mode-hook 'sm-lambda-mode-hook)
</code></pre>
<p>So you see i.e. the following when editing lisp/scheme:</p>
<pre><code>(global-set-key "^Cr" '(λ () (interactive) (revert-buffer t t nil)))
</code></pre>
http://stackoverflow.com/questions/151448/response-write-vs/151704#1517041Answer by Jason Dufair for Response.Write vs <%= %>Jason Dufair2008-09-30T03:59:53Z2008-09-30T03:59:53Z<p>I try to use the MVC paradigm when doing ASP/PHP. It makes things easiest to maintain, re-architect, expand upon. In that regard, I tend to have a page that represents the model. It's mostly VB/PHP and sets vars for later use in the view. It also generates hunks of HTML when looping for later inclusion in the view. Then I have a page that represents the view. That's mostly HTML peppered with <%= %> tags. The model is #include -d in the view and away you go. Controller logic is typically done in JavaScript in a third page or server-side.</p>
http://stackoverflow.com/questions/48006/is-it-worth-investing-time-in-learning-to-use-emacs/147329#147329-3Answer by Jason Dufair for Is it worth investing time in learning to use emacs?Jason Dufair2008-09-29T02:32:38Z2008-09-29T02:32:38Z<p>vi is modal (i.e. insert mode vs. command mode). Emacs is modeless (you type a letter, you get it on the screen. Every time). I think modelessness is more human, so I chose Emacs about 12 years ago and am glad I did. It's powerful and was easy for me to learn.</p>
http://stackoverflow.com/questions/147189/how-do-you-keep-a-balance-between-working-training-health-and-family/147243#1472434Answer by Jason Dufair for How do you keep a balance between working, training, health and family?Jason Dufair2008-09-29T01:50:10Z2008-09-29T01:50:10Z<p>I rediscovered my ADD (having had it pretty acutely as an adolescent) in my mid 30s. Learning about it as an adult, I uncovered the fact that context switching is just more expensive for someone with ADD. It explained the long nights solving obscure technical problems. Not because they were necessarily on my priority list, but because I didn't know how to stop. I was also less than confident in my ability to restore the mental context when I came back to my problem. I've since spent time developing my ability to context switch and various mental and external tools to maintain state. This allows me to balance more processes and get some decent satisfaction in my parenting, exercise, relationships, work, church, etc.</p>
http://stackoverflow.com/questions/127916/is-programming-style-important-how-important/128219#1282192Answer by Jason Dufair for Is Programming Style important? How Important?Jason Dufair2008-09-24T16:29:23Z2008-09-24T16:29:23Z<p>Formatting doesn't take any time whatsoever. It's a crappy excuse. Just let your editor format it when you're done for the sake of the violent psychopath.</p>
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121594#1215947Answer by Jason Dufair for What is the one programming skill you have always wanted to master but haven't had time?Jason Dufair2008-09-23T15:05:46Z2008-09-23T15:05:46Z<p>Lisp macros. Meta-programming is my holy grail, to be able to have my code be exactly isomorphic to the problem I'm trying to solve.</p>
http://stackoverflow.com/questions/118374/what-techniques-do-you-use-when-writing-your-own-cryptography-methods/118695#1186950Answer by Jason Dufair for What techniques do you use when writing your own cryptography methods?Jason Dufair2008-09-23T01:48:44Z2008-09-23T01:48:44Z<p>Usually, I start by getting a Ph.D in number theory. Then I do a decade or so of research and follow that up with lots of publishing and peer review. As far as the techniques I use, they are various ones from my research and that of my peers. Occasionally, when I wake up in the middle of the night, I'll develop a new technique, implement it, find holes in it (with the help of my number theory and computer science peers) and then refine from there.</p>
<p>If you give a mouse an algorithm...</p>
http://stackoverflow.com/questions/147189/how-do-you-keep-a-balance-between-working-training-health-and-family/147243#147243Comment by Jason Dufair on How do you keep a balance between working, training, health and family?Jason Dufair2008-10-22T01:40:57Z2008-10-22T01:40:57ZOn the contrary, ADD is a bit of a misnomer. Many people with ADD have the ability to hyperfocus. I believe that's what makes us a particular fit for programming and math.