View poetry-install-compilation-log
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
❯ poetry install --only=main | |
Installing dependencies from lock file | |
Package operations: 20 installs, 0 updates, 0 removals | |
• Installing grpcio-tools (1.48.2): Failed | |
CalledProcessError | |
Command '['/Users/froi/Library/Caches/pypoetry/virtualenvs/projecte-5wzozpT2-py3.8/bin/python', '-m', 'pip', 'install', '--use-pep517', '--disable-pip-version-check', '--prefix', '/Users/froi/Library/Caches/pypoetry/virtualenvs/projecte-5wzozpT2-py3.8', '--no-deps', '/Users/froi/Library/Caches/pypoetry/artifacts/4c/f1/a9/934e68c4bc7e032f327f4bc871af52e86a4f31a91e0e3b33ac131d84f7/grpcio-tools-1.48.2.tar.gz']' returned non-zero exit status 1. |
View cbt-helpers.sh
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
#!/usr/bin/env zsh | |
# These commands can be configured somewhat in ~/.cbtrc | |
# full docs at https://cloud.google.com/bigtable/docs/cbt-overview#create-cbtrc | |
instance="" | |
project_id="" | |
table_name="" | |
# Delete all rows in a table | |
cbt -instance ${instance} \ |
View documentation-pr-template.md
Documentation
Creating and maintaining documentation is increadibly important. When needed, as part of this PR you need to tackle this too.
- Documentation was created. URL to docs:
- Documentation was updated. URL to docs:
- Changes did not need documentation updates.
View engineering-spec-template.md
{{Topic}} - Engineering Specification
View test-gpg.sh
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
#!/usr/bin/env sh | |
echo "1234" | gpg --no-use-agent -o /dev/null --local-user <KEYID> -as - && echo "The correct passphrase was entered for this key" |
View candidate-eval-template.md
Interview notes for {{candidate name}}
Technical submission
Submission doc
Things to evaluate
Documentation
View .gitconfig
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
[user] | |
name = Froilán Irizarry Rivera | |
email = | |
signingkey = | |
[core] | |
excludesfile = ~/.gitignore_global | |
editor = nano | |
quotepath = false |
View find-bin-alias.sh
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
alias findbin='find . -type f -not -path "./.git/*" -exec perl -MFile::Basename -e '\''print (-T $_ ? "" : (fileparse ($_, qr/\.[^.]*/))[2] . "\n" ) for @ARGV'\'' {} + | sort | uniq' |
View get-repo-labels-generator.js
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
const { Octokit } = require('@octokit/rest'); | |
const { throttling } = require('@octokit/plugin-throttling'); | |
const OctokitThrottling = Octokit.plugin(throttling); | |
const octokit = new OctokitThrottling({ | |
auth: "your-token", | |
throttle: { | |
onRateLimit: (retryAfter, options) => { | |
octokit.log.warn( |
NewerOlder