Trial
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 hashlib | |
import hmac | |
import os | |
import requests | |
import requests_aws4auth | |
import aws_requests_auth.aws_auth | |
import botocore.auth | |
import botocore.awsrequest |
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
# -*- coding: utf-8 -*- | |
import airflow | |
from airflow.executors.celery_executor import CeleryExecutor | |
from airflow.models import DAG | |
from airflow.operators.bash_operator import BashOperator | |
from airflow.operators.dummy_operator import DummyOperator | |
from airflow.operators.subdag_operator import SubDagOperator | |
def get_id_list(): | |
""" idのリストを返す. 例のためとりあえず簡単に0〜99. """ |
- PHPのパッケージ管理ツール
- 従来のPEARと比べたメリット (ref. http://codezine.jp/article/detail/7827)
- root権限不要
- OATHによるワンタイムパスワードの仕様 - 2
- HOTP (HMAC-based One Time Password): 生成回数を元にワンタイムパスワードを生成
- 生成し直さないとワンタイムパスワードが変わらない
- HOTP (HMAC-based One Time Password): 生成回数を元にワンタイムパスワードを生成
- サーバとクライアントで生成回数をカウントしておく必要がある