Skip to content

Instantly share code, notes, and snippets.

@taglia
taglia / AddLinkToMessageInClipboard.vb
Last active May 3, 2016 15:01
See the README below for more details. This gist is linked from this blog post: http://www.osomac.com/2013/07/14/farewell-omnifocus-welcome-org-mode-pt-2/
'Move the selected message to an archive folder,
'Then Adds an org-mode friendly link to the message to the clipboard
Sub AddLinkToMessageInClipboard()
Dim objMail As Outlook.MailItem
Dim doClipboard As New DataObject
Dim destFolder As Outlook.MAPIFolder
Dim nameSpace As Outlook.nameSpace
Dim inBox As Outlook.MAPIFolder
Dim app As New Outlook.Application
@gdamjan
gdamjan / fonts.conf
Last active November 13, 2024 07:56
FontConfig setup~/.config/fontconfig/fonts.conf
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="font" >
<edit mode="assign" name="autohint"> <bool>false</bool></edit>
<edit mode="assign" name="hinting"> <bool>true</bool></edit>
<edit mode="assign" name="hintstyle"> <const>hintfull</const></edit>
<edit mode="assign" name="antialias"> <bool>true</bool></edit>
<edit mode="assign" name="rgba"> <const>rgb</const></edit>
<edit mode="assign" name="lcdfilter"> <const>lcdlight</const></edit>