This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"os" | |
"time" | |
"golang.org/x/exp/event" | |
"golang.org/x/exp/event/adapter/logfmt" | |
) |
OlderNewer