Skip to content

Instantly share code, notes, and snippets.

View ubmit's full-sized avatar

gui de andrade ubmit

View GitHub Profile
@ubmit
ubmit / AGENTS.md
Last active March 1, 2026 09:34
Global AGENTS.md
  • In all interactions and commit messages, be extremely concise and sacrifice grammar for the sake of concision.

NPM packages

  • Your primary method for interacting with NPM packages should be pnpm.

GitHub

  • Your primary method for interacting with GitHub should be the GitHub CLI (gh).
@ubmit
ubmit / convert-mov-to-gif.sh
Last active November 19, 2022 11:38
🎥 convert a .mov file to .gif
#!/bin/bash
ffmpeg -i input.mov -s 600x400 -pix_fmt rgb8 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > output.gif
@ubmit
ubmit / fix-cedilla.sh
Last active February 1, 2022 16:24
Ç fix cedilla for ubuntu based distros
#!/bin/bash
echo -e "GTK_IM_MODULE=cedilla\nQT_IM_MODULE=cedilla" >> /etc/environment
# restart your system