The Complete Node.js Course

買了Mosh的這堂課來看,要來把它學一學。

【Node Module System】
.Node.js的modularity特性好用,每個module裡面的變數名子不會影響到別的module。
.require function會吃到export裡的東西 ( it will store the result in a variable )
.介紹了一下jshint工具,發現我的IDE有欸,不過要去settings裡面打開。
.Modular 解釋Node.js如何達成封裝機制
【Event】
一個很重要的概念。
In Node, we have a class called http that we can use to build a web server.
So we listen on a given port, and every time we receive a request on that port, that http class raises an event.
(類似總機,轉接客人的電話)
Now our job is to respond to that event which basically involves reading that request and returning the right response.
(就像有客服投訴,要回對的安緩句子一樣…)

Continue reading The Complete Node.js Course

目標分解

把想要達成的理想,分解成小塊小塊可實現的任務。

「我最喜歡籃球的一點,就是(它需要)不斷尋求進步,」他指出,「我熱愛那種身處一段持續進步旅程中的感覺。」
他將「踏入NBA」的遠大目標,化成一個個投籃練習命中數、體能訓練表現等更小、卻可實踐的目標,努力去完成每個小目標,直到變成習慣。

Continue reading 目標分解

面試題目收集:後端篇

【架構篇】

  1. 解釋MVC、MVVM

【Git】

  1. Git跟SVN的差別

【DB】

  1. 如果遇到效能瓶頸在DB會怎麼做

【不會分類篇】

  1. message queue怎麼實作
  2. 非同步/ multi thread 會應用在哪些場景

【其它】

  1. 過河相關邏輯測驗 River Crossing

【進修方向】

  1. SQL一定要熟
  2. Java
  3. Spring
  4. CICD經驗
  5. DB要有基本以上的理解

看到tutorABC