Instead of the verbose setOnClickListener:
RxView.clicks(submitButton).subscribe(o -> log("submit button clicked!"));Observable
.just(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)| import pyproj | |
| from shapely.geometry import shape | |
| from shapely.ops import transform | |
| geom = {'type': 'Polygon', | |
| 'coordinates': [[[-122., 37.], [-125., 37.], | |
| [-125., 38.], [-122., 38.], | |
| [-122., 37.]]]} | |
| s = shape(geom) |
| Can be extracted from `libswiftCore.dylib` with: | |
| cd `xcode-select -p`/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx | |
| nm -a libswiftCore.dylib | grep "T _swift_" | |
| Output: | |
| 00000000001a4fc0 T _swift_ClassMirror_count | |
| 00000000001a52a0 T _swift_ClassMirror_quickLookObject | |
| 00000000001a5000 T _swift_ClassMirror_subscript |
| package main | |
| import ( | |
| "log" | |
| "bufio" | |
| "time" | |
| "os" | |
| "fmt" | |
| "io" | |
| "net" |
| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD License | |
| """ | |
| import numpy as np | |
| # data I/O | |
| data = open('input.txt', 'r').read() # should be simple plain text file | |
| chars = list(set(data)) | |
| data_size, vocab_size = len(data), len(chars) |
| # ReachView code is placed under the GPL license. | |
| # Written by Egor Fedorov ([email protected]) | |
| # Copyright (c) 2015, Emlid Limited | |
| # All rights reserved. | |
| # If you are interested in using ReachView code as a part of a | |
| # closed source project, please contact Emlid Limited ([email protected]). | |
| # This file is part of ReachView. |
| # coding: utf-8 | |
| # Imports | |
| import os | |
| import cPickle | |
| import numpy as np | |
| import theano | |
| import theano.tensor as T |
| (* | |
| Interactive approach | |
| -------------------- | |
| You can copy-paste code into `utop`, provided you load the lwt.unix | |
| package: | |
| #use "topfind";; | |
| #thread;; (* only needed in the plain `ocaml` toplevel, not in `utop`. *) | |
| #require "lwt.unix";; |
| vault mount pki | |
| vault mount -path=pki1 pki | |
| vault mount -path=pki2 pki | |
| vault mount -path=pki3 pki | |
| vault mount-tune -max-lease-ttl=87600h pki | |
| vault mount-tune -max-lease-ttl=87600h pki1 | |
| vault mount-tune -max-lease-ttl=87600h pki2 | |
| vault mount-tune -max-lease-ttl=87600h pki3 | |
| vault write pki/root/generate/internal common_name="Vault Testing Root Authority" ttl=87600h |