type: #type/clipping area: #area/knowledge-management keywords: #keyword/notes #keyword/learning status: #status/processed created: 2025-01-24 published: 2022-09-17 source: https://notes.andymatuschak.org/Evergreen_notes_turn_ideas_into_objects_that_you_can_manipulate author: #author/steph_ango
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
| # axi-agent cluster: agent tree | |
| filtered: SCSS → tailwind migration threads removed | |
| time range: 2026-01-14 17:00 → 2026-01-15 10:38 UTC | |
| --- | |
| [user (bdsqqq)](https://ampcode.com/threads/T-019bbdbe-59d3-752a-9c84-79fc06b775b4) — ROOT COORDINATOR - original axi-agent development thread (356 msgs) | |
| └ INFRASTRUCTURE | |
| └ [janet_fiddleshine](https://ampcode.com/threads/T-019bbde9-0161-743c-975e-0608855688d6) — Watchdog agent (1214 msgs) |
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
| serviceName,humanreadableServiceName | |
| frontend,Frontend | |
| frontendproxy,Frontendproxy | |
| flagd,Flagd | |
| productcatalogservice,Productcatalog | |
| loadgenerator,Loadgenerator | |
| checkoutservice,Checkout | |
| cartservice,Cart | |
| recommendationservice,Recommendations | |
| emailservice,Email |
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
| // Modified version of component from https://craft.mxkaske.dev/post/fancy-multi-select | |
| import { createContextScope, type Scope } from '@radix-ui/react-context'; | |
| import * as PopperPrimitive from '@radix-ui/react-popper'; | |
| import { createPopperScope } from '@radix-ui/react-popper'; | |
| import { Portal as PortalPrimitive } from '@radix-ui/react-portal'; | |
| import { Presence } from '@radix-ui/react-presence'; | |
| import { useControllableState } from '@radix-ui/react-use-controllable-state'; | |
| import { X } from 'lucide-react'; | |
| import * as React from 'react'; |
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
| { | |
| "$schema": "https://zed.dev/schema/themes/v0.1.0.json", | |
| "name": "Vesper", | |
| "author": "Rauno Freiberg", | |
| "themes": [ | |
| { | |
| "name": "Vesper", | |
| "appearance": "dark", | |
| "style": { | |
| "border": "#101010", |
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
| export function progressBar( | |
| percent: number, | |
| width: number, | |
| charPalette: string[] = ["░", "▓", "█"] | |
| ) { | |
| // figure out how much % each character will represent considering 100% = width | |
| const charPercentValue = 100 / width; | |
| // figure out how much of a % each character in the palette represents | |
| // palette[0] will always mean 0% of the charPercentValue, |
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
| // Plop these into your VSCode settings.json, | |
| // can easily acces from the command palette | |
| // then typing "Preferences: Open User Settings (JSON)" | |
| "workbench.colorTheme": "Vesper", | |
| // Overrides vesper theme start | |
| "workbench.colorCustomizations": { | |
| "editorGutter.addedBackground": "#A0A0A0", | |
| "editorGutter.deletedBackground": "#A0A0A0", | |
| "editorGutter.modifiedBackground": "#A0A0A0" |
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
| /** | |
| * Generates tailwindcss-animate compatible animation utilities from the keyframes defined in theme.keyframes. | |
| * | |
| * @see [tailwindcss-animate](https://github.com/jamiebuilds/tailwindcss-animate) | |
| */ | |
| const generateAnimationUtilitiesFromKeyframes = plugin(({ addUtilities, theme }) => { | |
| function generateAnimationUtilities(keyframes) { | |
| const animationUtilities = {}; | |
| Object.entries(keyframes).forEach(([animationName, animationKeyframes]) => { |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>BackgroundColor</key> | |
| <data> | |
| YnBsaXN0MDDUAQIDBAUGBwpYJHZlcnNpb25ZJGFyY2hpdmVyVCR0b3BYJG9iamVjdHMS | |
| AAGGoF8QD05TS2V5ZWRBcmNoaXZlctEICVRyb290gAGmCwwXHR4lVSRudWxs1Q0ODxAR | |
| EhMUFRZcTlNDb21wb25lbnRzVU5TUkdCXE5TQ29sb3JTcGFjZV8QEk5TQ3VzdG9tQ29s | |
| b3JTcGFjZVYkY2xhc3NPECswLjA2Mjc0NTEwMTc1IDAuMDYyNzQ1MTAxNzUgMC4wNjI3 |
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
| // Replace “.the-fixed-child” for a CSS selector | |
| // that matches the fixed-position element: | |
| const selector = '.the-fixed-child'; | |
| function findCulprits(elem) { | |
| if (!elem) { | |
| throw new Error( | |
| 'Could not find element with that selector' | |
| ); | |
| } |
NewerOlder