Skip to content

Instantly share code, notes, and snippets.

View SOSANA's full-sized avatar

Zach Sosana SOSANA

View GitHub Profile
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://www.npmjs.org/install.sh | sh
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
//Database connection
var uristring = 'mongodb://localhost/test';
var mongoOptions = { };
mongoose.connect(uristring, mongoOptions, function (err, res) {
if (err) {
console.log('Error when connecting to: ' + uristring + '. ' + err);
@SOSANA
SOSANA / vscode.txt
Last active February 27, 2017 21:46
Collection of installed VS Code Extensions
Installed VS Code Extensions
- Auto Rename Tag by Jun
- Babel ES6/ES7 by dzannotti
- Code Runner by Jun
- Color Picker by anseki
- Debugger for Chrome by Microsoft
@SOSANA
SOSANA / vscodeCommands.txt
Last active February 22, 2017 22:47
VS Code Commands
List of common commands used for VS Code
- good reference
http://www.dofactory.com/reference/visual-studio-shortcuts
- Open Terminal
Ctrl + `
- Command Pallette
Ctrl + Shift + P
@SOSANA
SOSANA / .eslintrc
Last active March 22, 2017 23:15
Eslint config file with airbnb/base and over ride rules config
{
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true,
"es6": true
},
"parser": "babel-eslint",
"parserOptions": {
@SOSANA
SOSANA / .eslintrc.js
Created February 22, 2017 21:43 — forked from nkbt/.eslintrc.js
Strict ESLint config for React, ES6 (based on Airbnb Code style)
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": ["react"],
"ecmaFeatures": {
@SOSANA
SOSANA / nodemon.json
Created February 22, 2017 21:52
nodemon config
{
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": true,
"events": {
"restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
},
@SOSANA
SOSANA / .editorconfig
Last active February 23, 2017 18:10
Editor Config
# EditorConfig is awesome: http://EditorConfig.org
root = true
# Unix-style newlines with a newline ending every file
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
@SOSANA
SOSANA / .babelrc
Last active March 25, 2017 18:10
Babel Config
{
"presets": [
[
"env",
{
"targets": {
"browsers": ["IE 8"]
}
}
],
@SOSANA
SOSANA / .gitignore
Created March 1, 2017 22:32
.gitignore to ignore all those un-need pesky files!
# See http://help.github.com/ignore-files/ for more about ignoring files.
# dependencies
node_modules
npm-debug.log
# testing
coverage
# production