alfred://customsearch/Google%20GIF%20Search/gif/utf8/noplus/https://www.google.com/search?q={query}&tbm=isch&tbs=itp:animated
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
{{pluralize someCount "person" "people"}} | |
When someCount == 1 => "1 person" | |
When someCount != 1 => "0 people", "10 people" | |
If the final argument is omitted, the plural is made by | |
appending an "s" to the second argument |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var padding = 0; | |
var data, xScale, yScale, line, area; | |
var prevChartWidth = 0, prevChartHeight = 0; | |
var data = [ | |
[],[] | |
] | |
for (var y = 0; y<data.length; y++) { | |
var prev = 5; |
Dev/Ops at Artisan Mobile
Here's what you need:
- 4+ years of managing cloud-based infrastructures
- Experience maintaining 24-7 high availability uptime and support
- Experience leading teams and having primary responsibility for operational performance and communications
- Experience with automated environment scripting
- Solid experience with performance monitoring and tests
- Experience managing and optimizing big data deployments
- Strong interpersonal and collaboration skills
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: | |
# Annyong | |
# | |
# Dependencies: | |
# None | |
# | |
# Configuration: | |
# None | |
# | |
# Commands: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description | |
# Grabs the current forecast from Dark Sky | |
# | |
# Dependencies | |
# None | |
# | |
# Configuration | |
# HUBOT_DARK_SKY_API_KEY | |
# HUBOT_DARK_SKY_DEFAULT_LOCATION | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Sensible Table View/SCTableViewCell.m b/Sensible Table View/SCTableViewCell.m | |
index a828c53..b1c35d2 100644 | |
--- a/Sensible Table View/SCTableViewCell.m | |
+++ b/Sensible Table View/SCTableViewCell.m | |
@@ -1856,8 +1856,17 @@ | |
{ | |
if([numericValue intValue]==0 && self.displayZeroAsBlank) | |
self.textField.text = nil; | |
- else | |
- self.textField.text = [NSString stringWithFormat:@"%@", numericValue]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include('phpviddler.php'); | |
$user = 'YOUR USERNAME'; | |
$pass = 'YOUR PASSWORD'; | |
$api_key = 'YOUR API KEY'; | |
$callback_url = 'CALLBACK'; | |
$v = new Viddler_V2($api_key); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'viddler-ruby' | |
# Create the client and authenticate it | |
viddler = Viddler::Client.new 'YOUR API KEY' | |
viddler.authenticate! 'USERNAME', 'PASSWORD' | |
# Simple API for calling GET, POST, and uploading a file: | |
viddler.get 'viddler.playlists.getByUser', :user => 'kyleslat' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function viddlerVideoSwitch(objectElement, newId) { | |
viddlerVideoInterface(objectElement, function(movie){ | |
movie.setMovie(videoId, true); | |
}, function(video){ | |
video = $(video); | |
var src = video.attr('src'); | |
var poster = video.attr('poster'); | |
var oldId = src.match(/file\/([^\/]+)\/html5/)[1]; | |
var oldIdRegexp = new RegExp(oldId); | |
video.attr('src', src.replace(oldIdRegexp, newId)); |
NewerOlder