Below are all the possible fixes/workarounds I found for potential issues that might arise when attempting to apply the nerd-font patch to InputMono:
- clone the nerd-fonts repo
- install fontforge via brew
| <# :# PowerShell comment protecting the Batch section | |
| @echo off | |
| :# Disabling argument expansion avoids issues with ! in arguments. | |
| setlocal EnableExtensions DisableDelayedExpansion | |
| :# Prepare the batch arguments, so that PowerShell parses them correctly | |
| set ARGS=%* | |
| if defined ARGS set ARGS=%ARGS:"=\"% | |
| if defined ARGS set ARGS=%ARGS:'=''% |
| import requests | |
| import time | |
| import json | |
| # --- KONFIGURATION --- | |
| # Indsæt Token ID for det Polymarket marked du vil overvåge | |
| # Du finder dette ID på Polymarket under "Details" eller via deres API. | |
| # Eksempel: Hvis du vil handle på om BTC er over en vis pris. | |
| POLYMARKET_TOKEN_ID = "INDSAET_TOKEN_ID_HER" |
| import requests | |
| from bs4 import BeautifulSoup | |
| import time | |
| def update(): | |
| request = requests.get('https://mathewsteininger.com/sample-product') | |
| html = request.content | |
| soup = BeautifulSoup(html, 'html.parser') | |
| # Monitor this tag to check stock changes | |
| stock = soup.find("button", {"id": "availability"}) |
| import websocket | |
| import json | |
| import psutil | |
| import os | |
| import curses | |
| import threading | |
| import time | |
| # Global variables to store dynamic values | |
| current_price = "Fetching..." |
| # video - https://youtu.be/VqX4YGabI_k | |
| import requests | |
| import json | |
| import time | |
| url_all = "https://api.bittrex.com/api/v1.1/public/getcurrencies" | |
| INTERVAL = 1 | |
| j = requests.get(url_all) |
| # Fix-Razer.ps1 – grace first, force only if needed | |
| $displayName = 'Razer Game Manager Service 3' | |
| $exeName = 'GameManagerService3' | |
| # --- 1 try a normal Stop-Service (graceful) ------------------------------- | |
| try { | |
| $svc = Get-Service -DisplayName $displayName -ErrorAction Stop | |
| if ($svc.Status -ne 'Stopped') { | |
| Write-Verbose "Sending SERVICE_CONTROL_STOP to $displayName" | |
| Stop-Service -Name $svc.Name -ErrorAction Stop -WarningAction SilentlyContinue |
| #Requires AutoHotkey v2+ | |
| #SingleInstance Force | |
| global MIC := "FIFINE T669" | |
| Notify(false) | |
| SetTimer(CheckExes, 1000) | |
| *F24:: | |
| { |
| ; | |
| ; AutoHotkey Version: v1.1.22.06 | |
| ; Language: English | |
| ; Platform: Windows 10 | |
| ; Author: Andy Terra <github.com/airstrike> | |
| ; | |
| ; Script Function: | |
| ; Toggle Microphone Mute -- assumes it is located at WAVE:1, device #2 | |
| ; Use the SoundCardAnalysis script to figure out where your mic is | |
| ; https://www.autohotkey.com/docs/commands/SoundSet.htm#Ex |