Links for April 18, 2005
- Adobe just bought Macromedia for $3.4billion wow!
- A Cappella Nintendo Medley
- Sony unveils network audio system for iTunes Sony’s network ‘boombox’, works with iTunes, WMA and nearly everything else (no mention of OGG)
Plug it in: Third-Party Filters for Final Cut Pro
Featuring:
This will be the first time we’ve all been together and should be quite a session. Topics will include plugins, workflows, FXScript (very briefly), ideas for future effects and where plugins are going in FCP.
I’ll be in Las Vegas from Tuesday morning through the FCPUG meeting Wednesday night.
Flickr’s down for an upgrade, and I didn’t build an error handler into the scraped together PHP script for parsing my Flickr feed. To do list item 34,242…
That’s quite a mess…
For whatever reason my Finder sometimes takes forever to calculate the size of the Trash. That doesn’t include the clicks of opening a Trash window, selecting all, then getting info. Here’s a script which is much faster: Faster Trash Size (click to open in Script Editor)
Nothing special, just a quick AppleScript wrapper for this simple terminal command: du -h ~/.Trash | tail -rn1 | awk '{print "Size of Trash is " $1}'
It’s three quick commands:
du -h ~/.Trashtail -rn12.9G /Users/joe/.Trash. That gets sent to awk for some simple formatting:awk '{print "Size of Trash is " $1}'