Skip to content

Instantly share code, notes, and snippets.

View ElDuderino420's full-sized avatar

Your Dudeness ElDuderino420

  • Under your floor boards
View GitHub Profile
@ElDuderino420
ElDuderino420 / setup-fuzzy-finder.ps1
Created May 5, 2025 05:27
HTML Soundboard Fuzzy Finder
# PowerShell script to create fuzzy-finder.js and attach it to index.html
# Path variables
$htmlFilePath = "$PSScriptRoot\index.html"
$jsFilePath = "$PSScriptRoot\fuzzy-finder.js"
# Check if the HTML file exists
if (-not (Test-Path $htmlFilePath)) {
Write-Error "index.html not found at $htmlFilePath"
exit 1
}
@ElDuderino420
ElDuderino420 / pawn.json
Created August 11, 2017 22:37
SAMP Autocompletions for VS Code
{
"#if !defined … #define … #endif": {
"prefix": "def",
"body": "#if !defined ${1/([A-Za-z0-9_]+).*/$1/}\n\t#define ${1:SYMBOL} ${2:value}\n#endif$0"
},
"#include \"…\"": {
"prefix": "include",
"body": "include \"${1:}\"$0"
},