$ npx envinfo
System:
OS: macOS 12.0.1
CPU: (10) arm64 Apple M1 Pro
Memory: 75.13 MB / 32.00 GB
Shell: 5.8 - /bin/zsh
Binaries:
Node: 16.13.0 - ~/.anyenv/envs/nodenv/versions/16.13.0/bin/node
Yarn: 1.22.17 - ~/.anyenv/envs/nodenv/versions/16.13.0/bin/yarn
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: '3' | |
services: | |
# HTTPS Reverse Proxy | |
https-portal: | |
image: steveltn/https-portal:1 | |
container_name: minoru-dev-https-portal | |
ports: | |
- '80:80' | |
- '443:443' |
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
function checkSmartExEmail() { | |
var searchQuery = "from:([email protected]) subject:(新幹線予約)"; | |
var checkSpanMinute= 5; // 起動時間間隔 | |
const regexpObj = /■発売内容[\r\n]+お預かり番号:.+[\r\n]+乗車日 ([0-9]+)月([0-9]+)日[\r\n]+(.+)\(([0-9]+:[0-9]+)\)→(.+)号→(.+)\(([0-9]+:[0-9]+)\)[\s\S]+(ご案内)/m | |
var dt = new Date(); | |
dt.setMinutes(dt.getMinutes() - checkSpanMinute); | |
var threads = GmailApp.search(searchQuery, 0, 5); |
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
function checkMovixEmail() { | |
var searchQuery = "from:([email protected]) subject:(チケット購入の確認)"; | |
var checkSpanMinute= 5; // 起動時間間隔 | |
const regexpObj = /▼劇場[\s]+(.+)[\s]+(.+)[\s]+▼作品名[\s]+(.+)[\s]+▼日時[\s]+([0-9]+\/[0-9]+\/[0-9]+).+[\s]+([0-9]+:[0-9]+)~([0-9]+:[0-9]+)[\s\S]+login.do/m | |
var dt = new Date(); | |
dt.setMinutes(dt.getMinutes() - checkSpanMinute); | |
var threads = GmailApp.search(searchQuery, 0, 5); |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#include <sys/time.h> | |
#define TIMES 10000 | |
#define SIZE 1000 | |
void printArray(int *list, int len) | |
{ |