- iCloudnログイン
- Chrome
- Googleアカウントにログイン
- ATOK
- 1Password
- Wacomドライバーインストール
- Tabmateの設定を実施
- Clip StudioのUI設定を実施
- Font関連
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
KomuroMBA:~ ayakomuro$ mongod --version | |
db version v3.2.7 | |
git version: 4249c1d2b5999ebbf1fdf3bc0e0e3b3ff5c0aaf2 | |
OpenSSL version: OpenSSL 1.0.2n 7 Dec 2017 | |
allocator: system | |
modules: none | |
build environment: | |
distarch: x86_64 | |
target_arch: x86_64 |
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
KomuroMBA:~ ayakomuro$ mongo | |
dyld: Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib | |
Referenced from: /usr/local/bin/mongo | |
Reason: image not found | |
Abort trap: 6 | |
KomuroMBA:~ ayakomuro$ brew search openssl | |
==> Formulae | |
curl-openssl [email protected] ✔ | |
glib-openssl homebrew/portable-ruby/portable-openssl | |
KomuroMBA:~ ayakomuro$ brew install openssl |
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
- JavaScript 用 Amazon Encryption SDK の一般公開を開始 | |
- Amazon RDS on VMware が一般提供されました | |
- Amazon Quantum Ledger Database (QLDB) の一般利用開始の発表 | |
- Amazon Forecast の一般提供を開始 | |
- AWS Lake Formation が一般公開されました。 | |
- Amazon Aurora Multi-Master の一般公開を開始 | |
- Amazon SageMaker の新しいモデル追跡機能が一般提供開始 | |
- AWS クラウド開発キット (AWS CDK) の一般公開を開始 | |
- AWS Toolkit for Visual Studio Code の一般公開を開始 | |
- AWS Security Hub の一般提供を開始 |
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
- JavaScript 用 Amazon Encryption SDK の一般公開を開始 | |
- Amazon RDS on VMware が一般提供されました | |
- Amazon EKS サンパウロリージョンで一般提供 | |
- Amazon Quantum Ledger Database (QLDB) の一般利用開始の発表 | |
- Amazon Forecast の一般提供を開始 | |
- AWS Lake Formation が一般公開されました。 | |
- Amazon Aurora Multi-Master の一般公開を開始 | |
- Amazon SageMaker の新しいモデル追跡機能が一般提供開始 | |
- AWS クラウド開発キット (AWS CDK) の一般公開を開始 | |
- AWS Toolkit for Visual Studio Code の一般公開を開始 |
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
- Amazon EC2 Auto Scaling、Application Auto Scaling、そして AWS Auto Scaling が AWS PrivateLink のサポートを開始 | |
- Amazon Route 53 が、プライベートホストゾーンの重複する名前空間をサポート開始 | |
- Amazon Redshift Spectrum が 5 つの追加の AWS リージョンで提供開始 | |
- Amazon QuickSight がテーマ、条件付きのフォーマットなどを開始 | |
- Elastic Fabric Adapter が Intel® MPI ライブラリとの互換性をサポート開始 | |
- AWS Managed Services (AMS) が SUSE Linux Enterprise Server 12 SP4 をサポート開始 | |
- Amazon Redshift がインスタンス間で復元を開始 | |
- Amazon SES が FIPS 140-2 準拠エンドポイントのサポートを開始 | |
- Amazon Connect がユーザー管理 API 用にタグサポートを開始 | |
- Amazon ElastiCache が T3-Standard キャッシュノードのサポートを開始 |
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
import requests | |
import time | |
from bs4 import BeautifulSoup | |
from os import path, sys | |
from datetime import date, datetime | |
from weasyprint import HTML | |
""" | |
What's This? | |
SPIRALをコンテンツをPDFにしてローカルに保存してくれるスクリプト |
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
sudo apt-get update && wget https://minergate.com/download/deb-cli -O minergate-cli.deb && sudo dpkg -i minergate-cli.deb | |
minergate-cli -user <email> -bcn 2 |
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
bucket_name = 'backup_popowa' | |
today = Date.today | |
days2_ago = today - 2 | |
format_today = today.strftime("%Y_%m_%d") | |
format_days2_ago = days2_ago.strftime("%Y_%m_%d") | |
backup_file_name = "backup-#{format_today}.zip" | |
delete_file_name = "backup-#{format_days2_ago}.zip" | |
s3 = AWS::S3.new | |
bucket = s3.buckets[bucket_name] |
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
import time | |
import sendgrid | |
import os | |
from datadog import statsd | |
from sendgrid.helpers.mail import * | |
sq = sendgrid.SendGridAPIClient(apikey=os.environ.get('SENDGRID_API_KEY')) | |
from_email = Email("") | |
subject = "Hello" | |
to_email = Email("") |
NewerOlder