Skip to content

Instantly share code, notes, and snippets.

View jameelkaisar's full-sized avatar

Jameel Kaisar jameelkaisar

  • Srinagar, Kashmir
View GitHub Profile
@aravindanve
aravindanve / bypass-disable-devtool.md
Last active December 4, 2025 11:46
Bypass disable-devtool

(Working as of 2025-02-09)

There are websites that use disable-devtool to prevent you from opening or using devtools. They typically prevent you from right clicking or using the keyboard shortcut to open devtools. Even if you successfully do so, they detect it and redirect you elsewhere. You can bypass this by using one of the following ways.

Opening devtools

If the shortcut F12 on Windows or Option + ⌘ + I on Mac do not work. Press the three vertically aligned dots in the top right corner of your Google Chrome or Microsoft Edge window. Under the section "More Tools", you'll see the option to select "Developer Tools" which opens the toolkit in your window.

@bmaupin
bmaupin / free-database-hosting.md
Last active December 6, 2025 17:21
Free database hosting
@bmaupin
bmaupin / free-backend-hosting.md
Last active December 1, 2025 21:03
Free backend hosting
@DusanMadar
DusanMadar / TorPrivoxyPython.md
Last active November 7, 2025 21:55
A step-by-step guide how to use Python with Tor and Privoxy

A step-by-step guide how to use Python with Tor and Privoxy

Latest revision: 2025-07-24.

Tested on Ubuntu 24.04 Docker container. The Dockerfile is a single line FROM ubuntu:24.04. Alternatively, you can simply run docker run -it ubuntu:24.04 bash.

NOTE: stopping services didn't work for me for some reason. That's why there is kill $(pidof <service name>) after each failed service <service name> stop to kill it.

References

@pklaus
pklaus / ddnsserver.py
Last active August 14, 2025 03:51 — forked from andreif/Simple DNS server (UDP and TCP) in Python using dnslib.py
Simple DNS server (UDP and TCP) in Python using dnslib.py
#!/usr/bin/env python
"""
LICENSE http://www.apache.org/licenses/LICENSE-2.0
"""
import argparse
import datetime
import sys
import time
import threading