Ir al contenido principal

Paga 5 euros y ten liberados tus moviles hasta que te mueras

Cojonudo.

Os dejo el link a la tienda, yo he comprado varias cosas alli (ojo que puedes pagar con paypal, y si no funciona te devuelven el dinero) y hay que decir que un tirachinas que compre se me rompió según lo cogí, pero esto es otra cosa.

http://www.dealextreme.com/details.dx/sku.23988~r.75837106



El invento se llama Xsim, es una lamina que pones entre el telefono y la tarjeta SIM (tienes que agujerear un poquito la tarjeta, pero no se nota casi :P, aunque ten cuidado y no hagas el agujero encima de los contactos que la liarás) y que engaña al movil sobre el operador que tiene restringido. Está claro que esto funcionara en tu movil y en el de tu madre, por lo tanto agujereas la tarjeta una sola vez y cuando te cambies de móvil podrás seguir funcionando perfectamente.

Lo que inventan los chinos.

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...