Skip to content

Instantly share code, notes, and snippets.

View andersbc's full-sized avatar

Anders Christiansen andersbc

  • Copenhagen, Denmark
View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 1, 2025 19:03
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@apinstein
apinstein / gist:6858299
Last active December 24, 2015 20:29
AngularJS: how to do Ember-style computed properties in angular
// do it live: http://jsfiddle.net/apinstein/2kR2c/1/
// in DOM
<div ng-controller="MyCtrl">
<p ng-click="bumpA()">a: {{a}}</p>
<p ng-click="bumpB()">b: {{b}}</p>
<p>a^2 = {{aSquared}}</p>
<p>a + b = {{aPlusB}}</p>
</div>