Skip to content

Instantly share code, notes, and snippets.

@warrenMichael
warrenMichael / npmrc
Created December 3, 2015 17:32
npmrc changing scope
How to update ~/.npmrc to new registry
Simple guide to update to npm inc registy.
Requirements:
npm version >= 2.0
Steps
backup ~/.npmrc, and then remove it (mv ~/.npmrc ~/.npmrc-bak )
@ericqweinstein
ericqweinstein / wwdsa.md
Last active June 4, 2016 10:27
Wednesday Workshops: Data Structures & Algorithms

Wednesday Workshops: Data Structures & Algorithms

About

Each workshop is ~45 minutes over lunch on Wednesdays. There will be a repo with sample code and additional resources so you can continue learning outside the workshop if you want to.

Curriculum

Intro

@ourmaninamsterdam
ourmaninamsterdam / LICENSE
Last active October 15, 2025 12:17
Arrayzing - The JavaScript array cheatsheet
The MIT License (MIT)
Copyright (c) 2015 Justin Perry
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream