Number | Syllables | Spoken form |
---|---|---|
1 | 1 | "one" |
2 | 1 | "two" |
3 | 1 | |
4 | 1 | |
5 | 1 | |
6 | 1 | |
7 | 2 | |
8 | 1 |
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
From adee2792eb50cb800867130dae529c15c39817c4 Mon Sep 17 00:00:00 2001 | |
From: Pokey Rule <[email protected]> | |
Date: Wed, 12 Apr 2023 11:23:53 +0100 | |
Subject: [PATCH] Initial failed typedoc 0.24.0 attempt | |
--- | |
.../cursorless-org-docs/docusaurus.config.js | 2 +- | |
packages/cursorless-org-docs/package.json | 12 +- | |
packages/{cursorless-org-docs => }/typedoc.js | 11 +- | |
pnpm-lock.yaml | 564 ++++++++++++++---- |
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
➜ pnpm exec knip | |
Unused files (36) | |
.meta-updater/main.mjs | |
data/playground/javascript.js | |
data/playground/typescript.ts | |
data/playground/typescriptreacts.tsx | |
packages/cheatsheet-local/src/environments/environment.prod.ts | |
packages/cheatsheet-local/src/environments/environment.ts | |
packages/cheatsheet-local/src/polyfills.ts | |
packages/cheatsheet-local/src/webpack.config.ts |
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
log.ts:401 TRACE [File Watcher (parcel)] [CHANGED] /Users/pokey/src/cursorless/packages/cursorless-vscode/src/scripts/populateDist/transformPackageJson.ts | |
log.ts:401 TRACE [File Watcher (parcel)] >> normalized [CHANGED] /Users/pokey/src/cursorless/packages/cursorless-vscode/src/scripts/populateDist/transformPackageJson.ts |
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 bash | |
set -euo pipefail | |
PR_NUMBER=$1 | |
cd ~/.talon/user/cursorless-talon | |
git remote add staging [email protected]:cursorless-dev/cursorless-talon-staging.git | |
git fetch staging | |
git switch pr/$1 |
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
From ce4f530318564957f13b3451412e9e8259e680a7 Mon Sep 17 00:00:00 2001 | |
From: Pokey Rule <[email protected]> | |
Date: Wed, 15 Mar 2023 15:48:56 +0000 | |
Subject: [PATCH] [DX experiment] Import / auto-import tests | |
--- | |
.../cursorless-engine/src/autoImportTest.ts | 17 ++++++++++ | |
packages/cursorless-engine/src/importTest.ts | 34 +++++++++++++++++++ | |
.../cursorless-vscode/src/autoImportTest.ts | 8 +++++ | |
packages/cursorless-vscode/src/importTest.ts | 30 ++++++++++++++++ |
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 bash | |
# Given a commit sha (defaults to current commit), creates PRs for every | |
# branch on the stack of the given commit. Each PR is created with its base | |
# as the nearest ancestor of the given branch that is also a branch. | |
set -euo pipefail | |
commit="${1:-.}" | |
base="$(git config branchless.core.mainBranch)" | |
remote="origin" |
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
def print_color(color, invert=False): | |
if invert: | |
print(invert_color(color)) | |
else: | |
print(color) | |
def invert_color(color): | |
if color == "black": | |
return "white" |
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
# ============= Notes ===================== | |
# This script contains the commands I ran to merge my Talon files (https://github.com/pokey/pokey_talon/) | |
# with the recent large reformat that took place in knausj (https://github.com/knausj85/knausj_talon/commit/3bf4882fa0a05b22171e59118bd7c9640aae753a) | |
# You can use this script for inspiration when you perform the merge on your own talon files. | |
# Note that this script is not meant to be run exactly; it is just a guideline. | |
# I'd recommend reading through and modifying each step to fit your individual setup | |
# Your mileage may vary | |
# ============= Initial setup ============= | |
# Clone and cd into a fresh knausj just to use for the merge |
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 bash | |
# Migrates all open issues from one repo to another, labeling them with the same labels, and adding a new label | |
# | |
# Assumes: | |
# - the target repo's labels are a superset of the source repo's | |
# - you have jq installed | |
# - you have gh installed | |
# | |
# Steps: | |
# 1. Change source_repo to your source repo, |
NewerOlder