Skip to content

Instantly share code, notes, and snippets.

View nerdenough's full-sized avatar
🥝
Hello

Brendan Goodenough nerdenough

🥝
Hello
View GitHub Profile

Keybase proof

I hereby claim:

  • I am nerdenough on github.
  • I am nerdenough (https://keybase.io/nerdenough) on keybase.
  • I have a public key whose fingerprint is 1D4C 5C33 1B41 452B BC6A D08E D04C 5385 A31E 28FF

To claim this, I am signing this object:

@nerdenough
nerdenough / vueSetup.md
Last active June 6, 2021 17:21
macOS Setup for Vue

macOS setup for Vue

Install macOS :P

Install Homebrew

Open terminal and run the follow command to install the latest version of Homebrew. This will also install the XCode utils if you don't have them already installed.

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

{
"autocomplete_all" : true
}
var express = require('express')
var app = express()
app.get('/', function (req, res) {
res.sendFile('./dist/index.html')
})
app.listen(3000, function () {
console.log('Example app listening on port 3000!')
})
@nerdenough
nerdenough / settings.json
Created October 20, 2018 21:28
Visual Studio Code Preferences
{
"workbench.colorTheme": "Monokai Pro (Filter Octagon)",
"workbench.iconTheme": "Monokai Pro (Filter Octagon) Icons",
"editor.fontFamily": "Hasklig, Source Code Pro, monospace",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.lineHeight": 24,
"editor.tabSize": 2,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,