Skip to content

Instantly share code, notes, and snippets.

View fhilipecrash's full-sized avatar
🎯
Focusing on web development

Fhilipe Coelho fhilipecrash

🎯
Focusing on web development
  • Higia Health Tech
  • Parnaíba, Piauí, Brazil
  • 00:30 (UTC -03:00)
View GitHub Profile
@drequeary
drequeary / newTabBackgroundSingle.css
Last active July 17, 2025 23:13
Changes new tab background for Firefox.
@-moz-document url("about:newtab"), url("about:home"), url(about:privatebrowsing) {
/* Sets background image and autoscale image to browser window. */
body{
background-image: url("") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-position-x: center !important;
background-position-y: bottom !important;
}
@aunetx
aunetx / open-kitty.py
Last active May 29, 2022 17:18
A nautilus extension to open kitty in the current directory, instead of gnome-terminal.
# placed in ~/.local/share/nautilus-python/extensions/open-kitty.py
# you will need the package nautilus-python on fedora, or python-nautilus on ubuntu...
# french version
# translate and enjoy
import os
try:
from urllib import unquote
except ImportError:
from urllib.parse import unquote
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active November 1, 2025 03:25
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example