Skip to content

Instantly share code, notes, and snippets.

@raghothams
raghothams / mongobackup.sh
Created July 31, 2013 05:00
shell script to backup DB from mongo
#!/bin/bash
cd ~/backups
folder=$(date +%Y%m%d)
mkdir $folder && cd $folder
mongodump -d sharurl
tar -cvf dump.tar.gz ./dump
rm -rf ./dump
@raghothams
raghothams / GsonConvertor.java
Created July 8, 2013 17:26
Parse complex JSON string into Java objects using GSON
String jsonStr = "{ \"debug_info\" : [], \"html_attributions\" : [], \"results\" : [ { \"geometry\" : { \"location\" : { \"lat\" : 12.9774180, \"lng\" : 77.71423799999999 } }, \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\", \"id\" : \"742446507e37ea90df8389717e4835fe659183ed\", \"name\" : \"The Oriental Pavilion\", \"reference\" : \"CoQBdAAAAO8vSS9emj1nHgkl6zfX2RBC2HqMJEUPMFHH3HkCxwNy4Sa8Y9CynZo7sozZV5CPEDMvvg5GMFQBPxAdPX0oDMzOJhvqDq_wr2eWIlFKV7fB2Inm1GWj0hCMOsLy3zD8RVAMN74JIsHyR-xQWulDRwsxxQ-bhbmBzCYFfxTKd-I1EhDBAkzm4xIWEEIdmWriBsgyGhStZUB2SzvEb2j6nuuzjsMxHHzNzg\", \"types\" : [ \"restaurant\", \"food\", \"establishment\" ], \"vicinity\" : \"134-136, Fortune Select Trinity, ITPL Main Road, EPIP Area, Whitefield, Bangalore\" }, { \"geometry\" : { \"location\" : { \"la
@raghothams
raghothams / mtp-android-mount
Last active December 19, 2015 10:19
Mount & unmount android 4+ on linux
mkdir ~/android
mtp-detect
mtpfs ~/android
#to unmount
fusermount -u ~/android