总听到大家在谈论,没有亲自体验过。
官网:http://nodejs.org/
下载:http://nodejs.org/#download
选择对应的安装包下载:
Continue reading
总听到大家在谈论,没有亲自体验过。
官网:http://nodejs.org/
下载:http://nodejs.org/#download
选择对应的安装包下载:
Continue reading
感谢 GYL OV 推荐
这个是 project homepage
点击下载 goagent
简易教程
Continue reading
by DAVID DEMAREE
from ALA
CSS’ simplicity has always been one of its defining, most welcome features. CSS style sheets are just long lists of rules, each consisting of a selector and some styles to apply. But as our websites and applications get bigger and become more complex, and target a wider range of devices and screen sizes, this simplicity—so welcome as we first started to move away from font tags and table-based layouts—has become a liability.
Readability version
from W3C Recommendation
A selector’s specificity is calculated as follows:
by Louis Lazaris from Smashingmagazine
An Introduction To Object Oriented CSS (OOCSS)
Have you ever heard the phrase “Content is King”? Being a Web developer, and therefore having a job that’s often linked to content creation, it’s likely you have. It’s a fairly overused but true statement about what draws visitors to a site.
From a Web developer’s perspective, however, some may argue that speed is king. More and more, I’m starting to favour that stance. In recent years many experienced front-end engineers have offered their suggestions on how we can improve the user experience by means of some performance best practices.
Readability Version
An Introduction To Object Oriented CSS (OOCSS)
wordepress 3.2 的默认主题 Twenty Eleven
文章模板是没有侧边栏的
修改一下代码
打开 single.php
在最底下 get_footer(); 之前增加一行
Continue reading
Update: 不用这么麻烦,betterZip 能直接打开 2012.04.02
在 Mac 中似乎没法直接打开 bin/cue 光盘镜像文件,借助光盘刻录工具 Toast TItanium 可以搞定。
先安装 Toast Titanium
Continue reading
People Read
Find.Understand.Connect
Words.Ideas.Information
in three ways…
Continue reading
将需要修改的图片存入某个文件夹,比如 temp ,将 temp 拖入 Adobe Bridge,在 Adobe Bridge 中选择所有文件:
Arrays allow the addition or removal of members at any position.
The push method adds one or more new members to the end of an array:
var planets = ['mercury', 'venus', 'earth'];
planets.push('mars', 'jupiter');
alert(planets);