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
package main | |
import ( | |
"bytes" | |
"fmt" | |
"math" | |
"os" | |
"os/signal" | |
"runtime" | |
"runtime/pprof" |
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
{ | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"editor.fontFamily": "'Cascadia Code PL SemiLight',Liga SFMono Nerd Font,Fira Code,'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font,SFMonoNerdFontComplete-Regular,SFMono Nerd Font Mono, monospace", | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.cursorBlinking": true, | |
"editor.fontLigatures": true, |
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
{ | |
"configurations": [ | |
{ | |
"name": "Linux", | |
"includePath": [ | |
"${workspaceFolder}/**", | |
"${workspaceFolder}/node_modules/node-addon-api", | |
"~/.nvm/versions/node/v14.16.0/include/node/**" | |
], | |
"defines": [], |