
- Nov 23 Tue 2021 17:31
-
WMI and ACPI

- Jun 29 Tue 2021 18:44
-
Intel CPU處理器的型號與代碼識別, 以及Graphics driver相關study
簡易討論關於Intel CPU Atom-Celeron-Pentium系列之間的不同
https://www.quora.com/What-are-the-differences-between-Intel-Atom-Celeron-and-Pentium-For-example-speed-differences
如何識別CPU處理器的名稱與號碼(官網)
https://www.intel.com/content/www/us/en/processors/processor-numbers.html
- Jul 22 Mon 2019 17:29
-
IPMI tool 介紹與概觀
以下內容取自 https://github.com/ipmitool/ipmitool README
概觀
========
ipmitool是一個用於管理和配置於有 support IPMI (Intelligent Platform Management Interface, 智能平台管理界面) 之設備的實用程序。 IPMI是用於監視(monitoring),記錄(logging),恢復(recovery),庫存(inventory)和控制硬體的開放標準,它獨立實現於主CPU,BIOS和OS之外。 服務處理器(或底板管理控制器,Baseboard Management Controller - BMC)是平台管理的核心,其主要目的是處理獨立存在(autonomous)之sensor監控和事件記錄(event logging)功能。
ipmitool程序為此BMC提供了一個簡單的命令行(command-line)介面。
- Jan 11 Fri 2019 23:54
-
QML與C++結合之概述-簡報
https://www.slideshare.net/YunLinHuang/overview-qml-and-c-integration-127780275https://www.slideshare.net/YunLinHuang/overview-qml-and-c-integration-127780275
- Nov 26 Mon 2018 13:31
-
[QT] QT test - Writing a Benchmark
http://doc.qt.io/qt-5/qttestlib-tutorial5-example.html
如何寫benchmark。
在最後一章中,我們將演示如何使用Qt Test編寫基準測試 (benchmark)。
Writing a Benchmark
為了創建benchmark,我們使用QBENCHMARK macro擴展test function。 然後,benchmark test function通常包含設置代碼(setup code)和包含要測量的code的QBENCHMARK macro。 此test function設基準QString :: localeAwareCompare()。
- Nov 10 Sat 2018 11:49
-
Qt Quick 的keyboard focus

Qt Quick 的keyboard focus (本文源於 http://doc.qt.io/qt-5/qtquick-input-focus.html)
按下或釋放按鍵時,會生成一個按鍵事件並將其傳送到focus的Qt Quick item。 為了便於構建可重複使用的組件(reusable components)並解決Fluid UI特有的一些案例,Qt Quick item為Qt的傳統keyboard focus model添加了以scope為基礎的擴充。
Key Handling Overview - 按鍵處理概觀
當使用者按下或釋放按鍵時,會發生以下情況:
1. Qt收到key action並產生key event。
- Nov 01 Thu 2018 20:14
-
[QT] Connecting in Qt 5 & 自建Model
Qt 5.0 以後connection更新, 可以將slot設定為 function, 而非一定要是QObject, 且slot 可以有更加靈活的用法 (並非一定要有相對應parameter之slot function, 其他成員函式亦可執行):
New: connecting to QObject member
Here's Qt 5's new way to connect two QObjects and pass non-string objects:
connect(
sender, &Sender::valueChanged,
- Oct 17 Wed 2018 09:34
-
[QT-QML] QtQuick -TextInput, TextField, TextEdit, TextArea介紹 (轉載)
本文主要介紹基本元素TextInput,TextField,TextEdit,TextArea等的基本屬性。
1)行編輯
Qt快速提供了兩個行編輯控件,即Textlnput與TextField。
A)TextInput
的TextInput用於編輯一行文本,類似於QLineEdit的。支持使用驗證器或輸入掩碼對輸入文本做範圍限制.Textlnput目前支持IntValidator,DoubleValidator,RegExpValidator,如果你設置了驗證器的屬性,用戶只能輸入驗證所界定範圍的字符.inputMask是個字符串,用來限制你可以輸入的字符,可以參考QLineEdit的輸入掩碼::來了解詳情。掩碼串內包含允許的字符和分隔符,後面還可以跟一個可選的分號,以及一個用上補空白的字符。例如“2016年12月23日”。
- Jun 12 Tue 2018 18:26
-
SSD (物體檢測模型)
SSD:
http://jacobkong.github.io/posts/3118967289/
關於SSD 中文詳細介紹:(但公式有寫錯, 要另外查)
https://read01.com/zh-tw/mELQ3Pj.html#.WzH6StIzaUk
同樣是關於SSD 中文介紹:
- Dec 06 Wed 2017 18:08
-
[Linux] 關於Yocto
簡介:
http://www.arthurtoday.com/2011/04/yocto-project.html
較詳細介紹 (但原文大概是簡體, 有些地方描述文字稍微看不太懂):
https://read01.com/zh-tw/0AM2o.html#.WifCHNKWaUk
目錄架構介紹:
- Aug 01 Tue 2017 15:56
-
[QT] 使用遞迴方式蒐集所有層級資料夾內的檔案尺寸總和
花了一點時間寫出這個小function, 覺得結構挺好用的, 貼出來分享留存一下
qint64 SCAN_Size(QString source) //帶入的source即為資料夾路徑名稱
{
QDir srcDir( source );
QStringList string;
- Dec 01 Thu 2016 17:01
-
detectWifi.sh
while [ 1 ]
do
status=$(route -n | grep UG | awk '{print $2}')
#echo "ip=$status"
if [ "$status" = "" ]; then