Skip to content

Instantly share code, notes, and snippets.

View lharp's full-sized avatar

Tomas Lehuta lharp

View GitHub Profile
@lharp
lharp / systeme-io_badge-hide
Last active October 23, 2025 12:08
Systeme.io Badge Hide Script
<script type="text/javascript">
const selector = '.AffiliateBadgeUi-sc-wzepun-0.eLxzBA';
const observer = new MutationObserver(mutations => {
mutations.forEach(mutation => {
if (mutation.addedNodes) {
mutation.addedNodes.forEach(node => {
if ((node.nodeType === Node.ELEMENT_NODE) && node.querySelector(selector)) {
node.querySelector(selector).style.display = 'none';
}
});
@lharp
lharp / agent-os
Last active October 27, 2025 08:44
Agent OS Helper Script
#!/bin/bash
# Agent OS Helper Script
# This script is a wrapper for running various Agent OS commands
# Created by Tomas Lehuta <tomas@flexets.com>
# Installation: curl -sSL https://is.gd/pOUyX4 | bash -s setup
echo ""
echo "⚙️ Agent OS Helper"
echo "=================="