$ git grep 'time_t' -- '*.[ch]'
Looks for time_t in all tracked .c and .h files in the working directory and its subdirectories.
$ git grep -e '#define' --and \( -e MAX_PATH -e PATH_MAX \)
Looks for a line that has #define and either MAX_PATH or PATH_MAX.
This file contains hidden or 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
| { | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.stylelint": true | |
| }, | |
| "editor.formatOnSave": true, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "css.validate": false, | |
| "scss.validate": false, | |
| "stylelint.validate": ["css", "scss"] | |
| } |
This file contains hidden or 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
| ASSOC ファイル拡張子の関連付けを表示または変更します。 | |
| ATTRIB ファイルの属性を表示または変更します。 | |
| BREAK 拡張 CTRL+C チェックを設定または解除します。 | |
| BCDEDIT ブート データベースのプロパティを設定して起動時の読み込みを制御します。 | |
| CACLS ファイルのアクセス制御リスト (ACL) を表示または変更します。 | |
| CALL バッチ プログラム中から、別のバッチ プログラムを呼び出します。 | |
| CD 現在のディレクトリを表示または変更します。 | |
| CHCP 有効なコード ページ番号を表示または設定します。 | |
| CHDIR 現在のディレクトリを表示または変更します。 | |
| CHKDSK ディスクをチェックし、状態を表示します。 |
- 拡張プレート | Daily Craft Keyboard
- Claw44 v3 | 自作キーボードの店 Daily Craft Keyboard
- Claw44 v3 ビルドガイド | Daily Craft Keyboard
- Claw44 v3
- TRS or TRRSケーブル:1本
- USBケーブル:1本
これは私が支援先に提供した、1 on 1 に関するノウハウや、思いを述べたドキュメントを元にしています。企業の枠を超えて共有したいことが多いので、ここに貼ります。
- 世の中には 1 on 1 の本があるようですが、とりあえずは『1 on 1 で 何を話すのか? マネージャ/ソフトウェアエンジニアの立場から - サンフランシスコではたらくソフトウェアエンジニア』を読んでもらえればよいと思います (higepon さんに感謝!)。
- 1 on 1 は 1 対 1 で話すミーティングで、基本定期的にやります。上長とメンバーとの間で行うのが基本です。
- グループ/チームでのミーティングを補完するためのものです。
- みんなの前では話しづらい、込み入った内容を話します。
- チームとして行っているタスクの進捗確認に 1 on 1 を使うのは避けましょう。それは 1 on 1 の目的に沿っていません。
- 基本、「メンバーの時間」と捉えてください。メンバーが話したいこと、上長に質問したいこと、相談したいことを話す時間です。
- ですので、上長は相手の話をさえぎらず、聞くことに徹してください (話すのが得意な人、好きな人がマネージャになっている可能性が高いというバイアスに注意しましょうw)。
This file contains hidden or 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
| const alphabetRaw = [ | |
| ...'あいうえおかきくけこさしすせそたちつてとなにぬねの', | |
| ...'はひふへほまみむめもやゆよらりるれろわをん', | |
| ] | |
| console.log(alphabetRaw) | |
| // ["あ", "い", "う", "え", "お", "か", "き", "く", "け", "こ", "さ", "し", "す", "せ", "そ", "た", "ち", "つ", "て", "と", "な", "に", "ぬ", "ね", "の", "は", "ひ", "ふ", "へ", "ほ", "ま", "み", "む", "め", "も", "や", "ゆ", "よ", "ら", "り", "る", "れ", "ろ", "わ", "を", "ん"] | |
| function permuteWithRepetitions(permutationOptions, permutationLength = 1) { | |
| if (permutationLength === 1) { |
This file contains hidden or 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
| [..."]版 eldniK[sulp SSERP BD+BEW 理原のアェウトフソいすやい使──ンイザデIU向指トクェジブオ"].slice().reverse().join('') | |
| // "オブジェクト指向UIデザイン──使いやすいソフトウェアの原理 WEB+DB PRESS plus[Kindle 版]" |
This file contains hidden or 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
| // 0始まりでよいなら・・・ | |
| const minitues = [...Array(60).keys()] | |
| // => [0, 1, 2, 3,....,59] | |
| // 1始まりにしたい、etc.なら・・・・ | |
| const minitues = [...Array(60).keys()].map(i => ++i) | |
| // => [1, 2, 3, 4,....,60] |