Archive for September 6th, 2010

Ablaufdatum fürs Facebook

Daß wäre ja gar nicht so schlecht, da müsste man sich dann gar nicht mehr drum kümmern ob jemand Deine 10 Jahre alten Photos zu Gesicht bekommt….

http://m.spiegel.de/article.do?id=715878

Fuse on ubuntu

To mount a network file system via ssh, on ubuntu 10.04 it has really become such easy:

sudo apt-get install sshfs
sudo modprobe fuse
 
sshfs username@ipaddress:/remotepath ~/emptydir
fusermount -u ~/emptydir
 
sshfs username@ipaddress:/remotepath ~/emptydir -o uid=1000 -o gid=1000 -o workaround=rename
fusermount -u ~/emptydir

Pomegranate – Storing Billions and Billions of Tiny Little Files

http://feedproxy.google.com/~r/HighScalability/~3/FCkks3tCzQ4/pomegranate-storing-billions-and-billions-of-tiny-little-fil.html

Pomegranate is a novel distributed file system built over distributed tabular storage that acts an awful lot like a NoSQL system. It's targeted at increasing the performance of tiny object access in  …