robsite

In mac

Questions for Pwn2Own hacker Charlie Miller

Why Safari?

It’s really simple. Safari on the Mac is easier to exploit. The things that Windows do to make it harder (for an exploit to work), Macs don’t do. Hacking into Macs is so much easier. You don’t have to jump through hoops and deal with all the anti-exploit mitigations you’d find in Windows.

· mac, sicherheit · ★

Vox

Kleiner Musikplayer für Mac OS X. Falls Finder/Quicklook mal zu simpel aber iTunes zu klobig ist.
Spielt nen Haufen Formate, exportiert u.a. zu MP3, hat einen Equalizer und ein paar einfache Audioeffekte. Dazu unterstützt er Last.fm und lässt sich bunt einfärben.

/images/posts/0000/0874/Bild_22_big.png

· mac, musik, tool · ★

Dateien splitten in Unix

Manchmal passt eine fette Datei nicht auf eine CD-R oder die externe Festplatte, da diese mit FAT32 formatiert ist und Dateien dort nur 4GB groß sein können. Warum auch immer, die Datei muss aufgeteilt werden.

Tools dafür gibts zu Hauf, aber jedes Unix (Linux, Mac OS X) bringt schon alles mit, was man braucht:

split -b 700m datei.zip 

Teilt datei.zip in 700MB-Teile auf und benennt diese mit xaa, xab, xac, ...

split -b 700m datei.zip neuer_name

Macht das gleiche, nur dass die Teile nun neuer_nameaa, neuer_nameab, ... heißen.

Ich finde

split -b 700m datei.zip datei.zip.

ganz praktisch. Der Originalname bleibt erhalten und aa, ab, ac, ... hängen als Dateiendung dran (man beachte den Punkt am Ende).

Um die Teile wieder zusammenzupacken nimmt man einfach cat:

cat datei.zip.aa datei.zip.ab datei.zip.ac > datei.zip

Oder besser

cat datei.zip.* > datei.zip

man split zeigt alle Optionen.

· command line, linux, mac, tool, unix · ★

Lexikon-Plugins

Kostenlose Plugins fürs Mac OS X Dictionary.
Mauszeiger über ein Wort, Cmd + Ctrl + D -> kleines Dictionary-Fenster öffnet sich. Aber nur in Cocoa-Programmen, also z.B. nicht im Firefox.

· dictionary, mac, tool · ★

Developing Cocoa Applications Using MacRuby

Anders als [RubyCocoa](http://rubycocoa.sourceforge.net/HomePage) ist Apples MacRuby eine direkte Implementation von Ruby auf der Objective C Runtime, dem Garbage Collector und Core Foundation. Heißt: schneller, stabiler und Strings sind automatisch UTF-16.

Apples Tutorial gibt einen guten Überblick und führt einen durch die Entwicklung eines kleinen Programms.

· apple, cocoa, mac, programming, ruby · ★
Mastodon