發表文章

目前顯示的是 4月, 2014的文章

OpenSSL 1.0.1g update note

For prevent the heartbleed bug, update the centos 6.5 to new version openssl # Get the source and compile wget https://www.openssl.org/source/openssl-1.0.1g.tar.gz -O openssl-1.0.1g.tar.gz tar -zxf openssl-1.0.1g.tar.gz cd openssl-1.0.1g ./config make make test make install # Update the real config mv /usr/bin/openssl /root/ ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl # Check $ openssl version OpenSSL 1.0.1g 7 Apr 2014

Eclipse Content Assist

圖片
Eclipse中如果欲操縱物件下的method時候 通常在物件打完後打"."就會有可以操作的method提示 而這時候如果不小心按了其他按鈕...提示就會消失 怎麼透過快速鍵來重新叫出提示呢..... 從Eclipse Preferences > General > Keys中 尋找"content assist"部分 然後滑鼠點進下方的Binding的部分,再鍵盤上面操作自己想要的快速鍵 例如:Alt + /  確認後就可以在編輯器中實驗....