- 強調經驗勝過於實作
- 強調品味
- 從不分享實際工作經驗(有機會下次再分享)
- 強調單一專業的重要而忽略人性
- 不會寫完整的文件與簡報
- 討論實作時,強調自己是領導人性格,擅長帶人
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"binary_file_patterns": | |
[ | |
"*.psd" | |
], | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme", | |
"detect_indentation": false, | |
"disable_formatted_linebreak": true, | |
"drag_text": false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/////////////////////////////// | |
// Parallax | |
/////////////////////////////// | |
// Calcualte the home banner parallax scrolling | |
function scrollBanner() { | |
//Get the scoll position of the page | |
scrollPos = $(this).scrollTop(); | |
//Scroll and fade out the banner text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pf{ "data-alt" => "", "data-picture" => "" } | |
%div{ "data-src" => fakeimg(300) } | |
%div{ "data-src" => fakeimg(300, :retina => 1), "data-media" => "(min-device-pixel-ratio: 1.5)" } | |
%div{ "data-src" => fakeimg(600 ), "data-media" => "(min-width: 320px)" } | |
%div{ "data-src" => fakeimg(600, :retina => 1), "data-media" => "(min-width: 320px) and (min-device-pixel-ratio: 1.5)" } | |
%div{ "data-src" => fakeimg(1200), "data-media" => "(min-width: 768px)" } | |
%div{ "data-src" => fakeimg(1200, :retina => 1), "data-media" => "(min-width: 768px) and (min-device-pixel-ratio: 1.5)" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ViewHelpers | |
def nav_link_to(name, href, options={}) | |
if href == request.path | |
active = "active" | |
end | |
content_tag(:li, link_to(name, href, options), :class => active ) | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"binary_file_patterns": | |
[ | |
"*.psd" | |
], | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme", | |
"detect_indentation": false, | |
"disable_formatted_linebreak": true, | |
"drag_text": false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#resp_banner_ads.show { | |
height: 0px; | |
overflow: hidden; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ViewHelpers | |
def placekitten(size, options={}) | |
domain = options[:domain] || "http://placekitten.com" | |
src = "#{domain}/#{size}?image=#{rand(16)+1}" | |
g = options[:g] | |
if options[:g] | |
src = "#{domain}/g/#{size}?image=#{rand(16)+1}" | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ViewHelpers | |
def placekitten(size, options={}) | |
domain = options[:domain] || "http://placekitten.com" | |
src = "#{domain}/#{size}" | |
g = options[:g] | |
if options[:g] | |
src = "#{domain}/g/#{size}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// for google plus | |
table.pls-container, | |
table tbody tr.gc-reset:nth-child(even) { | |
background-color: transparent; | |
} | |
.gc-reset { | |
background-color: transparent; | |
img { | |
max-width: none; |