Ir al contenido principal

Hay leyes que ...

que no. Que quieren lo que no pueden conseguir

Al menos ahora la han reformado, gracias a Dios, y someten la decisión del cierre de una web que atente contra los derechos de Autor (o que enlace a) a control judicial. Y es que hay que joderse con este gobierno, con el gobierno de la libertad y de la politica social, que lo único que hace es quitarnos libertades, y que si no llega a ser por dos o tres que han metido mano, ahora tendriamos a Paco el funcionario cerrando webs a diestro y siniestro.

A ver Ley Sinde, a ver si consigues ilegalizar google, porque hasta ahora es la web de enlaces a todo tipo de contenido mas grande que existe... Bueno y mientras ilegalizais, amenizaos escuchando un poquito de música.

http://www.google.com/search?source=ig&hl=en&rlz=&q=intitle%3A%22index+of%22+%2B%22last+modified%22+%2B%22parent+directory%22+%2Bdescription+%2Bsize+%2B%28wma|mp3%29+gorillaz&btnG=Google+Search&aq=f&aqi=&aql=&oq=

Comentarios

Entradas populares de este blog

Use rclone to mount cloud storage

I realized that the fat clients that allows you to sync your contents are not only wasting CPU cycles but also lots of disk space. Yes, that enables you to have the file opened almost instantly, no matter its size, but for me that use case is almost never needed, I use the cloud storage to save stuff that is in the range of a few MiB. Here is where rclone comes into play, it allows you to mount your storage as if it were a regular disk, and it handles the communication with the cloud servers on the go. As there are many different combinations I'll cover only two Linux w/ Dropbox curl https://rclone.org/install.sh | bash # Use rclone config to add a new remote called db for dropbox MAIN_USER=$SUDO_USER MAIN_USER_HOME=$(grep ^$SUDO_USER: /etc/passwd | head -1 | cut -d: -f6) mkdir /media/db chown $MAIN_USER:$MAIN_USER /media/db cat <<EOF > /lib/systemd/system/rclone-db.service [Unit] Description=Dropbox rclone mount After=multi-user.targetrclone [Service] Type=simple User=$ M...