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
| --- | |
| name: triage | |
| description: Interactively triage braindb hygiene problems. Assesses uncategorized notes, inbox overflow, and stale worktrees, then lets the user pick which to work on. | |
| disable-model-invocation: true | |
| --- | |
| # Braindb Triage | |
| You are helping the user triage braindb hygiene problems. This is a **gradual** process — don't try to do everything at once. |
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
| chunk-vendors.6aa05006.js:68 | |
| GET https://www.abnamro.nl/session 401 (Unauthorized) | |
| i @ chunk-vendors.6aa05006.js:68 | |
| c @ chunk-vendors.6aa05006.js:68 | |
| o @ chunk-vendors.6aa05006.js:68 | |
| f @ chunk-vendors.6aa05006.js:68 | |
| p @ chunk-vendors.6aa05006.js:68 | |
| await in p |
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
| SetTitleMatchMode 2 | |
| global Destination := "D:\OneDrive\3dprinter\things" | |
| ;global Destination := "D:\trash\testing" | |
| Loop %0% | |
| { | |
| Item := %A_Index% | |
| Extract(Item) | |
| FileDelete, %Item% | |
| } |
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
| cd /usr/share/hassio/homeassistant/custom_components | |
| wget https://github.com/hacs/integration/releases/latest/download/hacs.zip | |
| wget https://gist.githubusercontent.com/iamkarlson/c9bc2cad7440b8f2ac72b933c29fdba4/raw/2a595f309390112034692f48a32cab26b1dcccf5/unzip.py | |
| python3 unzip.py hacs.zip | |
| ha core restart |
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
| #!/usr/bin/env python3 | |
| import sys | |
| from zipfile import PyZipFile | |
| for zip_file in sys.argv[1:]: | |
| print("unzipping %s"%zip_file) | |
| pzf = PyZipFile(zip_file) | |
| dir = zip_file.replace('.zip','') | |
| pzf.extractall(dir) |
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
| adb tcpip 5555 && adb connect "$(adb shell "ip addr show wlan0 | grep -e wlan0$ | cut -d\" \" -f 6 | cut -d/ -f 1"):5555" |
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 Group-ByDate(){ | |
| [Cmdletbinding(SupportsShouldProcess=$TRUE)] | |
| param | |
| ( | |
| [parameter(Mandatory=$True, ValueFromPipeline=$True, Position=0)] | |
| [String[]]$Folder | |
| ) | |
| Write-Output "Arranging files in $folder" | |
| $exist=Test-Path $folder; |
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
| push-location $HOME | |
| $repoPath = 's:\sideprojects\dotfiles' | |
| cmd /c mklink .vimrc $repoPath\vim\.vimrc | |
| cmd /c mklink .gvimrc $repoPath\vim\.gvimrc | |
| cmd /c mklink .vsvimrc $repoPath\vim\.vsvimrc | |
| cmd /c mklink /d .vim $repoPath\vim\ | |
| push-location .config | |
| push-location nvim | |
| cmd /c mklink init.vim $repoPath\vim\init.vim | |
| cmd /c mklink ginit.vim $repoPath\vim\ginit.vim |
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 global:Get-AssemblyInfo() | |
| { | |
| param([switch]$Recurse) | |
| if($Recurse){ | |
| get-childitem * -Recurse -include *.dll,*.exe | foreach-object { "{0}\{1}`t{2}" -f $_.Directory, $_.Name, [System.Diagnostics.FileVersionInfo]::GetVersionInfo($_).FileVersion } | |
| } else{ | |
| get-childitem * -include *.dll,*.exe | foreach-object { "{0}`t{1}" -f $_.Name, [System.Diagnostics.FileVersionInfo]::GetVersionInfo($_).FileVersion } | |
| } | |
| } |
NewerOlder