testdisk - recover your partition table
I just hat the issues that my external WD drive showed no partition to mount.
It contained a timemachine backup.
Luckily I found testdisk which could restore the partition table.
Here are some screen shots:


I just hat the issues that my external WD drive showed no partition to mount.
It contained a timemachine backup.
Luckily I found testdisk which could restore the partition table.
Here are some screen shots:


I like dropbox and I use it to sync stuff around my different boxes.
Btw. If you don't have dropbox installed, please use me as a referral.
Today I found an open source project sponsored by Novell called iFolder.
There is also a howto install on debian.
Hope I will find some time to play with it, at it allows me to be my own host of my files and still have the ease of "Dropbox" alike behavior.
Finally I found the time to test some of the new features of the upcoming Unity3d.
So far I am very impressed.
My favorite top 3 features are:


If I would have to give a note: it would be 10 out of 10 points so far.
I finished my modifications to shiftit. The modification I made are small.
It supports now the resize window to 1024 x max. height.
It looks like this:

A super helper to find the virtual key code for the letter "C" was Peter Maurer's Key Codes.app.
Here is an example apple script which can resize a window to 1024 px wide and use the maximum screen height:
-- script based on:
-- http://stackoverflow.com/questions/273242/is-there-anything-like-winsplit-revolution-for-mac-os-x#2977827
-- hardcoded screen resolution:
property screenWidth : 1280
property screenHeight : 800
-- read screen resolution:
-- comment out next 2 line to speed up the script
-- if you use always the same screen hight
set screenWidth to (do shell script "system_profiler SPDisplaysDataType | grep Resolution | awk '{print $2}'")
set screenHeight to (do shell script "system_profiler SPDisplaysDataType | grep Resolution | awk '{print $4}'")
tell application "System Events"
set _everyProcess to every process
repeat with n from 1 to count of _everyProcess
set _frontMost to frontmost of item n of _everyProcess
if _frontMost is true then set _frontMostApp to process n
end repeat
set _windowOne to window 1 of _frontMostApp
set position of _windowOne to {0, 0}
set size of _windowOne to {1024, screenHeight}
end tell
It works from launchbar with "run in Background" or from the AppleScript Menu Bar for the last top most window.
I searched for tools to manage application windows with a short cut.
Thanks to a superuser.com article I found some nice apps.
This is the order in which I would try them out:
I guess that only optimal layout would solve my most use case: browser window "resizeing" to 1024px with maximum of height possible.
There is also an app which remembers not only window positions but also some system settings based on the current location:
Luckily I found also some hints how to the positioning with apple scripts:
Let's see if I can use launchbar with some custom scripts to fit all my needs.
I will blog a new post once I have my scripts ready.