Skip to content

Instantly share code, notes, and snippets.

View SOSANA's full-sized avatar

Zach Sosana SOSANA

View GitHub Profile
@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 / .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 / 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 / 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
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);
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