Lil Toby Blog

不斷筆記,不斷前進

Python 初心者筆記

Start to learn Python

建立環境 旨在把環境切開乾淨使套件不會互相污染彼此的環境 anaconda 與pipenv不相容 是miniconda跟很多套件的綜合 教課很常用(因為比較好上手且

Firebase: 部落格部署教學

一鍵部署就是這麼簡單

Firebase 體驗 同時支援 Android、iOS 及網頁的 app 雲端開發平台 快速綁定 DNS 自動上 https 支援基本 Authentication 可對線上網站進行版本控制 可輕鬆進行 A/B testiing 環境建置 以下列資

蓋自己的 Hugo 部落格

蓋漂亮部落格網站不求人

資料目錄結構 . ├── content # 存放編譯後的可執行檔案 │ └── post # 文章位置 ├── public # 編譯後的資料 ├── static # 放置 images css 等靜態檔 └── themes # 版型存放位置 │ └

在家自建 docker registry

給自己一個安全的 image 寶貝窩

動機 希望可以有個 image 倉庫在 NAS 裡 既免費又安全 建立流程 以下列資訊為例,可自行抽換 NAS IP: 192.168.1.5 PORT: 3000 IMAGE: pixwork 起一個 registry 在 NAS 裡 docker run -d \ -p 3000:5000 \ -v /var/services/homes/<username>/storage:/var/lib/registry \ --name registry registery 弄半天最後不

Tmux 基本設定

讓在終端機的使用更為高效

基本安裝 TPM git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm 先加下列到 .tmux.conf 裡 # List of plugins set -g @plugin ‘tmux-plugins/tpm’ set -g @plugin ‘tmux-plugins/tmux-sensible’ Other examples: set -g @plugin ‘github_username/plugin_name’ tmux source ~/.tmux.conf 設置快捷鍵 set -g @resurrect-save ‘C-s’ set -g @resurrect-restore ‘C-r’ 熱鍵列表 Key Bind c : 創建新 window , : rename window ? : Help &