XpandNotes

exploring the intersection of technology and creativity

旅遊主頁

2021 2021 林口櫻花星巴克照片 2023 2023 北海道:十勝之丘公園 2023 北海道:十勝池田酒廠、釧路丹頂鶴自然公園、釧路溼原、阿寒湖 2023 北海道:摩周湖、屈斜路湖、鄂霍次克流冰館、北見狐狸村、層雲峽 2024 參加 IEEE ICBC 2024 都柏林遊記

林口櫻花星巴克

分享一些照片,拍攝時間: 2021-02-06 星巴克正門 從裡面看出去的樣子

Cooler Master CK550 紅軸鍵盤開箱

因為筆電的鍵盤不好按,而且敲筆電的鍵盤時常常不知不覺駝背,眼睛又離螢幕很近,所以就想購入一把機械鍵盤。 一開始的目標就是想購入下手不用太用力的鍵盤,因為青軸實在太吵,吵到感覺我會被自己敲鍵盤的聲音煩死,而茶軸和黑軸需要按壓較大力,怕小指常常按 ctrl 、 enter 、 home 、 end 會酸,因此紅軸最符合需求。 逛了各個電子用品店後,發現大多只有青軸的現貨,最後找到這款 CK5...

Leetcode #4 Median of Two Sorted Arrays

Description Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays. Follow up: The overall run time complexity should be O(log (m+n)). E...

Leetcode #3 Longest Substring Without Repeating Characters

Description Given a string s, find the length of the longest substring without repeating characters. Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length ...

Leetcode #2 Add Two Numbers

Description You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two nu...

Leetcode #1 Two Sum

Description Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solutio...

肺炎疫情 (COVID-19) 到 2020 年 12 月的現狀 (自 Kaggle Notebook 翻譯)

來源: https://www.kaggle.com/corochann/covid-19-current-situation-on-december/notebook 此筆記的資料集來源: Johns Hopkins University github repository 最後更新: 2021-02-01 主要重點 綜觀全球疫情走勢 以 折線圖 分析 ...

Machine Learning 與 MLOps 的作業系統設計

Machine Learning 的步驟 本文圖片皆來自參考資料中的網站 Machine Learning (下文簡稱 ML) 具體應該有甚麼流程並沒有一個標準,根據網路搜尋的文章,大致上會把 ML 劃分為 5 至 7 個步驟,在一個沒有公定標準的情況下,我選擇以 Google Cloud Platform 發布的 The 7 Steps of Machine Learning 作為參考...

Exponential Golomb coding

Exponential Golomb coding 摘錄自維基百科,Exponential-Golomb coding (或稱 Exp-Golomb code) 是一種 Universal code,也就是 Exp-Golomb code 能夠映射到所有正整數。 假設輸入為 x ,其編碼步驟為: 以二進位寫下 x + 1 數 x + 1 的二進位數字總共有多少位數,並在 x ...