Today my advisor told me that I need more examples of hackers being playful and witty especially in the very acts of coding. Thanks to the efforts of my online IRC buddies we are starting to dig some good examples up.
Thanks Karl! :=)
;; if you look at this next function from far away, it resembles a
;; gun. But only with this comment above…
(defun bookmark-bmenu-check-position ()
;; Returns t if on a line with a bookmark.
;; Otherwise, repositions and returns t.
;; written by David Hughes
;; Mucho thanks, David! -karl
(cond ((< (count-lines (point-min) (point)) 2)
(goto-char (point-min))
(forward-line 2)
t)
((and (bolp) (eobp))
(beginning-of-line 0)
t)
(t
t)))