Ir al contenido principal

and.roid.es, un gran site android.

Una de las paginas que mas me gustan de las que tratan temas de android en español es and.roid.es, la cual ahora mismo esta celebrando su segundo aniversario, ya que mantiene al dia noticias tanto para usuarios como para desarrolladores. Uno de los puntos fuertes son las ideas para emprendedores en temas tecnológicos (pe. ¿Tienes una idea? Monta tu start-up con Tetuan Valley), y bajo mi juicio es lo que le hace destacar por encima de otras webs similares.

Lo mejor que tiene android es la comunidad que hay detras, y opino sinceramente que ahora mismo no estaria donde esta de no ser por toda esta gente, ya que el unico medio de socializar android en si mismo es el market y es nefasto.

Por esta razon desde aqui quiero dar las gracias por todo el trabajo desinteresado que haceis, haciendo cada dia mas fuerte a android (si es que en el fondo se nota linux :) )

Os recomiendo que os paseis por and.roid.es

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