Skip to content

Instantly share code, notes, and snippets.

@rodleviton
rodleviton / npm-sudo-fix
Last active August 29, 2015 14:09
NPM Sudo Fix
# You need to reclaim ownership of the .npm directory
sudo chown -R <username> ~/.npm
# And need the write permission in node_modules directory
sudo chown -R <username> /usr/local/lib/node_modules
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

Delete Git local branch

git branch -D branch_name

NPM specific release version from Github

git+ssh://[email protected]:rodleviton/module.git#v1.0.0

Rebase to master

@rodleviton
rodleviton / .jshintrc.js
Created July 12, 2016 11:11 — forked from connor/.jshintrc.js
jshintrc example
// NOTE: I added the .js extension to this gist so it would have syntax highlighting. This file should have NO file extension
{
// Settings
"passfail" : false, // Stop on first error.
"maxerr" : 100, // Maximum error before stopping.
// Predefined globals whom JSHint will ignore.
"browser" : true, // Standard browser globals e.g. `window`, `document`.
@rodleviton
rodleviton / mongo-autostart-osx.md
Created March 7, 2017 10:43 — forked from subfuzion/mongo-autostart-osx.md
mongo auto start on OS X

Install with Homebrew

brew install mongodb

Set up launchctl to auto start mongod

$ ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents

/usr/local/opt/mongodb/ is a symlink to /usr/local/Cellar/mongodb/x.y.z (e.g., 2.4.9)

@rodleviton
rodleviton / simulateTyping.js
Created July 17, 2021 10:33 — forked from rik/simulateTyping.js
Fake typing animation with async/await
async function nextFrame() {
return new Promise((resolve) => {
requestAnimationFrame(resolve)
})
}
async function randomDelay(min, max) {
const delay = Math.random() * (max - min) + min;
const startTime = performance.now()
while (performance.now() - startTime < delay) {