Skip to content

Instantly share code, notes, and snippets.

View jatinkrmalik's full-sized avatar
👨‍💻
munching code

Jatin K Malik jatinkrmalik

👨‍💻
munching code
View GitHub Profile
@jatinkrmalik
jatinkrmalik / oh-my-openagent.json
Last active August 2, 2026 19:17
[August 2026] Canonical, versioned home for the OpenCode Go + oh-my-openagent routing snippet.
{
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-opencode.schema.json",
"model_fallback": true,
"runtime_fallback": {
"enabled": true,
"retry_on_errors": [400, 429, 503, 529],
"max_fallback_attempts": 3,
"cooldown_seconds": 60,
"timeout_seconds": 30,
"notify_on_fallback": true
@jatinkrmalik
jatinkrmalik / README.md
Last active February 3, 2026 08:14
OpenClaw Audio Binary Injection Fix // Prevents voice messages from being embedded as raw binary text (wastes tokens, breaks sessions). Works for Telegram, Discord, and all voice platforms. Temporary fix until PRs #3904/#4235 merge.

OpenClaw Voice Message Binary Injection Fix

Fixes voice messages being embedded as raw binary instead of just the transcription


Table of Contents

@jatinkrmalik
jatinkrmalik / delete_tweets.js
Created July 13, 2025 20:30
Client-side browser script that celetes tweets from your profile posted after a specific date and time while respecting rate limiter
/**
* @description Deletes tweets from your profile posted after a specific date and time.
* @instructions Paste this entire script into your browser's developer console
* on your Twitter/X profile page (e.g., https://x.com/your-username)
* and press Enter.
* DISCLAIMER: USE AT YOUR OWN RISK. YOUR ACCOUNT MIGHT GET FLAGGED/SUSPENDED. I BEAR NO RESPONSIBILITY
*/
async function deleteSpamTweets() {
// --- CONFIGURATION ---
// Set the cutoff date and time. Tweets posted AFTER this time will be deleted.
@jatinkrmalik
jatinkrmalik / data.md
Last active February 23, 2026 21:09
RSS Feed/Blogs from @0xGlitchbyte
@jatinkrmalik
jatinkrmalik / christmas_tree.py
Last active December 25, 2024 20:14
Colorful Christmas Tree Generator in Python
"""
Christmas Tree Terminal Program
This program prints a festive Christmas tree in your terminal based on the height of your terminal or a specified height.
It also displays a large "Merry Christmas!" greeting below the tree.
### How to Run:
1. Install dependencies:
pip install colorama pyfiglet
2. Run the script:
@jatinkrmalik
jatinkrmalik / excel_to_csv.py
Created October 15, 2024 19:44
excel_to_csv.py
# pip install pandas openpyxl
import sys
import pandas as pd
def excel_to_csv(excel_file_path, sheet_name=0, csv_file_path=None):
# Read the Excel file
try:
df = pd.read_excel(excel_file_path, sheet_name=sheet_name)
except Exception as e:
@jatinkrmalik
jatinkrmalik / dom3d.js
Created October 7, 2024 20:39 — forked from OrionReed/dom3d.js
3D DOM viewer, copy-paste this into your console to visualise the DOM topographically.
// 3D Dom viewer, copy-paste this into your console to visualise the DOM as a stack of solid blocks.
// You can also minify and save it as a bookmarklet (https://www.freecodecamp.org/news/what-are-bookmarklets/)
(() => {
const SHOW_SIDES = false; // color sides of DOM nodes?
const COLOR_SURFACE = true; // color tops of DOM nodes?
const COLOR_RANDOM = false; // randomise color?
const COLOR_HUE = 190; // hue in HSL (https://hslpicker.com)
const MAX_ROTATION = 180; // set to 360 to rotate all the way round
const THICKNESS = 20; // thickness of layers
const DISTANCE = 10000; // ¯\\_(ツ)_/¯
@jatinkrmalik
jatinkrmalik / dom3d.js
Created October 7, 2024 20:39 — forked from OrionReed/dom3d.js
3D DOM viewer, copy-paste this into your console to visualise the DOM topographically.
// 3D Dom viewer, copy-paste this into your console to visualise the DOM as a stack of solid blocks.
// You can also minify and save it as a bookmarklet (https://www.freecodecamp.org/news/what-are-bookmarklets/)
(() => {
const SHOW_SIDES = false; // color sides of DOM nodes?
const COLOR_SURFACE = true; // color tops of DOM nodes?
const COLOR_RANDOM = false; // randomise color?
const COLOR_HUE = 190; // hue in HSL (https://hslpicker.com)
const MAX_ROTATION = 180; // set to 360 to rotate all the way round
const THICKNESS = 20; // thickness of layers
const DISTANCE = 10000; // ¯\\_(ツ)_/¯
@jatinkrmalik
jatinkrmalik / dork_it.md
Created September 24, 2024 15:03
Google Dorking

Google Dorking

Advanced Searching

Google Dorking describes the process of using advanced search filters that allow to retrieve more efficient results. It is a technique often used by cybersecurity professionals in order to find valuable information about a target.

Note: While Google Dorking itself is legal (in most countries), it might quickly lead to actions that aren't, such as visiting a site with illegal content in it.