Skip to content

Instantly share code, notes, and snippets.

View nerd's full-sized avatar
💜
your thin paper wings

eris nerd

💜
your thin paper wings
  • USA
View GitHub Profile

Using gpg (using homebrew on MacOS) with mailmate

MailMate looks into the default path from MacGPG to find gpg binary. The path is indeed different if you have gpg installed using homebrew or any other method. It is not possible to chnage the default path through user interface, but it is possible through hidden settings.

defaults write com.freron.MailMate environmentVariables -array '{ enabled = :true;  name = "MM_GPG"; value = "/opt/homebrew/bin/gpg"; }'
@Bigcheese
Bigcheese / README.md
Last active June 9, 2022 03:41
/r/MyLittlePony /r/place minimap script!

Help /r/MyLittlePony get a pony on /r/place!

example of the /r/mylittlepony overlay

Instructions

  • Use a Chromium based browser (Google Chrome, Edge, Opera, Yandex.Browser)
  • Android folks can use Kiwi Browser + Tampermonkey.
@bristermitten
bristermitten / RecordTypeAdapterFactory.java
Created July 24, 2021 15:47
Gson support for java 16 records
package me.bristermitten.warzone.config.loading;
import com.google.gson.Gson;
import com.google.gson.TypeAdapter;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.annotations.SerializedName;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonToken;
import com.google.gson.stream.JsonWriter;