Skip to content

Instantly share code, notes, and snippets.

View rafaelsteil's full-sized avatar

Rafael Steil rafaelsteil

View GitHub Profile
@rafaelsteil
rafaelsteil / github-image-lightbox.user.js
Last active September 9, 2026 13:59
TamperMonkey script to open GitHub README and markdown images in a lightbox instead of the blob page
// ==UserScript==
// @name GitHub Image Lightbox
// @namespace https://gist.github.com/rafaelsteil/3f6a569c68b2e4156796e7b3659bd0bc
// @version 1.0.0
// @description Open GitHub README and markdown images in a lightbox instead of the blob page
// @author Rafael Steil
// @match https://github.com/*
// @match https://gist.github.com/*
// @run-at document-end
// @noframes
@rafaelsteil
rafaelsteil / .gitconfig
Last active September 2, 2026 21:35
gitconfig base
[core]
editor = vim
attributesfile = ~/.gitattributes
commitGraph = true
excludesfile = /home/rafael/.gitignore
pager = delta
[interactive]
diffFilter = delta --color-only
[include]
path = /home/rafael/git-delta-themes.gitconfig
@rafaelsteil
rafaelsteil / agent loop
Created March 10, 2025 14:57 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@rafaelsteil
rafaelsteil / asana_comment_formatting.js
Last active August 1, 2024 11:53
Asana quote reply and code formatting - TamperMonkey script
// ==UserScript==
// @name Asana quote reply style
// @namespace http://tampermonkey.net/
// @version 2024-07-17
// @description Turn comments that start with `>` into "quote reply" style like Github
// @author Rafael Steil
// @match https://app.asana.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=asana.com
// @grant none
// ==/UserScript==
@rafaelsteil
rafaelsteil / instructions.md
Created April 25, 2023 02:36
Self signed SSL certificate for local development

Instructions on how to generate a self signed ssl certificate and enable it on the OS level so that browsers accept it.

1. Add domains to /etc/hosts

These are the domains you plan to access over https

e.g:

127.0.0.1 local.dev
127.0.0.1 site1.local.dev
127.0.0.1 site2.local.dev