Skip to content

Instantly share code, notes, and snippets.

View daveyholler's full-sized avatar
🐊
Later gator

Davey Holler daveyholler

🐊
Later gator
View GitHub Profile
[
{
"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."
@daveyholler
daveyholler / txn_list.json
Created August 14, 2023 23:45
Serialized transaction list from QBO
[
{
"date": "2022-01-01",
"transaction_type": "Credit Card Expense",
"num": "",
"posting": "Yes",
"vendor": "Staples",
"location": "",
"memo": "",
"account": "Mastercard",
@daveyholler
daveyholler / keymap.lua
Created December 20, 2022 18:09
Stay in indent mode
-- Visual --
-- Stay in indent mode
keymap("v", "<", "<gv", opts)
keymap("v", ">", ">gv", opts)
@daveyholler
daveyholler / .zshrc
Created August 9, 2022 22:04
.zshrc
# 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
@daveyholler
daveyholler / tmux.conf
Created June 24, 2022 18:28
tmux conf
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
@daveyholler
daveyholler / EuiStat.tsx
Last active June 23, 2022 18:00
EuiStat with Link
import {
EuiButtonEmpty,
EuiFlexGroup,
EuiFlexItem,
EuiPanel,
EuiStat,
} from '@elastic/eui';
interface ButtonProps {
href: string;
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
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,
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,