Skip to content

Instantly share code, notes, and snippets.

View mudassaralichouhan's full-sized avatar
:octocat:
It’s not a bug; it’s an undocumented feature.

Mudassar Ali mudassaralichouhan

:octocat:
It’s not a bug; it’s an undocumented feature.
View GitHub Profile
@mudassaralichouhan
mudassaralichouhan / Trade-Decision-Prompt.md
Last active August 26, 2026 10:13
BTC SMA Signal — A moving-average-based trading indicator that uses fast, slow, and trend SMAs to identify potential bullish and bearish crossover signals, with price and trend confirmation to filter weaker signals.

BTC/USDT Multi-Timeframe Trade Decision Prompt

I will provide 3 screenshots of BTC/USDT:

  • 15-minute chart
  • 30-minute chart
  • 1-hour chart

Analyze all 3 charts together and tell me whether the best action right now is:

@mudassaralichouhan
mudassaralichouhan / size_mb.sql
Last active June 29, 2026 06:37
check the size of all tables in your database
SELECT
table_schema AS database_name,
ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS total_size_mb
FROM information_schema.tables
WHERE table_schema = 'swype'
GROUP BY table_schema;
SELECT
table_name AS `Table`,
import crypto from 'crypto';
export class BloomFilter {
private bitArray: boolean[];
private size: number;
private hashCount: number;
constructor(size: number = 10000, hashCount: number = 3) {
this.size = size;
this.hashCount = hashCount;
{
"info": {
"_postman_id": "ec28b39c-0db5-4f71-b34e-15dbe9d21e07",
"name": "zatca",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "17171175"
},
"item": [
{
"name": "auth",
@mudassaralichouhan
mudassaralichouhan / adb-over-wifi.md
Created November 14, 2025 14:57
How you connected your Vivo Y33s to your Mac using ADB over Wi-Fi, and how you accessed /storage (including WhatsApp folder).

📘 Complete Guide: Connect Vivo Y33s (Funtouch OS 13) to macOS via ADB Over Wi-Fi — No USB Needed

This guide explains every step you used to:

✔ Install ADB on macOS ✔ Enable Wireless Debugging on Vivo ✔ Pair the phone with your Mac (no USB) ✔ Connect over Wi-Fi ✔ Access internal storage (/storage/emulated/...) ✔ Browse WhatsApp folder

@mudassaralichouhan
mudassaralichouhan / upload.md
Created November 10, 2025 09:11
Upload data on remote machine

for download

server

python3 -m http.server 8000 --directory /var/www/html/staging

client

curl -O http://178.128.42.36:8000/database/database.sqlite
@mudassaralichouhan
mudassaralichouhan / Docker
Last active September 8, 2025 22:39
search-engine-core
# Build stage
FROM ubuntu:22.04 AS builder
#FROM ghcr.io/hatef-ir/mongodb-server:latest as builder
# Prevent interactive prompts during package installation
ENV DEBIAN_FRONTEND=noninteractive
# Install additional build dependencies
RUN apt-get update && apt-get install -y \
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ludo Board - Box on the Edge</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
/* Custom styles for star squares */
.star-square {
@mudassaralichouhan
mudassaralichouhan / extract-audio-from-video.md
Last active August 27, 2025 07:38
Extract Audio from Video & Convert to Text in C++

🧱 PROJECT MODULES: "Extract Audio from Video & Convert to Text in C++"


🎬 Module 1: Extract Audio from Video

Goal: Extract audio track from a video file.

Tasks:

Here’s a clear pathway to making your C++ Network Packet Analyzer advanced, genuinely useful, and attractive as a real-world project:


🚀 How to Make Your Packet Analyzer Advanced & Real-World Worthy

To transform a basic educational project into a practical, marketable, and impressive tool, you’ll need to add valuable features that solve real problems:

Advanced Features & Their Real-World Applications