Skip to content

Instantly share code, notes, and snippets.

@wcamarao
wcamarao / spec.jsonc
Last active February 13, 2026 01:06
Dataset spec
{
"id": "uuid",
"published": true,
"name": "Forest Carbon Diligence",
"licence": "SPDX-123", // identifier TBC
"category": "Plant biomass",
"type": "Raster", // New type? Non-spatial?
"crs": "EPSG:4326", // optional, otherwise refer to description e.g. UTM tile-based
"spatial_coverage": {}, // structure TBC

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"
)