- Evernote Scannable
- Genius Scan+
- Office Lens
- Scanner Pro 6
- https://itunes.apple.com/jp/app/scanner-pro-6-by-readdle/id333710667?mt=8
This file contains hidden or 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: |
This file contains hidden or 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):: | |
-- [ | |
-- { |
This file contains hidden or 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 |
This file contains hidden or 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] |
This file contains hidden or 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 |
This file contains hidden or 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) |
This file contains hidden or 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"; |
This file contains hidden or 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"; |
This file contains hidden or 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) |
NewerOlder