This file contains 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
# 1) Function to update the cached GitHub username: | |
function refresh_github_user() { | |
GITHUB_USER_CACHED="$( | |
gh auth status --active 2>/dev/null \ | |
| sed -nE 's/.* account ([^ ]+).*/\1/p' | |
)" | |
} | |
# 2) Function to display the cached GitHub user if in a Git repo: | |
function _gh_user_prompt() { |
This file contains 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 slug | |
import ( | |
"crypto/rand" | |
"fmt" | |
"math/big" | |
"regexp" | |
"strings" | |
"unicode" | |
"unicode/utf8" |
This file contains 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 renderer | |
import ( | |
"fmt" | |
"html/template" | |
"io" | |
"io/fs" | |
"path/filepath" | |
"sync" | |
) |
This file contains 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 types | |
import ( | |
"context" | |
"fmt" | |
"io" | |
"time" | |
"github.com/btcsuite/btcutil/base58" | |
"github.com/vmihailenco/msgpack/v5" |
This file contains 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 db | |
import ( | |
"context" | |
"database/sql" | |
"github.com/cockroachdb/cockroach-go/v2/crdb" | |
) | |
var ctxKeyTx = struct{ name string }{"ctx-key-tx"} |
This file contains 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 property | |
import ( | |
"fmt" | |
"strings" | |
"gopkg.in/yaml.v3" | |
) | |
// Properties list. |
This file contains 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
{ | |
"New Bubble Tea Program": { | |
"prefix": "bubbletea", | |
"body": [ | |
"package main", | |
"", | |
"import (", | |
"\t\"fmt\"", | |
"\t\"os\"", | |
"", |
This file contains 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 ( | |
"fmt" | |
"os" | |
tea "github.com/charmbracelet/bubbletea" | |
) | |
func main() { |
This file contains 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 errs | |
const ( | |
ErrUnauthenticated = UnauthenticatedError("unauthenticated") | |
ErrInvalidArgument = InvalidArgumentError("invalid argument") | |
ErrNotFound = NotFoundError("not found") | |
ErrConflict = ConflictError("conflict") | |
ErrPermissionDenied = PermissionDeniedError("permission denied") | |
ErrGone = GoneError("gone") | |
) |
NewerOlder