Skip to content

Instantly share code, notes, and snippets.

View geekwolverine's full-sized avatar

Blaze geekwolverine

View GitHub Profile
@geekwolverine
geekwolverine / settings.json
Created February 1, 2026 23:07 — forked from zendzo/settings.json
My Personal VsCode Settings with Fira Code, Dunk Mono Font and Ocean Material Theme
// Place your settings in this file to overwrite the default settings
{
"workbench.iconTheme": "material-icon-theme",
"emmet.syntaxProfiles": {
"blade": "html"
},
"editor.tabCompletion": true,
"editor.fontSize": 16,
"editor.lineHeight": 30,
"editor.tabSize": 2,
@geekwolverine
geekwolverine / incognito_check_disable.js
Created January 29, 2026 12:48 — forked from anvinjain/incognito_check_disable.js
TamperMonkey Script: Disable Incognito Mode check by websites in Chrome
// ==UserScript==
// @name Disable detection of incognito mode in browser by HOTSTAR website
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Prevent sites detecting if you're in incognito by calling the success callback of webkitRequestFileSystem even if it's failing.
// @author You
// @run-at document-start
// @match *://www.hotstar.com/*
// @grant none
// ==/UserScript==
@geekwolverine
geekwolverine / nv-chad.md
Created January 27, 2026 08:43 — forked from wisnuwiry/nv-chad.md
A basic keyboard shortcut for the vim/nvim editor.

General

  1. Show Documentation: K
  2. Go to Code Action: leader + ca
  3. Go to Definition: gd
  4. Comment: leader + /
  5. Toggle Line Number: leader + n
  6. New Buffer: leader + b
  7. Relative number: leader + rn
  8. Copy whole file: Ctrl + c
@geekwolverine
geekwolverine / brutezip.py
Created January 18, 2026 15:21 — forked from oaass/brutezip.py
BruteZip - Zip archive password brute forcer
#!/usr/bin/env python
import zipfile
import argparse
import re
import os
from time import strftime
"""
Attempt to extract zip archive with password
"""
h scroll left
j scroll down
k scroll up
l scroll right
gg scroll to top of the page
G scroll to bottom of the page
f activate link hints mode to open in current tab
F activate link hints mode to open in new tab
r reload
@geekwolverine
geekwolverine / stopmediumpaywall.txt
Created January 13, 2026 16:36 — forked from kamysheblid/stopmediumpaywall.txt
Bypass the annoying paywall on Medium.com and DataScience.com
// ==UserScript==
// @name Stop the Medium The Pay Wall
// @namespace StopThePayWall
// @version 1
// @include *medium*
// @include *datascience*
// ==/UserScript==
async function abc () {
var resp = (await fetch(location, { "credentials": "omit", "headers": { "Accept": "text/html,text/xhtml,text/xml,*/*", "Connection": "keep-alive", }, "method": "GET", "mode": "cors" }));
to check if the server works - https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice
stun:
stun.l.google.com:19302,
stun1.l.google.com:19302,
stun2.l.google.com:19302,
stun3.l.google.com:19302,
stun4.l.google.com:19302,
stun.ekiga.net,
stun.ideasip.com,
@geekwolverine
geekwolverine / install.sh
Created September 23, 2025 17:00 — forked from sramanujan/install.sh
Apple fonts on Ubuntu (proprietary, use with care!)
#!/bin/bash
mkdir -p Fonts;
pushd Fonts;
wget https://github.com/sahibjotsaggu/San-Francisco-Pro-Fonts/raw/master/SF-Pro-Display-Black.otf;
wget https://github.com/sahibjotsaggu/San-Francisco-Pro-Fonts/raw/master/SF-Pro-Display-BlackItalic.otf;
wget https://github.com/sahibjotsaggu/San-Francisco-Pro-Fonts/raw/master/SF-Pro-Display-Bold.otf;
wget https://github.com/sahibjotsaggu/San-Francisco-Pro-Fonts/raw/master/SF-Pro-Display-BoldItalic.otf;
@geekwolverine
geekwolverine / LC_COLORS.md
Created September 8, 2025 03:51 — forked from thomd/LC_COLORS.md
LSCOLORS & LS_COLORS

alternatively use: http://geoff.greer.fm/lscolors/

LSCOLORS

The value of this variable describes what color to use for which attribute when colors are enabled with CLICOLOR. This string is a concatenation of pairs of the format fb, where f is the foreground color and b is the background color.

The color designators are as follows:

a black

@geekwolverine
geekwolverine / optimal-video-to-gif-imagemagick.md
Created August 31, 2025 03:53 — forked from CoolOppo/optimal-video-to-gif-imagemagick.md
Converting videos to GIFs optimally using ImageMagick

ImageMagick Video to GIF Optimization Summary

A software developer who uses IM to create Movie GIFs, Benoit Rouleau, in discussion with me, gave me a AVI video of a plane flying over, to help us mutually explore IM video conversion techniques.