This file contains 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
<div class="container"> | |
<div class="row"> | |
<div class="container-fluid"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> | |
<span class="sr-only">Toggle navigation</span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> |
This file contains 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
{ | |
"extends": "../.jshintrc-base", | |
"browser": true, | |
"globals": { | |
/* auto/injector.js */ | |
"createInjector": false, | |
/* angular.js */ | |
"angular": false, | |
"msie": false, |
This file contains 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
#comment this line is for keyword completion: | |
set complete=.,w,b,u,t,i | |
# Remap Ctrl+w 2 to Tab | |
nnoremap <C-I> <C-W><C-W> | |
#CTRL+P and CTRL+H |
This file contains 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
apktool d Test.apk | |
edit manifest | |
apktool b Test.apk | |
jarsigner -verbose-sigalg SHA1withRSA -digestalg SHA1 -keystore testapp-key.keystore Dokkan.apk testapp-key |
This file contains 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
Prerequisite : Public Key Setup is required for using this setup | |
1. First open ~/.ssh/config file and add these lines filling the appropriate details. | |
This will setup a netcat tunnel through jump server which will forward all your traffic to mail machine. | |
``` | |
Host <HOSTNAME> | |
User <USERNAME> | |
HostName <HOSTNAME> | |
ProxyCommand ssh <JUMPSERVER-USER>@<JUMPSERVER-ADDR> nc %h %p 2> /dev/null | |
``` | |
2. ssh -v -D :port: :username:@:hostname: |
This file contains 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
dos2unix | |
vim | |
wget | |
curl | |
tree | |
tmux | |
unzip |
This file contains 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
keytool -import -trustcacerts -keystore /opt/java/jre/lib/security/cacerts -storepass changeit -noprompt -alias mycert -file <PATH>\certificate.crt | |
You need to go to $JAVA_HOME/lib/security and run this command to install the certificate.crt file in your CACERTS file.The default password for cacerts store is "changeit". And You have to run it with administrator console. |
This file contains 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
https://blog.jayway.com/2017/04/19/running-docker-on-bash-on-windows/ |
This file contains 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
{ | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"eslint.validate": ["javascript"], | |
"vim.normalModeKeyBindings": [ | |
{ | |
"before": ["<leader>", "m"], | |
"commands": [ | |
"bookmarks.toggle" |