Skip to content

Instantly share code, notes, and snippets.

View NiiMER's full-sized avatar
🟢

Mohamad Nimer NiiMER

🟢
View GitHub Profile
@NiiMER
NiiMER / .eslintrc.json
Created October 2, 2019 00:09 — forked from leny/.eslintrc.json
ESLint config file for node.js + ES6 projects.
{
"env": {
"node": true,
"es6": true
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParameters": true,
@NiiMER
NiiMER / update-ruby.sh
Last active June 27, 2016 09:42
Upgrade ruby on ubuntu regarding the old stable version on apt-get
#!/bin/bash
tmp_dir="/tmp"
version="2.2.3"
minor_version="2.2"
ruby_version="ruby-$version"
echo "## Installing Ruby ##"
sudo apt-get install -y autoconf build-essential libreadline-dev libssl-dev libyaml-dev zlib1g-dev libffi-dev