Tag: data
Data URI&MHTML: 用还是不用?
nick | js | 2010-05-16
YAHOO!的性能专家Stoyan Stefanov先后发布了
data:urls – what are they and how to use them
MHTML – when you need data: URIs in IE7 and under
Data URIs, MHTML and IE7/Win7/Vista blues
Uncompressed data in base64? Probably not
NCZ也有
Data URIs explained
引起了我们对data uri的关注,国内的也有一些不错的文章,比如:
秦歌的D... [阅读全文]
mysql 删除完全重复记录的数据
nick | mysql | 2010-05-04
新建一个临时表
create table tmp as select * from youtable group by name
删除原来的表
drop table youtable
重命名表
alter table tmp rename youtable
[阅读全文]