Annotate images with a label in the top right corner.
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
identifier | region | language | formatted number | |
---|---|---|---|---|
eu | - | Basque | 1.337,37 ¤ | |
hr_BA | Bosnia & Herzegovina | Croatian | 1.337,37 KM | |
en_CM | Cameroon | English | FCFA 1,337 | |
en_BI | Burundi | English | FBu 1,337 | |
en_AE | United Arab Emirates | English | AED 1,337.37 | |
rw_RW | Rwanda | Kinyarwanda | RF 1.337 | |
ast | - | Asturian | 1.337,37 XXX | |
en_SZ | Eswatini | English | E 1,337.37 | |
he_IL | Israel | Hebrew | 1,337.37 ₪ |
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
FROM openjdk:8-jdk-slim | |
ARG CLOUD_SDK_VERSION=189.0.0 | |
ARG INSTALL_COMPONENTS="app-engine-java" | |
ARG HOME=/root | |
ENV DEBIAN_FRONTEND noninteractive | |
ENV HOME /root | |
ENV CLOUDSDK_PYTHON_SITEPACKAGES 1 |
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
Pod::Spec.new do |s| | |
s.name = "KatalysatorSDK" | |
s.version = "1.0.7" | |
s.summary = "Katalysator iOS SDK" | |
s.description = <<-DESC | |
Beacon SDK from Katalysator. | |
DESC |
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 'csv' | |
require 'json' | |
if ARGV.size != 2 | |
puts 'Usage: csv_to_json in out' | |
puts | |
puts ' input: Input CSV file' | |
puts ' out: Output JSON file or -- for stdout' | |
puts |
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 node | |
var jsdom = require('jsdom'); | |
var wikipedia = 'http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes'; | |
var jquery = 'http://code.jquery.com/jquery.js'; | |
jsdom.env(wikipedia, [jquery], function (errors, window) { | |
var $ = window.$; | |
var tds = $('table[class="wikitable sortable"] > tr > td'); | |
if (tds.size() % 10 != 0) { |