Zombie Zen

Zombie Zen Blog

leeannemarie:

“And I begin to pray…”

Instead of studying for finals, I decided my time would be better spent tonight whipping out my flute and learning how to play the solo.

No regrets!

I love this song! I can play the guitar part. :D

webkitbits:

Google’s “20 Things I Learned About Browsers & the Web” is an amazing, immersive use of Canvas and other cutting-edge HTML5 & CSS3 technology. It is so beautiful, in fact, that it resembles nothing of a Google product, but has the fit and finish of work you’d expect from the finest web designers. Bravo!

A nice little write-up on the current state of the web.  For anyone who wants to know more about how the Internet works, this is a nice introduction.

webkitbits:

Google’s “20 Things I Learned About Browsers & the Web” is an amazing, immersive use of Canvas and other cutting-edge HTML5 & CSS3 technology. It is so beautiful, in fact, that it resembles nothing of a Google product, but has the fit and finish of work you’d expect from the finest web designers. Bravo!

A nice little write-up on the current state of the web. For anyone who wants to know more about how the Internet works, this is a nice introduction.

IE8/HTML5 Fix

Posted

Hey, everyone!

It has recently come to my attention that some of the code that I was using in my website rendered Zombie Zen and a couple other sites I’ve been working on completely un-viewable in Internet Explorer 8. Ironically, it was the part of my code that was supposed to make HTML5 render better on Internet Explorer.

Though I’d like to put some distance between myself and Tony Hayward, I still think it is proper that I say: I’m sorry.

Unix Command Line of the Day

Posted

I wanted to paste a text file with my homework assignment into Gmail. Unfortunately, said text file was on the school server and I really didn’t want to permanently download the thing to my hard drive. So this is what I did:

scp $vogon:~/graph.txt /dev/stdout | pbcopy

This connects to the school server, retrieves graph.txt from my home directory, and copies it to standard out. I then piped the text into pbcopy, which is the Mac utility for manipulating the clipboard. After that, I switched to Gmail and did a paste.

Unix/bash is cool!