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 * as stream from "stream"; | |
import * as express from "express"; | |
import * as bodyParser from "body-parser"; | |
const app = express(); | |
app.use(bodyParser.raw()); | |
app.use(bodyParser.json()); | |
app.post("/upload", (req: express.Request, res: express.Response, next: express.NextFunction) => { |
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
# bash completion | |
export BASH_COMPLETION_COMPAT_DIR="/usr/local/etc/bash_completion.d" | |
[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh" | |
# nvm | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh" | |
[ -s "/usr/local/opt/nvm/etc/bash_completion" ] && . "/usr/local/opt/nvm/etc/bash_completion" |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Side by Side</title> | |
<meta http-equiv="refresh" content="30" /> | |
<style> | |
html { | |
box-sizing: border-box; | |
} |
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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"profiles": { | |
"defaults": { | |
"startingDirectory": "C:\\Source", | |
"snapOnInput": true, | |
"closeOnExit": true, | |
"historySize": 9001, | |
"colorScheme": "VS Code", |
OlderNewer