Skip to content

Instantly share code, notes, and snippets.

View Coldblackice's full-sized avatar

Coldblackice

  • NYC
View GitHub Profile
@Coldblackice
Coldblackice / README.md
Created August 30, 2024 14:33 — forked from benchonaut/README.md
firefox-restore-jsonlz4-dump

FckUfox ( Firefox ) session jsonlz4 recovery from sessionstore-backup

note: Firefox will be subsequently called FckUfox in this doc

edit 2022: TRY TO AVOID FCKUFOX AS MUCH AS POSSIBLE ; FCKUFOX WILL waste

if any firefox accountable person ever reads this:

@Coldblackice
Coldblackice / xclip.cpp
Created August 23, 2024 01:36 — forked from Rapptz/xclip.cpp
Windows port of xclip
// The MIT License (MIT)
// Copyright (c) 2014 Rapptz
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
@Coldblackice
Coldblackice / Zoom PTT.lua
Created August 6, 2024 04:53 — forked from neo-razgriz/Zoom PTT.lua
Zoom PTT for Logitech G HUB
--[[ ZOOM PTT FOR LOGITECH G
PREREQUISITES:
- Logitech G compatible mouse
- Following checkboxes are checked in Zoom preferences:
- Keyboard Shortcuts -> Mute/Unmute My Audio -> Enable Global Shortcut
- Audio -> Mute my mic when joining a meeting
- Audio -> Automaically join computer audio when joining a meeting
INSTALLATION:
@Coldblackice
Coldblackice / ghub.lua
Created August 6, 2024 04:52 — forked from jsonMartin/ghub.lua
ghub lua bindings for gestures (give g-hub mice similar features to mx mice)
--[[
**********
Updated Author: jsonMartin
Original Author: Mark van den Berg
Version: 1.0
Date: 09-13-2023
**********
Updated:
- Updated Gesture button to work with button G9, and to work with option keys
@Coldblackice
Coldblackice / ksl.py
Created July 19, 2024 06:39 — forked from blakev/ksl.py
Command line application to search KSL Classifieds
import re
import argparse
import concurrent.futures
import string
from collections import namedtuple
from urllib.request import urlopen
from urllib.parse import urlencode
from bs4 import BeautifulSoup
tags:6QDsHYbi0pfKCIiwAzhpUt === ["jazz","fusion","[year:2023]","[artist:fox-capture-plan]"]
tags:48YF4IQfvdb676aMQeFTDi === ["pop","pop/city-pop","japan","[year:1992]","[artist:Anri]"]
tags:3XY69YtPf4qaqdAq7ugLA2 === ["anime","media","anime/studio/david-production","anime/jojo","jojo","[year:2019]","[artist:Yugo-Kanno]"]
tags:2dTMCCGpEDmRVB1BfA6CuZ === ["jazz","gypsy","[year:1956]","[artist:Django-Reinhardt]"]
tags:5EsBMVs7uhsyaqbuRNo8dV === ["media","game","game/company/square-enix","game/series/ff-final-fantasy","game/series/ff-final-fantasy/main","game/series/ff-final-fantasy/main/14","[year:2010]","[artist:Masayoshi-Soken]","[artist:Nobuo-Uematsu]","[artist:Naoshi-Mizuta]"]
tags:6Oi9GZyWYSnxh47e4zvM8S === ["media","game","game/company/sony","game/company/dev/naughty-dog","game/series/uncharted","[year:2011]","[artist:Greg-Edmonson]"]
tags:15EAWJhaIabtt58SPV6tqe === ["jazz","fusion","[year:1988]","[artist:CASIOPEA]","[by:Albertus-Cilliers]"]
tags:4bhaW9mc1J6eeCLV1ETX6i === ["media","game","game/indi
-480p - Run tenfoot in 480p rather than 1080p
-720p - Run tenfoot in 720p rather than 1080p
-accesscode -
-all_languages - show longest loc string from any language
-bigpicture - Start in Steam Big Picture mode
-blefw -
-cafeapplaunch - Launch apps in a cyber cafe context
-candidates - Show libjingle candidates for local connection as they are processed
-ccsyntax - Spew details about the localized strings we load
-cef-delaypageload - Enable early-out for known page loads
@Coldblackice
Coldblackice / Skins_Objects.json
Created May 15, 2024 15:48 — forked from segg21/Skins_Objects.json
300+ Array/Object list of Rust Skins Per Item. (Non Accepted Skins)
{
"fun.guitar": [
1287805625,
814874910,
1186248895,
1196457681,
937928933,
843572627,
877194688,
843693036,
@Coldblackice
Coldblackice / Skins.json
Created May 15, 2024 15:44 — forked from Krispywafers/Skins.json
All Rust skin ID's for Umod Skins plugin
{
"Command": "skin, skins, skinbox",
"Skins": [
{
"Item Shortname": "fun.guitar",
"Skins": [
0,
809801196,
826914904,
809938266,
@Coldblackice
Coldblackice / delete-likes-from-twitter.md
Created April 26, 2024 10:45 — forked from aymericbeaumet/delete-likes-from-twitter.md
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }