使用 PostgreSQL Docker 的基本操作 Posted on 2019-02-01 | 0 Comments | Views: 這兩天都在把 MySQL10 的資料搬到 PostgreSQL10,稍微紀錄一下開發筆記,開發環境是 CentOS7 ,已經很習慣用 docker 來做開發了,如果沒有 docker ,裝個 db 卸載個 db 該有多麻煩… PostgreSQL Docker先拉 image,然後用互動模式跑起來測 ... Read more »
Python Tips 通用的例外處理 Posted on 2019-01-26 | Edited on 2019-02-01 | 0 Comments | Views: 今天稍微小結了一下 Python 中的例外處理,想找出一個通用好用的 exception 寫法 (2019.2.1 更新) sample1.py最簡單的一種如下1234567#!/usr/bin/pythontry: raise NotImplementedError("Excpet ... Read more »
強化學習基礎:多臂吃角子老虎機問題 Posted on 2018-08-13 | 0 Comments | Views: 很久沒更新了… 最近研究怎麼寫遊戲的 AI ,原本是想用強化學習,學習遊戲中較優玩家的策略,但這種方法是離線學習的,每天打完要 parse log 重新訓練, AI 才會進步。然後就看了一下強化學習,希望結合 on-line learning 和 off-line learning ,關於系統性的撰 ... Read more »
machine learning crash course(mlcc) 修課心得 Posted on 2018-06-14 | Edited on 2018-06-15 | 0 Comments | Views: 之前斷斷續續也修了幾門 ML/DL 的課,甚至有過一些小實作,不過這門課稍微走過一遍,許多觀念有連在一起的感覺,有關 tensorflow 實作的部分也不少,還蠻推薦的。也推薦和 Brandon Rohrer 的投影片一起看,兩個份量都不多,mlcc 大概一個禮拜空閒的時間可以掃完,後者大概三天。這 ... Read more »
微服務下 RD 的 CI/CD 流水線 Posted on 2018-06-12 | 0 Comments | Views: 最近要 refactor 組上的 CI/CD pipeline ,花了一些時間研究一下,目前是針對開發人員的部分,流水線的端到端,分別是開發者,與交付有質量保證的 docker build 與相應能在 Kubernetes 跑進來的 config。某種程度上 Kubernetes 成為事實上的標準 ... Read more »
使用 Python 的 Jinja2 進行模板替換 Posted on 2018-06-05 | Edited on 2018-06-08 | 0 Comments | Views: 思路jinja2 之前看別人是用在 Flask 的網頁模板,但在運維上也蠻實用的。例如今天的工作,需要在不同環境佈署 container ,映象檔(image)不動,可是 config 需要 mapping 到不同環境,這時候也可以使用模板,下面舉一個很簡單的栗子 考慮到 CentOS 7 預設還是 ... Read more »
Pandas Dataframe 隨機 shuffle 小技巧 Posted on 2018-05-29 | 1 Comment | Views: 在做 learning 的時候會需要先把 pandas 的 dataframe 的 order 打亂,有幾種方法可以做到,稍微紀錄一下,我個人是比較喜歡 sklearn 的方法啦…以下要在 jupyter notebook 或 python script 裡執行, assume 已經安裝 panda ... Read more »
在 Mac book / Centos 7 上設置 Golang 的開發環境 Posted on 2018-05-23 | Edited on 2018-05-29 | 0 Comments | Views: 最近要來用 Golang 開發一些東西了,先寫個 setup 跟 Golang 有關的重要環境變量GOROOTPhoto from Quora I’m GOROOT GROOT GOROOT 就是 golang 安裝路徑,我直接用官方的 installer for MAC (.pkg) 安裝,預設 ... Read more »
如何修改 RPM build,以 unzip 套件為例 Posted on 2018-05-23 | 0 Comments | Views: 今天工作的時候,因為 unzip 有個我想要的 flag 沒有提供,於是就想改個 source code 測試一下,順便學了怎麼上 RPM 的 patch,以下的範例是去修改 unzip 的 warning-error 的 return code ,我希望忽略 warning-error,也就是雖然 ... Read more »
使用 kubeadm 安裝 Kubernetes 1.9 高可用 cluster Posted on 2018-05-15 | Edited on 2018-08-13 | 0 Comments | Views: 最近在 AWS 用上了 Kubernetes ,試了幾套工具之後,決定使用 kubeadm 來安裝高可用群集。但是,請注意 kubeadm 仍然在 beta 階段,如果要嘗試,官方文件建議定期備份 etcd 在寫這篇文章的時候 kubeadm 還不直接支援 HA ,必須手動配置,官方文件照著做會踩到 ... Read more »