Copy words.reddit into your typespeed words directory. On Ubuntu that is /usr/share/typespeed/words/.
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
| license: gpl-3.0 | |
| height: 960 |
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
| """ | |
| Train an Estimator to learn how to encode integer to binary | |
| """ | |
| import numpy as np | |
| X = np.array([ | |
| [1, -1], [1, 0], [1, 1], | |
| [0, -1], [0, 0], [0, 1], | |
| [-1, -1], [-1, 0], [-1, 1], |
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
| Application for Certificate of Citizenship | Application for Naturalization | Application to Register Permanent Residence or Adjust Status | City | ID | Last Updated | State | |
|---|---|---|---|---|---|---|---|
| April 23, 2017 | June 14, 2017 | April 21, 2017 | Albany | 11 | February 15, 2018 | NY | |
| August 1, 2017 | May 22, 2017 | April 21, 2017 | Albuquerque | 4 | February 15, 2018 | NM | |
| June 18, 2017 | May 1, 2017 | June 1, 2017 | Anchorage | 15 | February 15, 2018 | AK | |
| March 25, 2017 | February 7, 2017 | December 15, 2016 | Atlanta | 22 | February 15, 2018 | GA | |
| December 5, 2016 | February 17, 2017 | December 6, 2016 | Baltimore | 24 | February 15, 2018 | MD | |
| August 1, 2017 | June 18, 2017 | September 1, 2017 | Boise | 40 | February 15, 2018 | ID | |
| November 15, 2016 | June 16, 2017 | April 6, 2017 | Boston | 41 | February 15, 2018 | MA | |
| April 4, 2017 | June 30, 2017 | May 31, 2017 | Buffalo | 47 | February 15, 2018 | NY | |
| August 1, 2017 | January 14, 2017 | December 21, 2016 | Casper | 80 | February 15, 2018 | WY |
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 requests | |
| import json | |
| from json import encoder | |
| import sys | |
| def add_pretty_names(instances): | |
| family_names = { | |
| 't2': 'T2 General Purpose', |
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
| (* | |
| Exports the Stocks.app watchlist | |
| This script will use system events to read the window title of the Stocks App and press the up arrow to move to the next stock. The title contains the stock ticker and recent price. This is appended to a running list and is returned at the end of the run. Currently only 90 stocks are returned per run. | |
| Future: Terminate script when the value being appended is the same as last value. | |
| *) |
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 bash | |
| # git-file-pick: interactively pick files from a source branch into a fresh or existing branch, | |
| # comparing from the fork point with origin/main, and excluding files already identical in target. | |
| set -euo pipefail | |
| # --- prerequisites --- | |
| need() { command -v "$1" >/dev/null 2>&1 || { echo "Missing dependency: $1" >&2; exit 1; }; } | |
| need git | |
| need fzf | |
| git rev-parse --is-inside-work-tree >/dev/null 2>&1 || { echo "Not inside a git repository." >&2; exit 1; } |
You have a bunch of active PRs, and are responding to comments in each.
Well you should really have a worktree for each PR.
Add this alias:
gh alias set pr-worktrees --shell '
gh pr list --json number,headRefName,author \
--jq ".[] | select(.author.login == \"$(gh api user --jq .login)\") | \"\(.number) \(.headRefName)\"" |OlderNewer