Max's Specials

May 30, 2009 at 12:30am

Google Wave Developer Preview at Google I/O 2009 →

Google Wave Developer Preview presentation at the Day 2 Keynote of Google I/O. To learn more visit http://wave.google.com

May 19, 2009 at 11:33pm

Moblin 2.0 Netbook Beta Introduction →

http://www.moblin.org to download. Introducing the new user experience for Moblin 2.0 for Netbooks. If you’re coming from Moblin Netbook you may need to go open the Manage Applications program and…

April 25, 2009 at 12:01pm
reblogged from gondaba
gondaba

gondaba

12:00pm
reblogged from capriquarius
(via missliz)

(via missliz)

April 16, 2009 at 4:33am

Removing .svn directories via Terminal

Here is an easy way to remove all those annoying .svn folders inside a folder using Terminal:

find . -name .svn -print0 | xargs -0 rm -rf


First seen on: Beyond Standards.

April 12, 2009 at 7:51am
reblogged from lisakeller
Reblog: “breaking” is a word with high potential

Reblog: “breaking” is a word with high potential

April 11, 2009 at 8:25am

Virtually increase your Screen Resolution on OSX

Here is a handy terminal command to virtually increase your screen resolution (definitely useful on Netbooks running OSX86):

defaults write -g AppleDisplayScaleFactor scale factor

You could use for instance:
defaults write -g AppleDisplayScaleFactor 0.75

Note that the change only affects applications when they are launched.

And to make this permanent:
defaults write NSGlobalDomain AppleDisplayScaleFactor 0.75

In case you want a particular application to be scaled down (E.q. Photoshop), use:
defaults write com.adobe.photoshop AppleDisplayScaleFactor 0.75

To go back to normal, use (then logout/login):
defaults write -g AppleDisplayScaleFactor 1