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
| #Requires AutoHotkey v2+ | |
| #SingleInstance Force | |
| global MIC := "FIFINE T669" | |
| SetTray(SoundGetMute(, MIC)) | |
| SetTimer(CheckExes, 1000) | |
| *F24::ToggleMuteAndNotify() | |
| *F23::SetMuteAndNotify(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.Text; | |
| const string SHEET = "Notes"; | |
| const char COLUMN_START = 'A'; | |
| const char COLUMN_END = 'D'; | |
| const int ROW = 2; | |
| var formula = new StringBuilder($"= QUERY(\n\t{SHEET}!{COLUMN_START}{ROW}:{COLUMN_END},\n\t\"select "); | |
| formula.AppendJoin(", ", Enumerable.Range(COLUMN_START, COLUMN_END - COLUMN_START + 1).Select(x => (char)x)); | |
| formula.Append(" where 1=1\"\n"); |
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
| @echo off | |
| set "filters=fps=30,scale=120:120:force_original_aspect_ratio=increase:flags=lanczos" | |
| set "input="%~1"" | |
| set "output="%~dp1Output - %~n1.gif"" | |
| ffmpeg -y -i %input% -vf %filters%,palettegen -f image2pipe pipe:1 | ffmpeg -y -i %input% -f image2pipe -i pipe:0 -filter_complex %filters%[x];[x][1:v]paletteuse %output% | |
| echo Saved to %output% |