Skip to content

Instantly share code, notes, and snippets.

View ggoodman's full-sized avatar

Geoff Goodman ggoodman

View GitHub Profile
@ggoodman
ggoodman / app.js
Last active December 15, 2015 18:09 — forked from evangalen/app.js
Angular + Jasmine
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.name = 'World';
});
@ggoodman
ggoodman / app.js
Last active May 2, 2016 18:06 — forked from ggoodman/app.js
AngularJS unstable template
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.name = 'World';
});
@ggoodman
ggoodman / app.coffee
Last active October 10, 2015 08:28 — forked from ggoodman/app.coffee
AngularJS unstable + Coffee
app = angular.module('plunker', [])
app.controller 'MainCtrl', ($scope) ->
$scope.name = 'World'
@ggoodman
ggoodman / app.coffee
Created September 7, 2012 02:37 — forked from ggoodman/app.coffee
AngularJS@1.0.2 + Coffee
app = angular.module('plunker', [])
app.controller 'MainCtrl', ($scope) ->
$scope.name = 'World'
angular.bootstrap(document, ['plunker'])
@ggoodman
ggoodman / app.js
Created September 7, 2012 02:35 — forked from ggoodman/app.js
AngularJS@1.0.2
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.name = 'World';
});
@ggoodman
ggoodman / app.js
Last active October 9, 2015 12:58 — forked from vojtajina/app.js
AngularJS template
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.name = 'World';
});
@ggoodman
ggoodman / index.html
Created August 29, 2012 10:31 — forked from derek/index.html
Plunker YUI template
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!-- The YUI CSS Reset. Optional -->
<!-- <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.4.1/build/cssreset/cssreset-min.css"> -->
<link rel="stylesheet" href="style.css">
<!-- Load the YUI seed file. http://yuim.in/ always loads the latest version -->
@ggoodman
ggoodman / app.coffee
Last active October 7, 2015 15:57 — forked from vojtajina/app.js
AngularJS + Coffee
app = angular.module('plunker', [])
app.controller 'MainCtrl', ($scope) ->
$scope.name = 'World'
@ggoodman
ggoodman / index.html
Created April 5, 2012 17:33 — forked from anonymous/index.html
Basic web snippet
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>Basic plunk!</h1>
@ggoodman
ggoodman / index.html
Last active October 1, 2015 20:17 — forked from ggoodman/index.html
Plunker Backbone.js template
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="style.css" />
<script data-require="underscore.js" data-semver="1.4.4" src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.4/underscore.js"></script>
<script data-require="jquery" data-semver="2.0.1" src="http://code.jquery.com/jquery-2.0.1.min.js"></script>
<script data-require="backbone.js" data-semver="1.0.0" src="//cdn.jsdelivr.net/backbonejs/1.0.0/backbone-min.js"></script>