6.06.2014

[Linux] Jpeg, PNG Image Optimization / Compress on Centos

運用 jpegoptim & Optipng 進行圖片壓縮,並安裝於 Centos 6.5 (x86_64)系統,以下為安裝步驟:

Step 1.

  • 安裝擴充套件( EPEL Repo)於 CentOS 6.5 (x86_64):
           
        rpm -ivh http://dl.fedoraproject.org/pub/epel/6Server/x86_64/epel-release-6-8.noarch.rpm
     

Step 2.

  • 安裝 jpegoptim & Optipng:
           
        yum install jpegoptim optipng
     

5.13.2014

[QR Code] 線上製作 QR Code 工具


QRHacker
運用QRHacker QR Code 線上製作工具,可以加上特別設計的Logo圖片,可創造出不一樣的QRCode設計圖。


[WEB] HTML5 Developer Tools & Cloud IDEs

HTML5 Developer Tools & Cloud IDEs...

Detection:
  •     Modernizr: 用來偵測瀏覽器對 HTML5 / CSS3 支援程度的Library。

[JS] 在IE8下支援 HTML5 和 CSS3


        為了在 IE 8 版本以下瀏覽器支援  HTML5 和 CSS3語法,可以運用 Html5shiv.js 和 Respond.min.js 這兩隻 JS 來讓 IE 6, IE 7, IE 8瀏覽器能支援HTML5 和 CSS3語法。


在head區加入 meta 標籤:
<!--[if lt IE 9]>
  <script type="text/javascript" src="js/html5shiv.js"></script>
  <script type="text/javascript" src="js/respond.min.js"></script>
 <![endif]-->

5.08.2014

[工具] Sublime Text 2 安裝紀錄

以下整理 Sublime Text2 文字編輯器的安裝方法及相關套件。


. 第一個安裝的plugin:(https://sublime.wbond.net/installation#st2)
先按ctrl+`,並貼上下列命令:
import urllib2,os,hashlib; h = '7183a2d3e96f11eeadd761d777e62404' + 'e330c659d4bb41d3bdf022e94cab3cd0'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation')

4.30.2014

[.net] asp.net 驗證控制項


asp.net 驗證控制項 :
  1. 驗證使用者是否輸入資料 (RequiredFieldValidator)
  2. 驗證 e-mail 格式 (RegularExpressionValidator)
  3. 驗證 行動電話 格式 (RegularExpressionValidator)

4.29.2014

[CSS] Normalize 重置樣式


Cross-Browser Issues,CSS Reset 的另外一種選擇,但不支援「IE 6」及「IE 7」兩個版本


連結:Normalize.css

4.08.2014

Online Tools for image optimization


透過圖片壓縮工具來壓縮圖片,再不會損壞太多照片品質的情況下,來減少儲存圖片所需的空間,以下為線上圖片壓縮工具:


[Linux]Shell Script Check Httpd 範例


這範例為判斷httpd目前的執行數量,如果執行數量超過100將進行重啟動作。
程式碼參考如下:

4.02.2014

[Linux]Using the PageSpeed Module (apache)

Google 所發佈的前端頁面優化 Module,參考:Google PageSpeed

安裝方法(apache / centos):
1.下載 Stable Version(穩定版) mod_pagespeed 64-bit .rpm (CentOS/Fedora)
2.#sudo yum install at
3.#sudo rpm -U mod-pagespeed-*.rpm
4.修改 /etc/httpd/conf.d/pagespeed.conf, 將 ModPagespeed 設定為 on
5.#service httpd restart

進階設定參考

3.26.2014

[Git] Git Learn with tryGit

Try Git
http://try.github.io

@本機端初始化
  git config --global user.name "TestMan"
  git config --global user.email "TestMan@mail.com"

@從Github抓檔案下來
  git clone https://github.com/TestMan/TestMan.git

@Create a new repository on the command line/
  touch README
  git init
  git status
  git add README
  git commit -m "first commit"
  git remote add origin https://github.com/XXX/XXX
  git push -u origin master

@Push an existing repository from the command line/
  git remote add origin https://github.com/XXX/XXX
  git push -u origin master

Reference:

3.25.2014

[Linux] RHEL/CentOS 安全設定


~SSH 設定  
  • #vi /etc/ssh/sshd_config 
    • Disable root ssh: PermitRootLogin no
    • 閒置300秒斷線: 
      • ClientAliveInterval 300
      • ClientAliveCountMax 0
  • ※vi /etc/profile:
    •  TMOUT 2700; export TMOUT
    • 登入失敗三次即斷線:MaxAuthTries 3
  • vi /etc/hosts.allow : sshd:172.18.1.1
  • vi /etc/hosts.deny :  sshd:ALL
  • 重啟  #service sshd restart

~密
碼管理
  • 帳戶密碼最大使用期限不可超過90天、最小使用期限不可超過60天、密碼最小長度12、密碼到期30天前提醒:
    • vi /etc/login.defs #
    • PASS_MAX_DAYS 90
    • PASS_MIN_DAYS 60
    • PASS_MIN_LEN 12
    • PASS_WARN_AGE 30
  • 帳號使用之密碼滿90天需強迫變更,到期前30天提醒:
    • chage -M 90 -W 30 account
  • 將帳號的最後變更密碼日期改成今天:
    • chage -d yyyy-mm-dd account
  • 設定密碼複雜度(最少為8碼)
    • /etc/pam.d/system-auth
    • password requisite pam_cracklib.so try_first_pass retry=3 dcredit=1 ucredit=1 ocredit=1 lcredit=1 minlen=8
    • password sufficient pam_unix.so md5 shadow nullok try_first_pass use_authok remember=3
    • password required pam_deny.so