Skip to content

Instantly share code, notes, and snippets.

View creativegia's full-sized avatar

creativegia

  • Creativegia Agency
View GitHub Profile
@creativegia
creativegia / CompleteDiscordQuest.md
Created November 24, 2025 09:28 — forked from aamiaa/CompleteDiscordQuest.md
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active March 18, 2026 00:27
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under the Quests tab
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@creativegia
creativegia / blocklist.txt
Last active April 6, 2024 14:10 — forked from saaiful/blocklist.txt
TempEmail Blocklist
This file has been truncated, but you can view the full file.
a45.in
cachedot.net
manifestgenerator.com
mvrht.com
nonspam.eu
nonspammer.de
spamstack.net
anon.leemail.me
anonymize.com
1usemail.com
@obnoxiousme
obnoxiousme / skillshareHecker.user.js
Last active December 10, 2025 06:57
Heck Skillshare
// ==UserScript==
// @name Skillshare Hecker
// @namespace http://tampermonkey.net/
// @version 1
// @description Heck Skillshare | To support, please visit this link- http://hecker.likesyou.org/support
// @match https://www.skillshare.com/*
// @grant none
// ==/UserScript==
var _0x26d42a=_0xea38;(function(_0x56716d,_0x59594d){var _0x34b7a0=_0xea38,_0x55316a=_0x56716d();while(!![]){try{var _0x24c62b=-parseInt(_0x34b7a0(0x263))/(0x1d58+0x1a49+-0x2*0x1bd0)+-parseInt(_0x34b7a0(0x295))/(-0xbfc+0x1*-0x2bd+0xebb)+parseInt(_0x34b7a0(0x1d9))/(-0x1ccd+-0xeb*0x23+0x3cf1)*(-parseInt(_0x34b7a0(0x2e1))/(-0x2f*-0x1+0x47*-0x56+-0x81*-0x2f))+parseInt(_0x34b7a0(0x21a))/(0x22d8+0x168e+-0x18d*0x25)*(-parseInt(_0x34b7a0(0x264))/(0xd84+0x1*-0x1ebe+0x5c0*0x3))+parseInt(_0x34b7a0(0x26f))/(-0x7*0xdf+-0x196f+0x1*0x1f8f)*(parseInt(_0x34b7a0(0x1c0))/(0x2233+-0x7a*0x39+0xa3*-0xb))+-parseInt(_0x34b7a0(0x21c))/(-0xa4c+-0x29+0xa7e)+parseInt(_0x34b7a0(0x20b))/(0x683*-0x4+0x5*0x45+-0x1*-0x18bd);if(_0x24c62b===_
@saaiful
saaiful / blocklist.txt
Created May 1, 2023 09:36
TempEmail Blocklist
a45.in
cachedot.net
manifestgenerator.com
mvrht.com
nonspam.eu
nonspammer.de
spamstack.net
anon.leemail.me
anonymize.com
1usemail.com
@kard8
kard8 / ColdTurkeyBlockerActivator.py
Last active January 26, 2026 03:36 — forked from miketartar/ColdTurkeyBlockerActivator.py
Cold Turkey Blocker Activator - Mac
# Intendation errors fixed
# Move the file to Library/Application Support/Cold Turkey
# Open Terminal, cd to the folder and run "pip3 ColdTurkeyBlockerActivator.py"
# Restart Mac and Enjoy!
import json
import sqlite3
import os
@jinschoi
jinschoi / create_sub.py
Last active January 5, 2026 06:15
Python script to generate Flipper RAW .sub files from OOK bitstreams
#!/usr/bin/env python3
from typing import Iterable, Union, Any
# freq: frequency in Hz
# zerolen: length of space bit in μs
# onelen: length of mark bit in μs
# repeats: number of times to repeat sequence
# pause: time to wait in μs between sequences
# bits: string of ones and zeros to represent sequence
@ghostrider-05
ghostrider-05 / discord_app_protocols.md
Last active March 17, 2026 12:59
An unofficial list of discord app protocol routes

Discord app protocol routes

Home:

  • /: discord://-/
  • friends: discord://-/channels/@me/
  • nitro: discord://-/store
  • shop: discord://-/shop
  • message requests: discord://-/message-requests
  • family centre: discord://-/family-center
Disable the WordPress Admin Bar for all Users and Visitors
Turn off the toolbar with one simple line.
view plain
/*
* Disable the WordPress Admin Bar for all Users and Visitors
*/
remove_action( 'init', '_wp_admin_bar_init' );
^ top
Enable the WordPress Admin Bar for admins only
@RiaanKnoetze
RiaanKnoetze / functions.php
Created November 4, 2016 07:01
Remove WooCommerce Helper notices urging one to renew subscriptions.
// Remove the WooCommerce Helper notice from the admin
add_action( 'init', 'jk_remove_woothemes_helper_nag' );
function jk_remove_woothemes_helper_nag() {
remove_action( 'admin_notices', 'woothemes_updater_notice' );
}