Posts

Showing posts from August, 2005

Hide output of pushd or popd bash shell command

Hide output of pushd or popd bash shell command Simple as it is a couple of weeks ago when writing a shell script I wanted to hide the out put of shell commands. Specifically pushd and popd, I completely forgot this could easily be solved by redirecting stdout to device /dev/null (aka 'the void') pushd /var/storage > /dev/null You can use this for any shell command you want to hide output for.

Programming Language Tree

This site has the best Tree of programming languages that I have ever seen.

Jelly Croissants

Jelly Croissants, Growing up my family would go camping in the hamptons. At montauk point in town there was a bake shop that we would always frequent. It's on the corner next to a liqour store on the right before the circle in the center of town. Finally after not being able to get jelly Croissants I can finally get them because they have a web site now and deliever.

Champaign

Mumm Cuvee Napa - Blanc de Noirs A great Champaign

Sotheby's 90 Million Year Old Wollemi pines

Another amazing discovery from the land down under ... Wollemi pines were only known from fossil records dating back 90 million years until a chance discovery in 1994 of a living cluster in the Greater Blue Mountains, 200 km (125 miles) west of Sydney, by wildlife officer David Noble.

I like trees Giant Sequoia

Ever want you own Giant Sequoia. I got my own and they are pretty cool. Here is a cheaper place to get seeds. When I went to Muir Woods in CA I bought tree's from Jonsteen Company .

What are the the odds...

I was at the UMass NYC Area Freshmen Welcome & Greeting and happened to meet some one but first let regress to 4 weeks ago ....... I was picking my friend on montauk highway while because he needed to drop off his car, when I was picking him up, two girls drove up next to us asking for directions to local bars and clubs. We invited them to hang out at the house where people were partying, we noticed when the got to the house that they look pretty young and soon after they left. ...... Present Day NYC me and a few other of the younger alumni can to the Freshmen Welcome and out of only 15 freshmen who would one of them be but one of the random girls I meet in the Hamptons named Lindsay Such a small world!

Vi match parenthasis

Vi command :set showmatch Vi % goes to the matching parenthesis Macro for emacs to emulate vi (global-set-key "%" 'match-paren) (defun match-paren (arg) "Go to the matching paren if on a paren; otherwise insert %." (interactive "p") (cond ((looking-at "\\s\(") (forward-list 1) (backward-char 1)) ((looking-at "\\s\)") (forward-char 1) (backward-list 1)) (t (self-insert-command (or arg 1)))))