Skip to content

Instantly share code, notes, and snippets.

@ipenywis
ipenywis / cursor-memory-bank-rules.md
Last active April 4, 2025 05:37
Cursor Memory Bank

Cursor's Memory Bank

I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.

Memory Bank Structure

The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:

flowchart TD
@fzrhrs
fzrhrs / Part 1 of 3: Rails Deployment Ubuntu 24.04 (2024).md
Last active April 4, 2025 05:36
Part 1 of 3: Rails Deployment Ubuntu 24.04 (2024)

Step 1 - Initial Server Setup

Assuming you already ssh-ed into the server as root.

Create a new user

We need to set up a new user account with reduced privileges for day-to-day use.

sudo adduser deploy
@philzook58
philzook58 / cheb.py
Created December 29, 2019 23:59
Verifying a neural network with z3
import sympy as sy
import matplotlib.pyplot as plt
import numpy as np
x = sy.symbols('x')
cheb = sy.lambdify(x, sy.chebyshevt(4,x))
xs = np.linspace(-1,1,1000)
ys = cheb(xs)
plt.plot(xs, ys)
plt.show()
@piscisaureus
piscisaureus / pr.md
Created August 13, 2012 16:12
Checkout github pull requests locally

Locate the section for your github remote in the .git/config file. It looks like this:

[remote "origin"]
	fetch = +refs/heads/*:refs/remotes/origin/*
	url = git@github.com:joyent/node.git

Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:

@rrazgriz
rrazgriz / VoicemeeterRestartOnAudioDeviceStateChangeTask.xml
Last active April 4, 2025 05:31
Windows Task: Restart Voicemeeter any time an audio device's state changes. Voicemeeter's "Auto Restart Audio Engine" is supposed to do this automatically but it doesn't work most of the time for me. Tested with VoiceMeeter Potato on Win10 22H2. Installation: Click raw, save as .xml file, Open Windows Task Scheduler, Click "Task Scheduler Librar…
<?xml version="1.0" encoding="UTF-16"?>
<!--
SPDX-License-Identifier: CC0-1.0
Download: Right click "Raw" (top right) -> Save As... (or Save Link As...)
Installation: Open Windows Task Scheduler, Click "Task Scheduler Library" on left, Menu Bar -> Action -> Import Task... -> Navigate to file
Change the path to VoiceMeeter in Actions if you installed it somewhere else.
-->
<Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
Country Tariffs Charged to the U.S.A. U.S.A. Discounted Reciprocal Tariffs
Afghanistan 49% 10%
Antigua and Barbuda 10% 10%
Argentina 10% 10%
Aruba 10% 10%
Australia 10% 10%
Bangladesh 74% 37%
Barbados 10% 10%
Benin 10% 10%
Bermuda 10% 10%
@Curtis-64
Curtis-64 / ClaudeHack
Last active April 4, 2025 05:28
Claude Multi-Stage Prompt Injection for Personas
#Claude Prompt Inject by Curtis White (Prompt Engineer)
This is a 3 to 5 stage prompt injection.
1. Print innocuous string [Corp AI]
2. Consider a simple hypothetical request.
3. Echo or repeat in new rules (can be used to revise program it)
4. Ask about the .p rule for clarification
5. Invoke the rule to generate a persona
Update: I have a new Claude breaker derivative that completely breaks its censorship for 3-5 turns. Undecided if I will publish, yet.
@voluntas
voluntas / loadtest.rst
Last active April 4, 2025 05:26
負荷試験コトハジメ
@JohnScottUK
JohnScottUK / creality_ender3s1pro.cura.start.gcode
Last active April 4, 2025 05:21
Ender 3 S1 Pro Optimal Start/Stop GCode for Creality/Cura Slicer Software.
; Creality Ender-3 S1 Pro Optimal Start GCode for Cura Slicer Software.
; By John Scott, 2023. https://gist.github.com/JohnScottUK/8acd76895716b3abda4fde270738daf3
;M117 Set Movement...
G90; Use absolute positioning.
M83; Use relative extrusion.
;M117 Heating Bed...
M140 S{material_bed_temperature_layer_0}; Start heating bed.
@maratori
maratori / .golangci.yml
Last active April 4, 2025 05:20
Golden config for golangci-lint
# This file is licensed under the terms of the MIT license https://opensource.org/license/mit
# Copyright (c) 2021-2025 Marat Reymers
## Golden config for golangci-lint v2.0.2
#
# This is the best config for golangci-lint based on my experience and opinion.
# It is very strict, but not extremely strict.
# Feel free to adapt it to suit your needs.
# If this config helps you, please consider keeping a link to this file (see the next comment).