Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
| /*Customise Safari Web Inspector font*/ | |
| /*(tested on Safari 7.0.1 on OS X Mavericks)*/ | |
| /* Tested on Safari 9.1 (11601.5.17.1) on OSX 10.11.4 as of 2016-05-08 */ | |
| /* | |
| JMichaelTX NOTE: | |
| - This process was written for Safari 7 (Mavericks) | |
| - I found it worked fine with Safari 9.1 (11601.5.17.1) on OSX 10.11.4, with just a few simple changes (noted below) | |
| */ |
| if (typeof exports === 'undefined') exports = {} | |
| function timer (repeats, func, delay) { | |
| var args = Array.prototype.slice.call(arguments, 2, -1) | |
| args.unshift(this) | |
| var boundFunc = func.bind.apply(func, args) | |
| var operation = $.NSBlockOperation.blockOperationWithBlock(boundFunc) | |
| var timer = $.NSTimer.timerWithTimeIntervalTargetSelectorUserInfoRepeats( | |
| delay / 1000, operation, 'main', null, repeats | |
| ) |
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html