July 17th, 2008
At work, I often have to deal with hidden files - or dot-files - in the OS X Finder. I usually have a TextMate project for every client website where I can open all files from the convenient project drawer but often I just have to quickly edit a line in a .htaccess or .htpasswd file and don’t feel like opening the whole TextMate project. On the other hand, I dont’t always want to see all hidden files in all folders. My home folder is littered with .ssh, .gpg, .DS_Store, .localized, .bashrc, .Trash etc. files which I don’t need to see most of the time.
Since it’s apparently impossible to modify the Finder so that it only shows hidden files in certain directories or it only shows hidden files matching certain criteria, I looked for another solution. Using defaults write in the Terminal, you can change the Finders settings and persuade it to display the hidden files on the filesystem, but I can also just use ls -al or mate ~/Projects/myproject/.htaccess to fire up TextMate directly with the .htaccess file opened, when I’m in the Terminal.
What I was looking for was a simple button in the Finder’s menu bar, that allowed me to toggle between hiding and showing those files. What I came up with is a small application that does just that. It doesn’t ask you whether you really want to toggle showing the hidden files, it doesn’t give you any options, you just click the button and can see all of your hidden files. And when you don’t need to see them anymore, they’re gone - at another click of the button. Convenient, isn’t it?
Here is how you use it:
- Download FinderToggleHiddenFiles.dmg and mount it
- Copy the ‘Toggle Hidden Files’ application to your Applications folder
- Go to your Applications folder and find the ‘Toggle Hidden Files’ application
- Drag the ‘Toggle Hidden Files’ application to the free space on your Finder’s menu bar
Note: When dragging, hold it for a while until you see the green + icon next to your cursor.
This works on Tiger (10.4) and Leopard (10.5) on both PPC and Intel.
Tags: app, dot-files, finder, hidden, leopard, os x, toggle
Posted in aetherworld | No Comments »
June 23rd, 2008
For a project I’m currently working on, I needed to pick a good font. Now the target audience of this project is very different from the audience of the projects I was involved with so far: It’s going to a be a website for children.
Children are just in the process of learning to read and how written words relate to sounds and spoken words. The efforts of young readers need to be supported by making sure the texts are not only easy to understand but also are set in inviting, easy-to-read typefaces.
Ilene Strizver’s article on Typography for Children on fonts.com helped me a great deal in picking the right font. And in case you’re interested, I went with Gill Sans Schoolbook (the Open Type version is called Gill Sans Infant).
Tags: children, fonts, gill sans, opentype, projects, typography
Posted in aetherworld | 1 Comment »
March 30th, 2008
I just stumbled across a really innovative design idea for wine labels via Noisy Decent Graphics.

If you’re at a friends place for dinner and you have a really, really nice bottle of wine, how often do you remember its name when you’re shopping for wine again? Most of us have better things to remember, anyway. Or maybe you’re a bit tipsy and won’t even remember whether it was a bottle of red or a bottle of white. Anyway, this is one of the ideas that makes you smack your head and ask yourself why you didn’t think of this

Tags: design, labels, packaging, products, wine
Posted in aetherworld | 4 Comments »
December 11th, 2007
Finally, an answer to that almost biblical question.
Tags: browsers, design, websites
Posted in aetherworld | 4 Comments »
September 20th, 2007
Alberto Seveso is a freelance graphics designer living in Rome. I knew his old site but somehow forgot about it. Today I stumbled across his new portfolio via agenturblog. Alberto has a few phantastic works on his page, almost all of them surreal photomontages.

In his shop you can buy great prints or even just the digital version as a PDF, where you have to organize the printing yourself. A neat idea.
Tags: albertoseveso, design, photography, photomontage
Posted in Uncategorized | 2 Comments »
September 20th, 2007
Since the last rebranding of Adobe’s design suite has been nine months ago (remember the Periodic Table o’ Elements?), apparently it’s time for another new logo, this time for the Photoshop “family” of applications.

Opinions? Well, apparenty it represents a P. At least according to John Nack, who also has more details on the whole rebranding thing. It’s a speech bubble. Yes, another one. Welcome to the bandwagon! And it’s in 3D with glossy finish, practically screaming “photoshop filters!”. Where’s the lens flare?
Anyway, while the logo might not please everybody (judging from a lot of not so nice comments on John’s post), at least it seems Adobe has finally rediscovered Photoshop as a valuable brand.
Tags: adobe, brandname, cs3, design, logos, marketing, photoshop
Posted in Uncategorized | 2 Comments »
August 16th, 2007
Tags: design, logos, marketing, web2.0
Posted in Uncategorized | 1 Comment »
August 2nd, 2007
Joen of Noscope has just suggested, what I’ve been trying to tell people for nearly a year. With the advent of pages commonly referred to as “Web 2.0” sites, the styling of inline or AJAX links became an issue. Usually links have to be indicated to the user, since clicking them slowly loads a whole different page and the user is unable to interact with the current page. The common indicator we use for links is the hand cursor.

AJAX or JavaScript links, however, immediately change a part of the page you’re looking at, without reloading the whole page and without disturbing the user experience. The user can still interact with the page. For example on Pageflakes - the personalized start page I’m using - you can find both types of links: normal ones that take you to another page and AJAX links that allow you to edit settings or reload embedded RSS feeds. The cursor for both types of links is the same, a hand. For the Web-savvy, this might not pose much of a problem, we intuitively know most of the time what type of link we deal with but for other users, this can be increasingly difficult to discern.

The solution Joen proposes, and what I have previously used in these cases, is simply not changing the cursor at all. In reality, it’s not a link, it’s more of a pushbutton that looks different, so why not use the same cursor we use for buttons?
The implementation is rather easy as it only requires a simple cursor: default; rule. To allow for fallback (if the user has no JavaScript, the AJAX link becomes a normal link), I just embedd the stylesheet with JavaScript so I get a hand cursor for people without JavaScript, where the link actually reloads the page and a default cursor (pointer) for people where the link only affects the current page.
Adding a stylesheet via Javascript is rather easy too:
<script type="text/javascript">
<![CDATA[//><!--
if( document.getElementById && document.createElementNS && document.getElementsByTagName ) {
var javacss = document.createElementNS( "http://www.w3.org/1999/xhtml", "link" );
if( javacss ) {
javacss.setAttribute( "rel", "stylesheet" );
javacss.setAttribute( "type", "text/css" );
javacss.setAttribute( "href", "/_css/java.css" );
javacss.setAttribute( "media", "all" );
document.getElementsByTagName( "head" )[0].appendChild( javacss );
}
} else {
document.write( '<link rel="stylesheet" href="/_css/java.css" type="text/css" media="all" />' );
}
//--><!]]>
</script>
So, what do you think?
Tags: accessibility, ajax, css, design, usability, userinterface, web2.0, webdesign
Posted in Uncategorized | 1 Comment »
July 29th, 2007
Tags: ads, advertising, design, marketing, nokia, viral, website
Posted in Uncategorized | 1 Comment »
July 29th, 2007
Tags: design, kissing, photography, photoshop
Posted in Uncategorized | 1 Comment »