Skip to content

Instantly share code, notes, and snippets.

View Tknott95's full-sized avatar
๐Ÿ€

Trevor Knott Tknott95

๐Ÿ€
View GitHub Profile
@Tknott95
Tknott95 / memory.MD
Last active July 2, 2026 05:55
Lightweight memory prompt injection.

Act as an implementation manager and coding assistant.

Maintain a living IMPLEMENTATION.md file as project memory. Use it to track requirements, implementation checklist, task board, blockers, decisions, verification, bugs, risks, recommendations, changelog, and next actions.

If you can edit files, create/update IMPLEMENTATION.md. If you cannot edit files, output the updated Markdown tracker in your response.

The tracker must include:

  • Goal
  • Current Scope
@Tknott95
Tknott95 / memory_leak_prev.txt
Last active July 2, 2026 05:58
memory leak prevention
# Memory Leak Prevention & Long-Running Resource Management
When building Rust applications that are intended to run continuously (agent systems, terminal applications, orchestrators, code assistants, monitoring tools, TUI environments, background services, etc.), memory growth must be treated as a first-class engineering concern.
Rust prevents most memory-safety issues, but it does **not** prevent logical memory leaks, unbounded resource growth, runaway task accumulation, or excessive memory retention.
## Core Principle
Every long-lived allocation must have a lifecycle.
@Tknott95
Tknott95 / crates.MD
Created June 17, 2026 04:02
My crates released
  • aisling cargo add asiling

  • thesa cargo install thesa

@Tknott95
Tknott95 / xeeter.js
Last active June 17, 2026 03:47
api bypass tweet deleter
// ==UserScript==
// @name TweetXer Evolved
// @namespace https://github.com/lucahammer/tweetXer/
// @version 0.9.6-evolved-slow
// @description Evolved fork of TweetXer: slow-delete your own X/Twitter posts without an export file, with real 429/420 network cooldown recovery.
// @author Luca, dbort, pReya, Micolithe, STrRedWolf; evolved slow-delete fork by ASCII ALIEN/ChatGPT
// @license NoHarm-draft
// @match https://x.com/*
// @match https://mobile.x.com/*
// @match https://twitter.com/*
/
#/
# ##
## ##
## ##
######## ## /## /## /### /###
######## ## / ### / ### / #### / / ### /
## ##/ ### / ### ## ###/ / ###/
## ## ## ## ### #### ## ##
@Tknott95
Tknott95 / aisling.MD
Created June 14, 2026 10:37
For your agent to use aisling.

Agent Guide: Using Aisling

Aisling is a Rust crate for embeddable terminal text effects. It is designed for TUI apps: it does not own the terminal or run its own event loop. Your app pulls frames from an iterator and renders those frames into your UI buffer.

Add The Crate

From crates.io:

cargo add aisling

Operational PGP

This is a guide on how to email securely.

There are many guides on how to install and use PGP to encrypt email. This is not one of them. This is a guide on secure communication using email with PGP encryption. If you are not familiar with PGP, please read another guide first. If you are comfortable using PGP to encrypt and decrypt emails, this guide will raise your security to the next level.

@Tknott95
Tknott95 / policy.MD
Last active March 24, 2025 12:51
policy_ids with token prices (LP Pools) - Cardano (90 here)

['da8c30857834c6ae7203935b89278c532b3995245295456f993e1d24', '1d7f33bd23d85e1a25d87d86fac4f199c3197a2f7afeb662a0f34e1e', '804f5544c1962a40546827cab750a88404dc7108c0f588b72964754f', '9a9693a9a37912a5097918f97918d15240c92ab729a0b7c4aa144d77', '29d222ce763455e3d7a09a665ce554f00ac89d2e99a1a83d267170c6', 'a0028f350aaabe0545fdcb56b039bfb08e4bb4d8c4d7c3c7d481c235', '682fe60c9918842b3323c43b5144bc3d52a23bd2fb81345560d73f63', '8fef2d34078659493ce161a6c7fba4b56afefa8535296a5743f69587', 'a00fdf4fb9ab6c8c2bd1533a2f14855edf12aed5ecbf96d4b5f5b939', '1fc21c9c7df3deca16d699b2d54cf5aa477576adc45f7c1340138a19', 'b6a7467ea1deb012808ef4e87b5ff371e85f7142d7b356a40d9b42a0', '25f0fc240e91bd95dcdaebd2ba7713fc5168ac77234a3d79449fc20c', '6c8642400e8437f737eb86df0fc8a8437c760f48592b1ba8f5767e81', 'edfd7a1d77bcb8b884c474bdc92a16002d1fb720e454fa6e99344479', 'f43a62fdc3965df486de8a0d32fe800963589c41b38946602a0dc535', '8e51398904a5d3fc129fbf4f1589701de23c7824d5c90fdb9490e15a', '10a49b996e2402269af553a8a96fb8eb90d79e9eca79e2b4223057b6', '5d

@Tknott95
Tknott95 / capabilities.txt
Created March 10, 2025 02:00 — forked from jlia0/agent loop
Manus tools and prompts
# Manus AI Assistant Capabilities
## Overview
I am an AI assistant designed to help users with a wide range of tasks using various tools and capabilities. This document provides a more detailed overview of what I can do while respecting proprietary information boundaries.
## General Capabilities
### Information Processing
- Answering questions on diverse topics using available information
- Conducting research through web searches and data analysis
@Tknott95
Tknott95 / archive.sh
Created January 28, 2025 20:07
flipper zero archiver
#!/bin/bash
# GitHub organization name
ORG="DarkFlippers"
# GitHub API URL to list public repos for the organization
API_URL="https://api.github.com/orgs/$ORG/repos"
# Directory to store cloned repositories
CLONE_DIR="$HOME/${ORG}_repos"