Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@alt236
alt236 / 0_reuse_code.js
Created November 10, 2015 10:29
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
#!/bin/bash
# 10950=365 * 30
FILENAME=debug.keystore
VALIDITY=10950
STORE_TYPE=pkcs12
ALGO=RSA
KEY_SIZE=2048
keytool -genkey -v -keystore $FILENAME -keyalg $ALGO -keysize $KEY_SIZE -validity $VALIDITY -storetype $STORE_TYPE -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"