April 18, 2005

hackish….

Category: Research — Biella @ 10:29 pm

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)))

No Comments

No comments yet.

RSS feed for comments on this post.

Sorry, the comment form is closed at this time.