Skip to content

Instantly share code, notes, and snippets.

View rohzzn's full-sized avatar
🪴

Rohan rohzzn

🪴
View GitHub Profile

ShutTab Privacy Policy

Last updated: August 2025

Overview

ShutTab is committed to protecting your privacy. This privacy policy explains how our browser extension handles data and your personal information.

Data Collection

@rohzzn
rohzzn / e-commerce.ipynb
Created December 1, 2023 16:16
E-commerce
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
🌞 Morning 139 commits █████▏░░░░░░░░░░░░░░░ 24.8%
🌆 Daytime 177 commits ██████▋░░░░░░░░░░░░░░ 31.6%
🌃 Evening 53 commits █▉░░░░░░░░░░░░░░░░░░░ 9.4%
🌙 Night 192 commits ███████▏░░░░░░░░░░░░░ 34.2%
🔫 Counter-Strike: Global Offensive 🕘 2435 hrs 8 mins
🎮 Brawlhalla 🕘 323 hrs 8 mins
💻 Wallpaper Engine 🕘 80 hrs 10 mins
🎮 HITMAN™ 2 🕘 39 hrs 35 mins
🎮 Watch_Dogs 🕘 28 hrs 12 mins
@rohzzn
rohzzn / doremon.py
Created December 3, 2022 13:52
Python Turtle Doremon
from turtle import *
# Doraemon with Python Turtle
def ankur(x, y):
penup()
goto(x, y)
pendown()
# Block-Steam-Invites
Allows user specific value to block all users under that value.
Able to block only private profiles.
Able to block only VAC or Trading banned accounts.
# Installation:
You will need to install this script using the
Google Chrome: [Tampermonkey extension](https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo).
Firefox: [Greasemonkey addon](https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/).
@rohzzn
rohzzn / lines
Last active January 21, 2023 01:08
HTML +3.0k/ -0 █████████▊░░░░░░░░░░░ 47.0%
CSS +2.3k/ -10 ███▏░░░░░░░░░░░░░░░░░ 15.3%
Markdown +685/ -74 ███░░░░░░░░░░░░░░░░░░ 14.6%
SVG +248/ -0 ██▍░░░░░░░░░░░░░░░░░░ 11.4%
Python +715/ -2 █▊░░░░░░░░░░░░░░░░░░░ 8.8%
JavaScript +138/ -0 ▌░░░░░░░░░░░░░░░░░░░░ 2.4%
JSON +35/ -7 ░░░░░░░░░░░░░░░░░░░░░ 0.5%
Shell +4/ -0 ░░░░░░░░░░░░░░░░░░░░░ 0.1%
@rohzzn
rohzzn / music
Last active October 20, 2025 00:54
A COLD PLAY The Kid LAROI
ILoveUIHateU Playboi Carti
Can't Tell Me Nothing Kanye West
Skydweller Vieze Asbak & Hades
Sahiba Aditya Rikhari
CRUSH (with Travis Scott) Playboi Carti & T
Headlines Drake
Sugar On My Tongue Tyler, The Creator
Give Me More - Just Rawer Aloboi
POP OUT Playboi Carti
@rohzzn
rohzzn / mirror.js
Last active November 6, 2022 13:49
import selfcore from "selfcore";
const client = new selfcore();
const gateway = new selfcore.Gateway(
"TOKEN"
);
gateway.on("message", (m) => {
if (m.channel_id === "CHANNEL_ID") {
let content = m.content ? m.content : { embeds: [m.embeds[0]] };
@rohzzn
rohzzn / hackerrank_to_csv.py
Created November 6, 2022 06:25
Leaderboard to CSV
import csv
import getpass
import sys
import requests
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36'}
def print_get_contest(email, password):