This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ======================================== | |
| # 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 | |
| # --------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <#PSScriptInfo | |
| .VERSION 2.2.0 | |
| .GUID 8f696a63-fc1a-416a-bc32-6b4e52898647 | |
| .AUTHOR NotNahid | |
| .DESCRIPTION | |
| Dynamic utility launcher that downloads and runs various tools. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Add-Type -AssemblyName System.Windows.Forms | |
| Add-Type -AssemblyName System.Drawing | |
| # ======================== | |
| # ADVANCED GRAPHICS SETUP | |
| # ======================== | |
| Add-Type @" | |
| using System; | |
| using System.Runtime.InteropServices; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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', { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |