08.31.07
Folding@Home
Hi!
Folding@Home is a nice idea. You can process data for research on your computer. But how efficient is it in terms of energy consumption? Sending data around the world, process it while keeping unused hardware idle and return the results. If the computer is running anyway it makes sense to me (even if it still uses more energy) but I believe to preserve our planet is more important than science. I believe this as a scientist-to-be. I may be wrong.
08.25.07
How stupid am I?
I just can’t get the printer to work. It’s connected to the Windows XP machine of my mother and I wish to print from my Mac over our little network. I’ve tried for hours but get some access denied errors all the time. However I found a solution. I mentioned VMware before. There is Windows XP and from there I can print over the nerwork without a problem. I know there is a solution for Mac OS but until I found it this is it. And since I deny paper anyway (most of the time) I can live with this crappy way. Although maybe I should use Linux instead of Windows to automate things. But now I need to ignore the printer for a while. Maybe it will just change its mind.
08.19.07
Pax Galaxia
An other nice MacUpdate Promo. It’s a simple game. You have spaceships which belong to stars. You can move them from star to star and attack your enemy. In every battle some ships get damaged or destroyed. Stars produce new ships from time to time. More stars equals more new ships. Move ships clever and rule the galaxy. Kind of addictive. Maybe not if you don’t feel related to space battles. I do.
10$ today and tomorrow, 20$ otherwise. There is a problem with the given keys, they don’t work. Or at least some of them. The developer will exchange them if you write him a mail (contact@diogames.com) with the given key. I’m waiting for mine…
08.17.07
Dear MagSafe,
When I saw the MagSafe power connector, I thought it was just a nice little silly trick. Who would actually stumble over the power cable?? Now I know. I just did. I could barely feel it. The computer would not have fallen down otherwise, but it would not have been very healthy either. So thank you MagSafe, now I understand.
08.13.07
Logitech Air Mouse
I found this. It’s the Logitech MX Air Mouse. Looks pretty nice. I was thinking about buying a Wii Remote for this kind of functionality. But this is cooler. It works just as a normal laser mouse if you want. However when you lift it, the two microelectromechanical sensors take over. The mouse starts recognizing the movement in the air. Search on YouTube for “air mouse” for some demo-videos. The fast scrolling feature reminds a bit of the iPhone. Anyway, I’m seriously thinking about getting one since my old mouse is falling apart sooner or later. Although the 150 dollar price tag may keep me away for a while.
AppleScript
As you can see if you take a look at my tag-cloud, I really like AppleScript. It is so easy to implement simple tasks with a few lines. Most in OS X included applications support it and also many others. Shell scripts are also includable. It is so easy if you compare to other systems. Most parts of Linux are of course highly scriptable which I really like. It is a bit catchy to get into that but surely remunerative. Anyway, with AppleScript it is really easy to take the first steps. You can tell application “Finder” to empty the trash. Just as I wrote it.
tell application "Finder" to empty the tash
Or lets say "Hello World".
You can control many apps and your system. But not only that. It can handle variables, loops, functions and whatnots.
Take a look if you want to get more out of your Mac. There is a great page with many resources: http://macscripter.net/
I also recommend this free book for AppleScript starters by Bert Altenburg. http://www.fischer-bayern.de/as/as4as/AS4AS_e.pdf It teaches the basics. And with the help of the functionlist (+shift+o in the scripteditor) you have the knowledge to create quite useful, individual tools.
08.10.07
iCal countdown
I wrote an other little AppleScript for someone. It creates events in iCal as a countdown. First, you can choose one of your calendars. Then enter the start- and enddate. It will count down and say every day “x days left”. I tested it with my local date format, but it is supposed to work anywhere since the Mac knows his date format.
on run
tell application “iCal”
set cal_list to {}
repeat with x from number of calendars to 1 by -1
set the beginning of cal_list to name of calendar x
end repeat
set cal_list_string to “”
repeat with x from 1 to number of calendars
set cal_list_string to cal_list_string & (x as text) & ” – ” & item x of cal_list & return
end repeat
end tell
display dialog cal_list_string default answer “”
set cal_number to text returned of result as number
display dialog “start date” default answer “”
set anfangsdatum to date (text returned of result)
display dialog “end date” default answer “”
set enddatum to date (text returned of result)
repeat with anzahl_tage from 1 to 99999
if anfangsdatum + (anzahl_tage * 3600 * 24) is enddatum then
exit repeat
end if
end repeat
tell application “iCal”
tell calendar cal_number
set x_date to anfangsdatum
repeat with x from anzahl_tage to 0 by -1
set x_date to x_date + (3600 * 24)
set event_summary to “x & ” days left”
if x is not 1 then
set event_summary to “x & ” days left”
else
set event_summary to “one day left”
end if
make new event at the beginning with properties {summary:event_summary, start date:x_date, end date:x_date}
end repeat
end tell
end tell
end run
08.09.07
They use Macintosh!
Well, some of them. I just came back from a math refresh course. And the lecturer used a Mac! And I think I have also seen other profs with Mac- or PowerBooks. But why did they tell me in the info material they sent me that Windows XP Pro or Vista Business is needed to integrate a notebook into their network? Was this Mac not integrated in the network? Or do profs have bizarre privileges? Or did they lie? I`ll find out… eventually.
Oh, and it did feel good to sit there with others just to learn. I really missed this.
08.07.07
New iMac, Mac mini, iLife, iWork…
Apple just released the new iMac in a new robe. And up to 2.8GHz! Of course the new iLife is included and a demo of the new iWork. Don’t forget the new Mac mini with a Core2Duo now. I know, the price may be a bit high compared to the iMac. But what if you already have a screen? And have you ever seen one? It is sooo cute!
08.06.07
Celestia
As a kid I was very amazed by the outer space. I even read a book about the solar system even though I hated reading. I was a bit of a dyslectic . I wish I had a software like Celestia back then. You can view so many stars, planets, moons, asteroids, space stations… amazing. This would be a perfect tool for school. I had to learn all the planets in our solar system which was not a problem for me, but what a joy whould it have been to use Celestia and see them moving around the sun! This is just a little example. The possibilities are uncountable. I know that not every school can afford computers for students. But maybe they should think about it.