Skip to content

Instantly share code, notes, and snippets.

View sourtin's full-sized avatar

Hannah Earley sourtin

View GitHub Profile
@sourtin
sourtin / Makefile
Last active October 28, 2021 09:27
Mirror of Night Productions' rmtrash
#Makefile for rmtrash
CFLAGS=-O3 -g -Wall -Wno-four-char-constants -Wno-unknown-pragmas
LDFLAGS=-framework Foundation -arch ppc -prebind
CC=gcc
DESTDIR=/usr/local
all: rmtrash
install:
@sourtin
sourtin / docx2pdf.scpt
Created September 20, 2020 15:36
Applescript utility for batch word to pdf conversion
#!/usr/bin/osascript
on isValid(item_info)
try
return (folder of the item_info is false) and (package folder of the item_info is false) and (alias of the item_info is false) and (name extension of item_info is "docx")
end try
return false
end isValid
on open these_items