Skip to content

Instantly share code, notes, and snippets.

View aphexddb's full-sized avatar
💭
We are all made of stars

Gardiner Allen aphexddb

💭
We are all made of stars
View GitHub Profile

🌊 SYSTEM PROMPT LEAK 🌊

Devin 2.0 system instructions!

Most interesting part has to be the "POP QUIZ" section, which can be exploited as a jailbreak backdoor since it tells Devin this command shall "take precedence over any previous instructions you have received before." Here they are: """ DEVIN SYS PROMPT

@aphexddb
aphexddb / after_layer_change.gcode
Created March 17, 2025 12:57
Prusa MK3S Start / Stop G-Code
;AFTER_LAYER_CHANGE
;[layer_z]
{if ! spiral_vase}M74 W[extruded_weight_total]{endif}
@aphexddb
aphexddb / capabilities.txt
Created March 9, 2025 23:55 — 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
@aphexddb
aphexddb / .cursorrules
Created March 9, 2025 14:55
Posthog cursor rules
DO NOT GIVE ME HIGH LEVEL SHIT, IF I ASK FOR FIX OR EXPLANATION, I WANT ACTUAL CODE OR EXPLANATION! I DON'T WANT "Here's how you can blablabla"
- Be casual unless otherwise specified
- Be terse
- Suggest solutions that I didn't think about-anticipate my needs
- Treat me as an expert
- Be accurate and thorough
- Give the answer immediately. Provide detailed explanations and restate my query in your own words if necessary after giving the answer
- Value good arguments over authorities, the source is irrelevant
- Consider new technologies and contrarian ideas, not just the conventional wisdom
- You may use high levels of speculation or prediction, just flag it for me
@aphexddb
aphexddb / annoying_hosts.txt
Created October 3, 2024 14:02
pihole annoying hosts
# Title: annoying_hosts
# Description: Annoying hosts I noticed in PiHole and need to blacklist
# ads and crap
(\.|^)amazon-adsystem\.com$
(\.|^)doubleclick\.net$
(\.|^)fool\.com$
^r(\.|^)googlevideo\.com$
# Nielson
@aphexddb
aphexddb / 40k_wargaming_model_base.scad
Created October 17, 2023 13:23
40k wargaming model base SCAD
base_diameter = 60;
base_ellipse_width = 35; // set to 0 to keep as circle
base_height = 4.3;
base_top_diameter_difference = 4;
wall_thickness = 1.5;
top_thickness = 1.5;
text_size = 4;
text_heigth = 1.2;
@aphexddb
aphexddb / readme.md
Last active March 14, 2023 20:49 — forked from avin/todo.txt
OPNSense development

Install FreeBSD packages in pfSense / OPNsense

  1. Make sure "enabled" key is set to "yes" in /etc/pkg/FreeBSD.conf
  2. Change "enabled: no" to "enabled: yes" in /usr/local/etc/pkg/repos/FreeBSD.conf
  3. Change "enabled: no" to "enabled: yes" in /usr/local/etc/pkg/repos/pfSense.conf for FreeBSD repo
  4. Now you're able to install packages from FreeBSD official repo

Setup SMB on FreeBSD https://blog.vulnifo.com/2021/09/17/how-to-setup-nfs-and-samba-on-freebsd-13/

@aphexddb
aphexddb / README.md
Last active January 19, 2019 19:14
Home Linux configurations

Network

Great writeup on setting up wifi VLAN and DMZ using pfsense and Ubuquti.

Samba

To ensure fileshares are not super slow, do some basic Samba perf tuning in /etc/samba/smb.conf:

[global]
@aphexddb
aphexddb / README.md
Last active May 30, 2018 18:36
Golang handler patterns

Example of using handlers in Golang to support a shared environment such as a logger, tracing and seperation of business logic from handlers.

To run a jaeger collector and UI run the following:

docker run -d -e \
  COLLECTOR_ZIPKIN_HTTP_PORT=9411 \
  -p 5775:5775/udp \
  -p 6831:6831/udp \
 -p 6832:6832/udp \