Install NumPy
brew install python3
# Get access to the scientific Python formulas
brew tap Homebrew/python
# Install Numpy and Matplotlib
brew install numpy --with-python3
package main | |
import ( | |
"crypto/tls" | |
"crypto/x509" | |
"fmt" | |
"io" | |
"log" | |
) |
Install NumPy
brew install python3
# Get access to the scientific Python formulas
brew tap Homebrew/python
# Install Numpy and Matplotlib
brew install numpy --with-python3
The circle.yml
file is made up of six
primary sections. Each section represents a phase of running your tests:
machine:
adjusting the VM to your preferences and requirements
checkout:
checking out and cloning your git repo
dependencies:
setting up your project’s language-specific dependencies
RabbitMQのManagement pluginを有効に
# rabbitmq-plugins enable rabbitmq_management
Vhostを追加
# rabbitmqctl add_vhost /athena
Vhostを削除
Collectionの一覧を取得
> use athena
> db.auth("test_id", "test_id")
> db.getCollectionNames()
リモートのMongoDBに接続
テーブルの一覧を表示
\dt
ユーザー一覧を表示
\du
The only mandatory claim for an unencrypted JWT header is the alg
claim, for unencrypted JWTs this claim must be set to the value none
.
Optional header claims include the typ
and cty
claims.
For unencrypted JWTs, the header is simply:
{
"alg": "none"
}
Renew
30 2 * * 1 /usr/local/sbin/certbot-auto renew >> /var/log/le-renew.log
NginxにSSl証明書を適応させる
Install
go get -u github.com/labstack/echo
$ cat Hello.elm
module Hello exposing (..)
import Html exposing (text)
main =
text "Hello"