|
|
Thursday, June 19, 2003 |
I just found out about the Cocoa Development wiki. If I ever get enough time on my hands to play with Cocoa, I'll be sure to check this site out.
12:17:10 PM
|
|
World's smallest guitar. Really a nanoguitar, the world's smallest guitar is just ten micrometers long, with six strings that are about 100 atoms wide. The strings will actually resonate if plucked by an atomic force microscope, not that you'd be able to hear anything. There's only one thing we want to know: how long until the first nanoguitar solo?
Read [Via BoingBoing] [Gizmodo]
This is just too cool. Can you tune it?
12:09:46 PM
|
|
I've fixed a bug in remove-line-boundary-in-region. The problem was that the removal went one line too far. This is fixed. Plus, I commented the code.
(defun remove-line-boundary-in-region (beginning end)
"Collapses all the lines in the specified region into a single line."
(interactive "r")
(save-excursion
(goto-char beginning)
(goto-char (point-at-bol))
(insert "n")
(let ((beg (point)))
(goto-char end)
(while (>= (point) beg)
(delete-indentation)))))
8:47:24 AM
|
|
© Copyright 2004 Tom Pierce.
|
|
|
|
|
Search
|
Emacs Sources
tsql-indent.el
This is an indentation function for SQL mode. It was written with Transact SQL in mind.
user-add-sql-folding-marks
This is a simple function that adds folding-mode marks to SQL sources. It is quick and dirty, but is fairly useful for me.
remove-line-boundary-in-region
This function removes all the line boundaries in a region. This, in effect, collapses all the lines in the region onto one line.
convert-camel-to-underscore
This function converts all the text that is camel cased in a particular region to underscore separated text.
My Subscriptions
|
|
|