Python 安裝 matlab engine
Posted on Tue 21 May 2019 in note • Tagged with matlab, python, ubuntu, linux
Matlab 有教學,其實很簡單。主要是記錄一下如果是要安裝在 virtualenv 中的時候要怎麼辦。
- 找出 python 套件的目錄。在 matlab 的命令列輸入底下 …
Continue reading
Posted on Tue 21 May 2019 in note • Tagged with matlab, python, ubuntu, linux
Matlab 有教學,其實很簡單。主要是記錄一下如果是要安裝在 virtualenv 中的時候要怎麼辦。
Posted on Sun 09 September 2018 in note • Tagged with windows, linux
買 notebook 通常會有隨機安裝的 windows,但是像我已經裝了 linux 如果重新安裝 windows 沒有序號怎麼辦?
只要一行指令
sudo cat /sys/firmware/acpi/tables/MSDM | tail -c …
Posted on Sun 02 September 2018 in note • Tagged with openwrt, luci
非常簡單
uci set luci.ccache.enable=0; uci commit luci
ref. Development Environment How To
在 twitter 上跟推友介紹英文的 podcast 1 2。
記錄一下。
Posted on Tue 09 January 2018 in note • Tagged with cscope, graphviz, dot
為了讀 OAI 的程式碼,一直找一些 call graph 的工具。最後用了 chihchun 好久以前寫的 callgraphviz 來改成 Call Call Graph。
叫 Call Call Graph 只是因為我要畫 caller 與 callee …
Posted on Sun 17 September 2017 in note • Tagged with gitlab, gitlab-ci
Posted on Mon 19 June 2017 in note • Tagged with pdf, linux, pdftk, watermark
手上有一些 pdf 有浮水印,突然想要移除看看。找了一下 pdftk 可以做到這件事。Superuser 上的 How to remove watermark from …
Posted on Tue 28 March 2017 in note • Tagged with tmux, linux, utlls
tmux
buffer 中的資料寫到檔案中prefix + :, then type in capture-pane -S -3000
上面這行把 3000 行的資料複製到 buffer 中。
prefix + : again, and type in save-buffer filename.txt
上面這行 …
Posted on Wed 15 March 2017 in note • Tagged with find, linux, utlls
使用 find 可以很簡單的找出目標檔案來做處理,記錄一下要排除特定目錄怎麼做。
:::bash
find . -path "./.git/*" -prune …
Posted on Wed 02 November 2016 in note • Tagged with tex, math
render_math 可以把 tex 語法的數學式畫出來。語法參考 MathJax
:::tex
$e=mc^2$
這是行內數學式的範例: \(e=mc^2\) 這樣就可以了。
:::tex …