| name | tour |
|---|---|
| description | Generate narrated video tours of completed work — Ken Burns over real captures, TTS narration, posted to Discord. |
Show what was built. Don't just describe it.
Internal strategic analysis — March 2026
Additional References:
| name | cuj-screenshots |
|---|---|
| description | Capture Critical User Journey (CUJ) screenshots and GIFs from web apps using headless Chromium. Use when you need to create visual demos, verify UI changes, or document user flows. |
Automate visual documentation of web app user journeys using headless browser automation.
| import fnmatch | |
| import os | |
| import re | |
| class CodeToMarkdown: | |
| def __init__(self, output_filename, src_folders, exclusion_patterns, inclusion_patterns): | |
| self.output_filename = output_filename | |
| self.src_folders = src_folders | |
| self.exclusion_patterns = exclusion_patterns |
| { | |
| "$schema": "https://vega.github.io/schema/vega/v5.json", | |
| "description": "A radar chart example, showing multiple dimensions in a radial layout.", | |
| "width": 400, | |
| "height": 400, | |
| "padding": 40, | |
| "autosize": {"type": "none", "contains": "padding"}, | |
| "signals": [{"name": "radius", "update": "width / 2"}], | |
| "data": [ | |
| { |
| defmodule Eltoroportal.Accounts.User do | |
| use Ecto.Schema | |
| import Ecto.Changeset | |
| alias Eltoroportal.Accounts.User | |
| @primary_key {:_id, :string, autogenerate: false} | |
| schema "users" do | |
| field :username, :string | |
| # field :created, :date # <-- ? mongo translation? |
| /** | |
| * Build a set of randomized, evenly distrubted teams | |
| * | |
| * goal team size = ~5 or 6 | |
| * | |
| * usage: | |
| * download file and save as make_class_teams.js | |
| * | |
| * $ node make_class_teams.js | |
| * |
| const OLCardBtns = props => ( | |
| <div> | |
| <ErrorsField /> | |
| <div className="text-xs-right"> | |
| <DisplayIf condition={(ctx) => ctx.error}> | |
| <button className="btn btn-warning disabled" disabled> | |
| <Fa className="remove" /> | |
| Error | |
| </button> | |
| </DisplayIf> |