Create a key using
$ keytool -genkey -v -keystore debug.keystore -alias androiddebugkey -keyalg RSA -keysize 2048 -validity 10000Then sign the apk using
Create a key using
$ keytool -genkey -v -keystore debug.keystore -alias androiddebugkey -keyalg RSA -keysize 2048 -validity 10000Then sign the apk using
* {
-webkit-user-select: text !important; /* Chrome 49+ */
-moz-user-select: text !important; /* Firefox 43+ */
-ms-user-select: text !important; /* No support yet */
user-select: text !important;
}| [Desktop Entry] | |
| Name=Trash | |
| GenericName=Trash | |
| Exec=nautilus trash:/// | |
| Icon=user-trash | |
| Terminal=false | |
| Type=Application | |
| Actions=empty-trash; | |
| [Desktop Action empty-trash] |
| // ==UserScript== | |
| // @name tabs.ultimate-guitar.com unlock | |
| // @version 1.0.0 | |
| // @author Hoang Hong Khang | |
| // @description Unlock all pro features | |
| // @namespace http://tampermonkey.net/ | |
| // @match https://tabs.ultimate-guitar.com/* | |
| // @grant none | |
| // @run-at document-start | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name 123link.vip | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://123link.vip/* | |
| // @grant none | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name Remove disable copy | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== |
| Host * | |
| StrictHostKeyChecking no | |
| UserKnownHostsFile /dev/null |
| [sakura] | |
| colorset1_fore=rgb(211,215,207) | |
| colorset1_back=rgb(30,39,46) | |
| colorset1_curs=rgb(255,255,255) | |
| colorset1_key=F1 | |
| colorset2_fore=rgb(211,215,207) | |
| colorset2_back=rgba(38,38,38,0.99) | |
| colorset2_curs=rgb(255,255,255) | |
| colorset2_key=F2 | |
| colorset3_fore=rgb(192,192,192) |
| set lines+=1 | |
| let s:is_cmdline_open = 0 | |
| function! s:cmdline(key) | |
| if a:key ==# ':' | |
| if !s:is_cmdline_open | |
| let &lines-=1 | |
| let s:is_cmdline_open = 1 | |
| redraw | |
| endif |
| " Plugin {{{ | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'christoomey/vim-tmux-navigator' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'jistr/vim-nerdtree-tabs' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug '/home/linuxbrew/.linuxbrew/opt/fzf' | |
| Plug 'junegunn/fzf.vim' | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' |