2020-03-01から1ヶ月間の記事一覧
Ⅰ. はじめに タイトルの通り「翻訳Webサイトまとめ」です。 Ⅱ. まとめ name URL メモ Google 翻訳 https://translate.google.com/ DeepL翻訳 https://www.deepl.com/translator みらい翻訳 https://miraitranslate.com/trial/ 百度翻译 https://fanyi.baidu.…
Ⅰ. はじめに Rfc2898DeriveBytes のデフォルトは HMACSHA1(HashAlgorithmName.SHA1)です。任意のハッシュアルゴリズムとして以下が指定可能です。 HashAlgorithmName.MD5 HashAlgorithmName.SHA1 HashAlgorithmName.SHA256 HashAlgorithmName.SHA384 HashAlg…
Ⅰ. はじめに タイトルの通り「C#でxxHashを計算する方法」です。 Ⅱ. やり方 1. 必要なパッケージをインストールする dotnet add package System.Data.HashFunction.xxHash --version 2.0.0 2. プログラムを書く using System.Data.HashFunction.xxHash; usin…
Ⅰ. はじめに タイトルの通り「ASP.NETでBASIC認証する方法」です。 Ⅱ. やり方 1. 必要なパッケージをインストールする dotnet add package idunno.Authentication.Basic --version 2.3.0 2. プログラムを書く Startup.cs using idunno.Authentication.Basic;…
Ⅰ. はじめに タイトルの通り「Linuxでコンテキストスイッチ回数を1秒毎に表示する方法」です。 Ⅱ. やり方 以下コマンドを実行する # 1秒ごと sar -w 1 # 3秒ごと sar -w 3 実行結果