Skip to content

Instantly share code, notes, and snippets.

View TylerDurham's full-sized avatar
💭
Is it FRIDAY yet?

Tyler Durham TylerDurham

💭
Is it FRIDAY yet?
View GitHub Profile
#/usr/bin/env $SHELL
echo "Coming soon!"
# MACOS
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
@TylerDurham
TylerDurham / install-oh-my-zsh.sh
Last active July 6, 2022 20:47
install-oh-my-zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Country (or dependency) Population Yearly Change Net Change Density (P/Km2) Land Area (Km2) Migrants (net) Fertility Rate Median Age Urban Population % World Share %
1 China 1439323776.00 0.39% 5540090.00 153.00 9388211.00 -348399.00 1.70 38.0 61.00% 18.47%
2 India 1380004385.00 0.99% 13586631.00 464.00 2973190.00 -532687.00 2.20 28.0 35.00% 17.70%
3 United States 331002651.00 0.59% 1937734.00 36.00 9147420.00 954806.00 1.80 38.0 83.00% 4.25%
4 Indonesia 273523615.00 1.07% 2898047.00 151.00 1811570.00 -98955.00 2.30 30.0 56.00% 3.51%
5 Pakistan 220892340.00 2.00% 4327022.00 287.00 770880.00 -233379.00 3.60 23.0 35.00% 2.83%
6 Brazil 212559417.00 0.72% 1509890.00 25.00 8358140.00 21200.00 1.70 33.0 88.00% 2.73%
7 Nigeria 206139589.00 2.58% 5175990.00 226.00 910770.00 -60000.00 5.40 18.0 52.00% 2.64%
8 Bangladesh 164689383.00 1.01% 1643222.00 1265.00 130170.00 -369501.00 2.10 28.0 39.00% 2.11%
9 Russia 145934462.00 0.04% 62206.00 9.00 16376870.00 182456.00 1.80 40.0 74.00% 1.87%
Specification Keyword RGB Hex
CSS Level 1 black #000000
CSS Level 1 silver #c0c0c0
CSS Level 1 gray #808080
CSS Level 1 white #ffffff
CSS Level 1 maroon #800000
CSS Level 1 red #ff0000
CSS Level 1 purple #800080
CSS Level 1 fuchsia #ff00ff
CSS Level 1 green #008000
@TylerDurham
TylerDurham / install-spotify.sh
Created April 30, 2022 01:17
Install Spotify on Ubuntu.
curl -sS https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | sudo apt-key add -
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list
sudo apt-get update && sudo apt-get install spotify-client
@TylerDurham
TylerDurham / install-signal.sh
Created April 29, 2022 18:08
Installs Signal on Ubuntu.
# NOTE: These instructions only work for 64 bit Debian-based
# Linux distributions such as Ubuntu, Mint etc.
# 1. Install our official public software signing key
wget -O- https://updates.signal.org/desktop/apt/keys.asc | gpg --dearmor > signal-desktop-keyring.gpg
cat signal-desktop-keyring.gpg | sudo tee -a /usr/share/keyrings/signal-desktop-keyring.gpg > /dev/null
# 2. Add our repository to your list of repositories
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/signal-desktop-keyring.gpg] https://updates.signal.org/desktop/apt xenial main' |\
sudo tee -a /etc/apt/sources.list.d/signal-xenial.list
@TylerDurham
TylerDurham / install-brave-browser.sh
Created April 29, 2022 17:01
Installs the Brave Browser package for Debian/Ubuntu
#!/usr/bin/bash
sudo apt install apt-transport-https curl
sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list
sudo apt update && sudo apt install brave-browser
@TylerDurham
TylerDurham / gulpfile.ts
Created June 8, 2017 02:15
My "go-to" TypeScript gulpfile.
import * as gulp from 'gulp';
import * as nodemon from 'gulp-nodemon';
import * as cp from 'child_process';
import * as path from 'path';
import * as del from 'del';
import * as _ from 'lodash';
import * as chalk from 'chalk';
import * as runsequence from 'run-sequence';
const exec = cp.exec;
@TylerDurham
TylerDurham / vscode.extensions
Last active June 5, 2017 02:59
My Visual Studio Code Must Haves
# Tools
ext install types-autoinstaller
ext install vscode-eslint
ext install html-snippets
ext install tslint
# Themes
ext install amethyst-theme
ext install ayu
ext install theme-hackershaze
@TylerDurham
TylerDurham / package.json
Last active June 5, 2017 02:40
TypeScript packages
npm install --save-dev typescript ts-node tslint mocha chai gulp nodemon run-sequence