YES!
Ich habe eine Skitch Einladung vom lieben halbtuerke bekommen, supigeil und vielen Dank!
Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; de; rv:1.9b1) Gecko/2007110903 Firefox/3.0b1
Jo, der neue Firefox 3 ist raus - zumindestens als Betaversion 1 und ist für alle Firefox und Bon Echo Liebhaber unter OSX auf jeden Fall ein muss. Endlich sind native Widgets im Firefox möglich (und damit zumindestens optisch kein Grund mehr Camino zu benutzen), weiterhin gibt es das ganze auch in Safari-ähnlichem Gewand.

Weitere Vorteile:
- deutlich schneller
- wesentlich schöneres Fontrendering (was endlich fast an Safari rankommt)
Download gibts hier für den Browser, Proto müsst Ihr Euch nachinstallieren über “Themes”.
Update:
Extensions sollte man aktivieren, weil es so gut wie keine Firefox 3 Extensions gibt. Im Browser folgendes eingeben:
about:config
Dann rechte Mousetaste->Neu->boolean
Name: extensions.checkCompatibility Wert: false
Leopard automatically comes with SSHKeychain support, so no external application is needed anymore. At first (before uninstalling) remove the mark “Manage (and modify) global environment variables” from SSHKeychain - then throw it away, it’s plist and remove it from the automatic startup. The easiest way is to reboot now, at least log off to remove the bash environment variable set by SSHKeychain.
Afterwards try following command:
kulawik-nb:.ssh skulawik$ echo $SSH_AUTH_SOCK
/tmp/launch-HYbqHA/Listeners
The result should be something like “/tmP/launch*” (otherwise SSHKeychain is still running).
Then change the ssh config file (this was previously done by SSHKeychain configuration):
joe ~/.ssh/config
and enter such lines (this ones could be repeated):
IdentityFile ~/.ssh/id_privat
To get best Linux experience (Page-up / down / et all) try my private Terminal.app settings for Leopard:
Here’s a little perl script that can be used to find the top ten largest directories from the argument directories. To use it, save it as dirsize in your user’s .bin folder (and make it executable with chmod a+x dirsize), modify your .bashrc to add ~/bin to your path, then run something like this in Terminal: dirsize ~/*. Here’s the code:
#!/usr/bin/perl
use strict;
die “usage: $0 <directories>\n” unless @ARGV;
@ARGV = map { “‘$_’” } @ARGV;
my @results = `du -hs @ARGV`;
@results = sort human_sort @results;
@results = @results[0..9];
print @results;
#—————————————————————————
sub human_sort {
my ($size_a) = $a =~ /^(\S+)/;
my ($size_b) = $b =~ /^(\S+)/;
$size_a = $1 * 1024 if $size_a =~ /^(.*)k$/;
$size_a = $1 * 1024 * 1024 if $size_a =~ /^(.*)M$/;
$size_a = $1 * 1024 * 1024 * 1024 if $size_a =~ /^(.*)G$/;
$size_b = $1 * 1024 if $size_b =~ /^(.*)k$/;
$size_b = $1 * 1024 * 1024 if $size_b =~ /^(.*)M$/;
$size_b = $1 * 1024 * 1024 * 1024 if $size_b =~ /^(.*)G$/;
return $size_b <=> $size_a;
}
Nachdem das gute Letterbox seinen Dienst eingestellt hat oder einfach nicht mehr zuverlässig funktioniert, gibt es jetzt ein neues 10.5 Plugin für Mail.app welches den selben Zweck erfüllt.
Update: unter http://www.daneharnett.com/widescreen/WidescreenMailPlugin.html gibt es jetzt auch eine mehrzeilige Version mit Betreff in der zweiten Zeile! SEHR COOL!
SSHKeychain can make the life easier by supplying the local certificates automatically to the remote server. If everything is working fine, you never need to enter a password again; the SSHKeychain itself is protected by the login password of OSX.
First you have to do:
- open Terminal and enter “ssh-keygen -t dsa”
- save the stuff inside USERDIR/.ssh/
- upload the file with the following script
- go into the SSHKeychain configuration and check “global configuration”
- log off and on
- open ssh to the specific server again
- et voila!
Just a few well known steps needed:
Enable following lines in the sshd_config (sudo joe /etc/sshd_config) on OSX:
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
On the client generate the keyfile (in this case my client is Ubuntu 7.04):
ssh-keygen -t dsa
cat id_dsa.pub | ssh sascha@mymac ‘cat >>~/.ssh/authorized_keys’
On the mac again verify that the authorized_keys has been created. Afterwords it’s needed to restart the sshd daemon, and not with /etc/init.d/sshd…. instead with following command:
sudo service ssh stop
sudo service ssh start
Uploaded with Skitch!










Recent Comments