2019年12月25日 星期三

win10 調整磁區的指令

Ref:
https://www.techbang.com/posts/6982-a-to-delete-a-stubborn-stick-ji-efi-partition-yang-liwei

http://blog.ilc.edu.tw/blog/index.php?op=printView&articleId=505798&blogId=25793


win10有個工具叫 diskpart, 感覺跟fdisk有點類似(!?)

原本有個磁區想刪掉, 可是在磁碟管理不能用, 就找到指令的解法了

diskpart

list disk  -> 檢查目前的磁碟狀態, 其實這邊的編號跟磁碟管理是一樣的
select disk 1 -> 選擇磁碟代號1
clean -> 清除磁碟分割區
create partition primary -> 建立分割區

然後回到磁碟管理就可以找到了~ 緩慢的格式化中 zzz

Raspberry PI4 + Coral USB + posenet 姿態識別

整理在這邊 XD

https://hackmd.io/@0p3Xnj8xQ66lEl0EHA_2RQ/H1dgMOx1L

2019年12月20日 星期五

演講紀錄

昨天聽了一個好難的演講 zzzZZZ

OPERA: Open Remote Attestation for Intel's Secure Enclaves
https://dl.acm.org/citation.cfm?id=3354220

也有source code可以用
https://bitbucket.org/donnod/opera/src/master/

使用這個工具進行量測
https://prosecco.gforge.inria.fr/personal/bblanche/proverif/

聽到一些關鍵字
group signature scheme

https://en.wikipedia.org/wiki/Homomorphic_encryption#Fully_Homomorphic_Encryption

----

整體心得: 好難, 聽不懂 QQ

ACM CCS是Top 1的conference!!!

Networks and Communications: 1
http://www.guide2research.com/conference/ccs-2019

2019年12月19日 星期四

Nvidia Nano + trt_pose 姿態識別

花了一點時間終於把trt_pose裝在nano上了, 網路上的參考資料好少, 只好自己來(?)

最後卡住的地方竟然是忘記swap的部分 QQ

https://hackmd.io/@0p3Xnj8xQ66lEl0EHA_2RQ/r1BgwI_0H


2019年12月18日 星期三

windows 裝錯版本 不能用kms

在安裝的時候, 如果選到零售版的話, 之後會無法使用KMS進行認證

可以在cmd打這個指令確認目前的版本: slmgr /dlv

通常會有這個問題是裝到 Retail 版 (我就是 QQ)

可以輸入序號進行版本切換 (大量授權版本與零售版本之間的切換序號)

# Operating system edition, KMS Client Setup Key
Windows 10 Professional, W269N-WFGWX-YVC9B-4J6C9-T83GX

然後再去用KMS就成功啟動了~~~


Ref:
http://slashlook.com/archive2017/20170819.html

https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/jj612867(v=ws.11)?redirectedfrom=MSDN

2019年12月11日 星期三

office PPT 輸出影片

參考資料
https://answers.microsoft.com/en-us/msoffice/forum/msoffice_powerpoint-mso_win10/powerpoint-high-quality-full-hd-video-export-in/5794b956-7a97-4215-a05f-2093ddec2171

https://docs.microsoft.com/zh-tw/office/vba/api/powerpoint.presentation.createvideo

1. Open the Visual Basic Editor (ALT + F11).
2. Click "Insert -> Module" and past the attached.
3. Save the module and go back to Power Point.
4. Go to "View -> Macros -> Run" (Or Click ALT + F8) and chose "MakeMp4Video".
5. Chose Run and let the program run.
6. The output will be named "Test.mp4" and placed on the Desktop.

簡單說
1. 在PPT按 ALT + F11 會出現巨集的編輯畫面
2. 插入 -> 模組, 然後把下面的code貼進去
3. 儲存簡報為 "含有巨集的簡報"  (預設是不含巨集)
4. 在PPT按 ALT + F8, 會出現執行巨集的選項, 選MakeMp4Video再按執行 (這個是自訂function的名稱, 可以自己改)
5. 然後就等PPT慢慢跑
6. 跑完之後, 桌面就多一個檔案了~ XD

詳細的參數說明可以看這個網頁: https://docs.microsoft.com/zh-tw/office/vba/api/powerpoint.presentation.createvideo


使用這種方法, 就算不是office365也可以輸出4K影片了~
網路上說office2013可以用, 我自己用大量授權版的2016也可以輸出


下面參數是4K + 60FPS, 請小心使用(!?) XD

====================================================
Sub MakeMp4Video()
If ActivePresentation.CreateVideoStatus <> ppMediaTaskStatusInProgress Then
ActivePresentation.CreateVideo FileName:=Environ("USERPROFILE") & "\Desktop\video.mp4", _
UseTimingsAndNarrations:=True, _
DefaultSlideDuration:=7, _
VertResolution:=2160, _
FramesPerSecond:=60, _
Quality:=100
Else: MsgBox "There is another conversion to video in progress"
End If
End Sub
====================================================

2019年9月28日 星期六

Nvidia Jetson Nano 使用心得

好久沒寫文章了(!?)

一寫就是使用Nvidia跑影像辨識的code XD

有試過 jetson-interface 的 detectnet-webcam, 也有試過tiny-yolo 

前者的速度似乎比較快, 不過只會偵測人的樣子!? (還沒深入看code)
YOLO的話, 搭配python, 大約是3 fps吧, 不過我覺得畫面效果還ok~

之後都更新在這個地方吧:
https://hackmd.io/KGdNHN-lTIKqOqDiGnFVhQ?view