pdftk 移除 pdf 的浮水印
Posted on Mon 19 June 2017 in note • Tagged with pdf, linux, pdftk, watermark
目標:移除 pdf 中的文字浮水印
手上有一些 pdf 有浮水印,突然想要移除看看。找了一下 pdftk 可以做到這件事。Superuser 上的 How to remove watermark from …
Continue reading
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 Sun 11 December 2016 in graduate school • Tagged with nctu, exam
Posted on Wed 02 November 2016 in note • Tagged with tex, math
render_math 可以把 tex 語法的數學式畫出來。語法參考 MathJax
:::tex
$e=mc^2$
這是行內數學式的範例: \(e=mc^2\) 這樣就可以了。
:::tex …
Posted on Thu 20 October 2016 in note • Tagged with linux, kernel, binfmt
Linux Kernel 文件 binfmt_misc.txt 提到的功能。主要就是告訴 kernel 如果把特定的檔案當成執行檔來呼叫。判斷的方式分成 extension 及 magic。
Posted on Tue 18 October 2016 in graduate school • Tagged with formal language, dfa, nfa
Posted on Mon 17 October 2016 in note • Tagged with lua, utf8
最近要用 Lua 處理 UTF-8 字串,但是 Lua 到了 5.3 才開始支援 UTF-8。
我的需求很簡單,只要判斷字串長度及類似 strncpy …
Posted on Mon 17 October 2016 in note • Tagged with graphviz, pelican, python
為了之後要畫圖方便,加裝了 ligquid tags 的 plugin。方法很簡單只要加入 PLUGIN_PATHS
與 PLUGIN
即可。
:::python
PLUGIN_PATHS = ['../pelican-plugins']
PLUGINS = ['liquid_tags.graphviz']
之後底下的 dot 語言就可以 …
PIL 7.3 – Stateless Iterators 中有提到
ipairs, which iterates over all elements in an array, as illustrated next
及
The pairs function, which iterates over all elements in a table
也就是說 ipairs
是遍歷 array (Lua 中以數字為 index 的 …