Skip to content

Instantly share code, notes, and snippets.

View richfergus's full-sized avatar
🇺🇸
merica

Rich richfergus

🇺🇸
merica
View GitHub Profile
@richfergus
richfergus / npm-using-https-for-git.sh
Created August 8, 2018 23:04 — forked from taoyuan/npm-using-https-for-git.sh
Force git to use https:// instead of git://
git config --global url."https://github.com/".insteadOf [email protected]:
git config --global url."https://".insteadOf git://
@richfergus
richfergus / friends-list.directive.js
Created November 6, 2015 18:01 — forked from bennadel/friends-list.directive.js
Replacing ngInclude With Component Directives In AngularJS
angular.module( "Demo" ).directive(
"friendsList",
function() {
// Return the directive configuration.
return({
controller: "FriendsListController",
link: link,
restrict: "A",
templateUrl: "friends-list/friends-list.htm"