
Wordpress is getting better about upgrades. The last one I did resulted in about 4 hours of down time and more than a little frustration on my behalf. Tonight I updated to version 2.5 in about 10 minutes and everything worked great.
Continue readingWordpress is getting better about upgrades. The last one I did resulted in about 4 hours of down time and more than a little frustration on my behalf. Tonight I updated to version 2.5 in about 10 minutes and everything worked great.
Continue readingSome times I figure interesting tips entirely by mistake. Tonight I was moving some widgets and accidently discovered a very cool tip.
If you hold the “Option” key while over a widget, OS X gives you the option to delete it. This is much faster than clicking the big plus sign below to “manage widgets”.
So there you have it. To quickly remove a widget, press the option key.
Continue readingI am going to stray a bit with this post so if you are not interested in science fiction/fantasy books, feel free to let your mind wonder.
One of my favorite subjects to talk about with my friend, Steve Stanger, is books. I recently turned him on to a good series (that will get another review another day) and asked him if he had anything interesting. Steve told me about the Temeraire Series by Naomi Novik. These books are set during the Napoleonic wars with one wrinkle: there are dragons. Each country has its own aerial corps of dragons and these books follow the adventures of one such reluctant captain and dragon companion, Temeraire. I don’t want to say much more and spoil the fun but I’ve now finished book 4 of the series (all that are published at the moment) and highly recommend them. Upon further investigation, I discovered that the author was partially inspired by Patrick O’Brian’s Aubry/Maturin novels, the source for Russell Crowe’s “Master and Commander” movie a few years back.*
Anyway, I’ve never been particularly enthralled with dragon novels but these are outstanding books with engaging characters. If you are looking for an entertaining read, pick them up. The first book in the series is “His Majesty’s Dragon.”
* This partially explains why I loved the Temeraire series so much because Patrick O’Brian’s novels (which spanned over 20 books) were an obsession of mine a few years back. I read them all but never was able to convince a single person to read them.
Okay … I’ve had it. It is driving me nuts that it is so easy for everyone to make presentations in Keynote. It just isn’t right that I can run a home movie production house, photography lab, and music studio off one laptop. I’ve thought long and hard about it and decided the only answer is regression. I’m switching to Dell.
Oh .. and by the way … Happy April Fool’s Day.
So this morning I got a real simple email from reader Seth which basically said, “Check out SugarSync”. This is really an interesting service. At first glance it looks like another offsite backup plan but it really isn’t. It is much more aimed at syncing files between computers. Any types of computers: Macs, windows, iPhones, and Blackberries. SugarSync doesn’t care. I played with it for about an hour today and installed it on the MacBook Pro and MacBook Air. The cross platform sync is faster that doing it through iDisk for certain. I can access my documents from either computer, my iPhone and presumably my office PC. I haven’t used it enough yet to figure out where the kinks are (one is definitely security) and I’m not sure I want to pay another monthly fee but this is interesting.
Take a look and let me know your thoughts.
I think all reviews I do of Omni products should come with a disclaimer. I don’t hold stock in the company or anything like that. Omni does, however, manage to make tools that I find extremely useful in my day job and I’ve come to rely on their releases to make my life easier.
I reviewed OmniGraffle almost a year ago. Since then I’ve used it to make countless charts and diagrams. I was quite pleased with version 4 so the question becomes, should I upgrade to the version 5. After having participated in the Beta and used the final release for a month, the answer is “yes.”
For those of you who missed the original review, OmniGraffle gives you a set of tools to quickly and easily make diagrams, charts, and other things visual. If you talk Microspeak, it is similar to Visio. Using the application’s built in stencil library, it becomes stupid-easy to quickly assemble very attractive charts and diagrams that can be used on their own or exported into documents and presentations.
The new version 5 has a new interface that feels better to me. It is more consistent with the general interface guidelines you see in Leopard applications and gets rid of the drawer that was in Version 4.
Version 5 uses the new “Graphviz layout engine”. Once you set aside the marketing techno-jargon, that means several things as a user. It is faster, more powerful, and easier. Bezier curves are a snap and connecting objects is easier than ever. This is really helpful when you start moving things around.
The toolbars also got some love and now it is much easier to access the most commonly used tasks. An excellent OmniGraffle website that still sits on my RSS list is Graffletopia.com which acts as a clearinghouse for user created stencils. Apparently the folks at Omni are impressed too because you can now pull stencils down from Grafeltopiea from right inside OmniGraffle. One little improvement that I use often is support for Leopard’s “quick look.” I’ve collected quite a few diagrams and this makes searching through them very easy. Exporting is still a breeze and it is quite easy to incorporate the diagrams into your workflow.
OmniGraffle still comes in two flavors. The standard edition and the Professional edition which features better Visio support and other bells and whistles like subgraphs (which allow you to collapse portions of complex diagrams) and shared layers. One of the “Professional” features I’m very interested in is the notes inspector which should, if I understand correctly, allow me to applescript data or spotlight search right out of my file. I’m still working my way through applescript so I’ll have to get back to you on that one.
A lot of the new graphical bells and whistles rely on underlying Leopard technology so if you are still on Tiger, you are going to have to stick with version 4. In addition to a feature bump, OmniGraffle got a price bump. The basic version is $100 and the Professional version is $200. Upgrades from version 4 are $40. You can download a 30 day trial directly from The Omni Group. A lot of time went into making OmniGraffle intuitive and it shows. The only other applications that I think could get results like this are Visio (which does not exist in OS X) and Adobe Illustrator. Both more expensive and, in my opinion, more difficult to use.
The thing that sets OmniGraffle apart in my opinion is the shallow learning curve to quick, professional looking diagrams. The new version with a better graphics engine and a streamlined interface simply puts and exclamation point to an already useful application.
As I continue my attempts to synchronize using two Macs I have run into a wrinkle. My database application, Bento, does not sync. Since I’m only using one machine at a time, and the address and iCal data is already synced, it works fine if I just copy the database file between computers when switching. The trouble is that Bento insists the database be located in my Application Preferences/Bento folder so it is a pain to drill to it and copy it over to my iDisk. This seemed the perfect excuse to try my Applescript chops. So here is the script:
set SendOrReceive to button returned of (display dialog “Hey Sparky, Sending or Receiving?” buttons {“Sending”, “Recieving”} default button 2 with icon caution)
set LocalBentoFile to POSIX file “Users/david/Library/Application Support/Bento/bento.bentodb”
set iDiskBentoFile to POSIX file “/Volumes/iDisk/Documents/Bento Data/bento.bentodb”
set LocalBentoFolder to POSIX file “Users/david/Library/Application Support/Bento/”
set iDiskBentoFolder to POSIX file “/Volumes/iDisk/Documents/Bento Data/”
tell application “Finder”
if SendOrReceive = “Sending” then
duplicate LocalBentoFile to the folder iDiskBentoFolder with replacing
else
duplicate iDiskBentoFile to the folder LocalBentoFolder with replacing
end if
end tell
This script asks if I’m sending (to iDisk) or receiving (from iDisk) and then copies the file in the right direction. I thought about making it more automatic by comparing dates and duplicating the newest version in both places, but decided I want to have control over what direction the sync is going.
If anyone out there has any ideas for improving it, let me know or leave a comment.
Today Apple released Aperture 2.1 with enhanced plug-in architecture including a new burn and dodge tool. Those happen to be two of my most often used tools in photoshop. With the version 2.0 features and now the addition of plug-ins, Aperture is quickly becoming the only tool I need to process photographs except for those instances where I either want to do something exotic, or completely screwed up the image capture.
This is, apparently, just the beginning. Apple’s site lists several developers that are already working on Aperture plug-ins including:
* Nik Software’s Viveza plug-in, powered by U Point technology, which provides a powerful, precise and easy way for photographers to selectively control and adjust color and light in their digital images;
* PictureCode’s Noise Ninja plug-in that delivers advanced high ISO noise analysis and reduction;
* Digital Film Tools’ Power Stroke plug-in that features a simple, stroke-based interface to quickly mask and intuitively perform targeted adjustments;
* The Tiffen Company’s Dfx plug-in that provides an expansive suite of creative filters and effects;
dvGarage’s dpMatte plug-in, which is a high performance chroma key tool for creating seamless composites, and the HDRtoner plug-in that enables the selection of multiple photos to create a single high dynamic range (HDR) image; and
* Image Trends’ plug-ins that include Fisheye-Hemi to quickly and effortlessly correct fisheye lens distortion, ShineOff which automatically removes shine from faces and PearlyWhites that automatically whitens and brightens teeth.
They all sound good to me but I’m particularly interested in noise reduction since I’m not a fan of the flash often recklessly crank up the ISO.
You can get all the details at the Aperture Website.
It has now been several months since I switched all of my RSS feeds over to Google Reader. In that time, several of the popular Mac RSS applications have become free. Nevertheless, I’m sticking with Google. Keeping it all through Google makes it very easy to move back and forth between my Mac, my iPhone, and even the windows box in my office. I don’t see myself using anything other than a web based solution for the feeds.
The next thing I need to do is scale back on the number of feeds I subscribe too. It seems I go through this about every six months where I cut everything back and then spend the next six months slowly bloating it. The trouble is I just have way too many interests! What is on your short list of must read feeds? You can get a good idea of mine from the links listed here at MacSparky. Sound off in the comments or drop me a note.
For the last few months I’ve been running an informal test of LaunchBar. It is an excellent application but after living with it for awhile I’m happily returning to Quicksilver. I found LaunchBar more stable than Quicksilver but not as customizable and I really missed some of my favorite Quicksilver tweaks like timers, text append, the shelf, and (of course) that so cool cube interface. I wouldn’t entirely write off the possibility that I’ll give Launchbar another try someday but for now I need to go back and get re-aquainted with the Cube.
Continue reading