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
Option Explicit | |
Public dstRow As Long | |
Public srcRange As Range |
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
import asyncio | |
import logging | |
import concurrent.futures as furures | |
import boto3 | |
from timeit import default_timer as timer | |
logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(thread)s - %(name)s - %(levelname)s - %(message)s") | |
COPY_MAX = 10 | |
def hasFile(bucket, path): |
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
import datetime | |
import csv | |
def conv(s): | |
dt = datetime.datetime.fromtimestamp(s/1000) | |
return dt.strftime('%H:%M:%S') | |
def main(args): | |
with open(args[1], newline='') as f : |
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
AWSTemplateFormatVersion: 2010-09-09 | |
Description: | | |
RDBTest | |
Parameters: | |
StackName: | |
Type: String | |
ParamUser: | |
Type: String | |
ParamPassword: |
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
Resources: | |
RDSClusterParameter: | |
Type: AWS::RDS::DBClusterParameterGroup | |
Properties: | |
Description: !Sub "${StackName} DB Cluster Parameter" | |
Family: "aurora-postgresql13" | |
Parameters: | |
timezone: JAPAN |
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
PUT /company | |
{ | |
"mappings": { | |
"country": {}, | |
"branch": { | |
"_parent": { | |
"type": "country" | |
} | |
}, |
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
<?xml version="1.0"?> | |
<root> | |
<item> | |
<name>[all] KANA/EISUU + H/J/K/L move cursor</name> | |
<appendix>かなキー/英数キー + H/J/K/Lキーでカーソル移動</appendix> | |
<item> | |
<name>EISUU to ModifierFlag::EXTRA1</name> | |
<identifier>remap.app_all_eisuu_extra</identifier> | |
<autogen>__KeyOverlaidModifier__ KeyCode::JIS_EISUU, KeyCode::VK_MODIFIER_EXTRA1, KeyCode::JIS_EISUU</autogen> | |
</item> |
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
[loggers] | |
keys=root,simpleExample | |
[handlers] | |
keys=consoleHandler | |
[formatters] | |
keys=simpleFormatter | |
[logger_root] |