Skip to content

Instantly share code, notes, and snippets.

@jamesmoriarty
jamesmoriarty / delete-custom-metrics
Last active December 7, 2024 01:05
Google Cloud Platform delete custom metrics via REST api
#!/bin/bash
set -x
set -e
project="XXX"
prefix="http"
metrics=$(
curl \
@alexhayes
alexhayes / pyenv+direnv on OSX.md
Last active February 18, 2025 07:28
Awesomely easy virtualenvs on OSX using pyenv and direnv

Awesomely easy virtualenvs on OSX using pyenv and direnv

Never forget to activate that virtualenv or set that environment variable ever again...

Install

  1. Install pyenv

     brew install pyenv