Skip to content

Instantly share code, notes, and snippets.

View Iaotle's full-sized avatar
💣

Vadim Isakov Iaotle

💣
View GitHub Profile
# --- Timing state ---
$global:__lastStart = $null
$global:LastCommandDuration = [timespan]::Zero
$global:LastExitStatus = $null
# Record start time each time Enter is pressed
Set-PSReadLineKeyHandler -Key Enter -BriefDescription 'AcceptLineWithTimer' -ScriptBlock {
$global:__lastStart = Get-Date
[Microsoft.PowerShell.PSConsoleReadLine]::AcceptLine()
} | Out-Null
Computer Information:
Manufacturer: ASUS
Model: System Product Name
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: AuthenticAMD
CPU Brand: AMD Ryzen 9 9950X3D 16-Core Processor
CPU Family: 0x1a
@Iaotle
Iaotle / audio.ahk
Last active August 19, 2025 09:56
AutoHotkey for managing bluetooth audio along with a speaker-headset pair.
; Requires VA >= 2.3 https://www.autohotkey.com/board/topic/21984-vista-audio-control-functions/
; Requires https://bluetoothinstaller.com/bluetooth-command-line-tools/BluetoothCLTools-1.2.0.56.exe
#SingleInstance
#Include %A_ScriptDir%\VA.ahk
SendMode Input
; Shogun 2 bind for borderless:
; F12 & MButton::
@Iaotle
Iaotle / omegle.js
Last active July 6, 2023 06:03 — forked from goto-dev-null/omegle.js
JS script to skip undesirables on omegle and auto-retry
var secondsToWait = 30;
var secondsWaited = 0;
var introMsg = "M24";
var chatText;
var resps;
var yourlines;
var strangerlines;
var chatStarted = false;