git archive -o update.zip HEAD $(git diff --name-only [hash_from_where_to_build_zip] --diff-filter=ACMRTUXB)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb exec-out 'tar --dereference --create --exclude=sdcard/Android/data/com.spotify.music/ \ | |
sdcard/ 2>/sdcard/backup-errors.txt' | \ | |
dd of=backup-$(date +%Y%m%d).tar && \ | |
adb shell cat /sdcard/backup-errors.txt |
StandardName | UTC Offset |
---|---|
Dateline Standard Time | -12:00:00 |
UTC-11 | -11:00:00 |
Aleutian Standard Time | -10:00:00 |
Hawaiian Standard Time | -10:00:00 |
Marquesas Standard Time | -09:30:00 |
Alaskan Standard Time | -09:00:00 |
UTC-09 | -09:00:00 |
Pacific Standard Time (Mexico) | -08:00:00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.extend( $.validator.methods, { | |
number: function( value, element ) { | |
var result = false; | |
if(/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:,\d+)?$/.test( value )){ | |
result = true; | |
} else if(/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test( value )){ | |
result = true; | |
} | |
return this.optional( element ) || result; | |
} |