Skip to content

Instantly share code, notes, and snippets.

View mhevery's full-sized avatar

Miško Hevery mhevery

View GitHub Profile
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns:ng="http://angularjs.org">
<head>
<script type="text/javascript"
src="http://angularjs.org/ng/js/angular-debug.js" ng:autobind></script>
<script type="text/javascript">
var list = [{timestamp:new Date()}, {timestamp:new Date(1234567890)}, {timestamp:new Date(5678901234)}];
</script>
</head>
<body>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns:ng="http://angularjs.org">
<head>
<script type="text/javascript" src="http://angularjs.org/ng/js/angular-debug.js" ng:autobind></script>
<script>
function Texts() {
this.items = [];
this.savedItems = [];
}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns:ng="http://angularjs.org">
<head>
<script type="text/javascript" src="http://angularjs.org/ng/js/angular-debug.js" ng:autobind></script>
<script>
function Texts(){
this.items = [];
}
Texts.prototype.addText = function(){
<html>
<head>
<script type="text/javascript" src="http://angularjs.org/ng/js/
angular-debug.js" ng:autobind></script>
</script>
<script>
function Ctrl ()
{
this.master_1 =
{
<!DOCTYPE HTML>
<html xmlns:ng="http://angularjs.org">
<head>
<script type="text/javascript" src="http://angularjs.org/ng/js/angular-minified.js" ng:autobind>
</script>
<script type="text/javascript">
DATA = angular.fromJson('{date:"2010-10-13T10:20:30Z"}');
</script>
</head>
<body>
<!DOCTYPE HTML>
<html xmlns:ng="http://angularjs.org">
<head>
<script type="text/javascript"
src="http://code.angularjs.org/angular-0.9.0.js" ng:autobind></script>
</head>
<body>
<script>
function FetchCtrl() { }
FetchCtrl.prototype =
@mhevery
mhevery / gist:662069
Created November 4, 2010 02:54
Hover in angular
<!DOCTYPE html>
<html xmlns:ng="http://angularjs.org">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js" type="text/javascript" ></script>
<script src="http://code.angularjs.org/angular-0.9.2.js" type="text/javascript" ng:autobind></script>
<script type="text/javascript">
function MyController(){
this.list_o_lists = [ ['e1', 'e2' ] , ['e3','e4','e5'] ];
this.$watch('$location.hashPath', this.userChange);
<!doctype html>
<html xmlns:ng="http://angularjs.org">
<script type="text/javascript" ng:autobind
src="http://code.angularjs.org/angular-0.9.2.min.js"></script>
<body>
<script>
angular.widget('my:time', function(compileElement /* i am a subset of jquery http://angularjs.org/Angular.element() */){
compileElement.css('display', 'block');
return function(linkElement /* i am a subset of jquery http://angularjs.org/Angular.element() */){
var div = angular.element('<div>Current time is: </div>');
@mhevery
mhevery / hello.cc
Created December 22, 2010 18:27
pHash for Node
#include <v8.h>
#include <pHash.h>
using namespace v8;
extern "C" void
init (Handle<Object> target)
{
HandleScope scope;
<!doctype html>
<html xmlns:ng="http://angularjs.org">
<head>
<script type="text/javascript" src="http://code.angularjs.org/angular-0.9.8.js" ng:autobind></script>
<script type="text/javascript">
function Controller() {
var self = this;
this.sizes = [{w:320, h:200},{w:640, h:480},{w:800, h:600}];
this.rectangles = [
{name:"alfa", size:{w:640, h:480}},