Skip to content

Instantly share code, notes, and snippets.

View ayoubzulfiqar's full-sized avatar
💫
Lord of Mysteries

Sensei ayoubzulfiqar

💫
Lord of Mysteries
View GitHub Profile
@ayoubzulfiqar
ayoubzulfiqar / proxify.py
Last active December 4, 2025 13:14
Reverse Proxy Test Script
import argparse
import asyncio
import concurrent.futures
import gzip
import io
# import hashlib
import json
import logging
@ayoubzulfiqar
ayoubzulfiqar / DNSUnlocker.ps1
Last active November 24, 2025 14:11
DNS Unlock All Website Using GoodbyeDPI ( Deep Pocket Inspection ) With AutoTaskScheduler.
<#
.SYNOPSIS
Enhanced GoodbyeDPI Auto-Installation and Configuration Script
.DESCRIPTION
This script automates the setup of GoodbyeDPI for automatic startup with enhanced features:
- Automatic download of GoodbyeDPI
- Multiple mode selection
- Comprehensive error handling
- Logging and monitoring
- Health checks and self-repair
@ayoubzulfiqar
ayoubzulfiqar / flutter_rules.md
Created November 24, 2025 10:40
Flutter Rules for AI

AI rules for Flutter

You are an expert in Flutter and Dart development. Your goal is to build beautiful, performant, and maintainable applications following modern best practices. You have expert experience with application writing, testing, and running Flutter applications for various platforms, including desktop, web, and mobile platforms.

Interaction Guidelines

  • User Persona: Assume the user is familiar with programming concepts but
@ayoubzulfiqar
ayoubzulfiqar / form_spammer.py
Created October 14, 2025 05:47
Spam Form Based Bug
#!/usr/bin/env python3
import asyncio
import random
import sys
import names
from playwright.async_api import async_playwright
class ContactFormBot:
@ayoubzulfiqar
ayoubzulfiqar / leetcode.py
Created October 8, 2025 11:40
Leetcode Dtata Scraper
import requests
import json
import time
import os
from typing import Dict, List, Any
from concurrent.futures import ThreadPoolExecutor, as_completed
import threading
class LeetCodeDataFetcher:
def __init__(self, max_workers=3):
@ayoubzulfiqar
ayoubzulfiqar / hypercorn.md
Last active September 10, 2025 15:53
Hypercorn Script to run the Server in http2 for FASTAPI

Hypercorn Configuration

import asyncio
import logging
import os
import signal
import ssl
from datetime import datetime
from typing import Dict, List, Optional, Set, Tuple
@ayoubzulfiqar
ayoubzulfiqar / prompts.md
Last active September 9, 2025 09:35
The Prompts - Not Comprihensive

Prompts

General Prompts

[
 {
   "act": "An Ethereum Developer",
   "prompt": "Imagine you are an experienced Ethereum developer tasked with creating a smart contract for a blockchain messenger. The objective is to save messages on the blockchain, making them readable (public) to everyone, writable (private) only to the person who deployed the contract, and to count how many times the message was updated. Develop a Solidity smart contract for this purpose, including the necessary functions and considerations for achieving the specified goals. Please provide the code and any relevant explanations to ensure a clear understanding of the implementation."
 },
 {
@ayoubzulfiqar
ayoubzulfiqar / app.tsx
Last active July 31, 2025 18:06
Need Refining Website for SI.yk
import React, { useState, useEffect, useRef } from 'react';
import { ChevronDown, Twitter, Linkedin, Instagram, Facebook } from 'lucide-react';
// Use this to ensure icons work.
// For the purpose of this self-contained immersive, we'll assume 'lucide-react' is available.
// =============================================================================
// Helper Components (to keep the main App component clean)
// =============================================================================
@ayoubzulfiqar
ayoubzulfiqar / sould.md
Last active July 31, 2025 13:57
ShouldHide and DO at the END

You cannot completely hide files like .tsx source code or JSON responses from users who have access to browser developer tools, but you can make them much harder to access and understand. Here are practical approaches:


1. For TypeScript/TSX Files

A. Build and Bundle Your Code

  • Why: Raw .tsx files exist only during development. In production, they should be compiled to JavaScript and bundled.
  • How: