<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ideas</title>
	<atom:link href="http://ideas.spkcn.com/feed" rel="self" type="application/rss+xml" />
	<link>http://ideas.spkcn.com</link>
	<description>Simplicity, The soul of design</description>
	<lastBuildDate>Sun, 19 Feb 2012 16:10:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CSS自定义字体</title>
		<link>http://ideas.spkcn.com/technology/web/325.html</link>
		<comments>http://ideas.spkcn.com/technology/web/325.html#comments</comments>
		<pubDate>Mon, 28 Nov 2011 07:46:34 +0000</pubDate>
		<dc:creator>Ideas</dc:creator>
				<category><![CDATA[网页]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[字体]]></category>

		<guid isPermaLink="false">http://ideas.spkcn.com/?p=325</guid>
		<description><![CDATA[当用户的系统字体库中没有网页预先设置的字体时，使用下面代码就可以在用户的系统中正常显示不存在的字体。 @font-face{ font-family:"字体名称"; src:url("字体文件.eot"); } 生成EOT字体文件： 1. 使用ttf2eot。 下载地址：http://code.google.com/p/ttf2eot/ ttf2eot 是一个开源项目。支持Linux和Windows的环境，能够快速的生成EOT文件。 2. Microsoft WEFT 下载地址：http://www.microsoft.com/typography/FreeToolsOverview.mspx Microsoft WEFT是微软推出的用来解决网页字体问题的软件。软件能够分析网页中调用了哪些字体，然后从系统中选择对应的字体进行转换，生成的EOT文件，也会根据页面中用到的字体情况进行缩减，所以生成的文件比较小。]]></description>
		<wfw:commentRss>http://ideas.spkcn.com/technology/web/325.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css浏览器兼容方法</title>
		<link>http://ideas.spkcn.com/technology/web/318.html</link>
		<comments>http://ideas.spkcn.com/technology/web/318.html#comments</comments>
		<pubDate>Sat, 26 Nov 2011 18:47:39 +0000</pubDate>
		<dc:creator>Ideas</dc:creator>
				<category><![CDATA[网页]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[兼容]]></category>

		<guid isPermaLink="false">http://ideas.spkcn.com/?p=318</guid>
		<description><![CDATA[通过条件判断引入样式表 在 IE 浏览器中通过条件注释语句加载指定的不同CSS样式表，而其他非 IE 内核浏览器则自动忽略注释。 &#60;!--[if IE 8]&#62;&#60;link rel="stylesheet" href="ie8.css"&#62;&#60;![endif]--&#62; &#60;!--[if IE 7]&#62;&#60;link rel="stylesheet" href="ie7.css"&#62;&#60;![endif]--&#62; &#60;!--[if IE 6]&#62;&#60;link rel="stylesheet" href="ie6.css"&#62;&#60;![endif]--&#62; 这段代码 IE8、IE7、IE6 会加载各自对应的样式文件。 CSS Hacks 能解决问题但不符合W3C规范 _selector{property:value;} //IE6 *selector{property:value;} //IE6 IE7 selector{property:value\9;} //IE6 IE7 IE8 通过条件判断插入指定类 为不同 IE 版本设置样式的类 &#60;!--[if !IE]&#62;&#60;html&#62;&#60;![endif]--&#62; // 非 IE 浏览器的情况，不添加任何作用类 &#60;!--[if IE 6]&#62;&#60;html class="ie6"&#62;&#60;![endif]--&#62; &#60;!--[if IE 7]&#62;&#60;html class="ie7"&#62;&#60;![endif]--&#62; &#60;!--[if [...]]]></description>
		<wfw:commentRss>http://ideas.spkcn.com/technology/web/318.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux 生成随机密码</title>
		<link>http://ideas.spkcn.com/technology/314.html</link>
		<comments>http://ideas.spkcn.com/technology/314.html#comments</comments>
		<pubDate>Mon, 31 Oct 2011 12:11:08 +0000</pubDate>
		<dc:creator>Ideas</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[密码]]></category>

		<guid isPermaLink="false">http://ideas.spkcn.com/?p=314</guid>
		<description><![CDATA[Linux shell 随机密码生成简单方法 date +%s &#124; md5sum &#124; base64 &#124; head -c 12;echo openssl rand -base64 32 tr -dc a-zA-Z0-9_ < /dev/urandom &#124; head -c 12 &#124; xargs]]></description>
		<wfw:commentRss>http://ideas.spkcn.com/technology/314.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QUICKWEB OPENVZ VPS 购买链接</title>
		<link>http://ideas.spkcn.com/source/297.html</link>
		<comments>http://ideas.spkcn.com/source/297.html#comments</comments>
		<pubDate>Tue, 20 Sep 2011 05:38:07 +0000</pubDate>
		<dc:creator>Ideas</dc:creator>
				<category><![CDATA[资源]]></category>
		<category><![CDATA[quickweb]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://ideas.spkcn.com/?p=297</guid>
		<description><![CDATA[QUICKWEB OPENVZ 年付 35.88 USD/year VPS 购买链接： OPENVZ/SolusVM/Linux 1 x Intel Xeon CPU Core 256MB RAM 384MB Burst 10GB Storage 250GB Bandwidth 10Mbit Port 1 x IPv4 address 不同数据中心： 1. Phoenix AZ 2. Los Angeles CA 3. Dusseldorf Germany 4. London UK 5. Florida QUICKWEB OPENVZ 年付 23.88 USD/year VPS 购买链接： OPENVZ/SolusVM/Linux 1 x Intel [...]]]></description>
		<wfw:commentRss>http://ideas.spkcn.com/source/297.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>网盘下载链接</title>
		<link>http://ideas.spkcn.com/source/289.html</link>
		<comments>http://ideas.spkcn.com/source/289.html#comments</comments>
		<pubDate>Mon, 29 Aug 2011 11:17:43 +0000</pubDate>
		<dc:creator>Ideas</dc:creator>
				<category><![CDATA[资源]]></category>
		<category><![CDATA[下载]]></category>
		<category><![CDATA[网盘]]></category>

		<guid isPermaLink="false">http://ideas.spkcn.com/?p=289</guid>
		<description><![CDATA[Fileserve网盘：http://generatory.3xg.pl/fileserve/ Wupload网盘：http://generatory.3xg.pl/wupload Filesonic网盘：http://generatory.3xg.pl/filesonic Hotfile网盘：开头的http://换成https:// megaupload网盘： 方法1：把地址改成IP地址 例如：http://www.megaupload.com/?d=ABC 改成：http://209.222.148.150/?d=ABC 方法2：把地址中http://www.megaupload.com/换成http://69.5.88.216/ 方法3：在地址的?和d中间加一个”&#038;p=1&#038;” 方法4：http://generatory.3xg.pl/megaupload multiupload网盘： 把网址改成IP地址，例如： http://www.multiupload.com/ABC 改成：http://85.17.76.195/ABC 打开后会每个链接里 www.multiupload.com 都改成85.17.76.195 ======================= http://www.leechmod.us/]]></description>
		<wfw:commentRss>http://ideas.spkcn.com/source/289.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

