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

用 github 直接新增 blog 文章

Posted on Thu 21 July 2016 in note • Tagged with pelican, blog, github

之前看了 m157q用 Travis CI 自動化發佈 Pelican blog 到 GitHub Pages 上 的文章後,就設定一樣的自動化發怖流程。

剛剛突然想到,我可以直接在 GitHub …


Continue reading

xargs 平行化處理指令

Posted on Tue 19 July 2016 in note • Tagged with linux, xargs

直接先上範例

xargs -a data.txt -I % -P 0 bash -c "sleep 1; echo %"

我要解決的問題是,我有一個文字檔 data.txt,其內容是我要處理的資料,一行一筆 …


Continue reading

好用的 vpn Hide my ass

Posted on Tue 19 July 2016 in note • Tagged with vpn, pokemon

Hide My Ass 還不錯,可以連線的國家多。我試了一下,還可以連到美國 Google Play 去下載 Pokemon Go!雖然在台灣還是不能玩……

簡單測了一下,整 …


Continue reading

Java 與 Let's Encrypt

Posted on Fri 01 July 2016 in note • Tagged with java, tls, letsencrypt

在弄 Jenkins windows slave 的時候踩到 Java 還沒有把 Let's Encrypt 的根憑證放到信任清單中。弄了半天才真的搞定。

stackoverflow 上有人說了,Oracle Java 8u101 就會放進 …


Continue reading

P2P money transfer

Posted on Fri 01 July 2016 in note • Tagged with fintech

今天聽 SE daily 講 P2P money transfer 的創業公司。聽到就覺得這就是地下匯兌呀! 配合另外一則 消息 講到支付寶的餘額支付受到監管機 …


Continue reading

CI Skip build

Posted on Mon 27 June 2016 in note • Tagged with ci, automation, sysop

gitlab-ci, travis-ci, circle-ci 跟 jenkins 都支援 [ci skip] 來跳過 commit build。

Your commit messages [ci skip]

其中 jenkins 要裝 plugin。


Continue reading

TRex

Posted on Wed 22 June 2016 in note • Tagged with trex, linux, tool

TRex 是一個封包產生軟體。底層使用 DPDK。目前看起來因為 DPDK 的關係,網卡只能用某些 intel 晶片的網路卡。

TRex 可以裝在 x86 的設備上 …


Continue reading

apt preferences pinning

Posted on Fri 21 February 2014 in note • Tagged with apt, preferences, debian

將 debian stable 加入 testing 但是只在需要安裝 testing 套件的時候才安裝。

  1. /etc/apt/sources.list 加入 testing
  2. /etc/apt/preferences.d/ 建立 testing 檔案。內容如下
Package: *
Pin: release a=testing …

Continue reading