Skip to content

Instantly share code, notes, and snippets.

View jeanfbrito's full-sized avatar
🌱
Seeding the future!

Jean Brito jeanfbrito

🌱
Seeding the future!
View GitHub Profile
@jeanfbrito
jeanfbrito / graphify-context-mode-setup.md
Created April 21, 2026 19:20
graphify + context-mode setup: persistent knowledge graph + sandboxed query retrieval for Claude Code

graphify + context-mode setup

Pipeline: graphify builds persistent knowledge graph, context-mode sandboxes query output. Together = structural map + bounded retrieval.

One-time global setup

1. Install graphify

pipx install graphifyy        # or: pip install --user graphifyy
@jeanfbrito
jeanfbrito / agentic-workflow-framework.md
Last active April 17, 2026 19:54
Agentic Workflow Framework — lightweight conventions for multi-session Claude Code work in existing codebases

Agentic Workflow Framework

A lightweight framework for managing multi-session, multi-agent work in existing codebases using Claude Code.

Born from adapting a greenfield orchestration framework (agent prompt files, shell scripts, rigid file permissions) into something practical for real-world projects — where the codebase already exists, architecture is established, and most work is features and bug fixes, not building from scratch.


The Problem

@jeanfbrito
jeanfbrito / wiki-gen-skill.md
Created April 6, 2026 12:57 — forked from farzaa/wiki-gen-skill.md
personal_wiki_skill.md
name wiki
description Compile personal data (journals, notes, messages, whatever) into a personal knowledge wiki. Ingest any data format, absorb entries into wiki articles, query, cleanup, and expand.
argument-hint ingest | absorb [date-range] | query <question> | cleanup | breakdown | status

Personal Knowledge Wiki

You are a writer compiling a personal knowledge wiki from someone's personal data. Not a filing clerk. A writer. Your job is to read entries, understand what they mean, and write articles that capture understanding. The wiki is a map of a mind.

<#
.SYNOPSIS
Installs aria2 on Windows, sets up default configuration, and adds to PATH.
.DESCRIPTION
- Creates the folder C:\Tools\aria2.
- Downloads aria2 64-bit (version 1.36.0).
- Extracts all files into C:\Tools\aria2.
- Creates aria2.conf with default settings (resume, 10 connections, etc.).
- Adds C:\Tools\aria2 to the user PATH.
@jeanfbrito
jeanfbrito / frequencytester.md
Created November 15, 2023 15:22 — forked from kmobs/frequencytester.md
Frequency Tester

Frequency Testing

This will allow you to test a specific frequency that you hear when you do your resonance testing in Klipper and potentially track down where extra peaks are coming from. If something is rattling at a specific frequency, you can specify that frequency and feel around the printer until you track it down.

Code was adopted by zifnab from somewhere in Klipper.

Usage

You have to have [resonance_holder] in your printer.cfg.

The command is HOLD_RESONANCE AXIS=<axis> FREQ=int SECONDS=<seconds>

@jeanfbrito
jeanfbrito / index.html
Created July 10, 2023 19:57
Electron window.close() crash
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
<style>
webview {
position: absolute;
@jeanfbrito
jeanfbrito / macros.cfg
Created April 25, 2023 18:07
Ender 3 S1 Pro Klipper
[gcode_macro BED_MESH_CALIBRATE]
rename_existing: BED_MESH_CALIBRATE_BASE
; gcode parameters
variable_parameter_AREA_START : 0,0
variable_parameter_AREA_END : 0,0
; the clearance between print area and probe area
variable_mesh_area_offset : 5.0
; number of sample per probe point
variable_probe_samples : 2
; minimum probe count
@jeanfbrito
jeanfbrito / macros.cfg
Created April 6, 2023 13:56
Klipper macros
[gcode_macro BED_MESH_CALIBRATE]
rename_existing: BED_MESH_CALIBRATE_BASE
; gcode parameters
variable_parameter_AREA_START : 0,0
variable_parameter_AREA_END : 0,0
; the clearance between print area and probe area
variable_mesh_area_offset : 5.0
; number of sample per probe point
variable_probe_samples : 2
; minimum probe count
@jeanfbrito
jeanfbrito / invert.md
Created November 13, 2022 03:50 — forked from arbourd/invert.md
Invert Windows 10 mouse scroll wheel
  1. Open Powershell as an administrator
  2. Run
    Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 }
  3. Verify that all mice devices have had their FlipFlopWheel attributes set to 1
    Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0
  4. Reboot
@jeanfbrito
jeanfbrito / find_dups.rb
Created September 29, 2021 00:20 — forked from rob-murray/find_dups.rb
Rails find duplicate records
columns_that_make_record_distinct = [:some_id, :another_name]
distinct_ids = Model.select("MIN(id) as id").group(columns_that_make_record_distinct).map(&:id)
duplicate_records = Model.where.not(id: distinct_ids)