2025美國CS New Grad上岸心得

特別感謝 學長姐與幫我內推的好心前輩們 香檳刷題群所舉辦的活動,包含遇到楷訓學長以及王超學長的演講 UIUC同屆同學的相互分享與支持 室友兼高中同學幫我mock interview以及維護良好的面試環境 家人與女友(偷偷工商女友的medium)的支持,特別是女友在暑假幫我練習英文口說、BQ,還有找工時無數次精神上的支持與鼓勵<3 嗨,我是俊逸,最近剛從UIUC畢業,正準備要到加州工作了。趁記憶猶新,紀錄在學校的最後一學期的掙扎與奮鬥,也給之後想到美國找軟體工作的同學一個參考。 鑑於網路上已經有很多厲害的前輩分享心得,本文僅包含個人找工的統計數據,以及自認有用的概念與資源,盡可能減少閱讀負擔。 本篇文章適合給沒有正職經驗,想要到美國讀碩找軟體工作,或正在找的同學,希望可以幫助到你們。 對於找工的任何面向有問題,或單純想聊聊的話,都歡迎聯絡我的LinkedIn或Facebook! 我的履歷 清大資工22級 -> UIUC MCS 新創前後端實習4個月 + 聯發科暑期實習2個月 找工作統計數據 2024.07 - 2024.12 投履歷數量 (收到回覆數量/投遞數量) 大公司官網: 4/300 內推: 3/20 (非常感謝幫我內推的所有學長姐與前輩) GitHub: 10/500 (量多但多數OA止步) 其他(如LinkedIn, HandShake): 4/2300(多數由自動投履歷程式貢獻) 面試數量 美國 - Online Assessment: 15 - Codeium, OKX, Stripe, Uber*2, BCG X, Morgan Stanley(沒做), HeyGen(沒做) - 白嫖: IBM, Cisco, ZipRecruiter - Interview: 9 + 2(from OA) - 一面: Talroo, CV小公司 - 二面: Apple, TikTok DevOps, WeRide(沒面), Crypto小公司 - Final Round: **Tesla**(3輪7面), TikTok SRE(3輪3面), Pony AI(2輪5面) - **Offer**: **Meta**(OA+1輪3面), iOT小公司(3輪3面) 台灣...

January 19, 2025 · Me

Understanding Bloom Filters in Ethereum

Note: This article assumes that the reader already understands what a Bloom Filter is. If you are not familiar, reference 1 provides a very clear explanation along with code implementations that you can review. Bloom Filter Recap A Bloom Filter is a data structure composed of an array of n bits. If we want to check whether a piece of data exists in a dataset, we can use a Bloom Filter to reduce search time....

September 17, 2024 · Me

Understanding Go Slice Behind the Scene

This article refers to Golang slice append implementation details. Welcome to a deep dive into Go slices! In this article, we unravel the inner workings of Go’s slice data structure, answering fundamental questions that every Go developer should know. You’ll gain insights into how slices are structured, how their capacity dynamically grows when elements are appended, and crucially, how to avoid unintentional data overlaps or modifications when manipulating multiple slices using append()....

August 26, 2024 · Me

How to Build a FREE Personal Website IN 1 HOUR?

中文版 (Translated by ChatGPT) Introduction Recently, I’ve been learning a lot and thought it’d be great to share my knowledge online. That’s why I started building my personal website! I tried setting up a website before but ran into some issues: Good themes cost money. Free themes were hard to customize without lots of HTML/CSS work. Deployment and maintenance were complicated. After some searching, I found Hugo’s PaperMod Theme. It has a clean layout and solved all my problems....

August 19, 2024 · Me