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: 工具軟體
Sublime Text 安裝 SFTP 模組
ctrl + shift + p => 輸入 install package,選擇 輸入 SFTP 進行安裝 開啟要同步的資料夾 View => Side bar => Show Side bar 點選 Side bar 中的資料夾按右鍵,SFTP/FTP => Map to Remote 設定 “host”、”user”、”port”、”remote_path”,並將 “save_before_upload” 設定為 true 點選 Side bar 中的資料夾按右鍵,SFTP/FTP => Download … Continue reading
Posted in Sublime Text 2
Leave a comment
Win 7 使用 Visual Studio 2005 時無法使用網站進行開發
當遇到錯誤訊息 您必須是本機電腦上要存取 IIS metabase 的系統管理員群組成員。因此,您無法建立或開啟本機 IIS 網站。如果您有讀取、 寫入和修改檔案所在的資料夾的權限,您可以建立指向的資料夾,以便編輯這些檔案的檔案系統網站。 而僅能使用檔案系統方式進行開發時 設定使用管理者模式啟動visual studio 控制台 -> 程式集 -> 開啟或關閉 Windows 功能 -> 網際網路資訊服務 -> 網站管理工具 -> IIS 6 管理相容性,選擇IIS 中繼庫和 IIS 6 組態相容性進行安裝 參考: 當您嘗試在 Windows Vista 架構的電腦上建立 Visual Studio 2005 ASP.NET 專案時,收到錯誤訊息
Posted in Visual Studio 2005
Leave a comment
vimrc 常用設定值
” ts => 1個tab佔幾個空格 set ts=2 ” sw => 每層縮進的空格數 set sw=2 ” 註解顏色 hi Comment ctermfg =blue ” 字串顏色 hi String ctermfg =darkred ” 類型顏色 hi Type ctermfg =yellow ” 數字顏色 hi Number ctermfg =darkblue ” 常數顏色 hi Constant … Continue reading
Posted in Linux, Vim
Leave a comment
Eclipse 安裝 Python 模組
下載 Python 進行安裝 Python 下載連結 安裝過程中記得勾選加入環境變數 開啟 Eclipse => Help => Eclipse Marketplace 搜尋 Python => Go 安裝 PyDev – Python IDE for Eclipse 勾選 PyDev for Eclipse、Pydev Mylyn Integration => Next I accept the terms of the license agreements … Continue reading
Posted in Eclipse, Python
Leave a comment
Eclipse 安裝 PHP 模組
環境:Eclipse Version: Luna Service Release 1 (4.4.1) 開啟Eclipse => Help => Install New Software Work with 選擇 Luna – http://download.eclipse.org/releases/luna 展開 Web, XML, Java EE and OSGi Enterprise Development 勾選PHP Development Tools (PDT) => Next => 安裝 安裝完畢後重新啟動即可
Posted in Eclipse, PHP
Leave a comment
Eclipse 安裝
安裝 jre or jdk Oracle 下載連結 下載Eclipse Eclipse 下載連結 解壓縮後執行
Posted in Eclipse
Leave a comment
Splunk : 計算log檔案在Splunk所佔的大小
計算檔案空間 Splunk 語法: source=”/home/splunk_input_data/imss/2014/log.imss.20141019.0002″ | eval esize=len(_raw) | stats sum(esize) AS sum_esize, count | eval fsize=sum_esize + count | fields fsize Linux指令: grep -v -e “^s*$” /home/splunk_input_data/imss/2014/log.imss.20141019.0002 | wc -c 計算筆數 Splunk 語法: source=”/home/splunk_input_data/imss/2014/log.imss.20141019.0002″ | stats sum(linecount) Linux指令: grep -v … Continue reading
Posted in Linux, Splunk
Leave a comment
OBS Remote Webclient 修正為可帶通訊埠資訊
在研究 OBS (Open Broadcaster Software) 時意外發現了一個好用的 Plugin OBS Remote 其用意主要就是當OBS安裝了Plugin後~可以透過手機APP、Web等環境經由WebSocket的方式進行控制 預設走的Port是TCP 4444,如果需要改Port的話就必須要改一下語法了 //原本的 js / websocket.js 檔案 function connectWebSocket(host) { connectingHost = host; var url = “ws://” + connectingHost + “:4444”; console.log(“trying to connect to: ” + url); if (typeof … Continue reading
Posted in OBS
Leave a comment
Vim 設定tab space
vim ~/.vimrc #加入下面 set ts=2 # ts => 1個tab佔幾個空格 set sw=2 # sw => 每層縮進的空格數
Posted in Vim
Leave a comment