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
sudo apt-get update && apt-get upgrade | |
# install java (homedir - /usr/lib/jvm/java-8-oracle/) | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer | |
# or use this to set as default -> sudo apt install oracle-java8-set-default | |
# install maven (homedir - /usr/share/maven) |
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
unbind-key C-b | |
set-option -g prefix C-s | |
bind-key C-s last-window | |
bind s send-prefix | |
# large history | |
set-option -g history-limit 100000 | |
# enable mouse mode |
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 | |
############################################################################### | |
# NOTICE: This script is intended to be used in conjunction with a openssl.cnf | |
# template such as this one: | |
# https://gist.github.com/jameskyle/8106d4d5c6dfa5395cef | |
# (C) Copyright 2014 James A. Kyle. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. |