Categories
- FFMpeg (5)
- Libav (1)
- Google (3)
- iBeacon (1)
- LDAP (3)
- Me (2)
- Network (11)
- OS (149)
- RTMP (4)
- SIP (1)
- Kamailio (1)
- SNMP (1)
- VMware (20)
- VCP考試 (1)
- 伺服器 網站服務 (105)
- 名詞解釋 (4)
- 專案管理 (1)
- 工具軟體 (51)
- Adobe (1)
- FMS (1)
- Cloudera (1)
- Docker (1)
- Eclipse (4)
- Intellij (2)
- OBS (2)
- Office (10)
- Excel (4)
- PowerPoint (5)
- Postman (2)
- Splunk (13)
- Virtualbox (2)
- Visual Studio (2)
- 文字編輯器 (10)
- Sublime Text 2 (6)
- Sublime Text 3 (3)
- Vim (3)
- 連線工具 (1)
- Xshell (1)
- Adobe (1)
- 程式語言 (80)
- CSS (2)
- HTML (2)
- iOS (1)
- Java (30)
- JavaScript (5)
- jQuery (4)
- jsTree (2)
- JSP (3)
- PHP (16)
- Python (8)
- Ruby (1)
- sed (1)
- Shell Script (8)
- Windows Bash Script (1)
- XML (1)
- 資料庫 (37)
- FFMpeg (5)
Category Archives: 工具軟體
[Java] Write xls files
public String createFile(Object object) { try { Excel excel = (Excel) object; HSSFWorkbook hssfWorkbook = new HSSFWorkbook(); for (SheetContent sheetContent:excel.getSheets()) { HSSFSheet sheet = hssfWorkbook.createSheet(sheetContent.getName()); List<HSSFCellStyle> formats = new ArrayList<>(); /** format */ for (String format:sheetContent.getFormats()) { HSSFCellStyle cs = … Continue reading
Posted in Excel, Java
Leave a comment
[Intellij] Can’t start git
After Mac OS X upgrading, something happen in the Intellij. screenshot Then we should enable the Xcode license again. sudo xcodebuild -license Ref. OSX Mavericks and Git Error
[Vim] Turn on/off line numbers
Ref. stackoverflow: how to take off line numbers in vi turn on :set nu turn off :set nu!
[.Net] OLEDB in Windows x64 error.
Ref. 解決64位元主機上IIS無法跑32位元的元件:Jet OLEDB 4
Posted in Visual Studio
Leave a comment
Install Windows 10 preview in virtualbox
Ref: http://www.sysprobs.com/install-windows-10-on-virtualbox-and-its-guest-additions
Posted in Virtualbox, Windows
Leave a comment
[Cloudera HBase] Install Cloudera HBase in Ubuntu 14.04 x64
Install Oracle Sun Java 1.7. Add Repository. sudo add-apt-repository ppa:webupd8team/java Repository update. sudo apt-get update Install Java 1.7. sudo apt-get install oracle-java7-installer Install Java Environment Variable. sudo apt-get install oracle-java7-set-default Cloudera HBase Ref 1. – Installing the Latest CDH 5 … Continue reading
Posted in Cloudera, HBase
Leave a comment
[Java] Eclipse IDE.
Download and install JDK. Edit Windows Environment setting. (Advanced system settings => Advance => Environment variables => Choose Path and click edited => Add the location of the bin folder of the JDK installation.) Ex: “C:Program Files (x86)Javajre1.8.0_31bin” Check the … Continue reading
Posted in Eclipse, Java
Leave a comment
[Excel] Find the latest value
If we want use excel to get the value F. F = A * B * C * D * E The common method is using the upper mathematical formulas. But if we adjust the columns, we may get the … Continue reading
Posted in Excel
Leave a comment
[Sublime Text] Enable BIG5 support
In default, sublime text editor does not support BIG5 character, so you must install “ConvertToUTF8” package.
Posted in Sublime Text 2
Leave a comment
[Splunk] Get the quota exceeded count
When we want to find some way to get the count of the quota exceed event, we might find this page “Splunk > Wiki : Community:TroubleshootingIndexedDataVolume Troubleshooting Indexed Data Volume”. Then we could use the following to get the count. … Continue reading
Posted in Splunk
Leave a comment