- 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
| # source: https://adamtheautomator.com/powershell-iis/ | |
| New-Item -ItemType Directory -Name 'MyWebsite' -Path 'C:\inetpub\wwwroot'; | |
| New-IISSite ` | |
| -Name 'MyWebsite' ` | |
| -PhysicalPath 'C:\inetpub\wwwroot\MyWebsite'; | |
| New-IISSiteBinding ` | |
| -Name 'MyWebsite' ` | |
| -BindingInformation "*:443:" ` | |
| -CertificateThumbPrint "D043B153FCEFD5011B9C28E186A60B9F13103363" ` |
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
| function Get-InternetTime | |
| { | |
| param($NtpServer = 'time.windows.com') | |
| try | |
| { | |
| $address = [Net.Dns]::GetHostEntry($NtpServer).AddressList[0]; | |
| } | |
| catch | |
| { |
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
| ^(.+)\n(?=.*^\1$) |
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) |
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
| # 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
| # 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', |
- 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 scriptsUse 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.