Skip to content

Instantly share code, notes, and snippets.

View coertg's full-sized avatar

Coert Grobbelaar coertg

  • Cape Town, South Africa
View GitHub Profile
@coertg
coertg / keybase.md
Created July 29, 2021 14:49
keybase.md

Keybase proof

I hereby claim:

To claim this, I am signing this object:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Boris</title>
<style id="jsbin-css">
#main {
border: 1px black solid;

In general, the logging situation on this service needs improvement, since logs cannot be accessed via AWS UI or directly via SSH. It can only be accessed by copying it out of the running docker instance.

stats.counters.prod_branch_palm.controllers.Branches.getParcelsAtBranch.5xx.count

This error occurs a few time everyday, and seems to be related to weird request bodies/parameters.

Stacktrace below:

Keybase proof

I hereby claim:

  • I am coertg on github.
  • I am coert (https://keybase.io/coert) on keybase.
  • I have a public key whose fingerprint is BBAD 8E8B EE5F AA1C F02E 1434 981F 0A12 729D A13D

To claim this, I am signing this object:

@coertg
coertg / LinkedListQ.sc
Created June 28, 2017 06:23
A basic linked list implementation in scala
// We are going to create our own implementation of a singly linked list,
// a recursive data structure often used in scala
// Define the type of data structure
sealed trait List[+A]
// Define the empty list (Nil)
case object Nil extends List[Nothing]
// Define the node containing a value (Cons)