Skip to content

Instantly share code, notes, and snippets.

@jacksonfox
jacksonfox / slimmer-slack-stylish.css
Last active August 29, 2015 14:14
Slimmer Slack via Stylish
/* Create by @averyvery: https://github.com/averyvery */
.member_preview_link {
display: none;
}
.light_theme .message {
padding: 0.15rem 0.25rem 0 2.5rem;
}

We encourage candidates of all experience levels to apply. If the above doesn't describe you perfectly, please get in touch anyway and tell us why you want to work with us.

Vox Media welcomes candidates of all backgrounds, but especially those from historically marginalized communities, including women, LGBTQ persons, and people of color.

@jacksonfox
jacksonfox / ias12-html-transcript.html
Created July 16, 2012 20:54
IA Summit HTML transcript example
<html>
<head>
<title>IA Summit Transcript Example</title>
</head>
<style>
</style>
<body>
<blockquote class="speaker_1_text">
<cite class="speaker_1">Moderator:</cite> Good morning. Thank you all for coming up. This is James Reffell's talk on games. And the title, I'm going to read it because it's super long. "Pig-faced Orcs: Design Lessons from Old-school Role-playing Games".<br /><br />James is Director of User Experience at Webroot, and you can read the rest of his bio in your book. So James?
@jacksonfox
jacksonfox / add-entry-to-taskpaper.scpt
Created November 8, 2011 17:44
A very simple AppleScript extension to add tasks to TaskPaper from Aflred
on alfred_script(q)
tell application "TaskPaper"
tell front document
tell project named "Inbox"
make new entry with properties {name:"- " & q}
end tell
end tell
end tell
end alfred_script