ASi

2020-12-01から1ヶ月間の記事一覧

PBKDF2 iteration, stretching

https://pages.nist.gov/800-63-3/sp800-63b.htmlhttps://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html

セゾン アメックス コールドの還元率

200ポイントで 1000円の金券と交換なので、5円/1point 1000円で1.5point なので、1000円あたり 1.5 * 5 = 7.5円 7.5 / 1000 = 0.75%まぁ年会費がかかるが。。。

クランク角センサーも交換した方が良さそう

https://mixi.jp/view_bbs_comment.pl?comment_number=3&community_id=176906&bbs_id=990761

HID交換資料

純正HIDバルブ交換(とその他合わせて交換) https://minkara.carview.co.jp/userid/2812826/car/2441267/5010123/note.aspx

ヘッドライト磨き資料

ヘッドライト磨きが長持ちしない3つの理由|白河市・棚倉町のコーティング専門店 http://www.fujita-energy.jp/blog/archives/5824ヘッドライトのウレタンクリア塗装に挑戦した https://www.1-humidasu.com/entry/headlight_clear-painting必須!ヘッドライ…

スタッドレスタイヤ

2019年製 225/45R17 94H ANTARES/アンタレス GRIP 20 https://store.shopping.yahoo.co.jp/in-field/atw-ah4072.html 1本送税込8000円 KENDA KR36 ICETEC NEO 225 45 17 (https://www.kendajp.com/car/lineup/item/kr36/) https://kaago.com/mautogallery/KR…

node でコマンドラインで stdin 処理

echo test | node -e " \ var input = ''; process.stdin.on('data', function(chunk){ input += chunk; }); process.stdin.on('end', function(){ // input を処理 }); "

find で grep

(for file in $(find [dir] -type f); do cat $file | grep "search word"; if test $? == 0 ;then echo found in $file; fi; done;)