Skip to content

Instantly share code, notes, and snippets.

View NotNahid's full-sized avatar
😌
Relaxed

Not Nahid NotNahid

😌
Relaxed
View GitHub Profile
[
{
"Name": "Ghost Typer",
"Link": "https://gist.githubusercontent.com/NotNahid/70de29086ac0bbeab57a9a75a4f04a89/raw/copy-script.ps1",
"Description": "Automatically types predefined text anywhere on your system.",
"Category": "Automation",
"Tags": ["automation", "typing", "macro", "productivity"]
},
{
"Name": "Bulk Rename Tool",
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
# ============================================
# MAIN FORM
# ============================================
$form = New-Object System.Windows.Forms.Form
$form.Text = "Network Speed Monitor"
$form.Size = New-Object System.Drawing.Size(450, 380)
$form.StartPosition = "CenterScreen"
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
Add-Type -AssemblyName PresentationCore
# ========================== CONFIG / PERSISTENCE ==========================
$global:AppDataFolder = Join-Path $env:APPDATA "FileOrganizerPro"
$global:ConfigFile = Join-Path $global:AppDataFolder "config.json"
$global:StatsFile = Join-Path $global:AppDataFolder "stats.json"
$global:LogFolder = Join-Path $global:AppDataFolder "logs"
# ========================================
# FFmpeg Smart Studio v9 - FULL FEATURED
# ========================================
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
# For async/background work
Add-Type -AssemblyName WindowsBase
# ---------------------------
<#PSScriptInfo
.VERSION 2.2.0
.GUID 8f696a63-fc1a-416a-bc32-6b4e52898647
.AUTHOR NotNahid
.DESCRIPTION
Dynamic utility launcher that downloads and runs various tools.
@NotNahid
NotNahid / bulk_rename_powershell.ps1
Last active February 5, 2026 12:05
bulk_rename
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
# --- Global Logic ---
$script:History = New-Object System.Collections.Generic.Stack[Object]
$script:fileObjects = @()
$script:CurrentPath = ""
$script:PreviewMode = $true
# --- Theme Colors ---
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
# ========================
# ADVANCED GRAPHICS SETUP
# ========================
Add-Type @"
using System;
using System.Runtime.InteropServices;
@NotNahid
NotNahid / copy-script.ps1
Last active February 5, 2026 05:43
like the Chris Titus
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
# Create main form
$form = New-Object System.Windows.Forms.Form
$form.Text = "Ghost Typer"
$form.Size = New-Object System.Drawing.Size(500, 400)
$form.StartPosition = "CenterScreen"
$form.FormBorderStyle = "FixedDialog"
$form.MaximizeBox = $false
@NotNahid
NotNahid / godmode.js
Last active February 15, 2026 11:25
God Mode Bookmarklet
(function() {
/* ========================================
1. SECURITY & POLICY SETUP (TrustedHTML Fix)
======================================== */
if (document.getElementById('gm-ui')) return;
let policy = null;
try {
if (window.trustedTypes && window.trustedTypes.createPolicy) {
policy = window.trustedTypes.createPolicy('gm-ui-policy', {
param(
[switch]$Help,
[string]$Name = "User"
)
function Show-Help {
Write-Host @"
MyTool Usage:
-Help Show this help info
-Name <string> Specify your name for greeting