Skip to content

Instantly share code, notes, and snippets.

View anggrayudi's full-sized avatar
🏦
WFO

Anggrayudi H anggrayudi

🏦
WFO
View GitHub Profile
@henriquemenezes
henriquemenezes / android-generate-keystores.md
Last active April 6, 2024 13:37
Android: Generate Release/Debug Keystores

Android: Generate Release/Debug Keystores

Generate Keystores

Debug Keystore

$ keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "C=US, O=Android, CN=Android Debug"
@nicwolff
nicwolff / back 10 seconds
Created July 24, 2013 00:13
AppleScripts to skip forward 30 seconds or back 10 seconds in either VLC or QuickTime Player
if application "VLC" is running then
tell application "VLC"
step backward
end tell
end if
property step : 10
if application "QuickTime Player" is running then
tell application "QuickTime Player"
set playerPosition to (current time of front document) - step
set movieDuration to duration of front document