By estis , 1 4月, 2018 Rのgrepなどで、( に一致させたい時 > grep('(', '(') grep("(", "(") でエラー: '(' は不正な正則表現です、理由は 'Missing ')'' となるので、下記のように fixed=TRUE を指定する。 > grep('(', '(' , fixed=TRUE) [1] 1
By estis , 24 3月, 2018 pandoc インストール エラー: pandoc version 1.12.3 or higher is required and was not found (see the help page ?rmarkdown::pandoc_available). と、表示された。 よく調べたら、pandoc がインストールされていなかった。 2016年1月のネット上の記事では、できないって書いてあったけど、今は、 brew install pandoc で、インストールできた。
By estis , 18 3月, 2018 WARN[0000] Request Failed error="Get https://example.net: x509: certificate signed by unknown authority" k6 でテストしたときに、 WARN[0000] Request Failed error="Get https://example.net: x509: certificate signed by unknown authority" といったエラーが出る場合は、 k6 run --insecure-skip-tls-verify script.js のように実行するか、 export let options = { insecureSkipTLSVerify: true }; を、script.js に書き加えれば、回避できる。
By estis , 18 3月, 2018 Go インストール The Go Programming Language https://golang.org http://blog.musirao.net/node/181 で、 2009/12/27 (日) に、CentOS5.4 へインストールしているけれど、 https://golang.org/doc/install を見ると、 https://golang.org/dl/ から、アーカイブを落としてきて、/usr/local へ解凍すればよいとのこと。 例えば、 tar -C /usr/local -xzf go$VERSION.$OS-$ARCH.tar.gz とする。 その後 export PATH=$PATH:/usr/local/go/bin のように、パスを通す。
By estis , 18 3月, 2018 k6 インストール https://loadimpact.com/k6 に、 「k6 is a developer-centric open source load testing tool」とある。 インストールは、 https://k6.readme.io/docs/installation を参照。 Mac環境では、 brew tap loadimpact/k6 brew install k6 で、インストールできる。 WindowsやLinux用のバイナリは、 https://github.com/loadimpact/k6/releases
By estis , 17 3月, 2018 WPScan ヘルプ $ wpscan -h _______________________________________________________________ __ _______ _____ \ \ / / __ \ / ____| \ \ /\ / /| |__) | (___ ___ __ _ _ __ ® \ \/ \/ / | ___/ \___ \ / __|/ _` | '_ \ \ /\ / | | ____) | (__| (_| | | | | \/ \/ |_| |_____/ \___|\__,_|_| |_| WordPress Security Scanner by the WPScan Team Version 2.9.3 Sponsored by Sucuri - https://sucuri.net
By estis , 17 3月, 2018 WPScan インストール https://blog.musirao.net/node/6412 を参照(2021年1月30日(土)追記) WPScan https://wpscan.org のインストールは、Mac 環境へは、 brew install wpscan で、インストール可能。 http://brewformulas.org/Wpscan