sudo apt update
sudo apt upgrade
sudo apt-get install wget curl git zsh cmake xclip tmux gnome-tweak-tool unity-tweak-tool
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 | |
# See http://www.erebusbat.com/2015/08/tmux-login-wrapper-script/ | |
# Inspired by https://github.com/nicknisi/dotfiles | |
# abort if we're already inside a TMUX session | |
[ "$TMUX" == "" ] || exit 0 | |
export SHELL=/usr/local/bin/zsh | |
export TERM=xterm-256color | |
export PATH=/usr/local/bin:$PATH | |
export COLUMNS=1 |
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 -e | |
echo WARNING! This script will add various junk to your | |
echo WARNING! machine so it is best to run it in a VM! | |
echo Fetching latest ansible | |
prerequisites="git \ | |
python \ | |
python-boto \ |
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
echo '[Unit] | |
Description=High-performance, schema-free document-oriented database | |
After=syslog.target network.target | |
[Service] | |
User=mongodb | |
Group=mongodb | |
ExecStart=/usr/bin/mongod -f /etc/mongod.conf | |
[Install] |
Located in alphabetical order (not prefer)
- ab – slow and single threaded, written in
C
- apib – most of the features of ApacheBench (
ab
), also designed as a more modern replacement, written inC
- baloo – Expressive end-to-end HTTP API testing made easy, written in Go (
golang
) - bombardier – Fast crossplatform HTTP benchmarking tool, written in Go (
golang
) - curl-loader – performance loading of various application services and traffic generation, written in
C
- fasthttploader – benchmark (kinda ab) with autoadjustment and charts based on fasthttp library, write in Go (
golang
)
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/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |