Skip to content

Instantly share code, notes, and snippets.

View auna93's full-sized avatar

Nicolas Alejandro auna93

View GitHub Profile
@auna93
auna93 / .tmux.conf
Last active November 8, 2024 00:46 — forked from xinshuoweng/.tmux.conf
A vim-friendly tmux config
# change prefix to Ctrl-a (like in gnu-screen)
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# start with window 1 (instead of 0)
set -g base-index 1
# start with pane 1
set -g pane-base-index 1
@bradtraversy
bradtraversy / typescript-crash.ts
Last active July 10, 2025 06:40
Basic intro to TypeScript (From YouTube Crash Course)
// Basic Types
let id: number = 5
let company: string = 'Traversy Media'
let isPublished: boolean = true
let x: any = 'Hello'
let ids: number[] = [1, 2, 3, 4, 5]
let arr: any[] = [1, true, 'Hello']
// Tuple