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:
@import ObjectiveC; | |
@interface NSObject (LN_FORCE_SHAPES) | |
@end | |
@implementation NSObject (LN_FORCE_SHAPES) | |
+ (void)load | |
{ |
@interface UILabel (Fit) | |
- (void)fitFontSize | |
@end |
ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
require "benchmark" | |
require "rspec" | |
module RSpec | |
module Benchmark | |
class Result | |
attr_accessor :slowest, :fastest, :average, :elapsed | |
def initialize(elapsed) | |
@elapsed = elapsed |