XianTon

@padaray

Joined on Oct 26, 2023

  • contributed by < padaray > TODO: 在 Linux 6.8 版本運行 vcam 期末專題影片:影片連結 整理過去報告 根據 2020 年到 2023 年的開發紀錄,將有提到的概念彙整,並且加入自己的理解。 2020 年開發紀錄 2021 年開發紀錄
     Like  Bookmark
  • 比賽相關 會場地址 : Pacific Convention Plaza Yokohama(PACIFICO Yokohama)       1-1-1 Minato-Mirai, Nishi-ku, Yokohama 220-0012, JAPAN 會場交通 :   從東京車站出發:     1. 東京車站搭乘 JR 東海道線(27分) 至橫濱車站(Yokohama)     2. 橫濱車站轉搭 港未來線(3分) 至港灣未來站(みなとみらい駅) 走路20分     3. 從 Queen's Square Exit (出口6) 出站     4. 從地下三樓搭乘手扶梯至皇后廣場 2 樓,先搭紅色長的再搭短的(都在左後方)
     Like  Bookmark
  • contributed by < padaray > 閱讀〈因為自動飲料機而延畢的那一年〉的啟發 想要研發一隻好寫的原子筆,需要多少成本? 如果你只會寫程式,而且對原子筆一竅不通,那會發生什麼悲劇就可想而知了 作者前期就提到了我認為很重要的觀念,如果你只會寫程式,對其他事情一竅不通所帶來的後果,更何況大部分的情況下是連程式都寫不好。大型專案的開發所要求的不只是程式設計,還需要透過和別的專業的合作,來完成所有的需求,所以作者後來邀請了機械系的同學,共同開發自動飲料機。 經過幾次討論後,為了能在有限的時間和成本下如期完成,我們砍掉大多數的規格,只保留三個最重要的功能。我們要做一台能夠自動加茶、加糖、加冰塊的機器,其餘的封模、珍珠、履帶,通通都不必要,以最小可行產品為優先。
     Like  Bookmark
  • contributed by < padaray > 開發環境 $ gcc --version gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. $ lscpu
     Like  Bookmark
  • contributed by < padaray > quiz3 測驗 1 計算平方根 版本一: 對輸入的參數 N 以 2 為底數取 log,意義是當我們將 N 取 log2 時,可以得到 most significant bit (msb)。 對 1 左移 msb 個位元後存入變數 a ,意義是找出一個必定大於 N 的平方根的數,利用此數來逼近找到 N 的平方根。 最後使用 while 迴圈,計算 a + result 的平方是否大於 N,若小於 N 則將此數存入 result 變數,對 a 右移 1 bit,繼續計算,直到 a = 0。
     Like  Bookmark
  • contributed by < padaray > 開發環境 $ gcc --version gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 $ lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Address sizes: 39 bits physical, 48 bits virtual
     Like  Bookmark
  • contributed by <padaray> 第一週測驗題 題目連結 測驗 1 參考資料是 Optimized QuickSort ,此方法實作非遞迴的快速排序法 鏈結串列結構
     Like  Bookmark
  • contributed by < RayChen > Environment Issue When executing the sbt -version command in the terminal of VSCode, the response is correct. sbt version in this project: 1.9.7 sbt script version: 1.9.7 When executing sbt test the following error occurs. [error] /home/ray870317/java/jdk/ca2023-lab3/src/main/scala/riscv/core/ALU.scala:6:8: not found: object chisel3
     Like  Bookmark
  • contributed by < RayChen > Selected Question I chose the Find Leftmost 0-byte using CLZ as my assignment from 陳川曜. The motivation is because I'm interested in his project, especially since my HW1 also involved the application of CLZ. I didn't realize there could be this kind of application, and I'd like to gain a deeper understanding of his code. I want to explore if there are ways to enhance its efficiency and contribute to his project. Analysis Origin Code Checking cycle counts from C code 1. C code
     Like  Bookmark