2020年9月1日 星期二

Eclipse 5.27.1 環境主題修改

Eclipse環境設定 1.主題 Window->Preferences->General->Appearance->Theme->Dark 2.文字大小 Window->Preferences->General->Appearance->Colors and Fonts ->C/C++->Editor->18 3.選取自動框 Window->Preferences->Java->Editor->Content Assist ->Auto Activation->Auto...
閱讀更多 »

2020年6月22日 星期一

使用char*做string reverse時的一些小事

在寫string reverse時發生的一些小事之前在寫面試試題時遇過以下這個問題int main() { int a[5] = { 1, 2, 3, 4, 5 }; int *ptr = (int *)(&a + 1); printf("%d,%d\n", *(a + 1), *(ptr - 1)); } 接下來就想說如果題目改為用在char上做string reverse……會怎樣呢? 像這樣↓ char...
閱讀更多 »

2020年5月24日 星期日

[問題]win10 usb麥克風 很小聲 要靠很近對方才聽得到

是的,就在睡覺前用麥克風時發現聲音很小聲 大概超過5~10公分的距離收音就收不到了 然後就開起了debug的不歸路 Note:以下為”USB”麥克風的情境 試過網路上各種辦法 1.      開啟麥克風增量+20~+30 我使用USB 麥克風在win10時找不到這個選項 等級調到100也沒有比較大聲 ...
閱讀更多 »

2019年10月4日 星期五

如何使用Doxygen在Visual Studio 2013產生Document in windows

聲明:以下僅為快速使用Doxygen產生Document之用途    不而外說明細節部分 1.首先下載Doxygen 官方網站:http://www.doxygen.nl/ 下載頁面:http://www.doxygen.nl/download.html 選擇windows版本的安裝檔(e.g. doxygen-1.8.16-setup.exe) 2.關於GUI教學可看下面這位大大的教學 https://www.youtube.com/watch?v=-V_vHZPOZfY 其中working...
閱讀更多 »

2019年8月23日 星期五

CGAL build tutorial

https://www.reddit.com/r/programming/comments/cj4un7/tutorial_install_and_compile_cgal_c_library_with/ https://docs.google.com/document/d/1cj3BgSHbtAPmNzRrNdqRPIqjQ59eW4DWICbuOuGFeAM/edit 看上面那個文件照做,但是最後在測試時 C:\local\CGAL\auxiliary\gmp\include C:\local\boost_1_64_0 C:\local\CGAL\build\include C:\local\CGAL\include C:\local\CGAL\auxiliary\gmp\lib C:\local\boost_1_64_0\lib64-msvc-12.0//...
閱讀更多 »

QT Note

// how to display console window setting -> Linker -> System -> console //二進位碼不是以偵錯資訊而建置,要繼續偵錯嗎? 專案屬性 → C/C++  → 最佳化 → 最佳化,選停用// 這似乎不用改也可以跑          → Linker → 命令列 → 其它選項,打上 /debug //打開相對路徑的方法 QString path = "../Results/finalResult.mp4"; QUrl pathUrl = QUrl::fromLocalFile(path); QDesktopServices::openUrl(pathUrl); //打開絕對路徑 QString...
閱讀更多 »

others note

//libQGLviewer 只是用來做一些基本的顯示,詳細用法不清楚 //要給別人release的話windows 只要多放dll就可以了 //但是linux要做成cmake不能直接執行,因為dll...
閱讀更多 »

Eclipse 5.27.1 環境主題修改

Eclipse 環境設定 1. 主題 Window->Preferences->General->Appearance->Theme->Dark 2. 文字大小 Window->Preferences->General-...