I hereby claim:
- I am kolektiv on github.
- I am kolektiv (https://keybase.io/kolektiv) on keybase.
- I have a public key whose fingerprint is 622B DD92 AFB2 453A DFD9 2B42 EC8F 8458 216C 0FBD
To claim this, I am signing this object:
var spahql = require('spahql'); | |
var response = { | |
_id: '0', | |
text: 'some text', | |
sources: | |
[ | |
{ | |
_id: '1', | |
innerText: 'some inner text' |
var response = spahql.db(data); | |
response.select('//_id').renameAll('id'); | |
response.select('//auth').destroyAll(); | |
// return response.value(); |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
i := 0 | |
t := time.Now() |
I hereby claim:
To claim this, I am signing this object:
module Cells = | |
// Types | |
type LifeSpec = | |
| LifeSpec of GenerationSpec list | |
and GenerationSpec = | |
| GenerationSpec of strength: int * liveness: (int -> bool) | |
type TestUnion = | |
| Union of string | |
type TestContainer = | |
{ Test: TestUnion } | |
static member FromJson (_: TestContainer) = | |
fun t -> | |
{ Test = Union t } | |
<!> Json.read "union" |
open System | |
open System.Text | |
open Freya.Core | |
open Freya.Machine | |
open Freya.Machine.Extensions.Http | |
open Freya.Machine.Router | |
open Freya.Router | |
open Freya.Types.Http | |
open Microsoft.Owin.Hosting |
type Example = | |
| IntCase of int | |
| StringCase of string | |
let intExample = IntCase 5 // type - Example | |
let stringExample = StringCase "hello" | |
type ExampleRecord = | |
{ ExampleField: Example } | |
let t2 = | |
TopicDescription "testtopic2" | |
let t3 = | |
TopicDescription "testtopic3" | |
let setup = | |
ServiceBus.run ( | |
ServiceBus.liftNamespace ( | |
Namespace.Topics.create t3 |
// Implementations | |
module Reader = | |
let bind (f: 'e -> 't, binder: 't -> 'e -> 'u) : 'e -> 'u = | |
fun e -> | |
binder (f e) e | |
// Specializations |