Skip to content

Instantly share code, notes, and snippets.

View arthurbacci's full-sized avatar

Arthur Bacci arthurbacci

  • Rio de Janeiro
  • 01:30 (UTC -03:00)
View GitHub Profile
@krisleech
krisleech / renew-gpgkey.md
Last active July 19, 2026 03:37
Renew Expired GPG key

Renew GPG key

Given that your key has expired.

$ gpg --list-keys
$ gpg --edit-key KEYID

Use the expire command to set a new expire date:

@codeprimate
codeprimate / gist:c73411300684c228f4249873d244210e
Created November 28, 2017 16:04
Create favicon with ImageMagick
convert favicon.png -define icon:auto-resize=64,48,32,16 favicon.ico
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 23, 2026 03:03
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

@gitaarik
gitaarik / git_submodules.md
Last active July 18, 2026 22:56
Git Submodules basic explanation

Git Submodules - Basic Explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a sub-repository embedded in your main repository. This can be very useful. A couple of usecases of submodules:

  • Separate big codebases into multiple repositories.