lua 複製物件

Posted on Thu 06 October 2016 in note • Tagged with lua

之前踩到一個坑,因為沒注意到指定 array table 中的物件時是 reference 到原有物件,所以整個 table 中的東西都長得一樣,而且還牽一髮動 …


Continue reading

聽哪些 podcast

Posted on Wed 05 October 2016 in note • Tagged with podcast

跟朋友聊天聊到我開車上下班的時候都聽 podcast,他就問我都聽哪些節目。整理一下聊到的內容。

中文

中文的大部分比較偏休 …


Continue reading

dropbox 保存密碼的安全措施筆記

Posted on Sat 24 September 2016 in note • Tagged with dropbox, security, password

Dropbox 寫了一篇文章來告訴大家他們如何安全地保存用戶的密碼。我認為蠻有趣的,有一些是我沒有接觸過的。

保存密碼的方 …


Continue reading

docker 更新 jenkins

Posted on Tue 13 September 2016 in note • Tagged with docker, jenkins

因為自己家的 jenkins 是用 docker 裝的,紀錄一下自動更新 weekly 版本的方式。

安裝 jenkins

照著 jenkins 自己的正式文件來做。

:::bash
docker create -v /var/jenkins_home --name jenkins …

Continue reading

如何轉換跑道去寫程式

Posted on Fri 09 September 2016 in ama • Tagged with programming

因為 準備資工所考試的心得 貼在 PTT 的研究所板(graduate) 然後就被問如何轉換跑道去寫程式的。其實我的答案就只有一個

怎麼 …


Continue reading

準備資工在職專班考試

Posted on Thu 08 September 2016 in graduate school • Tagged with nctu, ncu, nccu, yzu

從 2014 年底決定要考資工在職專班開始到現在要開學也已經過了一年多,記錄一下自己當初準備的方向。同時也期許自己 …


Continue reading

MQTT 資料格式

Posted on Mon 29 August 2016 in note • Tagged with mqtt, iot, protocol

看了一下 MQTT 的文件,隨手紀錄一下。

資料格式的表示

  • 位元組 bit 0 ~ bit 7
    • bit 0 是 least significant bit, bit 7 是 most sigificant bit
  • 整數
    • big endian 排列的 16 bits 數 …

Continue reading

Linux Performance tools 整理筆記

Posted on Thu 18 August 2016 in note • Tagged with linux, tools

Twitter 上看到這一篇推文,整理了 linux 下許多效能監測工具。手動整理一些自己不熟但可能會用到的部分。

  • sar: System Activity Report
  • ss: another utility to investigate …

Continue reading

VirtualBox 發生 VERR_INTNET_FLT_IF_NOT_FOUND 錯誤

Posted on Thu 11 August 2016 in note • Tagged with virutalbox, windows

升級了 Windows 10 的年度更新之後,VirtualBox 就找不到 host only 網卡了。解決方式很簡單,就是把 VirtualBox Host-Only Ethernet Adapter 網卡的 VirtualBox NDIS6 Bridge Networking Driver 打開就可以了 …


Continue reading

pip 在 windows 下無法使用

Posted on Fri 22 July 2016 in note • Tagged with python, pip, perl

紀錄一下,主要原因是因為我同時安裝了 Strawberry Perl

輸入 where pip 查詢一下,

C:\Strawberry\perl\bin\pip
C:\Strawberry\perl\bin\pip.bat
C:\Users\Solomon\AppData\Local\Programs\Python\Python35-32\Scripts\pip.exe

所 …


Continue reading