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
04c7104fca91e180b79861022daac7fef2e342f2cd3e0c024a2a10dd5204e49f9dd9c93a5e78d5a2d2bcacef557fa55417372aa6c79f70e168d7d2bd0b2ae1f49bnortss |
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
:: Start Eclipse | |
:: start "" "C:\Program Files (x86)\Eclipse\eclipse.exe" | |
:: Start Chrome | |
start "" "C:\Users\rosinia\AppData\Local\Google\Chrome\Application\chrome.exe" https://www.google.com | |
:: Start Outlook | |
start "" "C:\Program Files (x86)\Microsoft Office\Office15\OUTLOOK.exe" | |
:: Start Lync |
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
#!/bin/bash | |
################## | |
# Initialization # | |
################## | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install curl | |
########## |
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
import com.google.common.reflect.ClassPath; | |
import javassist.CannotCompileException; | |
import javassist.ClassPool; | |
import javassist.CtClass; | |
import javassist.CtConstructor; | |
import javassist.CtMethod; | |
import javassist.CtNewConstructor; | |
import javassist.CtNewMethod; | |
import javassist.NotFoundException; | |
import nl.jqno.equalsverifier.EqualsVerifier; |
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
#!/bin/bash | |
########################################## SETUP ########################################### | |
# Install xdotool | |
if [ $(dpkg-query -W -f='${Status}' xdotool 2>/dev/null | grep -c "ok installed") -eq 0 ]; | |
then | |
sudo apt-get install xdotool; | |
fi | |
# Make sure 'eval "$BASH_POST_RC"' is at the end of the .bashrc |
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
#!/bin/bash | |
# The update_git_repo function updates a local copy of a git repository by fetching/pruning all branches, | |
# changing to the develop branch, pulling from the remote develop branch and then switching back to the | |
# original working branch. The first and only argument is the directory of the path to the git repository. | |
update_git_repo() | |
{ | |
if [ -d "$1" ]; then | |
cd $1 | |
export REPO_NAME=$(basename `git rev-parse --show-toplevel`) |
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
source ~/.git-prompt.sh | |
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[01;35m\] \w\[\033[01;34m\]$(__git_ps1) \[\033[01;36m\]\$\[\033[00m\] ' | |
source $HOME/autocomplete_scripts/kubectl.sh | |
export JAVA_HOME="/usr/lib/jvm/java-7-openjdk-amd64" | |
export PATH=$JAVA_HOME/bin:$PATH | |
export NVM_DIR="/home/adam/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm |