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
| # improving the format/structure of the code | |
| # 🌹 | |
| # improving performance | |
| # 🐎 | |
| # writing docs | |
| # 📝 | |
| # fixing a bug | |
| # 🐛 | |
| # removing code or files | |
| # 🔥 |
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
| #!/bin/bash | |
| LINKDIR=/usr/bin | |
| JHOME=/usr/java/latest | |
| JREDIR=$JHOME/jre/bin | |
| JDKDIR=$JHOME/bin | |
| sudo alternatives --install $LINKDIR/java java $JREDIR/java 20000 \ | |
| --slave $LINKDIR/keytool keytool $JREDIR/keytool \ | |
| --slave $LINKDIR/orbd orbd $JREDIR/orbd \ |
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
| #!/usr/bin/groovy | |
| /* | |
| * Copyright (c) 2016, Andrey Makeev <[email protected]> | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions | |
| * are met: | |
| * 1. Redistributions of source code must retain the above copyright |
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
Show hidden characters
| [ | |
| // Got this from here - [aarongarciah](https://gist.github.com/aarongarciah/f826b4ebe9cae4b3b738) | |
| // who forked it from here - https://gist.github.com/beaugunderson/8588871 | |
| { | |
| "keys": ["ctrl+alt+s"], | |
| "command": "expand_selection", | |
| "args": {"to": "tag"} }, | |
| { | |
| "keys": ["ctrl+2"], | |
| "command": "run_macro_file", |