Skip to content

Instantly share code, notes, and snippets.

@taskylizard
taskylizard / fmhy.md
Last active July 23, 2024 09:24
/r/freemediaheckyeah, in one single file (view raw)
@AlecSchneider
AlecSchneider / python_on_iphone.sh
Last active May 18, 2024 10:53
How to install apk and Python on your iPhone using the iSH Shell
cd
# you can do this all in one command
wget -qO- http://dl-cdn.alpinelinux.org/alpine/v3.12/main/x86/apk-tools-static-2.10.5-r1.apk | tar -xz sbin/apk.static && ./sbin/apk.static add apk-tools && rm sbin/apk.static
apk add python3
@andanhm
andanhm / jwt.py
Last active December 26, 2023 10:33
Decodes JWT base64 encoded token without the JWT singing key (Offline)
import base64
import json
def decode(token):
# Decodes JWT base64 encoded token
try:
alg, payload, signature = token.split(".")
payload += '=' * (-len(payload) % 4)
decode_payload = json.loads(base64.b64decode(payload).decode("utf-8"))
@evianzhow
evianzhow / hp_saap_license.txt
Created September 3, 2017 02:11
HP Smart Array Advanced Pack Evaluation License Key
34T62-N84MB-7DQGY-G7XGT-YTQ63
@shiritrong
shiritrong / gist:d85bb1e16c66d1a09896727780b4fc7c
Last active July 17, 2024 05:04
Windows 7 All Online/Offline [Retail-MAK] Activation Keys
Windows 7 All Online/Offline [Retail-MAK] Activation Keys
=================================================================================
. Run "Command Prompt" as Administrator
. slmgr.vbs -ipk Product Key
. slui4
=================================================================================
Windows 7 Ultimate Retail Phone Activation Keys
RHTBY-VWY6D-QJRJ9-JGQ3X-Q2289
V77DJ-CT8WB-Y3GXT-X3FBP-6F987
JC7BV-94FD2-D86PH-XRMHR-BXKDG
<?php
/*
Plugin Name: Event Espresso - Restore PayPal Standard
Description: This plugin allows you to use PayPal Standard on your website. By allowing your customers to use PayPal Standard, you may face inconsistencies with payments.
*/
add_filter( 'FHEE__EE_PMT_Paypal_Express__register_payment_methods__hide_paypal_standard', '__return_false' );