Skip to content

Instantly share code, notes, and snippets.

@SkinyMonkey
SkinyMonkey / Nhost.res
Last active November 3, 2020 13:47
A rescript binding to the nhost-js-sdk library,
// NOTE : This rescript file is a a binding to the nhost-js-sdk library,
// which is a way to communicate with https://github.com/nhost/hasura-backend-plus or services at nhost.io
// see the end of the file for a usage example
// initialization -------------------------------------------------------------
// placeholder type
type nhost_t
// we import the nhost-js-sdk module
@SkinyMonkey
SkinyMonkey / gist:d15514ec05be86c9e03dca678eec8e78
Last active August 9, 2021 05:54
protoactor linked list benchmark
package main
import (
"fmt"
"runtime"
"sync"
"time"
"github.com/AsynkronIT/protoactor-go/actor"
)
@SkinyMonkey
SkinyMonkey / go-restful-384-debug.go
Created December 5, 2018 19:32
go-restful #384 debug
package main
import (
"log"
"net/http"
"github.com/emicklei/go-restful"
restfulspec "github.com/emicklei/go-restful-openapi"
"github.com/go-openapi/spec"
)