Skip to content

Instantly share code, notes, and snippets.

Given the following events

[
  {
    "event": "file_processing_started",
    "filename": "canopy_height.tiff",
    "organisation_id": "e39ff3f6",
    "organisation_name": "Foo"
  },
@wcamarao
wcamarao / iterm2.md
Last active March 9, 2022 00:00
Word jumping in iTerm2

Word jumping in iTerm2

Open Preferences > Profiles > Keys and configure shortcuts to Send escape sequences:

  • Option + Left: [1;5D
  • Option + Right: [1;5C
@wcamarao
wcamarao / concurrency.go
Last active March 8, 2022 23:59
Golang concurrency
package main
import (
"fmt"
"io"
"io/ioutil"
"net/http"
"time"
)