Search

6/29/2011

[食記] 馥臨港式火鍋

[食記] 馥臨港式火鍋

馥臨港式火鍋(市民店)
Add: 台北市市民大道四段118號
Tel: (02) 27732223
營業時間: 11:30~15:00; 17:00~01:30

CSS Differences in Internet Explorer 6, 7 and 8

CSS Differences in Internet Explorer 6, 7 and 8

main features that ie7 can but ie6 cannot


body > p /* child selector */
.class1.class2.class3 /* chained classes */
a[href] /* attribute selector */
h1+p /* adjacent sibling selector */
h1~p /* general sibling selector */

6/28/2011

普通人的自由主義: 債台高築與柏南克一夫當關

普通人的自由主義: 債台高築與柏南克一夫當關

古典經濟學派的會告訴你,景氣循環就像是天要下雨,娘要嫁人,該發生的就讓它發生吧。景氣不好,求職的人自動減少薪資,實資薪資跌到一定程度後,公司就會覺得多僱用人是划得來,就會開始請人。所以古典學派的會告訴你,不要阻礙自然的調整速度,長痛不如短痛,什麼財政擴張,貨幣支出增加等等,都會減慢調整速度,而延長痛苦。

舊凱因斯學派,克魯曼心目中最棒的經濟學派。他們認為,公司不請人,那是因為需求莫明其妙的不見了,所以應該由政府接棒,創造需求。看到有利可圖,公司就會加碼投資,並且僱用員工了。

新凱因斯: 所以柏南克的做法,就是創造低利環境。不要忘記生產要素除了勞動力外,還有資本。只要實質利率夠低,資金成本夠低,公司還是有十足的誘因擴張,終究還是會多僱用人,畢竟再好的機器,也是要人工操作,再好的產品,也是要有人賣!

6/26/2011

Gordon Biersch Brewery Restaurant (GB)

【信義區食】Gordon Biersch Brewery Restaurant @ 717巷的柑仔店

店名:Gordon Biersch 鮮釀啤酒餐廳(台北信義店)
地址:台北市信義區松壽路11號2樓
   (新光三越A11館2樓)
電話:02-87867588
官方網頁:http://www.gordonbiersch.com.tw/aboutus.html


台中Gordon Biersch美式餐廳

6/24/2011

15 Must Know Firefox keyboard shortcuts

15 Must Know Firefox keyboard shortcuts

Spacebar (page down)
Shift + Spacebar (page up)
Command + D (bookmark current page)
Function + F5 (reload current page)
Command + T (open new tab)
Command + W (close current tab or window)
Control + Tab (navigate forward through browser tabs)
Control + Shift + Tab (navigate backward through browser tabs)
Command + K (go to search box)
Command + L (go to address bar)
Command + Enter (auto-complete URL within address bar)
Command + = (increase screen text size)
Command + – (decrease screen text size)
Command + F (find text)
Control + N (find next occurrence of text)

6/22/2011

background-size

Supersize that Background, Please!

contain
Scale the image, while preserving its intrinsic aspect ratio (if any), to the largest size such that both its width and its height can fit inside the background positioning area.
cover
Scale the image, while preserving its intrinsic aspect ratio (if any), to the smallest size such that both its width and its height can completely cover the background positioning area.

Contain always fits the entire image within your viewport, leaving opaque borders on either the top-bottom or the left-right whenever the ratio of the background image and browser window are not the same. In Example two, we have extended the code from Example one by setting the background-size property to contain.

Cover always fills the browser window, cutting off some hair or ears in the process, which is what I personally prefer for most cases. You can control how your image is aligned within the viewport by using the background-position property. In Example three we have extended Example one again, this time by setting the background-size property to cover.



body {
background: #000 url(myBackground_1280x960.jpg) »
center center fixed no-repeat;
-moz-background-size: cover;
background-size: cover;
}

@media only all and (max-width: 1024px) and (max-height: 768px) {
body {
-moz-background-size: 1024px 768px;
background-size: 1024px 768px;
}
}

default: http://www.alistapart.com/d/supersize-that-background-please/index.html
background-size: contain http://www.alistapart.com/d/supersize-that-background-please/index2.html
background-size: cover http://www.alistapart.com/d/supersize-that-background-please/index3.html