Skip to content

Instantly share code, notes, and snippets.

View rchrand's full-sized avatar

Rune Andersen rchrand

View GitHub Profile
@rchrand
rchrand / angular-app.js
Created April 9, 2014 16:48
AngularJS update problem
var blogApp = angular.module('blogApp', [
"ngRoute",
"blogControllers",
"blogFilters",
"blogServices"]);
blogApp.config(['$routeProvider',
function($routeProvider) {
$routeProvider.
when('/', {

Keybase proof

I hereby claim:

  • I am runeandersen92 on github.
  • I am runeandersen92 (https://keybase.io/runeandersen92) on keybase.
  • I have a public key whose fingerprint is D56E 8CD3 845F 7EF2 E075 1C2F C54A CF98 FCAC A52C

To claim this, I am signing this object:

@rchrand
rchrand / init.el
Last active August 29, 2015 14:25
(require 'package)
(require 'cl)
;; Load anything in site-lisp
(eval-and-compile
(mapc
#'(lambda (path)
(push (expand-file-name path user-emacs-directory) load-path))
'("site-lisp")))