Skip to content

Instantly share code, notes, and snippets.

View wolverian's full-sized avatar

Ilmari Vacklin wolverian

View GitHub Profile
@wolverian
wolverian / aws-vault.fish
Created April 11, 2019 13:09
Fish shell completion for aws-vault
complete --command aws-vault \
--arguments 'help add list rotate exec remove login' \
--condition 'not __fish_seen_subcommand_from add list rotate exec remove login' \
--exclusive
complete --command aws-vault \
--condition '__fish_seen_subcommand_from exec' \
--exclusive \
--arguments "(aws-vault list --profiles)"
#!/usr/bin/env python
import argparse
from typing import List
import github
def delete_repos(
access_token: str, whitelist: List[str] = [], repo_type="owner", doit=False
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
@wolverian
wolverian / main.go
Last active October 28, 2021 11:44
exp/event
package main
import (
"context"
"os"
"time"
"golang.org/x/exp/event"
"golang.org/x/exp/event/adapter/logfmt"
)