- 3 1/2 cups rolled oats
- 1/2 cup wheat bran
- 1/2 teaspoon kosher salt
- 1/2 teaspoon ground cinnamon
- 1/2 cup sliced almonds
- 1/4 cup raw pecans, coarsely chopped
- 1/4 cup raw pepitas (shelled pumpkin seeds)
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
# Normally, graphite wants to point you to their website after you submit a stack. I don't use their website, and I | |
# would prefer to go directly to the github PR. I wrote an alias that uses `unbuffer` to keep all of the nice ansi color | |
# and formatting, while replacing the final URL displayed with a github URL. | |
# | |
# Install unbuffer: | |
# - Mac OS: `brew install expect` | |
# - Ubuntu Linux: `sudo apt install expect` | |
# | |
# I have this in my .zshrc; "gts" is short for "gt submit": |
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
export type TaskJobType = | |
| 'chat.created' | |
| 'chat.messageSent' | |
| 'content.generateCoursePipeline' | |
| 'content.generateOutcomeRubrics' | |
| 'content.getTopicActivities' | |
| 'content.getTopicActivity' | |
| 'content.getTopicDescription' | |
| 'etl.humanloopProjects' // cron task | |
| 'healthcheck.ping' |
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
{ | |
//... snip ... | |
"scripts": { | |
"dev": "sh -c '(export TURBO_ARGS=\"${*}\"; turbo dev:deps $TURBO_ARGS && overmind start --root . --no-port --procfile $(node run-dev.mjs))' zero", | |
"dev:dry": "turbo dev --dry=json $TURBO_ARGS" | |
} | |
} |
- Go to https://script.google.com
- Create a New Project
- Replace the
Code.gs
file it creates for you with the javascript below (copy/paste) - Save the script
- Go to Triggers (looks like an alarm clock on left-hand side)
- Create a Trigger that acts every 10 minutes and calls
filterNGPVANSpam
- You'll need to authorize this script to act on your behalf, which may require that you use the scary "Advanced" section to allow the script to read/write to your email inbox.
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
server { | |
listen 80 ; | |
# listen [::]:80 ipv6only=on; | |
root /var/www/html; | |
index index.php index.html index.htm; | |
server_name y.relm.us; | |
location / { |
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-editable properties for this card: | |
export const PROPS = [ | |
propNumber('range', 10) | |
]; | |
// Make surrounding things tagged with "wave" do The Wave | |
export function onTick() { | |
card.cycle = (card.cycle || 0) + 1; | |
let actors = overlapSphere(getPos(), props.range); |
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
./swarmdb new --help | |
# NotFound$~~~~~~~~~~ | |
# no replica found (.swarmdb) | |
./swarmdb init | |
./swarmdb new | |
# BADARGS$~~~~~~~~~~ | |
# new <rdt> [as objectname] [on BranchName] | |
# create an empty object of the given type |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder