原创 [WIP]jenv的使用

創建: 2020/10/23    jruby用的還是1.8的java, 但是學習java用的14, 爲解決版本衝突導入jenv brew install jenv 晚點補上   https://github.com/jenv/jenv

原创 [WIP]gradle 入門

創建: 2020/5/22  

原创 [wip]docker基礎

創建: 2020/04/09   Docker容器的設計  一個容器一個進程    immutable infrastructure的image   build後不依賴外部資源  輕量化的Docker image  

原创 [WIP]Kubernetes kubectl基礎

創建: 2020/04/08   創建集羣(Cluster)                                 部署應用(Deployment)            

原创 C++ 類

創建: 2019/01/29 完成: 2019/02/03   聲明與定義  聲明   class myclass { // private member int a; protected: int b;

原创 [WIP]C++ 數組, 指針, reference

創建: 2020/02/03   object的數組    和自帶類型的數組一樣的聲明, 定義, 獲取方法 Sample a[2]; //聲明 Sample a[2] = { Sample(-1), Sample(-1) };

原创 C++基礎

創建: 2020/01/29 完成: 2019/01/29   輸入輸出  輸出  << cout << expression;    輸入   >> cin >> variable;        

原创 [WIP] C++ template與錯誤處理

創建: 2020/02/03   模板函數    不固定類型的函數(根據類型自動重載)  template <class Ttype> 返回值類型 函數名(參數) { ... }  ● Ttype是佔位符, 可以在函數裏用,

原创 [WIP]Vue 工具

創建: 2019/11/02   單文件組件    vue-cli         單元測試                         Typescript支持        

原创 【WIP】Vue 組件

創建: 2019/11/02   組件註冊  組件名   Vue.component('my-component-name', { /* ... */ })  第一個參數即組件名, 儘量字母全小寫且必須包含一個連字符

原创 Rails factory bot Document

創建: 2019/10/10 完成: 2019/10/10   安裝  Gemfile   # Gemfile group :development, :test do gem 'factory_bot_rails'

原创 Rails rspec document

創建: 2019/10/09 https://rspec.info/documentation/ 安裝與使用  Gemfile   group :development, :test do gem 'rspec-rail

原创 WIP: Rails Action Mailer Document

創建: 2019/10/01   設定  Action Mailer的設定參數    delivery_method  發送郵件的方法  ● 默認: :smtp  ● 可設定值    :smtp  經smtp服務器

原创 TODO: 總結2018年底到現在

晚點補充

原创 Rails Test Document

創建: 2019/09/05   test 基礎  自動測試種類    Unit Test  model/view helper等的測試  Functional Test  controller/template的測試