[爆卦]Pitfalls是什麼?優點缺點精華區懶人包

雖然這篇Pitfalls鄉民發文沒有被收入到精華區:在Pitfalls這個話題中,我們另外找到其它相關的精選爆讚文章

在 pitfalls產品中有70篇Facebook貼文,粉絲數超過2,850的網紅矽谷牛的耕田筆記,也在其Facebook貼文中提到, ref: https://medium.com/srivatsan-sridharan/cracking-the-engineering-manager-interview-faqs-94dcfdf38ef 這篇文章是作者分享關於 EM(Engineering Manager) 面試相關的討論文,...

 同時也有25部Youtube影片,追蹤數超過15萬的網紅豐富,也在其Youtube影片中提到,主持人:陳鳳馨 來賓:丁學文 主題:一週國際經濟趨勢 📌《經濟學人》How green bottlenecks threaten the clean energy business 綠能發展的瓶頸會如何威脅清潔能源世界? 📌《倫敦金融時報》Chip shortage shows the pitfal...

pitfalls 在 Jane Lee | hellojanelee.com Instagram 的最讚貼文

2021-09-16 02:24:11

These are some spreads of my travel experiences in India and I always love to include the film photos I took as well those from my phone. Everything i...

  • pitfalls 在 矽谷牛的耕田筆記 Facebook 的精選貼文

    2021-09-21 08:00:09
    有 21 人按讚

    ref: https://medium.com/srivatsan-sridharan/cracking-the-engineering-manager-interview-faqs-94dcfdf38ef

    這篇文章是作者分享關於 EM(Engineering Manager) 面試相關的討論文,作者先前已經分享過一系列關於 Engineering Manager 面試的一些經驗
    有滿多網友表示之前系列文的分享讓他們有一個方向去準備這類型的面試,而成果也是非常的好。
    因此作者寫了最後一篇來分享面試的一些心得與想法

    包含下列主題,本文就針對幾個主題進行介紹,對於有興趣的讀者別忘了參閱全文
    How important are the technical interviews in the EM interview loop?
    Do I need to practice Leetcode to crack the coding rounds?
    What if I don’t have relevant experiences to answer situational or experience based questions?
    What if I’ve never had to let go of someone from my team?
    How much detail should I go into when talking about a situation?
    When asked about my weaknesses as a manager, what should I say?
    How do I answer the question — what is your management philosophy?
    What are some failure modes or traps to watch out for?

    How important are the technical interviews in the EM interview loop?
    1. 非常重要,雖然大部分情況下 EM 可能沒有太多寫程式的機會,但是沒有技術背景的人是要如何管理一群技術人?
    2. 相對於單純寫 Code,技術架構的瞭解更為重要
    3. 技術能力與領導經驗哪個更為重要還是要看公司,沒有一定答案,找工作的時後請先好好問一下 recruiter 這些小細節

    Do I need to practice Leetcode to crack the coding rounds?
    1. 具備 Leetcode medium 等級的能力即可,除非該公司期望 EC 職位的人也必須要從事 IC(Individual Contributor) 或是非常小心創的 Tech Head。不然大部分情況不會遇到太複雜的演算法題目
    2. 更多的情況會是詢問如何使用一些基本的資料結構或是解決簡單的演算法問題
    3. 主要是判斷你是否有能力將實際的問題轉換為程式碼,是否能夠讀懂,理解與除錯程式碼
    4. 忘記 function/語法沒關係,畢竟會面是這個職位的近期程式寫的比較少是可預期的。最重要的還是思路,如何將問題的解法給描述出來

    What if I don’t have relevant experiences to answer situational or experience based questions?
    1. 這個是非常常見的問題,特別是剛踏入 EM 生涯道路的面試者,本來就很難有太多的範例與經驗去回答這些需要時間累積的問題。
    2. 作者推薦誠實的告訴面試官自己這方面經驗不太多,然後可以針對這個範例去探討假如你未來遇到的話,你可能會怎麼面對之類的。

    What if I’ve never had to let go of someone from my team?
    1. 這是個非常常見的問題,但是就跟前述問題一樣,如果沒有這方面的經驗就誠實以對
    2. 可以改從團隊中有人績效不太好為替代方式去探討,講述自己之前的管理哲學與處理方式

  • pitfalls 在 矽谷牛的耕田筆記 Facebook 的最讚貼文

    2021-09-15 08:00:09
    有 43 人按讚

    ref: https://blog.kubecost.com/blog/kubernetes-labels/

    本篇文章是一個 Kubernetes Label 介紹文, Kubernetes 的使用者一定都知道 Kubernetes 內的物件很大量依賴 Label 的使用,最基本的用法就是
    Deployment 與 Pod 之間是透過 Label 與 LabelSelector 互相溝通的。

    Kubernetes 提供兩種不同的方式來為資源打上標記,分別是
    1. labels
    2. annotations

    兩者都是基於 key/value 的方式來設定,不過用途是完全不同。 Label 主要是用來提供辨識的功能,讓使用者可以透過 key/value 的方式來辨識當前的資源,就如同前述提到的 Deployment 與 Pod 的關係。
    透過 Label 來標示 Pod,而 Deployment 則透過 LabelSelector 來選擇符合標準的 Pod。

    Label 主要有兩大用法
    1. Grouping Resource for Queries
    2. Bulk Operations.

    第一種用法就是前述提到的,將一群資源透過 Label 給標記起來,另外一個則是透過 kubectl 等指令操作時,可以一口氣操作多個資源,譬如
    kubectl delete deployment -l environment in (dev,sit)
    上述資源可以一口氣將符合 environmnet=dev 以及 environmnet=sit 的 deployment 給一次刪除。

    文章中還列舉了其他介紹與學習 Labeling 概念的網站,最後還提到一個使用 Label 上要注意的相關事項
    1. 不要將一些會一直改變的資料放到 Label 中
    2. 沒有任何理由的話,不要輕易去修改運行資源的 Label 內容
    3. Label 本身的設計不是一個 data store,所以不要將一些 Application 的重要資料給存放到 Label 上

    對於 Label 這概念想要更深理解的可以參閱全文

  • pitfalls 在 Milton Goh Blog and Sermon Notes Facebook 的精選貼文

    2021-08-18 08:13:04
    有 309 人按讚

    Trust in God’s Timing

    “Trust in Yahweh with all your heart, and don’t lean on your own understanding. In all your ways acknowledge him, and he will make your paths straight. Don’t be wise in your own eyes. Fear Yahweh, and depart from evil.” (Proverbs‬ ‭3:5-7‬ ‭WEB‬‬)

    Haste makes waste. Often when you try to rush things at your own timing based on your emotions, things don’t work out.

    Have a habit of seeking the Lord for counsel before making important decisions.

    He can warn you of potential dangers and pitfalls, saving you from wasted time and unnecessary suffering.

    Do things out of being led by peace, and not from being driven by fear.

    Flow with God’s appointed timings and you shall see restful increase and fruitfulness in your life.

    You shall reap the fruits in their season!

    If you want to know how to flow with God’s system of times and seasons, then you should read this ebook: https://bit.ly/god-appointed-time

你可能也想看看

搜尋相關網站