<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
>

<channel>
	<title>Web Log&#124;…不要怀疑你的网速—本站存放在U·S·A地区 &#187; 未处理</title>
	<atom:link href="http://fucklenovo.com/wxp/archives/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://fucklenovo.com/wxp</link>
	<description>老子是80后的强人，保持着70后的优秀思想，却拥有90后脑残般的头脑，贱踏完00后艰苦奋斗的道路，活在10后这个人贱人爱的中国社会主义社会……</description>
	<lastBuildDate>Wed, 16 May 2012 03:29:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<!-- podcast_generator="Blubrry PowerPress/4.0" -->
	<itunes:summary>老子是80后的强人，保持着70后的优秀思想，却拥有90后脑残般的头脑，贱踏完00后艰苦奋斗的道路，活在10后这个人贱人爱的中国社会主义社会……</itunes:summary>
	<itunes:author>Web Log|…不要怀疑你的网速—本站存放在U·S·A地区</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://fucklenovo.com/wxp/wp-content/plugins/powerpress/itunes_default.jpg" />
	<itunes:subtitle>老子是80后的强人，保持着70后的优秀思想，却拥有90后脑残般的头脑，贱踏完00后艰苦奋斗的道路，活在10后这个人贱人爱的中国社会主义社会……</itunes:subtitle>
	<image>
		<title>Web Log|…不要怀疑你的网速—本站存放在U·S·A地区 &#187; 未处理</title>
		<url>http://fucklenovo.com/wxp/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://fucklenovo.com/wxp/archives/category/uncategorized</link>
	</image>
		<item>
		<title>PR降到3了</title>
		<link>http://fucklenovo.com/wxp/archives/2012/05/16/2598</link>
		<comments>http://fucklenovo.com/wxp/archives/2012/05/16/2598#comments</comments>
		<pubDate>Wed, 16 May 2012 03:29:47 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[PR]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/?p=2598</guid>
		<description><![CDATA[Web Page URL:	http://fucklenovo.com/wxp/
The Page Rank:
3/10
(the page rank value is 3 from 10 possible points)
你可能还喜欢下面这些：

PR值到4了?
Google Page Rank Dancing??这个成3了?
HitFm在Google的DNS下解析不正确
Google Reader 502 Server Error
Request Entity Too Large
GOOGLE纪念李小龙生日
另类访问picasaweb
几组常用的公共 DNS 服务器
G.cn离我们远去，不再是敲四下一回车就能搜索的了……
SOGOU真二。。。

]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2012/05/16/2598/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php、asp获取文件创建时间、修改时间</title>
		<link>http://fucklenovo.com/wxp/archives/2012/05/02/2594</link>
		<comments>http://fucklenovo.com/wxp/archives/2012/05/02/2594#comments</comments>
		<pubDate>Wed, 02 May 2012 02:45:50 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[文件修改时间]]></category>
		<category><![CDATA[文件创建时间]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/?p=2594</guid>
		<description><![CDATA[php获取文件创建时间、修改时间
filemtime ( string filename )
返回文件上次被修改的时间，出错时返回 FALSE。时间以 Unix 时间戳的方式返回，可用于 date()。
例如：$a=filemtime(&#8220;log.txt&#8221;);
echo &#8220;修改时间：&#8221;.date(&#8220;Y-m-d H:i:s&#8221;,$a).&#8221;
filectime ( string filename )
返回文件上次 inode 被修改的时间，如果出错则返回 FALSE。时间以 Unix 时间戳的方式返回。
例如：$a=filectime(&#8220;log.txt&#8221;);
echo &#8220;创建时间：&#8221;.date(&#8220;Y-m-d H:i:s&#8221;,$a).&#8221;
fileatime ( string filename )
返回文件上次被访问的时间，如果出错则返回 FALSE。时间以 Unix 时间戳的方式返回。
例如：$a=fileatime(&#8220;log.txt&#8221;);
echo &#8220;修改时间：&#8221;.date(&#8220;Y-m-d H:i:s&#8221;,$a).&#8221;
ASP版本：
&#60;html&#62;&#60;head&#62;&#60;title&#62;
File&#60;/title&#62;&#60;/head&#62;&#60;body&#62;&#60;%Call showsize(&#8220;offline.rar&#8221;)%&#62;
&#60;%
Function showsize(filename)
FPath=server.mappath(filename)
set fso=server.CreateObject(&#8220;scripting.filesystemobject&#8221;)
If fso.fileExists(FPath) Then
Set f = fso.GetFile(FPath)
filetype=f.type
filesize=f.size
lastdate=f.Datelastmodified
Select Case true
Case filesize&#60;1024
fsize=filesize&#38;&#8221; B&#8221;
Case filesize&#60;1048576
fsize=Round((filesize/1024),2)&#38;&#8221; KB&#8221;
Case filesize&#60;1073741824
fsize=Round((filesize/1024/1024),2)&#38;&#8221; MB&#8221;
Case else
fsize=Round((filesize/1024/1024/1024),2)&#38;&#8221; GB&#8221;
End Select
Response.Write &#8220;文件大小：&#8221;&#38;fsize&#38;&#8221;，最后更新时间：&#8221;&#38;lastdate
else
Response.Write&#8221;更新文件不存在!&#8221;
end if
End Function
%&#62;
你可能还喜欢下面这些：

IP记录程序，PHP And ASP。。。
MD2003……[IIS]
asp [...]]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2012/05/02/2594/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>温习了一下串联和并联电路。</title>
		<link>http://fucklenovo.com/wxp/archives/2012/04/24/2591</link>
		<comments>http://fucklenovo.com/wxp/archives/2012/04/24/2591#comments</comments>
		<pubDate>Tue, 24 Apr 2012 09:18:17 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>
		<category><![CDATA[串联电路与并联电路]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/?p=2591</guid>
		<description><![CDATA[
串联电路与并联电路的区别



江苏丰县广宇学校　刘庆贺



　　串联电路与并联电路知识是电学的基础，串、并联电路的识别既是重点，又是难点和中考的考点。学习时要学会基本的方法，并能做到举一反三。
&#160;
一、串联电路
&#160;
把用电器各元件逐个顺次连接起来，接入电路就组成了串联电路。我们常见的装饰用的“满天星”小彩灯，常常就是串联的。串联电路有以下一些特点：
&#160;
⑴电路连接特点：串联的整个电路是一个回路，各用电器依次相连，没有“分支点”。
&#160;
⑵用电器工作特点：各用电器相互影响，电路中一个用电器不工作，其余的用电器就无法工作。
&#160;
⑶开关控制特点：串联电路中的开关控制整个电路，开关位置变了，对电路的控制作用没有影响。即串联电路中开关的控制作用与其在电路中的位置无关。
&#160;
二、并联电路
&#160;
把用电器各元件并列连接在电路的两点间，就组成了并联电路。家庭中的电灯、电风扇、电冰箱、电视机等用电器都是并联在电路中的。并联电路有以下特点：
&#160;
⑴电路连接特点：并联电路由干路和若干条支路组成，有“分支点”。每条支路各自和干路形成回路，有几条支路，就有几个回路。
&#160;
⑵用电器工作特点：并联电路中，一条支路中的用电器若不工作，其他支路的用电器仍能工作。
&#160;
⑶开关控制特点：并联电路中，干路开关的作用与支路开关的作用不同。干路开关起着总开关的作用，控制整个电路。而支路开关只控制它所在的那条支路。
&#160;
三、识别串联电路与并联电路的方法
&#160;
⑴路径法：从电源的正极出发，沿开关、用电器等元件“走”回电源负极的路径中，若只有一条通路即为串联电路，如果有两条或两条以上的路径即为并联电路。
&#160;
⑵拆除法：若拆除一个用电器，另一用电器也不工作，说明这两个用电器是串联的；如果另一用电器仍然工作，说明这两个用电器是并联的。
&#160;
⑶支点法：只要电路中没有出现分支点的，用电器肯定是串联的。若出现分支点，用电器可能是串联，也可能是并联的。这还要用上面的两个方法进一步加以判别。例如：在图1中，只闭合开关S1时，电流通过灯L1、L2、L3，它们是串联的。当S1、S2闭合时，电流只通过灯L3。当S1、S3闭合时，电流只通过灯L1。当S1、S2、S3都闭合时，电流通过灯L1、L2、L3，它们是并联的。看，通过开关的通断，也能够改变电路的连接情况。
&#160;
　　
&#160;
应该注意的是，不能仅凭开关能控制所有用电器，就说电路是串联的。因为并联电路中在干路的开关也能控制整个电路。例：如图2所示，在桌面上有两个小灯泡和一个开关，它的连接电路在桌面下，无法看到。某同学试了一下，闭合开关时两灯泡都亮，断开开关时，两灯泡都熄灭，这两个小灯泡究竟是串联连接，还是并联连接。单凭这些无法做出判断。最简单的方法是：闭合开关，两灯泡都亮，然后拧去一只灯泡，看另一只是否发光。若发光，说明是并联；若不发光，说明是串联。


你可能还喜欢下面这些：

抱歉，我没找到其它的……上Google搜索吧！

]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2012/04/24/2591/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>config/system 损坏 &#8211; Google Search</title>
		<link>http://fucklenovo.com/wxp/archives/2012/04/23/2588</link>
		<comments>http://fucklenovo.com/wxp/archives/2012/04/23/2588#comments</comments>
		<pubDate>Mon, 23 Apr 2012 04:44:49 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>
		<category><![CDATA[system损坏]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/?p=2588</guid>
		<description><![CDATA[开机显示windows\system32\config\system损坏解决办法
其实用PE进入，直接Chkdsk /f /r C:
即可。。。
通过config/system 损坏 &#8211; Google Search.
你可能还喜欢下面这些：

抱歉，我没找到其它的……上Google搜索吧！

]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2012/04/23/2588/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>密码保护：昨天，今天，明天</title>
		<link>http://fucklenovo.com/wxp/archives/2012/03/21/2580</link>
		<comments>http://fucklenovo.com/wxp/archives/2012/03/21/2580#comments</comments>
		<pubDate>Wed, 21 Mar 2012 15:17:20 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/?p=2580</guid>
		<description><![CDATA[无法提供摘要。这是一篇受保护的文章。]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2012/03/21/2580/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>U盘直接安装Vista以上版本Windows的简单方法[转]</title>
		<link>http://fucklenovo.com/wxp/archives/2012/03/01/2570</link>
		<comments>http://fucklenovo.com/wxp/archives/2012/03/01/2570#comments</comments>
		<pubDate>Thu, 01 Mar 2012 05:16:03 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>
		<category><![CDATA[U盘]]></category>
		<category><![CDATA[安装Win7]]></category>
		<category><![CDATA[安装Win8]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/?p=2570</guid>
		<description><![CDATA[U盘直接安装Vista以上版本Windows的简单方法
步骤一、 这个步骤对每个U盘只需要做一次 不影响U盘的正常使用
打开cmd，运行diskpart，输入以下命令
&#62;list disk //查看硬盘列表，找到U盘编号，假设是 disk 2
&#62;select disk 2
&#62;list partition //列出分区，再次确认是不是你的U盘，否则会影响到你其他硬盘的数据
&#62;clean //清除分区表，注意 预先备份数据
&#62;create partition primary align=1024 //创建分区
&#62;list partition //查看分区，这个时候应该只有一个分区，为partition 1
&#62;select partition 1 //选择分区1
&#62;active //标记为活动，最关键的一步
&#62;exit
步骤二、这个步骤每次安装前做 确认U盘已经完成了步骤一
(可选)格式化U盘或清空文件，NTFS还是FAT32不影响效果
将安装光盘上的所有文件复制到U盘上，完成
然后从U盘引导就可以开始安装啦~~ 同样适用于Win8~ 是不是很简单呢~~
有了这个U盘，以后只要复制一下文件就可以装系统啦~~
你可能还喜欢下面这些：

抱歉，我没找到其它的……上Google搜索吧！

]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2012/03/01/2570/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一个新的分区方法</title>
		<link>http://fucklenovo.com/wxp/archives/2011/11/09/2562</link>
		<comments>http://fucklenovo.com/wxp/archives/2011/11/09/2562#comments</comments>
		<pubDate>Wed, 09 Nov 2011 07:18:59 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/?p=2562</guid>
		<description><![CDATA[至少我是这么认为的
刚帮一同事装XP，装完后没分区，只有系统区。
&#160;
好吧，我承认这是自己惹的祸。。。
&#160;
所以想到PQ等一切第三方工具。。。
&#160;
发现N种不合适之后，后来用WIN7版PE进入，磁盘管理－压缩，解决问题。
你可能还喜欢下面这些：

抱歉，我没找到其它的……上Google搜索吧！

]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2011/11/09/2562/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>梦</title>
		<link>http://fucklenovo.com/wxp/archives/2011/10/24/2561</link>
		<comments>http://fucklenovo.com/wxp/archives/2011/10/24/2561#comments</comments>
		<pubDate>Sun, 23 Oct 2011 23:21:14 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>
		<category><![CDATA[梦]]></category>
		<category><![CDATA[舅舅]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/archives/2011/10/24/2561</guid>
		<description><![CDATA[嗯，好吧，我承认我昨夜又梦见了大舅舅。
那逝去的岁月…
你可能还喜欢下面这些：

淫荡的、乱伦的梦
梦

]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2011/10/24/2561/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve jobs &#8211; Google Search</title>
		<link>http://fucklenovo.com/wxp/archives/2011/10/06/2552</link>
		<comments>http://fucklenovo.com/wxp/archives/2011/10/06/2552#comments</comments>
		<pubDate>Thu, 06 Oct 2011 03:25:31 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/?p=2552</guid>
		<description><![CDATA[Steve jobs &#8211; Google Search.
史蒂芬·保罗·乔布斯（英语：Steven Paul Jobs，1955年2月24日－2011年10月5日），简称为史蒂夫·乔布斯（英语：Steve Jobs）



Developers Conference 2010


Born
Steven Paul Jobs
February 24, 1955[1]
San Francisco, California, U.S.[1]


Died
October 5, 2011 (aged 56)
Palo Alto, California, U.S.[2]



http://www.apple.com/pr/bios/steve-jobs.html

Steve Jobs is the Chairman of the Board of Apple, which he co-founded in 1976. Apple is leading the consumer technology world with its revolutionary iPhone and App Store, its family of iPod media players and [...]]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2011/10/06/2552/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>密码保护：一切都乱了</title>
		<link>http://fucklenovo.com/wxp/archives/2011/09/30/2549</link>
		<comments>http://fucklenovo.com/wxp/archives/2011/09/30/2549#comments</comments>
		<pubDate>Fri, 30 Sep 2011 04:00:57 +0000</pubDate>
		<dc:creator>Hack38</dc:creator>
				<category><![CDATA[未处理]]></category>

		<guid isPermaLink="false">http://fucklenovo.com/wxp/?p=2549</guid>
		<description><![CDATA[无法提供摘要。这是一篇受保护的文章。]]></description>
		<wfw:commentRss>http://fucklenovo.com/wxp/archives/2011/09/30/2549/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Power By Hack38 2012-05-24 07:47:03-This page loaded in ：0.813 seconds with 30 database queries. -->
