原创 [CSS3] 文本

(1) 字體 font-size font-weight font-family font-style: eg italic font-variant: small-caps 變爲大寫 123<span class="s

原创 [CSS3] 盒模型 & overflow & resize & outline

盒模型是css中非常的重要 百度 tencent 美團 等等等等等等 校招面試都問過的問題 (1) W3C & IE 兩種盒模型 <div> <p class="p1"> Citic Securities </p> </div>

原创 [Business Intelligence] BI & Decision Making

(1) Why BI? -> Business Pressures (eg:technology, competition, markets..) -> Responses (eg:new tech, collabor

原创 [Javascript] Ajax

(1) XMLHttpRequest (XHR) 在不刷新整個頁面的時候, 部分更新數據 var xhr=new XMLHttpRequest(); <script type="text/javascript"> var x

原创 [Javascript Data Structures] Straight Insertion Sort 直接插入法

每次從無序表中取出第一個元素,把它插入到有序表的合適位置,使有序表仍然有序。 從第一個元素開始 作爲一個新的有序列表, 從第二個元素開始和有序列表進行比較, 排序好的第一個和第二個元素 作爲新的有序列表, 此次循環結束 下一次

原创 [Cryptography] Introduction

(1) Introduction cipher 密碼 plaintext 明文(沒有被加密的信息) ciphertext 暗文(加密了的信息) (2) 4 types of Threats Unterception

原创 [Cryptography] Symmetric & Asymmetric

(1) ECB, CBC 介紹明文的處理方式 block cipher塊處理方式 介紹ECB 和 CBC 另外還有stream cipher DES: data encryption standard 56

原创 [Interview Summary] Load webpage from URL

1. input URL 2. check local cache to ensure whether the we bpage is updated or not. (HTTP status==304?) 3.

原创 [Cryptography] Hash Password, Nonce

(1) Hashed Password stored hashed password H(p)in the Database, instead of plaintext password use random number,ca

原创 [AngularJS] Simple Data Binding

(1) AngularJS https://github.com/colorfest/angularjs make single-page applications easier 方便構建單網頁應用 It is an MVC (M

原创 [CSS3] Animation

Transition: 只能指定屬性的開始和結束狀態 Animation: 通過Flash中幀來聲明動畫 animation-name animation-duration 播放動畫所持續的時間長 animation-timing

原创 [jQuery] DOM & CSS

1. html(), text(), val() 2. Attribute <div class="red" title="redone">red1</div> <div class="green">green1</di

原创 [Application] oh-my-zsh & iterm2

https://github.com/robbyrussell/oh-my-zsh http://www.jianshu.com/p/7de00c73a2bb http://macshuo.com/?p=676

原创 [Cryptography] KDC, CA, PKI, PGP

(1) KDC key distribution center for reducing the number of keys the place to manage and store the public key KDC

原创 [CSS3 Practice] Simulate MacBook Dock

Codes HTML: <body> <div class="container"> <ul> <li></li> <li></li> <li></li> </ul> </div>