software to run:
vscode insider zed ghostty dbgate lepton opencode-desktop podman-desktop docker-desktop
software to run:
vscode insider zed ghostty dbgate lepton opencode-desktop podman-desktop docker-desktop
Service name Startup type Logon As
Microsoft Account Sign-in Assistant Manual Local System account
Windows License Manager Service Manual Local Service
Windows Update Manual Local System account
Background Intelligent Transfer Service Manual Local System account
search for print that does not # before and space before or after #
^(?![\s]*#).*\bprint| # fnm completion related | |
| using namespace System.Management.Automation | |
| using namespace System.Management.Automation.Language | |
| # end fnm completion related | |
| # Import modules | |
| Import-Module Terminal-Icons | |
| Import-Module PSReadLine | |
| Import-Module posh-git | |
| Import-Module posh-sshell |
git config --global alias.undo '!git reset --hard HEAD^ && git clean -df'
git config --global alias.stash-all '!f() { git stash push --include-untracked -m "$(date +"%Y-%m-%d %H:%M:%S")"; }; f'
| # -*- mode: python ; coding: utf-8 -*- | |
| import os | |
| from PyInstaller.utils.hooks import collect_all | |
| datas = [] | |
| binaries = [] | |
| hiddenimports = ['customtkinter', 'darkdetect', 'utils', 'utils.path_resolver', 'utils.subprocess_utils', 'utils.pdf_processor'] | |
| tmp_ret = collect_all('customtkinter') | |
| datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2] |
| download greenclip from https://github.com/erebe/greenclip/releases | |
| put `greenclip` in $PATH (i did put it in /usr/bin) | |
| under ~/.config, create 1 file `.config/greenclip.toml` | |
| *.config/greenclip.toml* | |
| ```BASH | |
| [greenclip] | |
| blacklisted_applications = [] |
| curl http://localhost:1234/v1/chat/completions \ | |
| -H "Content-Type: application/json" \ | |
| -d '{ | |
| "model": "gemma-3n-e2b-it", | |
| "messages": [ | |
| { "role": "system", "content": "Always answer in rhymes. Today is Thursday" }, | |
| { "role": "user", "content": "What day is it today?" } | |
| ], | |
| "temperature": 0.7, | |
| "max_tokens": -1, |
Install only the dev group (without base dependencies):
uv sync --only-group dev Install multiple groups at once:
uv sync --group dev --group prod Install all groups:
uv sync --all-groups
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "copy", | |
| "singleLine": false |