Skip to content

Instantly share code, notes, and snippets.

View cjh0613's full-sized avatar
🎯
Focusing

地球人 cjh0613

🎯
Focusing
View GitHub Profile
@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active May 22, 2025 21:15
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

Note: This gist may be outdated, thanks to all contributors in comments.

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Don't hesitate to read comments, there is useful tips, thanks guys for this !

@Lego2012
Lego2012 / gulp-seo.js
Last active August 21, 2020 23:54
The following task will run after the build task, it will send a request to Google and Bing, informing them that the site has been updated and that they should re-index the site. #gulp
var gulp = require('gulp'),
request = require('request');
gulp.task('seo', ['build'], function(cb) {
request('http://www.google.com/webmasters/tools/ping?sitemap={URL TO YOUR SITEMAP.XML}');
request('http://www.bing.com/webmaster/ping.aspx?siteMap={URL TO YOUR SITEMAP.XML}');
cb();
});