I hereby claim:
- I am elliotec on github.
- I am elliotec (https://keybase.io/elliotec) on keybase.
- I have a public key ASBV1kTCkQZKJK1dLHS7oXJq5IXGRJQ0mwxJqqqCh_TrzAo
To claim this, I am signing this object:
" This file should be at ~/.config/nvim/init.vim | |
call plug#begin('~/.nvim/plugged') | |
" Autocomplete list functionality | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins'} | |
" Autocomplete with tern for JavaScript | |
Plug 'carlitux/deoplete-ternjs' | |
" Automatically handle swapfiles | |
Plug 'gioele/vim-autoswap' | |
" Keep list of yanks, use Ctrl-p to scroll through | |
Plug 'vim-scripts/YankRing.vim' |
" This file should be at ~/.config/nvim/init.vim | |
call plug#begin('~/.nvim/plugged') | |
" Autocomplete list functionality | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins'} | |
" Autocomplete with tern for JavaScript | |
Plug 'carlitux/deoplete-ternjs' | |
" Automatically handle swapfiles | |
Plug 'gioele/vim-autoswap' | |
" Keep list of yanks, use Ctrl-p to scroll through | |
Plug 'vim-scripts/YankRing.vim' |
I hereby claim:
To claim this, I am signing this object:
import express from 'express' | |
import es6Renderer from 'express-es6-template-engine' | |
import binanceApi from 'binance' | |
import http from 'http' | |
import path from 'path' | |
import socketIo from 'socket.io' | |
const state = {} | |
const binance = new binanceApi.BinanceWS() | |
const app = express() |
# This file should be at | |
export ZSH=/Users/melliot/.oh-my-zsh | |
ZSH_THEME="robbyrussell" | |
ENABLE_CORRECTION="true" | |
COMPLETION_WAITING_DOTS="true" | |
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
plugins=(git zsh-autosuggestions) |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'tmux-plugins/tmux-pain-control' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-sessionist' | |
set -g @plugin 'nhdaly/tmux-scroll-copy-mode' | |
set -g @plugin 'tmux-plugins/tmux-open' | |
set -g @plugin 'tmux-plugins/tmux-copycat' |
" This file should be at ~/.config/nvim/init.vim | |
call plug#begin('~/.nvim/plugged') | |
" Autocomplete list functionality | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins'} | |
" Autocomplete with tern for JavaScript | |
Plug 'carlitux/deoplete-ternjs' | |
" Automatically handle swapfiles | |
Plug 'gioele/vim-autoswap' | |
" Keep list of yanks, use Ctrl-p to scroll through | |
Plug 'vim-scripts/YankRing.vim' |
" This file should be at ~/.config/nvim/init.vim | |
call plug#begin('~/.nvim/plugged') | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins'} | |
Plug 'carlitux/deoplete-ternjs' | |
Plug 'gioele/vim-autoswap' | |
Plug 'vim-scripts/YankRing.vim' | |
Plug 'ervandew/supertab' | |
Plug 'w0rp/ale' | |
Plug 'tpope/vim-surround' | |
Plug 'tpope/vim-fugitive' |
" This file should be at ~/.config/nvim/init.vim | |
call plug#begin('~/.nvim/plugged') | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins'} | |
Plug 'carlitux/deoplete-ternjs' | |
Plug 'gioele/vim-autoswap' | |
Plug 'vim-scripts/YankRing.vim' | |
Plug 'ervandew/supertab' | |
Plug 'neomake/neomake' | |
Plug 'tpope/vim-surround' | |
Plug 'tpope/vim-fugitive' |
const itemsById = itemsWithFields.reduce( | |
(accum, item) => { | |
const itemId = item.sys.id; | |
accum[itemId] = item; | |
return accum; | |
}, [] | |
); | |
console.log(itemsById); |