January 2011
6 posts
3 tags
4 tags
4 tags
manually install picplz on unsupported android...
My Android device, the low-cost smartphone Ideos, is not supported officially by picplz . So I tried to manually install it and it works (ok, ok.. it crashes sometimes, but c’mon..)
go to www.freewarelovers.com/android/app/picplz
click on the download link
download it to your pc and copy it to your device or use the provided qrcode to access and download it from your device
use astro...
2 tags
6 tags
simple mongo db backup script
Yesterday I was developing a new feature on Mashape and I wanted to backup my local DB.
So I wrote a small script to backup data of a list of sb (variable $DB) in a folder db-20110115 and to have it replicated on another pc in my LAN (just in case..) via ssh (with rsa key to be scheduled in cron).
#!/bin/bash # CONFIGURATION DBS=”db1 db2” DUMP_LOCATION=~/backup DIR_NAME=db-`date...