| Color | Use when | How | Why |
|---|---|---|---|
Primary |
Main brand emphasis and highest-priority actions. | Use as the filled background for primary buttons, selected tabs, focused toggles, and primary selection indicators. Put OnPrimary text or icons on it. |
Establishes the strongest interactive emphasis. |
OnPrimary |
Content is drawn on Primary. |
Use for text, icons, and glyphs inside primary-filled controls. | Keeps primary controls readable. |
PrimaryContainer |
Primary-family UI needs lower emphasis than Primary. |
Use for tonal buttons, chips, and selected list items. Put OnPrimaryContainer content on it. |
Keeps brand association without making every element compete with the main action. |
OnPrimaryContainer |
Content is drawn on PrimaryContainer. |
Use for text and icons in tonal primary controls and selected primary-family items. | Provides contrast for softer primary containers. |
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
| param( | |
| [string]$Url, | |
| [string]$OutputPath, | |
| [int]$ChunkSizeMb = 1, | |
| [int]$MaxRetries = 16 | |
| ) | |
| $ErrorActionPreference = 'Stop' | |
| if ($ChunkSizeMb -lt 1) |
| name | vision-transcribe | ||
|---|---|---|---|
| description | OCR/transcribe or interpret an image file via OpenAI vision (defaults to gpt-5.2). Models gpt-5.2, gpt-5.1, gpt-5-mini, gpt-4.1, gpt-4.1-mini. | ||
| metadata |
|
This skill reads a local image file (PNG/JPG/WebP/GIF) and uses an OpenAI vision-capable model to:
- OCR / transcription (verbatim text extraction)
Use Beads (bd) for issue tracking.
Purpose: Git-native task & memory system for long-running coding agents.
Storage: .beads/ (JSONL, versioned by git).
Model: DAG of work items with dependencies.
Rule:
- Create tasks from user instructions
- Agent always queries
bd readybefore starting work.
- Place the file into
$AppData\Roaming\nushell\completions\pwsh-completions.nu - add the following line at the end of
$AppData\Roaming\nushell\config.nu
source ~/AppData/Roaming/nushell/completions/pwsh-completions.nu- add the following line to
~/AppData/Roaming/nushell/env.nuto execute PowerShell scripts directly:
# to execute powershell scripts- https://snipzy.dev/snippets/liquid-glass-card.html
- https://snipzy.dev/snippets/liquid-glass-button.html
- https://snipzy.dev/snippets/liquid-glass-dropdown.html
- https://snipzy.dev/snippets/liquid-glass-form.html
- https://snipzy.dev/snippets/liquid-glass-icons.html
- https://snipzy.dev/snippets/liquid-glass-nav.html
- https://snipzy.dev/snippets/liquid-glass-search.html
- https://snipzy.dev/snippets/liquid-glass-sidebar.html
- https://snipzy.dev/snippets/liquid-glass-spinner.html
- https://snipzy.dev/snippets/liquid-glass-toggle.html
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
| # Define all available Nerd Fonts | |
| $fonts = @( | |
| '0xProto', '3270', 'Agave', 'AnonymousPro', 'Arimo', 'AurulentSansMono', | |
| 'BigBlueTerminal', 'BitstreamVeraSansMono', 'CascadiaCode', 'CodeNewRoman', | |
| 'ComicShannsMono', 'Cousine', 'DaddyTimeMono', 'DejaVuSansMono', | |
| 'DroidSansMono', 'EnvyCodeR', 'FantasqueSansMono', 'FiraCode', 'FiraMono', | |
| 'Go-Mono', 'Gohu', 'Hack', 'Hasklig', 'HeavyData', 'Hermit', 'iA-Writer', | |
| 'IBMPlexMono', 'Inconsolata', 'InconsolataGo', 'InconsolataLGC', 'Iosevka', | |
| 'IosevkaTerm', 'JetBrainsMono', 'Lekton', 'LiberationMono', 'Lilex', | |
| 'Meslo', 'Monofur', 'Monoid', 'Mononoki', 'MPlus', 'NerdFontsSymbolsOnly', |
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
| # place in $env:APPDATA\warp\Warp\data\themes\standard | |
| accent: '#3f4249' | |
| background: '#0c0d0e' | |
| details: darker | |
| foreground: '#ffffff' | |
| terminal_colors: | |
| bright: | |
| black: '#555555' | |
| blue: '#708f9d' | |
| cyan: '#809edb' |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Drawing; | |
| using System.Windows.Forms; | |
| using System.Reactive.Disposables; | |
| public static class ControlExtensions | |
| { | |
| public static IDisposable IsRightOf(this Control control, Control target, int spacing = 0, VisibilityBehavior behavior = VisibilityBehavior.MaintainSpacing) | |
| { |
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
| SELECT MIN(CustomerNumber + 1) | |
| FROM Customer | |
| WHERE NOT EXISTS (SELECT * FROM Customer WHERE CustomerNumber = MIN(CustomerNumber) + 1) |
NewerOlder