Skip to content

Instantly share code, notes, and snippets.

@FA5I
FA5I / .cursorrules
Created June 12, 2025 20:37 — forked from boxabirds/.cursorrules
Rock solid: turn Cursor into a rock-solid software engineering companion
# Project Policy
This policy provides a single, authoritative, and machine-readable source of truth for AI coding agents and humans, ensuring that all work is governed by clear, unambiguous rules and workflows. It aims to eliminate ambiguity, reduce supervision needs, and facilitate automation while maintaining accountability and compliance with best practices.
# 1. Introduction
> Rationale: Sets the context, actors, and compliance requirements for the policy, ensuring all participants understand their roles and responsibilities.
## 1.1 Actors
@FA5I
FA5I / resources_APS.md
Created February 5, 2023 18:44 — forked from joannakl/resources_APS.md
Resources for Algorithmic Problem Solving
@FA5I
FA5I / .tmux.conf
Created November 18, 2022 23:25 — forked from william8th/.tmux.conf
Tmux open new pane in same directory
# Set the control character to Ctrl+Spacebar (instead of Ctrl+B)
set -g prefix C-space
unbind-key C-b
bind-key C-space send-prefix
# Set new panes to open in current directory
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"