提案人:凍仁。
- 畫圖:用紙、筆和白板畫流程圖、架構圖,補助溝通 …。
- 我們上班是來解決有 商業價值 的問題,而不是純 coding。
- 為什麼我們都要聽老闆?因為他最了解 市場 和 需求 。
- 工程師 (Engineer) 的通病,就是只關注 技術債 和 技術評估 等工程問題;乎略了 從使用者角度著想 和 溝通方法。
| Enabled: yes | |
| Types: deb | |
| URIs: https://freeshell.de/phd/chromium/noble | |
| Suites: ./ | |
| Architectures: amd64 | |
| Signed-By: -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| . | |
| xsDNBGGibJsBDACrAxUxYp/jpbRkr+yWPfBrIqpKfsar56mzXZDLbPQC3k3sViUN | |
| u18rdVnxofxcTZU+oIOSsODUoKUtsUGCQlDOUK2s/JhHrRMd+rtF0n6oLsUTdCgc | |
| s5fTz+c/98RylqvQeOUdJqheyfZZSIjAld5OLuQh98XRQO+tt0F3OFF+WfyMrUDG |
| Types: deb | |
| URIs: https://downloads.1password.com/linux/debian/amd64 | |
| Suites: stable | |
| Components: main | |
| Architectures: amd64 | |
| Signed-By: -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| . | |
| mQINBFkeAh4BEACy6fUHiFi/YvXZ2E5Gs7qFL8TSKQGLt0g8w/NtBotMNveW2Nzg | |
| aXcmJ2E0aXY7nBRtpIgRRrb7XuskDZwGmVx4PQshaZuIozS0T1kdMitobi4k3g2M | |
| 551yf1bPWl1neVJ5MmbpknnaIG6VjMHxcRKE0xXDYhpBtt7QQQw1HT8vOjUOXBUf |
| # 可以設定一些預設行為 | |
| # [defaults] General defaults | |
| [defaults] | |
| # hostfile -- 主機 ip 對照 | |
| inventory = hosts | |
| # remote_user -- 遠端使用者名稱 | |
| remote_user = vagrant |
| #!/bin/bash | |
| # ============================================================================= | |
| # Author: Chu-Siang Lai / chusiang (at) drx.tw | |
| # Blog: http://note.drx.tw | |
| # Filename: migrate-diary-to-sub-dir.sh | |
| # Modified: 2023-09-04 15:52 | |
| # Description: Migrate diary from vimwiki/obsidian format to multi-sub | |
| # directory architecture for "mattn/calendar-vim" plugin, and | |
| # only review/edit via Vim. | |
| # Reference: https://github.com/chusiang/vimrc/commit/faca1de7e49f9a51cba3805d4ba3b2fc8a449909 |
| --- | |
| # .ansible-lint | |
| # exclude_paths included in this file are parsed relative to this file's location | |
| # and not relative to the CWD of execution. CLI arguments passed to the --exclude | |
| # option will be parsed relative to the CWD of execution. | |
| exclude_paths: | |
| - .gitlab-ci.yml | |
| - logs/ | |
| - roles/ |
| # EditorConfig is awesome: https://EditorConfig.org | |
| # top-most EditorConfig file | |
| root = true | |
| # Unix-style newlines with a newline ending every file | |
| [*] | |
| end_of_line = lf | |
| insert_final_newline = true |
| #!/bin/bash | |
| # ============================================================================= | |
| # Author: Chu-Siang Lai / chusiang.lai (at) gmail.com | |
| # Filename: retry_gitbook_build.sh | |
| # Modified: 2020-03-04 15:47 | |
| # Description: | |
| # As the gitbook maintainer, I want to auto retry the "gitbook build" tasks, | |
| # so that we can reduce a lot of manual retry actions. | |
| # ============================================================================= |