置頂文章
精選分類
文章列表
指標 (Pointers)
# 何謂指標 指標(Pointer) : 用來表示變數所在的記憶體位址。 指標變數(Pointer Variable) : 用來存放指標的變數。 # 變數型態 我們宣告的 int a 是告訴編譯器,我的變數 a,是用來存放 int 型態的,也就是記憶體會有區塊存放著變數 a 的數值。 而當我們使用取址符號 &a 時,這個過程是用來取得變數 a 所在的記憶體位址。 在 C 語言中,任何的數值本身都是有型態的,例如: 10 就是一個整數型態。 &a 取得的就是整數型態的指標。 # 程式碼範例 # 常見使用 int a = 10; // a 的型態是...
more...Image - lazyload
# Intersection Observer API 實作 # Html 將圖片原本的 src 改為 data-src before <img src="test.jpg" /> after <img data-src="test.jpg" /> 添加 lazyload lazy-hidden 到圖片原本的 class before <img class="" /> after...
more...Linux Kernel - Timer
# 版本變動 # initialize before init_timer(struct timer_list *) after timer_setup(struct timer_list *, void (*callback)(struct timer_list *), unsigned int) # callback before callback(unsigned long) after callback(struct timer_list *) # timer_list before struct timer_list { ... void...
more...用 VirtualBox 安裝 Ubuntu 18.04
# VirtualBox 教學 # 作業系統下載 Ubuntu 18.04 http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/ # 虛擬機器建立 虛擬機器 名稱:隨意 類型:Linux 版本:Ubuntu (64-bit) 記憶體大小 1024MB 以上 建立虛擬硬碟 類型:VDI (VirtualBox 磁碟映像) 存放方式:動態配置 大小:500MB # 虛擬機器設置 一般 -> 進階 共用剪貼簿:雙向 拖放:雙向 存放裝置 -> IDE (空) -> 光碟機 (IDE...
more...Google Test
# Install # Windows 下載並安裝 Visual Studio 2022 https://visualstudio.microsoft.com/zh-hant/downloads/ 安裝下圖標線的套件 # Linux 更新 apt 資料庫 sudo apt update安裝以下套件 sudo apt install gcc g++ lcovsudo apt install libgtest-dev進行以下操作 cd /usr/src/gtestsudo cmake CMakeLists.txtsudo makesudo make install# Testing #...
more...Linux 進階應用
# httpd # 預設路徑 說明 路徑 伺服器 設定檔目錄 /etc/httpd/ 伺服器 讀取檔目錄 /var/www/ 伺服器 預設網頁目錄 /var/www/html/ # 安裝套件 yum install httpd# 使用者網頁 開啟使用者網頁設定檔 vim /etc/httpd/conf.d/userdir.conf修改使用者網頁設定檔如下 <IfModule mod_userdir.c> # # UserDir is disabled by default since it can confirm the presence # of a...
more...Linux 基礎指令
# 查詢應用 指令範例 說明 特別說明 範例 man [instruction] 查詢指令相關說明 在裡面打 /[search] 可以搜尋 [search] man ifconfig which [instruction] 查詢指令所在的絕對路徑 which shutdown history 查詢紀錄 ifconfig 查詢網路 ip ip a 查詢所有網路設備相關訊息 time vim [file] 計時開啟檔案時間 time vim ex1.txt # 查詢目標 指令範例 說明 特別說明 範例 ps aux | grep [Keyword] 查詢程序關鍵字 ps...
more...