I hereby claim:
- I am chadsmith on github.
- I am chadsmith (https://keybase.io/chadsmith) on keybase.
- I have a public key whose fingerprint is 14D9 6E73 8AF1 E58F AA27 4337 9373 EC62 8189 1FF7
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
(function() { | |
var FavicoMoon = function(icon, color, bg) { | |
'use strict'; | |
var | |
container = document.createElement('div'), | |
span = document.createElement('span'), | |
body = document.body, | |
content, | |
canvas = document.createElement('canvas'), | |
getContext = function(w) { |
(function() { | |
var FavEmoji = function(unicode) { | |
'use strict'; | |
var | |
canvas = document.createElement('canvas'), | |
getContext = function(w) { | |
canvas.width = canvas.height = w; | |
context = canvas.getContext('2d'); | |
context.font = 'normal normal normal 32px/' + w + 'px sans'; | |
context.textBaseline = 'middle'; |
(function() { | |
var FaviconAwesome = function(icon, color, bg) { | |
'use strict'; | |
var | |
container = document.createElement('div'), | |
span = document.createElement('span'), | |
body = document.body, | |
content, | |
canvas = document.createElement('canvas'), | |
getContext = function(w) { |
chrome.webRequest.onBeforeRequest.addListener(function(details) { | |
return { cancel: true }; | |
}, { | |
urls: [ "*://*.ppjol.net/*", "*://*.ppjol.com/*" ] | |
}, [ "blocking" ]); |
#!/bin/bash | |
##################################################################### | |
# | |
# Copyright (c) 2009 Twilio, Inc. | |
# | |
# Permission is hereby granted, free of charge, to any person | |
# obtaining a copy of this software and associated documentation | |
# files (the "Software"), to deal in the Software without | |
# restriction, including without limitation the rights to use, | |
# copy, modify, merge, publish, distribute, sublicense, and/or sell |