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:
| class DInjector { | |
| inject:any; | |
| modules:any; | |
| constructor() { | |
| this.inject = {}; | |
| this.modules = {}; | |
| } | |
| public register(name:string, dependency:string[], fn:any) { |
| ;(function (angular) { | |
| 'use strict'; | |
| angular | |
| .module('ng-utils', []) | |
| .factory('$memoize', memoize); | |
| function memoize() { | |
| return function (target) { | |
| return function () { |
| <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> |
| // 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(); |
| 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 { |
| #! /bin/bash | |
| URL=$1 | |
| PRECISION=vhigh | |
| function usage { | |
| echo 'Usage: colora <http://site/image.jpg>'; | |
| exit 1 | |
| } |
| 0x0198536F4968aaFb2530930a8A5dfb7d29E57403 |
I hereby claim:
To claim this, I am signing this object:
| openapi: 3.0.2 | |
| info: | |
| title: API Pastry - 3.0 | |
| version: 3.0.0 | |
| description: API definition of API Pastry sample app | |
| contact: | |
| name: Laurent Broudoux | |
| url: 'http://github.com/lbroudoux' | |
| email: laurent.broudoux@gmail.com | |
| license: |
| func main() { | |
| var paths []string | |
| err := filepath.Walk("~/Oss/openapi-directory/APIs", func(path string, info fs.FileInfo, err error) error { | |
| if err != nil { | |
| return fmt.Errorf("error accessing path %q: %v", path, err) | |
| } | |
| if info.IsDir() || !strings.HasSuffix(path, ".yaml") { | |
| return nil | |
| } |