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: 程式語言
Gitbook 超過兩層目錄無法創建檔案/目錄的解套
因為gitbook作者認為一本書的章節目錄不應該過於複雜 所以原本預設只有兩層目錄 在去年一堆相關討論串結束後雖然已讓目錄可以超過兩層 但是gitbook (github源)卻無法建立相對應的目錄及檔案 在爬了許多code後 (/usr/lib/node_modules/gitbook)決定還是自己寫一個parse code來處理 這邊在讀完SUMMARY.md後會自動偵測檔案目錄是否不存在 不存在就直接創建 預設只抓三層檔案目錄的結構 # !/usr/bin/python # -*- coding: utf-8 -*- import re import os for line in open(“SUMMARY.md”): try: src1 = re.search(‘((.+?))’, line) src = src1.group(1) except: print line else: cnt = … Continue reading
Posted in Gitbook, Python
Leave a comment
Javascript的月份是從0開始…
受教了~修正 etherpad 的日期顯示以 “yyyy-mm-mm hh-mm” 顯示的過程中發現月份總是少一個月 可是看 code 又沒有什麼問題 所以用 google 搜尋 “jquery + 少1個月” 及 “javascript + 少1個月” 發現了是 javascript 對於月份是少一個月 Orz… 所以 etherpad 的原本的寫法還不錯,貼上來註記一下 var converterPad = function (UNIX_timestamp) { var a = new Date(UNIX_timestamp); //原本的寫法是用英文顯示 //var months … Continue reading
Posted in etherpad, JavaScript
Leave a comment
Redir 每日記錄回報
#!/bin/sh /bin/cat /var/log/syslog* | grep -a “ubuntu redir” | grep “`date –date=yesterday +%b %e`” > /root/diary.log /bin/zcat /var/log/syslog.*.gz | grep -a “ubuntu redir” | grep “`date –date=yesterday +%b %e`” >> /root/diary.log if [ -s /root/diary.log ] ; then /bin/cat /root/diary.log| … Continue reading
Posted in Linux, Shell Script
Leave a comment
[Wisemapping] find user by email in Python
#! /usr/bin/python # coding:utf-8 # curl “http://localhost:8080/wisemapping/service/admin/users/email/{使用者帳號信箱}.json” –get –basic -u “admin@wisemapping.org:admin” import sys import urllib2 import base64 import yaml import datetime username = ‘admin@wisemapping.org’ password = ‘admin’ if len(sys.argv) == 2: request = urllib2.Request(“http://localhost:8080/wisemapping/service/admin/users/email/%s.json” % sys.argv[1]) base64string = base64.encodestring(‘%s:%s’ % … Continue reading
Posted in Python, Wisemapping
Leave a comment
Shell Script Dialog
Dialog 預設設定通常在個人Home目錄下的檔案”.dialogrc” 可使用指令 “dialog –create-rc ~/.dialogrc” 產生 因為預設底色是青色,結束後會有色塊殘留,所以建議將screen_color調整為黑色 也可在 dialog 指令執行前先指定使用哪一個設定檔案進行dialog “export DIALOGRC=${path}/dialog.installer” 記得離開前把DIALOGRC清空就好 下面是將常用的dialogrc寫成function dialog_msgbox() { #$1 => msgbox的類別{no clear, clear, clear & exit}, $2 => 前視窗的文字說明, $3 => 顯示的資訊文字 case $1 in 0) dialog –backtitle “${backtitle}” –title “$2” … Continue reading
Posted in Shell Script
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