Skip to content

Instantly share code, notes, and snippets.

View Sethathi's full-sized avatar
🏗️

Sethathi Morokole Sethathi

🏗️
View GitHub Profile
@Sethathi
Sethathi / Fresh macOS Setup.md
Created April 25, 2020 05:42 — forked from ashfurrow/Fresh macOS Setup.md
All the stuff I do on a fresh macOS Installation

Apps to install from macOS App Store:

  • Pastebot
  • GIF Brewery
  • Slack
  • Keynote/Pages/Numbers
  • 1Password
  • OmniFocus 2
  • Airmail 3
  • iA Writer
# Path to your oh-my-zsh installation.
export ZSH=~/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="agnoster"
#ZSH_THEME="bira"
#ZSH_THEME="geoffgarside"
@Sethathi
Sethathi / setup.sh
Last active December 16, 2016 23:26
Vagrant shell provision script
#!/bin/bash
echo "Provisioning virtual machine..."
echo "####### Installing Git"
apt-get install git -y > /dev/null
echo "####### Installing Nginx"
apt-get install nginx -y > /dev/null
@Sethathi
Sethathi / nginx_vhost
Last active March 18, 2016 10:17
Nginx Vhost
server {
listen 80;
server_name localhost;
root /var/www/html/src;
index index.php index.html index.htm;
access_log /var/log/default.access.log;
error_log /var/log/default.error.log;
location / {