A. Teams Announced - Teams asked for Team Names:
B. Warrior Drafting for Events
C. Predicitons: - Which Team will win each event?
- Which team will have funniest moment?
| # casa-studio — copy to .env and fill in. setup.sh sources this and the stack | |
| # reads it via docker compose. NEVER commit the real .env. | |
| # Generate clean (URL/header-safe) secrets, e.g.: | |
| # LITELLM_MASTER_KEY="sk-$(openssl rand -hex 24)" | |
| # POSTGRES_PASSWORD="$(openssl rand -hex 24)" # avoid URL-breaking chars | |
| # ── LiteLLM ────────────────────────────────────────────────────────────────── | |
| LITELLM_MASTER_KEY=sk-CHANGEME | |
| LITELLM_UI_USER=admin | |
| LITELLM_UI_PASS=CHANGEME |
| <?xml version="1.0"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>Podcast Subscriptions</title> | |
| </head> | |
| <body> | |
| <outline type="rss" text="The Moth" title="The Moth" xmlUrl="http://feeds.feedburner.com/themothpodcast" htmlUrl="http://themoth.org/"/> | |
| <outline type="rss" text="Timothy Keller Sermons Podcast by Gospel in Life" title="Timothy Keller Sermons Podcast by Gospel in Life" xmlUrl="https://podcast.gospelinlife.com/feed.xml" htmlUrl="https://gospelinlife.com/"/> | |
| <outline type="rss" text="The World of Business" title="The World of Business" xmlUrl="https://podcasts.files.bbci.co.uk/p02nrwfk.rss" htmlUrl="http://www.bbc.co.uk/programmes/p02nrwfk"/> | |
| <outline type="rss" text="Ask Pastor John" title="Ask Pastor John" xmlUrl="https://feed.desiringgod.org/ask-pastor-john.rss" htmlUrl="https://www.desiringgod.org/ask-pastor-john"/> |
| tests | |
| @echo "START RUNNING TESTS" | |
| list: | |
| @echo | |
| @echo Available sub-commands... | |
| @echo | |
| @cat makefile | grep ":" | tail -r | awk 'NR>1{ print }' | tail -r | |
| @echo | |
| @echo |
| // vanilla version of TS (from esbiuild) | |
| const {isArray} = Array; | |
| const isPrim = (i) => { | |
| const types = ["string", "number", "boolean", "function", "undefined", "bigint", "symbol"]; | |
| return types.some((tStr) => typeof i === tStr); | |
| }; | |
| const isObject = (i) => { | |
| return !isPrim(i) && !isArray(i); | |
| }; |
| /* using ts-jest */ | |
| import { DynamoDB } from 'aws-sdk' | |
| import localDynamo from 'local-dynamo' | |
| import { appTable, click } from '../src/entities' | |
| let dynamoLocal: ChildProcess | |
| beforeAll(async () => { | |
| // start local Dynamo Svc | |
| // and set the internals of the Entity framework to use the locally configured reader/writer |
| /** | |
| * ### Date Formatter | |
| * @description Given a format string, the formatter does simple replacment for date string tokens. | |
| * @param epoch - ISO Epoch Date number | |
| * @param fmt - format String | |
| * | |
| * @token `YYYY`:Year; ex: 2021 | |
| * @token `YY`:AbbrevYear; 21 | |
| * @token `MM`:Month; 04 | |
| * @token `DD`:Date; 01 |
| // Type definitions for `hast-util-select` 4.0.1 | |
| // Project: https://github.com/syntax-tree/hast-util-select#readme | |
| // Definitions by: ericdmoore <https://github.com/ericdmoore> | |
| // TypeScript Version: 4.0 | |
| // | |
| declare module 'hast-util-select'{ | |
| import type { Node } from 'unist' | |
| export interface HastNode extends Node{ | |
| properties: {[key:string]:any} |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="2.0"> | |
| <head> | |
| <title>Feeds</title> | |
| </head> | |
| <body> | |
| <outline type="rss" title="| Pooya Saeedi" xmlUrl="https://www.saeedi.dev/feed/" text="| Pooya Saeedi" htmlUrl="https://www.saeedi.dev" /> | |
| <outline type="rss" title="250bpm" xmlUrl="https://250bpm.com/rss.xml" text="250bpm" htmlUrl="http://250bpm.com" /> | |
| <outline text="500ish - Medium" title="500ish - Medium" htmlUrl="https://500ish.com?source=rss----662a29c3b19e---4" xmlUrl="https://500ish.com/feed" type="rss" /> | |
| <outline text="andrewchen" title="andrewchen" type="rss" htmlUrl="https://andrewchen.com" xmlUrl="https://andrewchen.com/feed/" /> |