Sunday, November 13, 2011
Pro Tip: Fullscreen-ness of Apps Seems to be Sticky in Mac OS Lion
I've had a lot of fun the past couple days working with the Terminal app in fullscreen mode. Having entered fullscreen, I can work without distraction, but I can also switch freely back to my desktop or other running apps. Best of all: when I quit Terminal and restart it, it automatically restarts in fullscreen mode. Good job, Apple!
Friday, November 11, 2011
Installing Java on AWS EC2 Instances with Pallet
I have recently been spinning up a lot of t1.micro instances on Amazon's EC2 service. I'm deliberately using minimal / default images, and I need to install Java on them from scratch. There have been reports (and I have experienced myself) that the Java install process hangs indefinitely when installing either Oracle's JRE/JDK or OpenJDK on a t1.micro running Ubuntu. I have been able to install Java successfully by explicitly requiring a 64-bit version of the OS.
Here's how you can do that in your Pallet node-spec:
Here's how you can do that in your Pallet node-spec:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; on AWS, this will default to a size of t1.micro | |
(def node-spec | |
(pallet.core/node-spec | |
:image {:os-family :ubuntu :os-64-bit true} | |
:network {:inbound-ports [22]})) |
Subscribe to:
Posts (Atom)