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
| # After this, you should be free to install any new version without fear of having old data files | |
| # | |
| # Writing this because `brew postgresql-upgrade-database` will sometimes read the wrong version of postgres if | |
| # you have had multiple previous versions of postgres | |
| brew uninstall postgres | |
| brew uninstall postgres@<insert version here> | |
| rm -rf /usr/local/var/postgres | |
| rm -rf /usr/local/var/postgres@<insert version here> |
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
| call plug#begin('~/.vim/plugged') | |
| Plug 'junegunn/fzf.vim' | |
| Plug 'junegunn/goyo.vim' | |
| Plug 'dense-analysis/ale' | |
| Plug 'rhysd/committia.vim' | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' | |
| Plug 'heavenshell/vim-jsdoc' | |
| Plug 'sbdchd/neoformat' |
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
| const express = require('express') | |
| const app = express() | |
| app.use('/', express.static('.')) | |
| app.listen(3000, () => console.log('Listening on port 3000...')) |
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
| /*: | |
| # A Case of the Missing Unit Test */ | |
| /*: | |
| ### Type Defs | |
| */ | |
| struct Payload { | |
| let url: String | |
| } | |
| struct FetchListingsAction { |