综合类 | 地址 |
---|---|
前端知识体系 | http://www.cnblogs.com/sb19871023/p/3894452.html |
前端知识结构 | https://github.com/JacksonTian/fks |
Web前端开发大系概览 | https://github.com/unruledboy/WebFrontEndStack |
Web前端开发大系概览-中文版 | http://www.cnblogs.com/unruledboy/p/WebFrontEndStack.html |
Web Front-end Stack v2.2 | Web Front-end Stack v2.2 |
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
<script> | |
window.Promise || document.write('<script src="https://unpkg.com/[email protected]/dist/es6-promise.min.js"><\/script>'); | |
window.fetch || document.write('<script src="https://unpkg.com/[email protected]/fetch.js"><\/script>'); | |
</script> |
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
apt-get -y update | |
apt-get -y upgrade | |
apt-get -y --force-yes install make unzip g++ libssl-dev git xvfb x11-xkb-utils xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic x11-apps clang libdbus-1-dev libgtk2.0-dev libnotify-dev libgnome-keyring-dev libgconf2-dev libasound2-dev libcap-dev libcups2-dev libxtst-dev libxss1 libnss3-dev gcc-multilib g++-multilib | |
npm -f init | |
npm i -S nightmare | |
xvfb-run nodejs index.js |
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
cities = { | |
'KeelungCity': '基隆市', | |
'TaipeiCity': '臺北市', | |
'NewTaipeiCity': '新北市', | |
'TaoyuanCity': '桃園市', | |
'HsinchuCounty': '新竹縣', | |
'HsinchuCity': '新竹市', | |
'MiaoliCounty': '苗栗縣', | |
'TaichungCity': '臺中市', | |
'NantouCounty': '南投縣', |
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
<?php | |
/** | |
* 3-letter IATA City Code to CityName conversion | |
* | |
* Usage: | |
* | |
* $city_name = City::code("LON"); | |
* // "London" | |
* |
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
function createCORSRequest(method, url) | |
{ | |
var xhr = new XMLHttpRequest(); | |
if ("withCredentials" in xhr) | |
{ | |
xhr.open(method, url, true); | |
} | |
else if (typeof XDomainRequest != "undefined") | |
{ | |
xhr = new XDomainRequest(); |
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
2012.08.16 12:00 抽獎留言存檔 如下,共72則 | |
從 http://on.fb.me/PmAL3X | |
---------------------------------- | |
Polly Yang 兩三天畫一次~ | |
星期一 21:26 · 讚 | |
朱珮綺 有出門才會畫~ |
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
// this project is move to https://github.com/girvan/mobile-detection | |
(function(){ | |
var device = '', _ipad = 'ipad', _iphone = 'iphone', ua = navigator.userAgent.toLowerCase(); | |
if( ua.indexOf(_ipad) != -1 ) | |
device = 'ios tablet ' + _ipad; | |
else if( ua.indexOf(_iphone) != -1 ) | |
device = 'ios mobile ' + _iphone; |
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
淡定哥主要表情:ˊ_>ˋ | |
淡定哥第二表情:ˊ_ˋ | |
淡定哥第三表情:ˊ_>ˋ | |
路人第四號表情:ˊ_>ˋ | |
其它: | |
-_>- (-_>-) |
NewerOlder