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
    
  
  
    
  | #!/bin/bash | |
| # ============================================================================== | |
| # Apache HTTPS Reverse Proxy Setup Script (Enhanced) | |
| # | |
| # This script automates the setup of an Apache2 reverse proxy with a free | |
| # Let's Encrypt SSL certificate. It avoids SSL config issues by letting | |
| # Certbot create the HTTPS vhost, then injecting proxy settings. | |
| # | |
| # Usage: sudo ./setup_domain.sh <your_domain> <local_port> <your_email> | 
  
    
      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
    
  
  
    
  | import io | |
| from typing import Any, Dict, List | |
| import moviepy.editor as mp | |
| import numpy as np | |
| import streamlit as st | |
| import torch | |
| import torchaudio | |
| import torchaudio.transforms as T | |
| from streamlit_mic_recorder import mic_recorder | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| # Check if MySQL is already installed | |
| if ! command -v mysql &> /dev/null; then | |
| echo "MySQL is not installed. Installing MySQL Server..." | |
| apt update | |
| apt install -y mysql-server | |
| else | |
| echo "MySQL is already installed." | |
| fi | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| # Prompt the user for swap size and swappiness | |
| read -p "Enter the swap size (e.g., 4G, 2G): " swap_size | |
| read -p "Enter the swappiness value (0-100): " swappiness | |
| # Create the swap file with the specified size | |
| fallocate -l "$swap_size" /swapfile | |
| # Set permissions on the swap file | 
  
    
      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
    
  
  
    
  | $trigger=New-JobTrigger -Weekly -At "7:00AM" -DaysOfWeek "Monday" | |
| $action="PowerShell.exe -ExecutionPolicy ByPass -File D:\Logs\export-logs.ps1" | |
| $sb=[Scriptblock]::Create($action) | |
| Register-ScheduledJob -Name "Export Logs" -ScriptBlock $sb -Trigger $trigger | 
  
    
      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
    
  
  
    
  | #!/usr/bin/python3 | |
| import argparse | |
| from amp_tools import TransformHtmlToAmp | |
| import codecs | |
| arg_parser = argparse.ArgumentParser( description = "Copy source_file as target_file." ) | |
| arg_parser.add_argument( "source_file" ) | |
| arg_parser.add_argument( "target_file" ) | |
| arguments = arg_parser.parse_args() | 
  
    
      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
    
  
  
    
  | from bs4 import BeautifulSoup | |
| import requests, csv | |
| import lxml | |
| from requests.structures import CaseInsensitiveDict | |
| ads = [] | |
| key = input("Enter a keyword/domain/brand: ") | |
| headers = CaseInsensitiveDict() | |
| headers["authority"] = "www.google.com" | 
  
    
      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
    
  
  
    
  | forfiles /s /m *.gif /c "cmd /c mkdir @FNAME && ffmpeg -i "@FILE" @FNAME/output_%%04d.jpg" | 
  
    
      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
    
  
  
    
  | reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies" /f | |
| reg delete "HKCU\Software\Microsoft\WindowsSelfHost" /f | |
| reg delete "HKCU\Software\Policies" /f | |
| reg delete "HKLM\Software\Microsoft\Policies" /f | |
| reg delete "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies" /f | |
| reg delete "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsStore\WindowsUpdate" /f | |
| reg delete "HKLM\Software\Microsoft\WindowsSelfHost" /f | |
| reg delete "HKLM\Software\Policies" /f | |
| reg delete "HKLM\Software\WOW6432Node\Microsoft\Policies" /f | |
| reg delete "HKLM\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Policies" /f | 
  
    
      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
    
  
  
    
  | import requests | |
| import csv | |
| import concurrent.futures | |
| import sys, time | |
| import bs4 | |
| domain = sys.argv[1] | |
| csv_file = sys.argv[2] | |
| headers = { | 
NewerOlder