This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
/* Auto-linkify @names for Micro.blog */ | |
/* Add to your child theme's functions.php or your site's functionality plugin */ | |
/* You should not put this in a stock theme's functions.php because any update */ | |
/* to that theme will overwrite functions.php and this code will have to be */ | |
/* added back again. */ | |
// Props to Chris Reed for his helpful pointers to make this only run on actual posts | |
function linkify_microdotblog_names( $data ) { | |
$content = $data['post_content']; |
typedef enum _UIBackgroundStyle { | |
UIBackgroundStyleDefault, | |
UIBackgroundStyleTransparent, | |
UIBackgroundStyleLightBlur, | |
UIBackgroundStyleDarkBlur, | |
UIBackgroundStyleDarkTranslucent | |
} UIBackgroundStyle; | |
@interface UIApplication (UIBackgroundStyle) | |
-(void)_setBackgroundStyle:(UIBackgroundStyle)style; |