Skip to content

Instantly share code, notes, and snippets.

View wenchunliu0210's full-sized avatar
👩‍💻

Wen Chun Liu wenchunliu0210

👩‍💻
View GitHub Profile
@wenchunliu0210
wenchunliu0210 / Front-end-Developer-Interview-Questions-TC.md
Created January 16, 2023 06:51 — forked from hanksudo/Front-end-Developer-Interview-Questions-TC.md
Front-end-Developer-Interview-Questions - 前端工程師面試問題集(繁體中文版)

前端工程師面試問題集

@版本 2.0.0

譯注:此翻譯版,主要給不能流利的讀英文的人看,相關專有名詞還是保留原文。翻譯不好地方請協助pull request.

此repository包含了一些前端開發的面試問題,來審查一個有潛力的面試者。這並不是建議你對同一個面試者問上所有的問 (那會花費好幾小時)。從列表中挑幾個題目,應該就夠幫助你審查面試者是否擁有你需要的技能。

Rebecca MurpheyBaseline For Front-End Developers 也是一篇很棒且值得讀的文章在你開始面試之前。

@wenchunliu0210
wenchunliu0210 / my-first-gist.js
Last active January 10, 2023 03:44
my first public gist
;(function () {
console.log('Say Hello To The World!')
})()

Github provides no facility to do this via the UI. This is sad, because it would be extremely useful in order to draft something before publishing it. It would also be trivial for them to implement. Never mind; here's how to do it manually:

  1. Get the "Clone this Gist" text from the left-hand side of the private Gist, e.g. https://gist.github.com/b9cc265982870c091a1e.git, and extract the ID b9cc265982870c091a1e.
  2. Go to https://gist.github.com/ and create a dummy new public Gist.
  3. Get the "Clone this Gist" text from the left-hand side, e.g. https://gist.github.com/8270253.git, and extract the ID 8270253.
  4. git clone [email protected]:b9cc265982870c091a1e tmp-dir && cd tmp-dir && git push -f [email protected]:8270253.git
@wenchunliu0210
wenchunliu0210 / my-first-gist.js
Last active January 10, 2023 02:09
my first gist testing
;(function () {
console.log('Say Hello To The World!')
})()