- Evernote Scannable
- Genius Scan+
- Office Lens
- Scanner Pro 6
- https://itunes.apple.com/jp/app/scanner-pro-6-by-readdle/id333710667?mt=8
View kafka_cluster.yml
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
version: '2' | |
services: | |
zookeeper: | |
image: 'docker.io/bitnami/zookeeper:3-debian-10' | |
ports: | |
- '2181:2181' | |
environment: | |
- ALLOW_ANONYMOUS_LOGIN=yes | |
kafka: |
View bigquery.sql
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
WITH a AS ( SELECT 1 AS a, 2 AS b ) | |
SELECT a FROM a ; | |
-- result:: | |
-- | Row | a.a | a.b | | |
-- | 1 | 1 | 2 | | |
-- result (json):: | |
-- [ | |
-- { |
View fluentd-pubsub-bigquery.txt
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
fluent-plugin-bigquery = 0.4.4 | |
google-api-client ~> 0.9.3 | |
fluent-plugin-gcloud-pubsub = 0.0.5 | |
gcloud = 0.6.3 | |
google-api-client ~> 0.8.3 | |
ここで不整合が起こるので、fluent-plugin-bigqueryのバージョンを下げて解決 | |
fluent-plugin-bigquery = 0.2.14 |
View gist:ec04576a135e0375608ef561bfb7a9fa
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
$ scala | |
Welcome to Scala version 2.11.6 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_80). | |
Type in expressions to have them evaluated. | |
Type :help for more information. | |
scala> import java.util.{TimeZone, Calendar} | |
import java.util.{TimeZone, Calendar} | |
scala> TimeZone.getDefault | |
res0: java.util.TimeZone = sun.util.calendar.ZoneInfo[id="Etc/UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null] |
View concat_gzip.txt
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
$ cat <<EOF > 123.txt | |
> 1 | |
> 2 | |
> 3 | |
> EOF | |
$ gzip 123.txt | |
$ cat 123.txt.gz 123.txt.gz > 123123.txt.gz | |
$ gunzip -c 123123.txt.gz | |
1 | |
2 |
View mqtt_sub.py
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 python | |
# -*- coding: utf-8 -*- | |
import paho.mqtt.client as mqtt_client | |
topic = "MESHBLU_ACTION_UUID" | |
def on_connect(client, userdata, flags, rc): | |
print("connected with result code" + str(rc)) | |
client.subscribe(topic) |
View esp8266_mqtt_pub.ino
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
#include <ESP8266WiFi.h> | |
#include <DHT.h> | |
#include <PubSubClient.h> | |
#include <aJSON.h> | |
#define DHTPIN 4 | |
#define DHTTYPE DHT11 | |
const char* ssid = "WIFI_SSID"; | |
const char* password = "WIFI_PASS"; |
View esp8266_mqtt_sub.ino
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
#include <ESP8266WiFi.h> | |
#include <PubSubClient.h> | |
#include <aJSON.h> | |
const char* ssid = "WIFI_SSID"; | |
const char* password = "WIFI_PASS"; | |
const char* mqtt_server = "MESHBLU"; | |
const char* mqtt_clientid = "esp8266"; | |
const char* mqtt_topic = "MESHBLU_ACTION_UUID"; |
View langtool-popup.el
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
(defun popup-current-langtool-error () | |
(interactive) | |
(let ((msgs (langtool--current-error-messages))) | |
(if (null msgs) | |
(popup-tip "No errors") | |
(let ((msg (split-string (car msgs) "\n"))) | |
(popup-tip (join "\n" (reverse (nthcdr 2 (reverse msg))))))))) | |
(global-set-key "\C-ce" 'popup-current-langtool-error) |
View scanner.md
NewerOlder