Happy Fedora 13 Day!
May 25th, 2010
Congrats to everyone involved.
Emacs font and window size
May 19th, 2010
I don’t know why this caused me so many problems, but I finally got my look and feel for emacs to a happy state. The default emacs font size is just too big for my tastes. I tried using the menu bar “Customize Emacs” option to change the font, but that caused emacs to flicker for a few seconds each time I opened it. Being the kind of person who navigates around a shell and opens files from there (as compared to using a single emacs instance to load multiple files and switch buffers), the flicker was driving me nuts.
The menu bar customization added all of the following flicker-inducing configuration to .emacs:
(custom-set-faces '(default ((t (:inherit nil :stipple nil :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :foundry "unknown" :family "DejaVu Sans Mono")))))
I was able to replace that with the simpler, flicker-free:
(set-face-attribute 'default nil :height 92)
The other thing I wanted was a larger emacs window by default (yes, I’m that lazy that manually resizing them was driving me nuts):
(if (window-system) (set-frame-height (selected-frame) 66)) (if (window-system) (set-frame-width (selected-frame) 102))
That gives me a workable font and a window size that lets me comfortably fill my screen with two emacs windows working side by side. Now I just need to actually focus and get to work to take advantage of my new found editor goodness.
Geek of the Caribbean
May 4th, 2010
In a few weeks, we’re heading to Disney World for a much needed vacation. We’re bringing my parents to help with my 3 year old daughter (read: so grandma can buy her ice cream while we go on the good rides).
When we were young, my dad would bring a pager from work in case they needed to contact him. If they did, he’d look around for a public phone to call in and help fix whatever problem they stumbled into.
Never missing an opportunity to make him feel old, I felt obligated to point out to him how things have changed:
Me: ya know, in theory, i could SSH from my phone into a server while waiting on line for Pirates of the Caribbean
Me: actually, even without that i could blog/tweet/facebook status from my phone that I’m at Disney, waiting for Pirates of the Caribbean
Me: that’s after I text message my friends to brag that I’m about to go on Pirates of the Caribbean
Me: and if I want to go low tech, I could always email my team at work to piss them off by pointing out that I’m about to go on Pirates of the Caribbean
Dad: couldn’t you just call them to say that?
Me: oh ya, forgot about that
Dad: so will your job be using all those ways to get in touch with you on vacation?
Me: no, I lied and gave them the wrong number

