I hereby claim:
- I am jspdown on github.
- I am jspdown (https://keybase.io/jspdown) on keybase.
- I have a public key whose fingerprint is 5138 7D01 EC28 E68D 1FE6 1AA3 7899 F4CA 94D1 FA44
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
0x0198536F4968aaFb2530930a8A5dfb7d29E57403 |
#! /bin/bash | |
URL=$1 | |
PRECISION=vhigh | |
function usage { | |
echo 'Usage: colora <http://site/image.jpg>'; | |
exit 1 | |
} |
import javafx.beans.InvalidationListener; | |
import javafx.beans.binding.*; | |
import javafx.beans.property.FloatProperty; | |
import javafx.beans.property.IntegerProperty; | |
import javafx.beans.property.SimpleFloatProperty; | |
import javafx.beans.property.SimpleIntegerProperty; | |
import javafx.beans.value.ChangeListener; | |
public class Example02 { |
// CONTACT.JAVA | |
import javafx.beans.property.SimpleStringProperty; | |
import javafx.beans.property.StringProperty; | |
public class Contact { | |
private StringProperty name = new SimpleStringProperty(); | |
private StringProperty contactNumber = new SimpleStringProperty(); |
<div ng-controller="example"> | |
<div ng-repeat="key in notSorted(data)" ng-init="value = data[key]"> | |
<pre> | |
key: {{key}} | |
value: {{value}} | |
</pre> | |
</div> | |
</div> | |
<script> |
;(function (angular) { | |
'use strict'; | |
angular | |
.module('ng-utils', []) | |
.factory('$memoize', memoize); | |
function memoize() { | |
return function (target) { | |
return function () { |
class DInjector { | |
inject:any; | |
modules:any; | |
constructor() { | |
this.inject = {}; | |
this.modules = {}; | |
} | |
public register(name:string, dependency:string[], fn:any) { |