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 { |
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
| 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' |