Skip to content

Instantly share code, notes, and snippets.

View joshbetz's full-sized avatar
🦩

Josh Betz joshbetz

🦩
View GitHub Profile
@joshbetz
joshbetz / pretty-code-editor.php
Created September 18, 2012 16:31
Add basic <tab>ing ability
<?php
class Pretty_Code_Editor {
function __construct() {
add_action( 'admin_print_styles', array( $this, 'editor_styles' ) );
add_action( 'admin_print_footer_scripts', array( $this, 'tabs' ) );
}
function editor_styles() { ?>
@joshbetz
joshbetz / possibly_related_posts.php
Created September 14, 2012 22:25
Suggest posts on 404 pages
@joshbetz
joshbetz / Todo.txt to Omnifocus
Created October 22, 2011 21:40
Import todo.txt file to Omnifocus
set p to "<Path to todo.txt>"
set l to paragraphs of (do shell script "grep . " & p)
do shell script ">" & p
tell app "OmniFocus" to tell document 1
repeat with v in l
make new inbox task with properties {name:v}
end repeat
end tell