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
| # OpenVPN Hosts File Manager | |
| # Adds random OpenVPN server addresses from specified countries to hosts file | |
| # Run as Administrator | |
| #Requires -RunAsAdministrator | |
| # Configuration | |
| $HostsPath = "$env:SystemRoot\System32\drivers\etc\hosts" | |
| $BackupPath = "$env:SystemRoot\System32\drivers\etc\hosts.backup" |
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
| # YouTubeMusicAISearch.ps1 | |
| # PowerShell script for AI-powered YouTube music search | |
| # ============= Configuration ============= | |
| # Create config file if it doesn't exist | |
| $configPath = "$PSScriptRoot\config.json" | |
| if (-not (Test-Path $configPath)) { | |
| $defaultConfig = @{ | |
| YouTubeApiKey = "" | |
| MaxResults = 20 |
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
| # youtube_music_ai_search.py | |
| import os | |
| import re | |
| from typing import List, Dict, Any, Optional, Tuple | |
| from dataclasses import dataclass | |
| from enum import Enum | |
| import json | |
| from dotenv import load_dotenv | |
| from googleapiclient.discovery import build |
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
| $query = "c4d mograph abstract cgi photorrealistic animation" | |
| $encodedQuery = [uri]::EscapeDataString($query) | |
| # Search strategies for Google, DuckDuckGo, and Yandex | |
| $strategies = @( | |
| @{ | |
| Name = "Google Site Search" | |
| Url = "https://www.google.com/search?q=site:vimeo.com+$encodedQuery&num=30" | |
| }, | |
| @{ |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.19; | |
| /** | |
| * @title MisesianHyperion - The Most Badass Trading Contract on Ethereum | |
| * @author Ludwig von Mises Reincarnated | |
| * @dev Implements Austrian School economics: subjective value, time preference, spontaneous order | |
| * @notice This contract will make you rich or teach you praxeology trying | |
| */ | |
| contract MisesianHyperion { |
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
| # ===================================================== | |
| # WINDOWS 11 - MODO RAM EXTREMA (8GB → ~2GB idle) | |
| # Script ÚNICO e COMPLETO - Ultra Agressivo | |
| # Execute como ADMINISTRADOR | |
| # ===================================================== | |
| Write-Host "🚨 INICIANDO OTIMIZAÇÃO MÁXIMA DE RAM (8GB)" -ForegroundColor Red | |
| Write-Host "Este script é muito agressivo. Faça ponto de restauração primeiro.`n" -ForegroundColor Yellow | |
| # === Criar Ponto de Restauração === |
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
| <# | |
| .SYNOPSIS | |
| Script de Configuração e Validação de Firewall com Bloqueio Total | |
| .DESCRIPTION | |
| Configura o Firewall do Windows para bloquear todas as conexões de entrada e saída. | |
| #> | |
| # Forçar UTF-8 | |
| [Console]::OutputEncoding = [System.Text.Encoding]::UTF8 |
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
| # WiFi Controller Complete Removal Script for Windows 11 | |
| # Run as Administrator | |
| # WARNING: This script will completely remove WiFi adapters and settings without reinstalling | |
| #Requires -RunAsAdministrator | |
| Write-Host "========================================" -ForegroundColor Cyan | |
| Write-Host "WiFi Controller Complete Removal Tool" -ForegroundColor Cyan | |
| Write-Host "Windows 11 Edition" -ForegroundColor Cyan | |
| Write-Host "========================================" -ForegroundColor Cyan |
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
| # Bluetooth Rescue Script v4.0 | |
| # Fixed version - ASCII only, no smart quotes | |
| $isAdmin = ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) | |
| if (-not $isAdmin) { | |
| Write-Host "Elevating to Administrator..." -ForegroundColor Yellow | |
| Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs | |
| exit | |
| } |
NewerOlder