Skip to content

Instantly share code, notes, and snippets.

View girol's full-sized avatar
🐍

André Girol girol

🐍
View GitHub Profile
@XVilka
XVilka / TrueColour.md
Last active July 16, 2025 09:53
True Colour (16 million colours) support in various terminal applications and terminals

THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.

PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!

@raelgc
raelgc / Email Server (Linux, Unix, Mac).md
Last active May 27, 2025 13:59
Setup a Local Only SMTP Email Server (Linux, Unix, Mac)

Setup a Local Only SMTP Email Server (Linux, Unix, Mac)

1 - Point localhost.com to your machine

Most of programs will not accept an email using just @localhost as domain. So, edit /etc/hosts file to make the domain localhost.com point to your machine, including this content to the file:

127.0.0.1 localhost.com

2 - Install Postfix

@ejhayes
ejhayes / dummyPackage.pp
Created July 3, 2012 18:35
Install a debian package locally using puppet
class dummyPackage {
package { 'yourpackagename':
ensure => installed|absent,
provider => dpkg,
source => '/path/to/file.deb',
}
}
class { 'dummyPackage': }
@pksunkara
pksunkara / config
Last active July 24, 2025 22:56
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
# vi: ft=dosini
[user]
name = Pavan Kumar Sunkara
email = [email protected]
username = pksunkara
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
[column]