http://www.dtksoft.com/dtkanpr.php
http://opos.codeplex.com/
https://github.com/openalpr/openalpr
https://github.com/twelve17/openalpr-ios
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 vertical = d3.select(".chart") | |
.append("div") | |
.attr("class", "remove") | |
.style("position", "absolute") | |
.style("z-index", "19") | |
.style("width", "1px") | |
.style("height", "380px") | |
.style("top", "10px") | |
.style("bottom", "30px") | |
.style("left", "0px") |
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
"use strict"; | |
import * as hookMod from 'angular2/src/router/lifecycle/lifecycle_annotations'; | |
import * as routerMod from 'angular2/src/router/router'; | |
import {isBlank, isPresent} from 'angular2/src/facade/lang'; | |
import {StringMapWrapper} from 'angular2/src/facade/collection'; | |
import {Promise, PromiseWrapper} from 'angular2/src/facade/async'; | |
import {BaseException} from 'angular2/src/facade/exceptions'; | |
import { | |
ElementRef, DynamicComponentLoader, Directive, Injector, provide, ComponentRef, Attribute |
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
#!/usr/bin/env bash | |
# Colours picked from https://robinpowered.com/blog/best-practice-system-for-organizing-and-tagging-github-issues/ | |
### | |
# Label definitions | |
### | |
declare -A LABELS | |
# Platform |
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
__cnt__ = 0; | |
jQuery('.stream .js-actionFavorite').each(function(i, ele) { ele = jQuery(ele); if (ele.css('display') != 'inline-block') { return; } setTimeout(function() { ele.click(); }, __cnt__++ * 500); | |
}); |
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 issues = []; | |
$("input[type=checkbox].js-issues-list-check:checked").each(function() { | |
var $check = $(this), | |
$title = $check.parents("li.js-issue-row").find("a.issue-title-link"); | |
issues.push($title.text().replace(/(\r\n|\n|\r)/gm,"").replace(/ /g, "") + " #" + $check.val()) | |
}) | |
window.prompt("Copy to clipboard: Ctrl+C, Enter", issues.join("\r\n")); |
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
import UIKit | |
enum LogoView : UIViewConvertible { | |
case Default() | |
case Large() | |
case Symbol() | |
// MARK: UIViewConvertible | |
var View: UIView { | |
switch self { |
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
// Using SwiftyJSON | |
var path = NSBundle.mainBundle().pathForResource("satellite-v7-debug", ofType: "json") | |
var styles = NSData(contentsOfFile: path!) | |
var jsonStyles = JSON(data: styles!) | |
let polygonCoordinates = [ | |
[ | |
8.702266216278076, | |
56.04999222180692 |
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
class BackgroundImageView : UIView { | |
private let bgImage = UIImageView(forAutoLayout: ()) | |
private var blurView:UIVisualEffectView! | |
private var vibrancyView:UIVisualEffectView! | |
private var didSetupConstraints = false | |
var containerView: UIView? = nil { | |
willSet(container) { | |
removeContainerViewFromSuperview() | |
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
#!/usr/bin/env ruby | |
require 'houston' | |
certificate = 'cert.pem' | |
passphrase = '' | |
client = Houston::Client.production | |
client.certificate = File.read(@certificate) | |
client.passphrase = @passphrase |