Skip to content

Instantly share code, notes, and snippets.

@blackle
blackle / undertale.css
Last active December 16, 2017 01:43
Mastodon Undertale Theme
/*
* Download Determination Mono for the true undertale experience
* https://drive.google.com/open?id=0B9vhRblCzZOhVi13MC0xNnh0SnM
* if you cannot download this font, the stylesheet will fallback to the following web font
*/
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P');
* {
border-radius: 0px !important;
box-shadow: none !important;
@rvl
rvl / git-pushing-multiple.rst
Created February 9, 2016 11:41
How to push to multiple git remotes at once. Useful if you keep mirrors of your repo.

Pushing to Multiple Git Repos

If a project has to have multiple git repos (e.g. Bitbucket and Github) then it's better that they remain in sync.

Usually this would involve pushing each branch to each repo in turn, but actually Git allows pushing to multiple repos in one go.

If in doubt about what git is doing when you run these commands, just

@JosefJezek
JosefJezek / setup-msmtp-for-gmail.sh
Last active August 14, 2022 11:44
Sending emails using Gmail and msmtp on Ubuntu / Debian
#!/bin/sh
# Sending emails using Gmail and msmtp
# Author: [Josef Jezek](http://about.me/josefjezek)
# Donate: [Gittip](https://www.gittip.com/josefjezek)
# Link: [Gist](https://gist.github.com/6194563)
# Usage: setup-msmtp-for-gmail.sh
sudo apt-get update -q
sudo apt-get install msmtp-mta ca-certificates heirloom-mailx -yq