This file contains hidden or 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
[ | |
{ | |
"title": "Avatar", | |
"year": 2009, | |
"text": "In a distant future, paraplegic marine Jake Sully is sent to Pandora, where he becomes an avatar in the body of the planet’s native Na'vi to infiltrate and mine precious resources. As he bonds with the tribe, Jake must choose between following orders or protecting the land and its people." | |
}, | |
{ | |
"title": "Avengers: Endgame", | |
"year": 2019, | |
"text": "After Thanos wipes out half of all life in the universe, the surviving Avengers unite to reverse the damage. With time-travel and epic battles, they face one final stand to restore peace and avenge their fallen friends." |
This file contains hidden or 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
[ | |
{ | |
"date": "2022-01-01", | |
"transaction_type": "Credit Card Expense", | |
"num": "", | |
"posting": "Yes", | |
"vendor": "Staples", | |
"location": "", | |
"memo": "", | |
"account": "Mastercard", |
This file contains hidden or 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
-- Visual -- | |
-- Stay in indent mode | |
keymap("v", "<", "<gv", opts) | |
keymap("v", ">", ">gv", opts) |
This file contains hidden or 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
# If you come from bash you might have to change your $PATH. | |
# sh you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/daveyholler/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME |
This file contains hidden or 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
set -g default-terminal "xterm-256color" | |
set -sg escape-time 20 | |
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# split panes using | and - | |
bind | split-window -h |
This file contains hidden or 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
import { | |
EuiButtonEmpty, | |
EuiFlexGroup, | |
EuiFlexItem, | |
EuiPanel, | |
EuiStat, | |
} from '@elastic/eui'; | |
interface ButtonProps { | |
href: string; |
This file contains hidden or 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
let mapleader = ',' | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => Fast editing and reloading of vimrc configs | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
map <leader>e :e! ~/.config/nvim/init.vim<cr> | |
autocmd! bufwritepost ~/.config/nvim/init.vim source ~/.config/nvim/init.vim | |
" Kill the buffer without closing the window |
This file contains hidden or 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
export interface ICharacter { | |
id: number, | |
first_name: string, | |
last_name: string, | |
alias: string, | |
occupation: string, | |
city: string, | |
country: string, | |
date_of_birth: string, | |
created_at: string, |
This file contains hidden or 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
interface ICharacter { | |
id: string, | |
first_name: string, | |
last_name: string, | |
alias: string, | |
occupation: string, | |
city: string, | |
country: string, | |
date_of_birth: string, | |
created_at: string, |
NewerOlder