Skip to content

Instantly share code, notes, and snippets.

View levibotelho's full-sized avatar

Levi Botelho levibotelho

View GitHub Profile

Keybase proof

I hereby claim:

  • I am LeviBotelho on github.
  • I am levibotelho (https://keybase.io/levibotelho) on keybase.
  • I have a public key whose fingerprint is D1B3 6E08 C355 8632 B04B E1C8 7E8D 88E6 044A 09C4

To claim this, I am signing this object:

@levibotelho
levibotelho / angular-scratchpad.html
Created March 7, 2015 07:30
A scratchpad for testing Angular scripts
<html ng-app="root">
<body>
<div ng-controller="controller"></div>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.12/angular.min.js"></script>
<script>
angular.module("root", [])
.controller("controller", ["$scope", function ($scope) {
}]);
</script>
@levibotelho
levibotelho / knockout-scratchpad.html
Created March 7, 2015 07:29
A scratchpad for testing Knockout scripts
<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
</head>
<body>
<div>
</div>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.0.min.js"></script>