I hereby claim:
- I am fokkezb on github.
- I am fokkezb (https://keybase.io/fokkezb) on keybase.
- I have a public key ASACRlfa-rxPMFJo9GKf6-t866_oNVhZG4bXLkGu8I_UoQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
function afterIntercom() { | |
if (window.intercomSettings.is_intercom_bubble_enabled && window.intercomSettings.is_intercom_twoway_enabled) { | |
// do something | |
} | |
} | |
if (window.intercomSettings) { | |
afterIntercom(); | |
} else { | |
Object.defineProperty(window, 'intercomSettings', { |
import WatchKit | |
public extension WKInterfaceImage { | |
public func setImageWithUrl(url:String, scale: CGFloat = 1.0) -> WKInterfaceImage? { | |
NSURLSession.sharedSession().dataTaskWithURL(NSURL(string: url)!) { data, response, error in | |
if (data != nil && error == nil) { | |
let image = UIImage(data: data!, scale: scale) | |
$ git-heroes -c 5_1_X -p 5_0_2_GA -o md -n
name (16) | commits (255) | added (176061) | deleted (347769) | sum (523830) | diff (171708) | |
---|---|---|---|---|---|---|
Chris Barber | [email protected] | 43 | 146762 | 255795 | 402557 | 109033 |
sgtcoolguy | [email protected] | 11 | 8588 | 88800 | 97388 | 80212 |
Pedro Enrique | [email protected] | 13 | 6122 | 207 | 6329 | 5915 |
Feon Sua | [email protected] | 13 | 5418 | 30 | 5448 | 5388 |
{ | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"Compare Side-By-Side", | |
"DashDoc", | |
"DoxyDoxygen", | |
"Fizzy Theme", |
var w = Ti.UI.createWindow({backgroundColor:'green'}); | |
w.open(); |
module.exports = function (grunt) { | |
grunt.initConfig({ | |
clean: { | |
node: ['node_modules'] | |
}, | |
spawn: { | |
unpublish: { | |
command: 'appc', | |
args: ['unpublish'] |
// Array | |
$('.aname').map(function(){return $(this).text();}).get(); | |
// One per line | |
$('.aname').map(function(){return $(this).text();}).get().join('\n'); | |
// CSV | |
$('.aname').map(function(){return $(this).text();}).get().join(','); |