Skip to content

Instantly share code, notes, and snippets.

@magicseth
magicseth / keybase.md
Last active September 9, 2019 22:59
keybase.md

Keybase proof

I hereby claim:

  • I am magicseth on github.
  • I am magicseth (https://keybase.io/magicseth) on keybase.
  • I have a public key ASATb-cKTSbkCd4QffzrJMZhJAJ3SDWFIq132aQsFrwzOAo

To claim this, I am signing this object:

Call graph:
2545 Thread_16550816 DispatchQueue_1: com.apple.main-thread (serial)
+ 2545 start (in mpmp) + 52 [0x100001e34]
+ 2545 PlayerMain(int, char const**) (in mpmp) + 1129 [0x100e50c89]
+ 2545 NSApplicationMain (in AppKit) + 1237 [0x7fff7e64f1de]
+ 2545 -[NSApplication run] (in AppKit) + 926 [0x7fff7e6847ab]
+ 2545 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] (in AppKit) + 2796 [0x7fff7ee0b85e]
+ 2545 _DPSNextEvent (in AppKit) + 1120 [0x7fff7e68fe24]
+ 2545 _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox) + 71 [0x7fff800f4b26]
@magicseth
magicseth / GitForDropboxUsers.md
Created March 1, 2012 18:30
git for dropbox users: Don't be afraid!

git is awesome

We use git at Bump for all sorts of things. Recently, we've started converting our designers and product managers. You can think about git like Dropbox: it takes files on your computer, puts them in the cloud, and lets other people work on them too. But it has some pretty rocking advantages:

Collaboration

Like Dropbox, git lets multiple people work on the same files at the same time. This is great when many people are working on a document together, or a group of people are creating assets for a website. Everyone can be contributing to the same folder and files, without fear of overwriting eachother's work, something Dropbox can scew up.

Time Machine

@magicseth
magicseth / TLDR.js
Created May 11, 2011 04:42
Summarizer automatically tl;dr's any website.
javascript:
/* TLDR.js copyright Seth Raphael 2011 */
void (initsumm());
function initsumm () {
var paragraphs = document.getElementsByTagName('p');
thetext = '';
var count = 0;
for (var i = 0; i< paragraphs.length; i++) {
@magicseth
magicseth / UIView+Threading.m
Created April 13, 2011 21:10
some code to help catch tricky background thread UI bugs
//
// UIView+Threading.m
//
// Created by Seth Raphael on 4/12/11.
// Copyright 2011 BumpTechnologies. All rights reserved.
//
#ifdef DEBUG