Skip to content

Instantly share code, notes, and snippets.

View TimonPeng's full-sized avatar
🔥
Passion

Timon Peng TimonPeng

🔥
Passion
View GitHub Profile
@TimonPeng
TimonPeng / themekaverse.js
Last active October 6, 2021 23:25
themekaverse.com
function btoa(str) {
return Buffer.from(str).toString('base64');
}
function atob(b64Encoded) {
return Buffer.from(b64Encoded, 'base64').toString();
}
function decode(rawData) {
let t = rawData,
@TimonPeng
TimonPeng / solana-explorer-ata-flag.js
Last active January 14, 2022 12:16
Solana Associated Token Account Flag
// ==UserScript==
// @name Solana Associated Token Account Flag
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Show associated token account flag.
// @author Timon
// @match https://solscan.io/account/*
// @grant none
// @require https://cdn.bootcdn.net/ajax/libs/jquery/3.5.0/jquery.min.js
// @require https://unpkg.com/@solana/web3.js@latest/lib/index.iife.min.js
@TimonPeng
TimonPeng / tampermonkey.js
Last active July 31, 2023 17:27
UOB Personal Internet Banking Anti Scam Modal Auto Clicking
// ==UserScript==
// @name UOB PIB Anti Scam Modal Auto Clicking
// @namespace https://timonpeng.com/
// @version 1.0
// @description UOB Personal Internet Banking Anti Scam Modal Auto Clicking.
// @author Timon
// @match https://pib.uob.com.sg/PIBCust/1FA/processSubmit.do*
// @icon https://pib.uob.com.sg/favicon.ico
// @require none
// @grant none