Jerome Paul
Jerome Paul
JSON
Hey, I was playing around ramsql today and I've got a json column ``` db, err = sql.Open("ramsql", "store") if err != nil { panic(fmt.Sprintf("sql.Open : Error : %s\n", err))...
I was trying to setup kube-lego on my cluster this morning and kept on receiving the following error: `time="2017-11-14T22:44:04Z" level=debug msg="error while authorizing: waiting for authorization failed: acme: identifier authorization...
I'm looking at my DD APM traces and I can see the following be query being reported in the DD APM UI  I expected the highlighted query to be...
``` #!/usr/bin/env ruby require 'async' require 'async/queue' @input_channel = Async::LimitedQueue.new(100) def consumer Async do |task| loop do task.with_timeout(0.001) do @input_channel.dequeue rescue Async::TimeoutError # no-op end end end end task =...
I've been looking online and I'd like to purchase an Adaptrboard Kit they are still available / being made. Are they available?
There is a defined interface for a [checkpoint factory](src/main/java/software/amazon/kinesis/checkpoint/CheckpointFactory.java) However the only provided implementation is the DynamoDBCheckpointFactory. I very much want to checkpoint to my own datastore. Is that only...