- 焼き鳥(皮)
- 焼き鳥(モモ)
- 牛タン
- フライドポテト
- サワークリーム
- 湯葉
- 天ぷら
- ごま油
- サムギョプサル
- ナムル(もやし・ほうれん草のみ、茶色いのは嫌い)
それっぽいランダムな値が欲しい時がありますよね。例えば、モックアプリで使うIDや、開発環境のダミーユーザーのパスワードなど、そんなに安全じゃなくていいから手軽に作れるランダムな文字列が欲しいという場面があります。パスワード生成アプリなどもありますが、アプリのインストールや起動がめんどくさく、一回だけ欲しいみたいなときになんか簡単かつ汎用的な方法はないものかと探していました。そこで、様々な環境から一行で作れる方法を紹介します。手軽さが優先されているので、安全性が多少は下がる面もあります。本番環境でのパスワードなどには使わない方が良いでしょう。
JavaScriptは汎用的です。ブラウザのインスペクタから実行できますし、Node.jsがあればターミナル上でREPLを実行できます。このワンライナーはどうでしょうか。
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
* 広い部屋に引っ越したい(郊外に引っ越してもいいかも) | |
* 大きいテレビ買いたい | |
* 曲面ディスプレイ買いたい | |
* [ランプの宿](http://www.lampnoyado.co.jp/)行きたい | |
* [黒川温泉](https://www.kurokawaonsen.or.jp/)行きたい | |
* [ichibiko](https://tabelog.com/tokyo/A1324/A132402/13242620/)行きたい | |
* [吉村家](https://tabelog.com/kanagawa/A1401/A140101/14000059/)行きたい | |
* 焼いた肉を食べたい(家で料理できないから恋しい) | |
* 和牛パーティーしたい | |
* 八重洲地下商店街の六厘舎に並びたい |
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
var w = (3*window.innerWidth)/4; //SVG領域の大きさ確定 | |
var h = (3*window.innerHeight)/4;//SVG領域の大きさ確定 | |
var svg = d3.select("body") //SVG領域の作成 | |
.append("svg") | |
.attr("width", w) | |
.attr("height", h) | |
.attr("class","svg"); | |
//[[where,"a"year,pcap,hwy,water,...,unemp,where,"a"year,pcap,hwy,water,...,unemp,,,],...,[where,"a+n"year,pcap,hwy,water,...,unemp,where,"a+n"year,pcap,hwy,water,...,unemp,...]]というデータ構造 | |
var dataseed=[['ALABAMA', 1970, 15032, 7325, 1655, 6051, 35793, 28418, 1010, 4, 'ARIZONA', 1970, 10148, 4556, 1627, 3963, 23585, 19288, 547, 4, 'ARKANSAS', 1970, 7613, 3647, 644, 3320, 19749, 15392, 536, 5, 'CALIFORNIA', 1970, 128545, 42961, 17837, 67746, 172791, 263933, 6946, 7, 'COLORADO', 1970, 11402, 4403, 2165, 4834, 23709, 25689, 750, 4, 'CONNECTICUT', 1970, 15865, 7237, 2208, 6420, 24082, 38880, 1197, 5, 'DELAWARE', 1970, 4250, 2078, 234, 1937, 6108, 6863, 216, 4, 'FLORIDA', 1970, 29696, 12622, 4174, 12899, 57178, 69641, 2152, 4, 'GEORGIA', 1970, 18270, 7999, 2092, 8178, 4159 |