Skip to content

Instantly share code, notes, and snippets.

View pa-0's full-sized avatar

Peter Abbasi pa-0

View GitHub Profile
@ThioJoe
ThioJoe / Get_All_Shell_Folder_Shortcuts.ps1
Last active December 28, 2024 09:48
Fetches all shell folders from Windows Registry and creates a shortcut to each, while attempting to determine the proper name and icon. Also outputs CSV file with results.
# NOTE - THIS SCRIPT IS NOW OBSOLETE - SEE MY OTHER REPO FOR A MUCH MORE COMPREHENSIVE TOOL: https://github.com/ThioJoe/Windows-Super-God-Mode
# Get All Shell Folder Shortcuts Script (Updated 8/10/2024)
# Original source: https://gist.github.com/ThioJoe/16eac0ea7d586c4edba41b454b58b225
# This PowerShell script is designed to find and create shortcuts for all special shell folders in Windows.
# These folders can be identified through their unique Class Identifiers (CLSIDs) or by their names.
# The script also generates CSV files listing these folders and associated tasks/links.
# How to Use:
# 1. Open PowerShell and navigate to the path containing this script using the 'cd' command.
@pa-0
pa-0 / Group Policy
Last active July 5, 2024 00:01 — forked from LXGaming/Group Policy
Windows Bullshittery Begone
Windows Components -> News and interests
- Enable news and interests on the taskbar: Enabled
Windows Components -> Search
- Allow Cortana: Disabled
- Do not allow web search: Enabled
- Don't search the web or disable web results in Search: Enabled
Network -> DNS Client
- Turn off smart multi-homed name resolution: Enabled
@ninmonkey
ninmonkey / Result Summaries using Arrays and Export-Excel.ps1
Last active August 19, 2024 19:33
Quick example of saving results to arrays when implicit output was getting complicated
using namespace System.Collections.Generic
# Say you want one table that has all results, with fixed columns
[list[Object]]$Summary = @()
# and a second array that's just errors with extra info
[list[Object]]$ErrorSummary = @()
foreach( $user in $UserCsv ) {
$result = [pscustomobject]@{
function Wait-TranscriptEnd {
<##
.SYNOPSIS
Waits for the creation and completion of a PowerShell transcript file (helpful in race conditions).
.DESCRIPTION
This function polls for the existence of a transcript file and then monitors its content until a specific end pattern is detected.
.PARAMETER transcriptPath
The path to the transcript file. Required.
.PARAMETER pollSeconds
The polling interval in seconds. Default is 10 seconds.
@pa-0
pa-0 / Fixes.md
Last active June 15, 2024 05:50 — forked from ELLIOTTCABLE/nerd-patcher-input-mono.sh
Guide: Nerd Font Input Mono Patch

Nerd-Patcher Fixes for Input Mono

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:

[from gist Comments]

Found success with:

  • clone the nerd-fonts repo
  • install fontforge via brew
@rf5860
rf5860 / SuperUser_CopyCode.user.js
Last active August 23, 2024 15:33
Adds a clipboard icon to code elements for easy copying on superuser.com
// ==UserScript==
// @name SuperUser Copy Code
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Adds a clipboard icon to code elements for easy copying
// @author rf5860
// @match *://superuser.com/*
// @downloadURL https://gist.github.com/rf5860/cd139a501ac057b8bba283d0b48f5bac/raw/SuperUser_CopyCode.user.js
// @updateURL https://gist.github.com/rf5860/cd139a501ac057b8bba283d0b48f5bac/raw/SuperUser_CopyCode.user.js
// @grant GM_setClipboard
@pa-0
pa-0 / github_backup.md
Created June 5, 2024 00:00 — forked from dreikanter/github_backup.md
Keep your 🧳 together

Create Github access token: https://github.com/settings/tokens

Setup backup tool:

pip3 install github-backup

export GITHUB_BACKUP_TOKEN=ghp_bananabananabananabananabananabanana
export GITHUB_BACKUP_USER=dreikanter
export GITHUB_BACKUP_PATH=~/github-backup/$GITHUB_BACKUP_USER
@jborean93
jborean93 / Split-ExeArgument.ps1
Last active August 19, 2024 19:40
Splits the input string using the Win32 argument splitter
# Copyright: (c) 2024, Jordan Borean (@jborean93) <[email protected]>
# MIT License (see LICENSE or https://opensource.org/licenses/MIT)
#Requires -Module Ctypes
Function Split-ExeArgument {
[OutputType([string])]
[CmdletBinding()]
param (
[Parameter(Mandatory, ValueFromPipeline)]
@pa-0
pa-0 / README.md
Created June 1, 2024 05:19 — forked from typebrook/README.md
A bash script for gist management #bash #gist
@am11
am11 / CHM3PerfectHashGenerator.cs
Last active August 20, 2024 23:08
CHM3 Hash Table Generator
using System;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
// input format is hex with 0x prefix; one per line:
// 0x5DF
// 0x123
// etc.
CHM3PerfectHashGenerator hasher = new(File.ReadAllLines(args[0])