Archives
Categories
Blogroll
Category Archives: Mac OS X
PGP Whole Disk Encryption for Mac OS X
PGP is about to release a new version of it’s PGP Whole Disk Encryption product. This version will fully support the Mac, including the boot disk. I’m looking for a full disk encryption system for a long time now, as … Continue reading
Back from USA
Well, I’m back from another WOWODC and WWDC. I’m still really tired, but some quick notes: As David LeBer already mentioned, Pascal did an amazing job organizing WOWODC all by himself. Great room (a bit cold on the first day … Continue reading
Posted in Apple, Mac OS X, WebObjects
Tagged WOWODC WWDC 2008 WebObjects LEWOStuff Houdah Stanford
Leave a comment
Accessing Mac virtual hosts from a Parallels VM
I finally moved to an Intel machine. Despite the dramatic speed improvement in everything Java-related, namely Eclipse, there’s another big advantage: being able to run IE on Windows using a virtual machine. Unfortunately, that’s something every web developer must do … Continue reading
Posted in Apple, Mac OS X
16 Comments
drawImage performance on Leopard
A not very fast but handy way to downscale images in a WebObjects application is using Java 2D APIs, with code like this: BufferedImage reducedImage = new BufferedImage(newX, newY, BufferedImage.TYPE_INT_RGB); Graphics2D g = reducedImage.createGraphics(); g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BICUBIC); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_SPEED); … Continue reading
Posted in Apple, Java, Mac OS X, WebObjects
2 Comments
Leopard tech talk, Lisbon
Yesterday I spent all day in the first ever Apple developer event in Portugal. Apple carried out a Leopard Tech Talk in Lisbon, where portuguese developers could learn about some of the new stuff in Leopard, including 64 bit programming and Core … Continue reading
Testing memory
I wrote some days ago about badblocks for testing a hard drive surface. Now, the same for memory. As I said, I bought a second-hand PowerMac G5 to replace my old G4. When I got the new machine, I run … Continue reading
Posted in Mac OS X, Mac OS X Server, UNIX
5 Comments
Mac-compatible ethernet card
For those of you who need an ethernet card that works with Mac OS X, this may be a useful tip: Mac OS X has a built-in driver for the RealTek RTL8139 chip. I looked arround and found this Netgear … Continue reading
Posted in Mac OS X
Leave a comment
Bad blocks? badblocks!
There are not many things I miss from Mac OS 9. But there’s one that was really useful: the ability to test a hard drive surface. OS 9 disk formatter (I don’t even recall it’s name) had a “Test Disk” … Continue reading
Posted in Mac OS X, UNIX
13 Comments