<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[天宇SPACE]]></title> 
<link>http://tianyuspace.freetcp.com//index.php</link> 
<description><![CDATA[欢迎您来到我的Blog！这里是我生活的全部——有些夸张：）这里是我的个人信息发布站点，呵呵。感受每一天，体验每一天，享受每一天！]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[天宇SPACE]]></copyright>
<item>
<link>http://tianyuspace.freetcp.com//read.php?1979</link>
<title><![CDATA[YaPig V0.95.0后台管理信息不能加英文双引号]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Web开发]]></category>
<pubDate>Sun, 04 Jan 2009 03:01:38 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1979</guid> 
<description>
<![CDATA[ 
	今天维护&ldquo;东大印象&rdquo;的时候，遇到了个问题就是给相册添加说明的时候就会出现信息丢失。后来发现是这样的问题：<br />后天添加信息中不能使用英文的双引号，比如在添加HTML文本的标签的时候，就会出问题。最后我在写a标签的属性的时候，使用了单引号就可以了。<br /><br />欢迎访问<a href="http://www.neu.edu.cn/neupic/index.php" target="_blank">东大印象</a> http://www.neu.edu.cn/neupic/index.php<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=web" rel="tag">web</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1978</link>
<title><![CDATA[基于ASP和ACCESS的单位网站的建设总结]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Web开发]]></category>
<pubDate>Thu, 01 Jan 2009 12:52:27 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1978</guid> 
<description>
<![CDATA[ 
	这个网站包好的功能很多，包括主页、论坛、博客、类似于百度知道的问答系统、站内搜索、站外信息抓取、IP地址范围判定和响应等<br /><br />基本上都是从网上下载的源码搭建的网站主要部分：<br /><br />使用了动易2006的CMS来做主页，站内搜索和站外信息抓取；<br />使用Dvbbs和Oblog来做论坛和博客；<br />使用ToKnow问答系统免费静态版 v1.0来做问答系统；<br />其他的是自己开发的。<br /><br />最大的问题还是界面的设计，动易的CMS已经做了很多好的功能，很好的降低了功能的开发时间。<br /><br />有必要下次弄一组基于PHP和MySQL的网站开发环境。<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=windows" rel="tag">windows</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=web" rel="tag">web</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=access" rel="tag">access</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%25BC%2580%25E5%258F%2591" rel="tag">开发</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1977</link>
<title><![CDATA[基于ASP和ACCESS的单位网站的建设过程4]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Web开发]]></category>
<pubDate>Thu, 01 Jan 2009 12:23:55 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1977</guid> 
<description>
<![CDATA[ 
	22:29 2008-12-13<br /><br />对于Toknow，增加links.asp用来存放窗口右下部的链接。<br /><br /><br />18:41 2008-12-18<br /><br />根目录下增加about.asp页面。<br /><br />firefox地址栏输入about:config，进入系统设置的页面，很底层。<br /><br />添加到收藏夹和设置首页的方法（在IE和Firefox中）：<br /><br />function addMenu()<br />&#123;<br />&nbsp;var url= '';<br />&nbsp;var title = '';<br /><br />&nbsp;&nbsp;&nbsp; if ((typeof window.sidebar == 'object') &amp;&amp; (typeof window.sidebar.addPanel == 'function'))<br />&nbsp;&nbsp;&nbsp; &#123;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; window.sidebar.addPanel(title, url, '');<br />&nbsp;&nbsp;&nbsp; &#125;<br />&nbsp;&nbsp;&nbsp; else//IE<br />&nbsp;&nbsp;&nbsp; &#123;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; window.external.AddFavorite(url,title);<br />&nbsp;&nbsp;&nbsp; &#125;<br />&#125;<br /><br />function setHomepage()<br />&#123;<br />&nbsp;var url= '';<br /><br />&nbsp;if (document.all)<br />&nbsp;&nbsp;&nbsp; &#123;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; document.body.style.behavior='url(#default#homepage)';<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; document.body.setHomePage(url);<br />&nbsp;&nbsp;&nbsp; &#125;<br />&nbsp;&nbsp;&nbsp; else if (window.sidebar)<br />&nbsp;&nbsp;&nbsp; &#123;<br />&nbsp;&nbsp;&nbsp; if(window.netscape)<br />&nbsp;&nbsp;&nbsp; &#123;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try&#123; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; netscape.security.PrivilegeManager.enablePrivilege(&quot;UniversalXPConnect&quot;); <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#125;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch (e) <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#123; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; alert( &quot;该操作被浏览器拒绝，如果想启用该功能，请在地址栏内输入about:config,然后将项 <br /><br />signed.applets.codebase_principal_support值该为true.&quot; ); <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#125;<br />&nbsp;&nbsp;&nbsp; &#125;<br />&nbsp;&nbsp;&nbsp; var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. <br /><br />interfaces.nsIPrefBranch);<br />&nbsp;&nbsp;&nbsp; prefs.setCharPref('browser.startup.homepage', url);<br />&nbsp; &#125;<br />&#125;<br /><br />在/main/help/下建立help.asp文件。<br /><br /><br />23:01 2008-12-18<br /><br />临时修改Config.asp中第七行为：Const EnableStopInjection = False&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '是否启用防SQL注入功能，True为<br /><br />启用，False为禁用<br /><br />专业配色工具：http://www.yuzi.net/tool/color.htm<br />暂时确定主色是：#1E90FF dodgerblue<br />底色为：#f1f1f1<br /><br />&#123;$MY_动易2006海蓝首页顶&#125;<br />&nbsp;background=&#123;$InstallDir&#125;Skin/Ocean/topr.gif<br /><br />114 82<br /><br />&nbsp;src=&quot;&#123;$InstallDir&#125;Skin/Ocean/menu_bg2.jpg&quot;<br /><br />class=menu_s<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=windows" rel="tag">windows</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=web" rel="tag">web</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%25BC%2580%25E5%258F%2591" rel="tag">开发</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1976</link>
<title><![CDATA[基于ASP和ACCESS的单位网站的建设过程3]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Web开发]]></category>
<pubDate>Thu, 01 Jan 2009 12:23:04 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1976</guid> 
<description>
<![CDATA[ 
	15:45 2008-12-04<br /><br />oask中可以禁止某些IP段登录和注册，具体设置信息在数据表oa<br /><br /><br />02:52 2008-12-07<br /><br />HTML注释的方式：<br /><br /><br />&lt;!-- 这是 html 的注释，可以单行。 --&gt;<br />&lt;html&gt;<br />&lt;!-- <br /><br />也可以是多行注释。 <br />1<br />2<br />3<br /><br />--&gt;<br />&lt;/html&gt;sk_Setup中。<br /><br />如果这么写 <br />&lt;!-- 注释 --<br />--&gt;<br />在IE下可能没问题，但是在firefox中会有问题。<br /><br />javascript中通过today()获取日期结果不一样：<br />var today=new Date();<br />IE6.0下：Sun Dec 7 03:26:21 UTC+0800 2008<br />firefox3.0.3下：Sun Dec 07 2008 03:27:33 GMT+0800<br />使用today.getyear()的结果不一样，在IE下能够得到4位的年份。<br /><br />&nbsp; y=a.getYear();&nbsp;&nbsp; //y的值为从对象a中获取年份值&nbsp;&nbsp; 两位数年份&nbsp; <br />&nbsp; y1=a.getFullYear();&nbsp;&nbsp; //获取全年份数&nbsp;&nbsp; 四位数年份<br /><br />主要是因为getYear()函数在firefox3.0.3中执行得到的结果不是四位的，而IE下是四位的，所以需要使用<br /><br />getFullYear()函数。<br />如现在是2008年，getYear()在firefox中得到108，在IE下得到2008。<br />修改成getFullYear()后在firefox下工作正常了。<br /><br /><br />21:03 2008-12-12<br /><br />对于firefox和ie，在写CSS的时候可以使用!important来为他们设置不同的值。例如：<br />color: red; color blue !important; 对于带!important属性的值，ie不予理睬，所以在ie下设置成red，firefox下设<br /><br />置成blue。<br /><br />发现现在测试的oask代码，在后台管理删除了原有类别，增加新类别之后，首页无法显示，什么都不显示<br /><br />。所以考虑测试一下其他的代码。<br /><br />测试一下快问代码，管理路径在 /coco，用户名:admin&nbsp;&nbsp; 密码:admin888。<br />需要设置conn.asp里边的数据库类型和连接路径，对于我们来说使用ACCESS数据库，需要设置：<br />Const DataType=&quot;ACCESS&quot;<br />db=&quot;/ask/data/#mydata.mdb&quot;<br />既可以使用。<br /><br />测试免费版勤网爱问系统GoAsk V1.2版本，但是因为是测试用的，只能有10个用户，所以还是更换了。<br /><br />就爱问-仿百度知道 v1.0，不是商业版本，不支持类别管理，所以也用不了。<br /><br />仿百度知道--ToKnow问答系统免费静态版 v1.0-------------------------------------------------------------<br />修改数据库连接文件字串，Conn.asp文件中<br />Const askDBFile=&quot;/ToKnow/data/ToKnow.mdb&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '数据库存放的完整路径<br />系统安装方法：<br />==========================================================================<br />1. 修改 Conn.asp 中的数据库文件名称 askDBFile<br />2. 直接修改 config.asp 中的设置信息，或者登陆后台管理修改基本设置信息<br />3. 登陆后台管理，按照您的网站调整问题分类目录<br />4. 页面顶部和底部的内容修改，请修改 template目录下的 tmp_top.asp和tmp_end.asp<br />5. 后台管理地址：安装目录/admin/ 后台登陆用户名：admin 登陆密码 admin<br />提示：<br />用户提出的问题须管理员在后台点&quot;生成&quot;按钮才可在前台正常显示<br /><br />修改/admin/adminquestion.asp文件，因为最原始代码，这里做了相应的设置，不能正常使用。<br /><br />数据库ToKnow.mdb<br />数据表askQuestion表中<br />jie字段表示当前问题的状态：<br />0 待解决<br />1 问题解决<br />4 过期关闭<br />5 已删除<br />可以通过这个进行处理。<br />tui字段表示是否被推荐：<br />-1是推荐<br />0不是推荐<br /><br />清空相应的数据库。<br />修改/ToKnow/template/下的文件，处理页面内容。<br />修改img下图片文件。<br /><br /><br />-----------------------------------------------------------------------------------------------------------------------<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=windows" rel="tag">windows</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=web" rel="tag">web</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%25BC%2580%25E5%258F%2591" rel="tag">开发</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1975</link>
<title><![CDATA[基于ASP和ACCESS的单位网站的建设过程2]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Web开发]]></category>
<pubDate>Thu, 01 Jan 2009 12:22:12 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1975</guid> 
<description>
<![CDATA[ 
	1:44 2008-11-21<br /><br />type在asp中是关键字，不能使用为变量名称。<br /><br />10:26 2008-11-21<br /><br />table中替代cellspacing和cellpadding。<br />border-collapse:collapse; border-spacing: 0px;<br /><br />22:06 2008-11-21<br /><br />解决a标签显示问题，因为display属性设置成了block，成了块标记了，改成inline-block（象行内元素一样显<br /><br />示，但其内容象块类型元素一样显示）就可以了。<br /><br />14:11 2008-11-22<br /><br />动态显示日期和时间的Javascript：<br /><br />&lt;script&gt;document.getElementById('timeinfo').innerHTML='现在是北京时间：' + new Date().toLocaleString()+' <br /><br />星期'+'日一二三四五六'.charAt(new Date().getDay());setInterval(&quot;document.getElementById<br /><br />('timeinfo').innerHTML='现在是北京时间：' + new Date().toLocaleString()+' 星期'+'日一二三四五六'.charAt(new <br /><br />Date().getDay());&quot;, 1000);<br />&lt;/script&gt;<br /><br />日期控件：my97datepicker<br />http://www.my97.net/dp/demo/<br /><br /><br />22:53 2008-11-23<br /><br />常用的富文本编辑器：<br />fckeditor&nbsp; http://www.fckeditor.net/<br />TinyMCE&nbsp; http://tinymce.moxiecode.com/<br /><br />使用TinyMCE：<br />&lt;script type=&quot;text/javascript&quot; xsrc=&quot;&lt;your installation path&gt;/tiny_mce/tiny_mce.js&quot;&gt;&lt;/script&gt;<br />&lt;script type=&quot;text/javascript&quot;&gt;<br />tinyMCE.init(&#123;<br />// General options<br />mode : &quot;textareas&quot;,<br />theme : &quot;advanced&quot;,<br />plugins : <br /><br />&quot;safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,inse<br /><br />rtdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchar<br /><br />s,nonbreaking,xhtmlxtras,template,imagemanager,filemanager&quot;,<br />// Theme options<br />theme_advanced_buttons1 : <br /><br />&quot;save,newdocument,&#124;,bold,italic,underline,strikethrough,&#124;,justifyleft,justifycenter,justifyright,justifyfull,&#124;,styleselect,<br /><br />formatselect,fontselect,fontsizeselect&quot;,<br />theme_advanced_buttons2 : <br /><br />&quot;cut,copy,paste,pastetext,pasteword,&#124;,search,replace,&#124;,bullist,numlist,&#124;,outdent,indent,blockquote,&#124;,undo,redo,&#124;,li<br /><br />nk,unlink,anchor,image,cleanup,help,code,&#124;,insertdate,inserttime,preview,&#124;,forecolor,backcolor&quot;,<br />theme_advanced_buttons3 : <br /><br />&quot;tablecontrols,&#124;,hr,removeformat,visualaid,&#124;,sub,sup,&#124;,charmap,emotions,iespell,media,advhr,&#124;,print,&#124;,ltr,rtl,&#124;,fullsc<br /><br />reen&quot;,<br />theme_advanced_buttons4 : <br /><br />&quot;insertlayer,moveforward,movebackward,absolute,&#124;,styleprops,spellchecker,&#124;,cite,abbr,acronym,del,ins,attribs,&#124;,<br /><br />visualchars,nonbreaking,template,blockquote,pagebreak,&#124;,insertfile,insertimage&quot;,<br />theme_advanced_toolbar_location : &quot;top&quot;,<br />theme_advanced_toolbar_align : &quot;left&quot;,<br />theme_advanced_statusbar_location : &quot;bottom&quot;,<br />theme_advanced_resizing : true,<br />// Example content CSS (should be your site CSS)<br />content_css : &quot;css/example.css&quot;,<br /><br />// Drop lists for link/image/media/template dialogs<br /><br />template_external_list_url : &quot;js/template_list.js&quot;,<br />external_link_list_url : &quot;js/link_list.js&quot;,<br />external_image_list_url : &quot;js/image_list.js&quot;,<br />media_external_list_url : &quot;js/media_list.js&quot;,<br /><br />// Replace values for the template plugin<br />template_replace_values : &#123;<br />username : &quot;Some User&quot;,<br />staffid : &quot;991234&quot;<br />&#125;<br />&#125;);<br />&lt;/script&gt;<br /><br />09:43 2008-11-24<br /><br />session(&quot;system_error_string&quot;)保存系统错误信息。<br /><br /><br />05:37 2008-11-26<br /><br />&lt;!--#include virtual=&quot;/main/conn.asp&quot; --&gt; 可以使用绝对地址<br />&lt;!--#include file=&quot;main/conn.asp&quot; --&gt; 不可以使用绝对地址<br /><br />21:42 2008-11-27<br /><br />删除文件：<br />Set fso = Server.CreateObject(&quot;Scripting.FileSystemObject&quot;)<br />fso.DeleteFile(Server.Mappath(newfilename))<br /><br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=windows" rel="tag">windows</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=web" rel="tag">web</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%25BC%2580%25E5%258F%2591" rel="tag">开发</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1974</link>
<title><![CDATA[基于ASP和ACCESS的单位网站的建设过程1]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Web开发]]></category>
<pubDate>Thu, 01 Jan 2009 12:20:58 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1974</guid> 
<description>
<![CDATA[ 
	10:59 2008-10-28<br /><br />安装Dvbbs-Oblog-动易CMS，需要安装PE2006_DLL.exe。<br /><br />动网论坛、动易CMS整合系统安装说明<br /><br />1、在服务器上安装压缩包中的动易组件PE2006_DLL.exe，需要有服务器权限才能安装，使用虚拟主机的<br /><br />可以发给服务器管理员安装。<br /><br />2、把压缩包里的文件夹Dvbbs-PowerEasy-Oblog中的全部文件上传站点根目录下。<br /><br />3、修改API&#92;API_Config.asp文件的两个参数：<br />(1)安全密钥API_Key的值，可任意填写，建议使用字母数字符合的组合，比如：把默认值&ldquo;API_TEST&rdquo;改为&ldquo;<br /><br />dq@%09C11&rdquo;；<br />(2)站点地址API_Urls的值，只需要把&ldquo;Localhost&rdquo;字符串改为你自己的站点名称即可，默认值是用于本地测试<br /><br />的。<br /><br />4、同时需要修改bbs&#92;dv_dpo&#92;Api_Config.asp文件中参数DvApi_SysKey、DvApi_Urls的值和<br /><br />Oblog&#92;API&#92;Api_Config.asp文件中参数oblog_Key、strTargetUrls的值，修改方法同第三步，修改后的值同第<br /><br />三步的一样。<br /><br /><br />注：动易CMS在站点根目录里，动网论坛在BBS目录下，博客在OBLOG目录里。<br /><br /><br /><br />11:01 2008-10-28<br /><br />安装oask，通过install.asp页面，然后删除；如果执行Install.asp提示ExtractFolder函数找不到，就在<br /><br />inc/oask_function.asp里的函数ExtractFolder前后各分开一行即可。<br />但是代码还是会有问题，通过修改inc/oask_function.asp页面（进行字符串替换，把then替换成空格，就可以<br /><br />了，可以考虑把这个文件设置成只读）。<br />在IIS上给oask增加默认首页为index.asp。<br /><br />对于动易CMS来说，初始情况：<br />您使用的后台管理认证码为系统初始值&ldquo;PowerEasy2006&rdquo;，请修改Admin_ChkCode.asp文件中相应的<br /><br />SiteManageCode值。 <br /><br />在IIS上给bbs增加默认页面为index.asp。<br /><br />动易CMS后台管理，如果增加了新的调查，即使状态是启用，也得在功能页面里手动启动才可以。<br /><br />1:22 2008-11-20<br />目前系统的用户：<br />用户名是admin，密码是admin888<br /><br />修改Admin&#92;Admin_ChkCode.asp里，设置Const SiteManageCode = &quot;SJSShenyang&quot;<br />/Admin/Admin_Login.asp就不显示提示缺省管理密码的内容了。<br />页面中检查用户输入信息的代码主要有：<br />&nbsp;&nbsp;&nbsp; UserName = ReplaceBadChar(Trim(Request(&quot;UserName&quot;)))<br />&nbsp;&nbsp;&nbsp; Password = ReplaceBadChar(Trim(Request(&quot;Password&quot;)))<br /><br />&nbsp;&nbsp;&nbsp; Password = MD5(Password, 16)<br /><br />&nbsp;&nbsp;&nbsp; rs.Open sql, Conn, 1, 3<br />&nbsp;&nbsp;&nbsp; If rs.bof And rs.EOF Then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FoundErr = True<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ErrMsg = ErrMsg &amp; &quot;&lt;br&gt;&lt;li&gt;用户名或密码错误！！！&lt;/li&gt;&quot;<br />&nbsp;&nbsp;&nbsp; Else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Password &lt;&gt; rs(&quot;Password&quot;) Then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FoundErr = True<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ErrMsg = ErrMsg &amp; &quot;&lt;br&gt;&lt;li&gt;用户名或密码错误！！！&lt;/li&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br />&nbsp;&nbsp;&nbsp; End If<br /><br />数据库连接文件：<br />&lt;!--#include file=&quot;../conn.asp&quot;--&gt;<br />系统常用函数文件：<br />&lt;!--#include file=&quot;../inc/function.asp&quot;--&gt;<br />md5函数文件：<br />&lt;!--#include file=&quot;../inc/md5.asp&quot;--&gt;<br /><br />数据验证代码：<br />&nbsp;&nbsp;&nbsp; Set rs = Server.CreateObject(&quot;adodb.recordset&quot;)<br />&nbsp;&nbsp;&nbsp; sql = &quot;select * from PE_Admin where Password='&quot; &amp; Password &amp; &quot;' and AdminName='&quot; &amp; UserName &amp; &quot;'&quot;<br />&nbsp;&nbsp;&nbsp; rs.Open sql, Conn, 1, 3<br />&nbsp;&nbsp;&nbsp; If rs.bof And rs.EOF Then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FoundErr = True<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ErrMsg = ErrMsg &amp; &quot;&lt;br&gt;&lt;li&gt;用户名或密码错误！！！&lt;/li&gt;&quot;<br />&nbsp;&nbsp;&nbsp; Else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Password &lt;&gt; rs(&quot;Password&quot;) Then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FoundErr = True<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ErrMsg = ErrMsg &amp; &quot;&lt;br&gt;&lt;li&gt;用户名或密码错误！！！&lt;/li&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br />&nbsp;&nbsp;&nbsp; End If<br />&nbsp;&nbsp;&nbsp; If FoundErr = True Then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Call InsertLog(1, -1, UserName, UserTrueIP, &quot;登录失败&quot;, ComeUrl, &quot;&quot;)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Session(&quot;AdminName&quot;) = &quot;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Session(&quot;AdminPassword&quot;) = &quot;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Session(&quot;RndPassword&quot;) = &quot;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rs.Close<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set rs = Nothing<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Exit Sub<br />&nbsp;&nbsp;&nbsp; End If<br />&nbsp;&nbsp;&nbsp; UserName = rs(&quot;UserName&quot;)<br />&nbsp;&nbsp;&nbsp; RndPassword = GetRndPassword(16)<br />&nbsp;&nbsp;&nbsp; rs(&quot;LastLoginIP&quot;) = UserTrueIP<br />&nbsp;&nbsp;&nbsp; rs(&quot;LastLoginTime&quot;) = Now()<br />&nbsp;&nbsp;&nbsp; rs(&quot;LoginTimes&quot;) = rs(&quot;LoginTimes&quot;) + 1<br />&nbsp;&nbsp;&nbsp; rs(&quot;RndPassword&quot;) = RndPassword<br />&nbsp;&nbsp;&nbsp; rs.Update<br />&nbsp;&nbsp;&nbsp; Call InsertLog(1, 0, UserName, UserTrueIP, &quot;登录成功&quot;, ComeUrl, &quot;&quot;)<br /><br />&nbsp;&nbsp;&nbsp; strInstallDir = GetScriptPath(Trim(Request.ServerVariables(&quot;SCRIPT_NAME&quot;)), 1)<br />&nbsp;&nbsp;&nbsp; Site_Sn = Replace(Replace(LCase(Request.ServerVariables(&quot;SERVER_NAME&quot;) &amp; strInstallDir), &quot;/&quot;, &quot;&quot;), &quot;.&quot;, <br /><br />&quot;&quot;)<br />&nbsp;&nbsp;&nbsp; Response.Cookies(Site_Sn)(&quot;AdminName&quot;) = rs(&quot;AdminName&quot;)<br />&nbsp;&nbsp;&nbsp; Response.Cookies(Site_Sn)(&quot;AdminPassword&quot;) = rs(&quot;Password&quot;)<br />&nbsp;&nbsp;&nbsp; Response.Cookies(Site_Sn)(&quot;RndPassword&quot;) = RndPassword<br />&nbsp;&nbsp;&nbsp; Response.Cookies(Site_Sn)(&quot;AdminLoginCode&quot;) = AdminLoginCode<br />&nbsp;&nbsp;&nbsp; rs.Close<br /><br />关闭数据链接：<br />Call CloseConn<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=windows" rel="tag">windows</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=web" rel="tag">web</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%25BC%2580%25E5%258F%2591" rel="tag">开发</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1973</link>
<title><![CDATA[一个短信的N种解释]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[搞笑资讯]]></category>
<pubDate>Wed, 31 Dec 2008 15:23:01 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1973</guid> 
<description>
<![CDATA[ 
	我、恨、想、忍、真、爱、情、你 、没、世、今、一、在、活、生、为、乐、有、好、过、快、不<br />组成一句话，呵呵。<br /><br />1.今生没有真爱情，不想恨你，好在我忍过，为快乐活一世。&nbsp;&nbsp;<br />2.在今生没有快乐过，真不想为情忍恨活一世，我好爱你.&nbsp;&nbsp;<br />3.我为爱情没有活好,真不忍恨你一生,想在今世过快乐！&nbsp;&nbsp;<br />4.我好恨你，生活没有快乐，今世真不想为爱情忍过一生！&nbsp;&nbsp;<br />5.恨你在今生没有爱过我，为情活，真不忍，好想快乐一世！&nbsp;&nbsp;<br />6.恨你在今生没有爱过我，真不忍为情活一世，好想快乐！&nbsp;&nbsp;<br />7.爱你,我真想快乐,不过没有,在今生一世为情忍活，好恨!&nbsp;&nbsp;<br />8.生活好快乐,我没你,不想真恨,在忍,今过一世有为爱情!&nbsp;&nbsp;<br />9.好想恨你,我忍.在今生为真爱情活过,一生没有不快乐.&nbsp;&nbsp;<br />10.一生没有为情快乐过,真不忍恨你,活在今世,我好爱你.&nbsp;&nbsp;<br />11.在今世没有真爱情,我不想忍一生,为快乐活好过恨你.&nbsp;&nbsp;<br />12.我想在今生真没有不为爱情生活快乐，好过一世恨你，忍！&nbsp;&nbsp;<br />13.恨今生没有真情，我好想你，为爱忍活一世在快乐不过。&nbsp;&nbsp;<br />14.想快乐,没有不为爱情生活,在今生,我恨你,好过一世忍&nbsp;&nbsp;<br />15.恨你在今生没有爱过我，为情活，真不忍，好想快乐一世！&nbsp;&nbsp;<br />16.不忍恨你 ,我想为真情在今生快乐活, 好过一世没有爱。&nbsp;&nbsp;<br />17.我好恨你，真想一生没有为过爱情活，今世不快乐。忍。&nbsp;&nbsp;<br />18.好恨今生一世情，没有不忍为快乐，活过真爱我在想你！&nbsp;&nbsp;<br />19.活在今世,没有快乐.为爱情,我想忍,一生不好过,真恨你!&nbsp;&nbsp;<br />20.在今生没有恨过你,为爱情真不忍，我好想快乐活一世。&nbsp;&nbsp;<br />21.今生没有真爱情，不想恨你，好在我忍过，为快乐活一世。&nbsp;&nbsp;<br />22.一世为爱情,我在今生没有快乐过,好想恨你,真不忍。&nbsp;&nbsp;<br />23.爱情真没快乐,不过今世一我为生活好没有恨你,在忍!&nbsp;&nbsp;<br />24.不忍过活一世情，我恨没有真爱你，今生在好，想为快乐!&nbsp;&nbsp;<br />25.我好恨你....，真想一生没有为过爱情活，今世不快乐。忍.&nbsp;&nbsp;<br />26.我活在真爱、情恨，一世没（mo)快乐一生，忍不为，好想有你&nbsp;&nbsp;<br />27.在今生，没有恨，一世快乐活。 不忍！想过好真情为我爱你！&nbsp;&nbsp;<br />28.今生有你好快乐，我一世不恨，不过没爱情真不想活~ 为：&ldquo;忍&rdquo;！！！&nbsp;&nbsp;<br />29.今,我为真情想忍,恨一世没有好爱你,在不过快乐生活.<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2590%259E%25E7%25AC%2591" rel="tag">搞笑</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1972</link>
<title><![CDATA[我的2008]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 28 Dec 2008 18:12:48 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1972</guid> 
<description>
<![CDATA[ 
	上大学的时候，自己有一个坏习惯，就是每当参加一次考试的时候，特别是英语考试的时候，在还没结束之前只要有空闲时间就会给自己&ldquo;批判&rdquo;一下，&ldquo;激励&rdquo;自己下次要认真复习，甚至会写下几百字的日记，现在翻出来看一下还觉得自己的确很有趣。<br /><br />过去的2008，对于我们这个国家，也对于我自己，有太多的故事能够分享，也太值得该记忆一下。所以然那个我拾起大学时候的老习惯，来给自己归纳一下2008。<br /><br />2008年，从年初的冰灾，到藏独，到汶川地震，到年中的藏独和反法家乐福，到2008奥运会和残奥会，到最近的纪念改革开放三十年，同时又迎接了美国次贷危机引发的金融危机。真是多事之秋，作为一个十多亿人口的大国来说是一个考验。<br /><br />而我的2008年呢。从元旦放假的往事回眸，到丹东三日游，再到假期的上海之行，遇上难得一见的一周雪中上海，之后和家人度过了一个不平常的春节，后来嫂子过世让我体会到生命的脆弱和简单，之后认识了些人，养成了每周一打羽毛球的好习惯；清明之前，自己有幸去了重庆、成都和再游西安；其间常在电影院和游戏厅消磨时间，投篮游戏成绩很有长进，电影也几乎是逢片必看，还参加了几次群的活动，第一次尝试了野外CS；五一的时候，拉着室友开始了一段从三好街到东陵的旅行；之后城际旅游走了辽阳、抚顺、大石桥、本溪、哈尔滨和五大连池；手机逃脱了一次进水的威胁，正常运行到现在，已经两年多了；参加了移动的TD-SCDMA的测试，有了免费的3G手机，在北京和同事进行了一次视频通话，还看到了成群结队的大熊猫；参加一个公司的活动，第一次参加了漂流，白白的皮肤晒成黑红了；7月，在考虑2周后，买下了这辈子第一套房子，开始了一段新的生活；自己去看了后海音乐节，还接到了一个好久不见的朋友的越洋电话；做了些不该做，也拒绝了些应该拒绝的事情，也放弃了些要放弃的事情，但没有抓住些应该抓住的东西。<br /><br />我的2008流水帐，就是这样，对了，还去了青岛，感受了《恋之风景》，第一次坐了海船。还有去了黄山，体验了黄山归来不看岳的迷人风景，还知道了一段应该结束的感情真的结束了。这一年回想起来相当的充实，而且大多时候自己的脑子受一些感情和工作上的事情&ldquo;折磨&rdquo;，在简单和复杂之间来回跳跃，在适应新生活和怀念过去之间彷徨，在一步步加深着从大学时候养成的不喜型于色的好习惯。<br /><br />还有两天，这2008就过去了，桌子上还有一个ibm sent的特别日历，每天都是2008，也就要翻过去了。既然人的生活本来就是一个旅程，那其间的每个阶段也有开始和结束，结束了就是下一段生活的开始，该好好的生活，珍视这份拥有。生活该有所改变，这样才是随着成长而有收获吧。<br /><br />困了，以后得按时睡觉，爱惜我的好身体<img src="../images/emot/grin.gif" border="0" /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=2008" rel="tag">2008</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1971</link>
<title><![CDATA[浑噩中忙碌]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Thu, 25 Dec 2008 18:37:18 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1971</guid> 
<description>
<![CDATA[ 
	这段时间很忙，但是自己的效率不高，总是被事情推着往前走，都有些疲倦了：）<br /><br />得坚持，会有个好的结果的，加油，给自己加油！<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%25B7%25A5%25E4%25BD%259C" rel="tag">工作</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1970</link>
<title><![CDATA[歌词：国境之南--范逸臣]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Mon, 22 Dec 2008 03:12:04 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1970</guid> 
<description>
<![CDATA[ 
	歌手：&nbsp;&nbsp;原声大碟 <br /> 专辑：&nbsp;&nbsp;海角七号 爱恋情书音乐专辑 <br /> 公司：&nbsp;&nbsp;丰华唱片 <br /> <br /> 如果海会说话<br /> 如果风爱上砂<br /> 如果有些想念<br /> 遗忘在漫长的长假<br /> 我会聆听浪花<br /> 让风吹过头发<br /> 任记忆里的爱情<br /> 在时间潮汐里喧哗<br /> 非得等春天远了夏天才近了<br /> 我是在回首时终于懂得<br /> 当阳光 再次<br /> 回到那飘着雨的国境之南<br /> 我会试着把那一年的故事<br /> 再接下去说完<br /> 当阳光 再次<br /> 离开那太晴朗的国境之南<br /> 妳会不会把妳曾带走的爱<br /> 在告别前用微笑全归还<br /> 海很蓝 星光灿烂<br /> 我仍空着我的臂弯<br /> 天很宽 在我独自唱歌的夜晚<br /> 请原谅我的爱诉说的太缓慢<br /> 当阳光 再次<br /> 回到那飘着雨的国境之南<br /> 我会试着把那一年的故事<br /> 再接下去说完<br /> 当阳光 再次<br /> 离开那太晴朗的国境之南<br /> 妳会不会把妳曾带走的爱<br /> 在告别前用微笑全归还<br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%25AD%258C%25E8%25AF%258D" rel="tag">歌词</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1969</link>
<title><![CDATA[鄙视电影的“植入式广告”]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[针砭时弊]]></category>
<pubDate>Mon, 22 Dec 2008 02:32:59 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1969</guid> 
<description>
<![CDATA[ 
	最近看了很多沽名为&ldquo;贺岁片&rdquo;的电影，越是有点忍受不了了。不只是这些电影的剧情都挺一般，表演也平常，还有就是里边相当唐突的那些植入性广告。里边虽然是些大品牌，什么中国移动，中国银行，要不就是什么撂倒大曲，或者是各类品牌的手机广告。真的很鄙视，因为好像时候都和剧情发展没什么关系，没事情就得来个特写什么的。观众是花钱进电影院的，凭什么要我们看广告呀，真是...<br /><br />虽然好莱坞片子里也有，比如新版007中都是索爱的手机，但是广告的痕迹却少了很多，我们中国的垃圾导演都喜欢发扬光大呀，就是不找对地方，呵呵。<br /><br />再次鄙视一下：）<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%2592%2588%25E7%25A0%25AD%25E6%2597%25B6%25E5%25BC%258A" rel="tag">针砭时弊</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2594%25B5%25E5%25BD%25B1" rel="tag">电影</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%25B9%25BF%25E5%2591%258A" rel="tag">广告</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1968</link>
<title><![CDATA[word中去掉页眉的横线]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Windows相关]]></category>
<pubDate>Sat, 20 Dec 2008 09:11:18 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1968</guid> 
<description>
<![CDATA[ 
	以前遇到这个问题很多次了，最后都不知道怎么搞定的。这次认真查了一下，找到了一个解决的方法。<br /><br />word中去掉页眉的横线：<br /><br />点&ldquo;格式&#124;样式&rdquo; &nbsp; 选中&ldquo;页眉&rdquo;样式，点更改，在格式按钮（在刚才那个面板上），弹出中选边框，然后将其改为无边框。或者会在窗口右侧出现格式选项，选择页眉，然后选择清除格式，就OK了。 <br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=word" rel="tag">word</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=windows" rel="tag">windows</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%25A8%25AA%25E7%25BA%25BF" rel="tag">横线</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1967</link>
<title><![CDATA[铁岭小吃]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[职场与生活]]></category>
<pubDate>Wed, 10 Dec 2008 22:37:34 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1967</guid> 
<description>
<![CDATA[ 
	１．四高大门口儿西边过马路的天池冷面． <br />２．三八线烧烤的韩式拌饭． <br />３．汉罗山烧烤的烤牛肥瘦，湿明太鱼，加冰冷面，花菜（建议前几口不蘸料，原味儿）．&nbsp;&nbsp;<br />４．五小对面一个埋拉八太的小破车库里一个老太太和她的儿子儿媳妇用一个油渍快赶上板砖厚的铁板烤的鸡骨架和丸子，豆腐皮（还有独一家的＂蛋劲＂）．&nbsp;&nbsp;<br />５．文成冷面的韩式米酒和花菜（冷面一般）． <br />６．八里庄老袁家的烤羊腿儿和羊蹄儿． <br />７．八里庄市场里的一家卷饼（把门儿第二家，加韭菜的）．&nbsp;&nbsp;<br />８．老王家串店的生烤鸡头和大串（现在＂一把火＂火勺店的那家分店已经出兑了，味道变了，建议去别的分店）．&nbsp;&nbsp;<br />９．马家胡同对面的北冰洋的冰糕（只在夏天才有，那老板还是那么胖）． <br />１０．文化路市场门口的早市早上六点的姐妹火勺（原五小门口的姐妹火勺）．&nbsp;&nbsp;<br />１１．文化路十字路口西北角哈尔滨烧烤的桃汁． <br />１２．九小附近＂一加＂串店赠送的辣白菜（老板娘是鲜族的，人漂亮，手艺更是带劲）．&nbsp;&nbsp;<br />１３．四高上面＂八三＂球场那家熟食小摊儿的猪蹄儿（高三时每次去打球都买个猪蹄儿，烀的特烂，都粘粘的了）．&nbsp;&nbsp;<br />１４．向阳小区门口刘老四抻面的腊鹅翅，肉闷子，各种熟食（上菜快，老板娘原来和我一个院的，一米八左右，成的带劲了）． <br />１５．五中附近三味居火锅．&nbsp;&nbsp;１６．十小附近＂串串串＂烧烤的烤鸡骨架，烤韭菜，烤豆角，烤蘑菇，烤雪鱼，烤台湾肠． <br />１７．龙首市场的担担面．&nbsp;&nbsp;<br />１８．文化路市场十字路口西南角＂十板竺＂烧烤专门店（皮皮家的）． <br />１９．百度烧烤（刘哇叭家的）．&nbsp;&nbsp;<br />２０．十一小门洞里的鸡肚儿（小学的时候还吃过她家的牙签肉）． <br />２１．＂七夜＂附近的伊川江韩式烧烤（鸡脆骨挺带劲）．&nbsp;&nbsp;<br />２２．四小胡同从外往里数的第二家火勺店（原峰峰网吧，老板是个胖子）． <br />２３．转盘街东北＂老四＂坛肉的坛肉，酸菜，豆腐，大米饭．&nbsp;&nbsp;<br />２４．原女人街胡同里的＂小小＂包子． <br />２５．爱客玛（黄了）门口的臭豆腐（记得加葱和香菜）．&nbsp;&nbsp;<br />２６．贸易城对面的丁记抻面（现在只剩下一家了，初中的时候，鼎盛时期有三家）． <br />２７．五中门口＂英爱＂冷面的烧烤和拌狗肉，烤洋葱．&nbsp;&nbsp;<br />２８．四高门口挺高个儿那老太太的鸡蛋饼（还有个矮个儿的老太太，建议比较后再买）． <br />２９．四高门口那家饭店的早餐，包子，自选小菜，带劲．&nbsp;&nbsp;<br />３０．大林粥铺的皮蛋瘦肉粥和包子． <br />31&nbsp;&nbsp; 原广乐附近的西安麻辣烫！ <br />32一高附近的玉清风的拌冷面，石锅肥牛拌饭&nbsp;&nbsp;<br />３３　　丁记火勺　分布在铁岭每个地方！！！！！<div id="blogContainer" style="font-size: 16px"><a href="http://imgcache.qq.com/ac/b.gif" target="_blank"><img style="vertical-align: baseline ! important" src="http://imgcache.qq.com/ac/b.gif" border="0" width="1" height="1" /></a></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%2593%2581%25E5%25B2%25AD%25E3%2580%2580%25E5%25B0%258F%25E5%2590%2583" rel="tag">铁岭　小吃</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1966</link>
<title><![CDATA[山东之行风光4]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 07 Dec 2008 19:04:00 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1966</guid> 
<description>
<![CDATA[ 
	<div align="center"><br /><img class="insertimage" src="../attachment.php?fid=986" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=987" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=988" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=989" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=990" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=991" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=992" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=993" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=994" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=995" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=996" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=997" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=998" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=999" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=1000" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=1001" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2583%259F%25E5%258F%25B0" rel="tag">烟台</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%25B5%25B7" rel="tag">海</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1965</link>
<title><![CDATA[山东之行风光3]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 07 Dec 2008 19:01:53 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1965</guid> 
<description>
<![CDATA[ 
	<div align="center">回来是从青岛到烟台，从烟台坐船到大连的，第一次坐海船，挺新鲜的：）<br /><br /><img class="insertimage" src="../attachment.php?fid=968" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=969" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=970" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=971" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=972" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=973" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=974" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=975" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=976" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=977" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=978" border="0" /><br /><br /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2583%259F%25E5%258F%25B0" rel="tag">烟台</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%25B5%25B7" rel="tag">海</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1964</link>
<title><![CDATA[山东之行风光2]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 07 Dec 2008 18:56:45 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1964</guid> 
<description>
<![CDATA[ 
	<div align="center"><br />海滨乐园，可惜没人<br /><img class="insertimage" src="../attachment.php?fid=961" border="0" /><br /><br />海边，总是让人感觉很舒畅<br /><img class="insertimage" src="../attachment.php?fid=962" border="0" /><br /><br />手牵手，踏水中...<br /><img class="insertimage" src="../attachment.php?fid=963" border="0" /><br /><br />沙滩特写，可以当效果图了，呵呵<br /><img class="insertimage" src="../attachment.php?fid=964" border="0" /><br /><br />在海边跑步，也是惬意的事情吧<br /><img class="insertimage" src="../attachment.php?fid=965" border="0" /><br /><br />植物的色彩<br /><img class="insertimage" src="../attachment.php?fid=966" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=967" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%259D%2592%25E5%25B2%259B" rel="tag">青岛</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1963</link>
<title><![CDATA[山东之行风光1]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 07 Dec 2008 18:53:53 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1963</guid> 
<description>
<![CDATA[ 
	<br /><div align="center">青岛很多这样的梧桐，还有着秋天的色彩<br /><img class="insertimage" src="../attachment.php?fid=949" border="0" /><br /><br />酒店边的沙滩，青岛的第四海滨浴场，沙子挺不错的<br /><img class="insertimage" src="../attachment.php?fid=950" border="0" /><br /><br />水质不错<br /><img class="insertimage" src="../attachment.php?fid=951" border="0" /><br /><br />远处有好几个小岛<br /><img class="insertimage" src="../attachment.php?fid=952" border="0" /><br /><br />浪花<br /><img class="insertimage" src="../attachment.php?fid=953" border="0" /><br /><br />戏水的人挺多的<br /><img class="insertimage" src="../attachment.php?fid=954" border="0" /><br /><br />多次向我们推荐的快艇，的确让我们很难有兴趣，有些太平常了，到处都有的<br /><img class="insertimage" src="../attachment.php?fid=955" border="0" /><br /><br />可爱的小男孩，摆出很多种pose的<br /><img class="insertimage" src="../attachment.php?fid=956" border="0" /><br /><br />一个商场里，集中了N多银行的ATM，着实让我们惊讶了一下，呵呵<br /><img class="insertimage" src="../attachment.php?fid=957" border="0" /><br /><br />象棋，总有很多观众<br /><img class="insertimage" src="../attachment.php?fid=958" border="0" /><br /><br />还是海滨，现在是中午<br /><img class="insertimage" src="../attachment.php?fid=959" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=960" border="0" /><br /><br /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%259D%2592%25E5%25B2%259B" rel="tag">青岛</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1962</link>
<title><![CDATA[可爱的苹果车饰——遗照]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 07 Dec 2008 18:45:44 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1962</guid> 
<description>
<![CDATA[ 
	前段时间，在三好街闲逛的是买了下边这个车饰，呵呵。可惜现在把它的照片传上来，而它已经在一次意外坠地事故中over了，可惜呀<img src="../images/emot/grin.gif" border="0" /><br /><br /><div align="center"><img class="insertimage" src="../attachment.php?fid=948" border="0" /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1961</link>
<title><![CDATA[星巴克是一种习惯]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 07 Dec 2008 13:59:06 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1961</guid> 
<description>
<![CDATA[ 
	曾几何时，星巴克还是小资的一个标识，而现在却也大街小巷，成了很多人生活的一部分吧。沈阳的星巴克不算多，大多在商业区和写字楼，到现在东大边上也没有一家，呵呵。挺喜欢里边的环境，特别是人少的几家店，在靠窗户的位置上上网，看看书挺惬意的；偶尔还可以去会议桌上学习一下，毕竟是个很安静的去处，可以静静的思考<img src="../images/emot/smile.gif" border="0" /><br /><br />最近去的少了，也是因为外出的机会也少了，几次都是路过买了杯咖啡外卖。在太原街和洲际两家店都有些认识的服务员，今天在中街竟然碰到了洲际那家店的奶油小帅哥，真没想到，呵呵。因为我今天用的特饮赠券，就是上次去洲际那家店他卖给我的特饮赠送的：）我要是个MM，一定得要他的电话了，呵呵。<br /><br />冬天挺适合喝咖啡的，暖暖的，甜甜的，最近的两种特饮也的确味道不错，都是拿铁和摩卡的变种了。可能咖啡只是一种载体，至今我也不了解各类咖啡豆的区别，也没有想去了解，呵呵。去星巴克买一杯咖啡就是种习惯吧，和我现在生活中很多习惯一样，打保龄去金都，买薯片就是乐事，抻面吃老四季，上china-pub买书，纸巾和纸抽用心相印的绿茶或者向左走向右走，&hellip;&hellip;还好我的生活也不是一成不变的，比如搬家了就不能去新四季吃晚饭了，改炒饭和食堂了，外加桃李起酥面包，呵呵。<br /><br />生活就是这样吧，在简单中不断延续，也需要新鲜和改变，重要的能够有feeling的活着，乐观的珍惜着每一天的拥有吧。<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2598%259F%25E5%25B7%25B4%25E5%2585%258B" rel="tag">星巴克</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%2592%2596%25E5%2595%25A1" rel="tag">咖啡</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1960</link>
<title><![CDATA[要是自己装修房子呢？]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 07 Dec 2008 08:06:03 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1960</guid> 
<description>
<![CDATA[ 
	昨天自己逛游到了自己未来的HOME，外立面已经弄好了，一期的一部分在装修了，竟然还有已经住进去的了，真是厉害。逛了一下边上的乐购，才发现真是够大的，也挺热闹的，也得弄个乐购卡了，记得原来自己有一个的。但是家居气氛浓重，没看到有什么美女<img src="../images/emot/grin.gif" border="0" />但是这么近，以后估计对逛超市会失去兴趣了，会倾向于和逛农贸市场差不多了吧，呵呵。<br /><br />昨天看《桃花运》，看着里边的李晨自己动手装修了一个小房子，突然萌发了一个念头，自己动手装修会不会很有趣呢，呵呵。我和他有个共同点：没钱<img src="../images/emot/cry.gif" border="0" />虽然前段时间室友装修房子的过程中，自己逐渐了解了家装是个相当复杂的工程，自己要面对很多也要了解很多。想来其实劳动量并不是很多，更需要的是沟通和经验了。其实自己虽然工作很忙，但是还是常常很清闲的，至少看上去是。给自己找点事情干，也是好事，会让人积极起来，也对工作都有好处，呵呵。<br /><br />先这么琢磨了，怎么也可以自己刷个墙或者装个相框什么的<img src="../images/emot/grin.gif" border="0" />会成为宅男嘛，上帝保佑我，我只是很喜欢自己拥有的东东，为此还得开源节流呢，呵呵。<br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%25A3%2585%25E4%25BF%25AE" rel="tag">装修</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1959</link>
<title><![CDATA[北京南站]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 03 Dec 2008 18:54:41 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1959</guid> 
<description>
<![CDATA[ 
	转车在北京南站，见识了这个不逊于飞机场的火车站，够阔气，呵呵。<br /><br /><div align="center">候车室<br /><img class="insertimage" src="../attachment.php?fid=941" border="0" /><br /><br />咋就不能帅点呢，呵呵<br /><img class="insertimage" src="../attachment.php?fid=942" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=943" border="0" /><br /><br />自动售票机，的确挺先进的，北京到天津的确很方便呀<br /><img class="insertimage" src="../attachment.php?fid=945" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=946" border="0" /><br /><br />站台也很不错<br /><img class="insertimage" src="../attachment.php?fid=947" border="0" /><br /><br /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%258C%2597%25E4%25BA%25AC" rel="tag">北京</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1958</link>
<title><![CDATA[路过北京]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 03 Dec 2008 18:50:15 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1958</guid> 
<description>
<![CDATA[ 
	和同事出差去青岛，路过北京。帮着领导办完事情，还忙里偷闲跑到旁边的月坛公园，介绍如下：<br /><br />月坛公园地处北京市西城区，是明清两代帝王祭祀月神的地方。是北京著名的五坛八庙之一，始建于明嘉靖年间，是首都著名的古典园林之一。园内古建为市级文物 保护对象。&nbsp;园内种植了大量松柏树木，修缮了古建筑；钟楼、天门、神库等古建筑均保存完好。1983&nbsp;年又新建的景点有月坛蟾宫，内有碑廊、双环映月池、 广寒桥和嫦娥奔月雕塑。还有天香院、揽月亭、霁月亭、爽心亭、月桂亭等诸多景点。种植了婆罗树、梧桐树、石榴树和桂花等名贵观赏树种。扣住了&ldquo;月&rdquo;的主 题，突出了秋的意境，成为北京一处优美的赏月和游览胜地。<br /><br />公园不大，但是风景也挺不错，也有些精致的角落。<br /><br /><div align="center"><br />绿色，这个时候的沈阳已经秋色浓浓了<br /><img class="insertimage" src="../attachment.php?fid=927" border="0" /><br /><br />很静谧的公园<br /><img class="insertimage" src="../attachment.php?fid=928" border="0" /><br /><br />鱼塘...<br /><img class="insertimage" src="../attachment.php?fid=929" border="0" /><br /><br />小提琴虽然拉的不是很悦耳，但是在这暖洋洋的下午，在公园里拉着小提琴，也是种享受吧。可惜我现在一样乐器都不会，呵呵。<br /><img class="insertimage" src="../attachment.php?fid=930" border="0" /><br /><br />亭子里还有人唱怀旧歌曲，不错<br /><img class="insertimage" src="../attachment.php?fid=931" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=932" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=933" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=934" border="0" /><br /><br />鲜花总是这样惹人喜欢吧：）记得在世博园的时候拍的那些，的确很美，呵呵<br /><img class="insertimage" src="../attachment.php?fid=935" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=936" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=937" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=938" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=939" border="0" /><br /><br />公园的长廊<br /><img class="insertimage" src="../attachment.php?fid=940" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1957</link>
<title><![CDATA[秋日的棋盘山]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 03 Dec 2008 18:38:37 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1957</guid> 
<description>
<![CDATA[ 
	<div align="center">静谧的路，也挺有味道的<br /><img class="insertimage" src="../attachment.php?fid=920" border="0" /><br /><br />清澈的水池，这是个美丽的角落，如果放大点就可能不美了&mdash;&mdash;个人观点<br /><img class="insertimage" src="../attachment.php?fid=921" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=922" border="0" /><br /><br />狼狗<br /><img class="insertimage" src="../attachment.php?fid=923" border="0" /><br /><br />又拍了棋盘山的大坝：）<br /><img class="insertimage" src="../attachment.php?fid=924" border="0" /><br /><br />别样的角度<br /><img class="insertimage" src="../attachment.php?fid=925" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=926" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%25A3%258B%25E7%259B%2598%25E5%25B1%25B1" rel="tag">棋盘山</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1956</link>
<title><![CDATA[校园风景]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 03 Dec 2008 18:33:52 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1956</guid> 
<description>
<![CDATA[ 
	<div align="center">综合楼<br /><img class="insertimage" src="../attachment.php?fid=918" border="0" /><br /><br />静谧的校园<br /><img class="insertimage" src="../attachment.php?fid=919" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%25A0%25A1%25E5%259B%25AD" rel="tag">校园</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1955</link>
<title><![CDATA[不小心看了一个不错的电视剧]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 03 Dec 2008 17:46:51 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1955</guid> 
<description>
<![CDATA[ 
	边干活边看电视剧/电影，是我的一个陋习，常常重复重复的看着自己喜欢的电影和电视剧，想想对自己真的不太好，呵呵。最近找来找去，看了一个国产的电视剧《穷爸爸，富爸爸》。其实最开始自己看了一点，但是没有看下去，最开始看也是因为这个名字比较好，是原来一个很有名的理财书的名字。<br /><br />只有三十集，比起前段时间看的《贞观长歌》可是要短了许多。这也是个虚构的故事，一个现实生活中不太可能发生的故事，呵呵。看到20多集，我才发现这部电视剧真的很不错。让自己又看到了很多熟悉的道理，让自己多了些激动和感动。简单的说几条它让我喜欢的地方：<br /><br />1）直爽的性格，有尊严，也有勇气，敢于承担责任，有责任感<br />2）真诚，能够乐观面对困境，能够不放弃自己的生活<br />3）能够适应新生活，能不逃避<br />4）亲情<br />5）善意的谎言<br />6）对承诺的执着<br />7）专一<br />8）节俭<br />9）百无聊赖中能寻觅充实<br />10）好运气+珍惜<br /><br />当看到好片子的时候，常常希望它不结束，也会希望好人有好报，可是有些电视剧也只适合看一遍，能感动能体会就好。而另外的一些却日久弥新。电视剧一直都有新的，生活也是每一天都有新的，今天太阳升起的时候，还是新的太阳，体会吧，体会每次感动，珍惜拥有和过往，也要珍惜自己还活着。<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1954</link>
<title><![CDATA[开心网的这段时间...]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 03 Dec 2008 17:10:15 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1954</guid> 
<description>
<![CDATA[ 
	突然意识到，自己在开心网上的活动是对自己时间的浪费。它有些很吸引人的功能，可以了解朋友的状况，了解大家对某些问题的看法，重新建立与朋友间的联系，还有答题也可以锻炼脑力；但也有很多游戏最开始的新鲜，变成之后的按照逻辑就可以计算出每天的盈利，计算出模型，就变成重复的操作，耗费着每天的时间，得到的就是那些虚拟的资产、现金、级别和收益。<br /><br />看来自己也是无聊吧，这不到一个月的时间里耗费在上面很多时间，很多宝贵的时间：）该理性的使用它了，就像上学的时候自己对电脑游戏一样，对聊天的看法一样。又明白了一点道理，不错不错<img src="../images/emot/grin.gif" border="0" /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1953</link>
<title><![CDATA[下雪了]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 03 Dec 2008 15:39:30 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1953</guid> 
<description>
<![CDATA[ 
	好天气，冬天的沈阳终于下了场像样的雪。虽然是在一下午的大雨之后，但是雪还是积下来了：）挺大的雪，风却不是很大，还是挺暖和的。特意走了小路，这是自己刚毕业留校那段时间每天都要走的，呵呵。路边都是树木和草坪，虽然很短，但是也很静。雪一直下，树上落着很不错的雪，很美。搬出学校3年后，自己又回到了原点，重新开始走这条路。可能会有点伤感，但是自己却没感觉到，可能人多了回忆并不是坏事情，那也是一种拥有吧，有生活也是种幸福的：）<br /><br />人可以在物理上回到原点，但是不该让生活、让心情、让感情总停在原点。做好做的事和做好该做的事，还是后者更积极。自己大学毕业之后的主要问题就是一直不知道自己想要什么，总被环境一步一步的推着往前走。是该让自己面对自己的生活，人生是财富，该去享受它。<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1952</link>
<title><![CDATA[收拾东西的乐趣]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 03 Dec 2008 10:06:47 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1952</guid> 
<description>
<![CDATA[ 
	我是个挺怀旧的人，总喜欢保存些能够留下些回忆的东西，这么多年下来已经是存量相当丰富了，呵呵。<br /><br />今天收拾了一个有好些年没有动过的柜子，又看到了很多过去的东东。什么初中时候的证书，竞赛的奖牌，记事本，还有日记本，呵呵，还有高中的日记，。还有不少照片和小东东：）挺有趣的呀，能想起好多过去的事情，还好留下来的大部分是开心的回忆。虽然也有不开心的回忆，但是发现在记忆力真的很有趣，会很容易的被开心的自豪的回忆给掩盖了，看来自己还是乐观的吧<img src="../images/emot/shy.gif" border="0" /><br /><br />等有了自己的房子，得把这些东西好好收藏起来，别总拿出来晒。曾听说过，当你总喜欢回忆的时候就说明你已经老了。还是年轻些好，所以到时候弄个好箱子把它们放起来，等自己悠闲的时候再享受吧：）<br /><br />开开心心的生活，更得充充实实的生活。<br /><br /><br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1951</link>
<title><![CDATA[好做的事和把事做好]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Tue, 02 Dec 2008 16:17:21 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1951</guid> 
<description>
<![CDATA[ 
	前几天在《第一财经周刊》上看到了一篇文章，名字叫《好做的事与把事做好》。里边讲了一个很简单的道理：每个人都在寻找好做的事、容易做的事；而这本身就是不现实的，而该简单的做好自己的事，这样才实际。其实这就是主动和被动的想法，还是主动才能解决，才能真正积极的生活。<br /><br />对自己有好处，可以少做些梦，多做点事情；做好手头的，才能面向更高的目标。&mdash;&mdash;简单的生活理念，呵呵。我该好好生活，该好好面对自己的生活！新的开始了，过去的生活应该有个结束，从内到外给自己一个新气象<img src="../images/emot/grin.gif" border="0" /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1950</link>
<title><![CDATA[今天才发现firefox里记录了每个页面的访问次数]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Web开发]]></category>
<pubDate>Sun, 30 Nov 2008 12:55:12 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1950</guid> 
<description>
<![CDATA[ 
	<div align="center"><div align="left">以前没有注意到，才发现在firefox里边如果查询页面的&ldquo;页信息&rdquo;的时候，是会显示浏览网站的次数的，呵呵。功能的确强大，也记录的很详细：）<br /></div><br /><img class="insertimage" src="../attachment.php?fid=917" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=web" rel="tag">web</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=firefox" rel="tag">firefox</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1949</link>
<title><![CDATA[晚上11点后的东大小西门风景...]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 19 Nov 2008 17:05:59 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1949</guid> 
<description>
<![CDATA[ 
	回到宿舍没几天，还都是很准时的回宿舍，今天却是11点多一些才走进东北大学的小西门，看到了一番风景，主要是两对学生情侣的风景。<br />一对是女孩子追着男的，而男的却不管不问甩开女孩子，&ldquo;勇气&rdquo;前行；另外一对，正好想法，女孩子已经哭的很伤心，而男的在边上照顾着女孩子，好像在赔不是吧。<br />可是感觉这两个男孩子在这纯真的感情纷乱中都表现的不怎么样，一个对自己的女朋友不闻不问是不对，另一个竟然能让自己的女朋友哭得走不动路坐在地上了。<br /><br />看着这风景，让自己想起了些过去的事情，自己也做过类似的事情了：）想想人都是在成长中成熟的，有经历才能懂得珍惜吧！该开始新鲜的生活，让自己觉得成长，让自己觉得充实快乐！<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1948</link>
<title><![CDATA[今晚的出租车...]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 19 Nov 2008 16:55:24 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1948</guid> 
<description>
<![CDATA[ 
	住宿舍了，现在需要11点之前回到寝室了，呵呵。今天晚上因为出去，快10点40了才发现有点晚了，赶忙打出租车回来：）走了好两个路口才逮到一个出租车司机，也算比较幸运了，可是上了车我才知道开始了一段漫长的旅程。<br /><br />司机是个新人，路也找不到，不断的问我该怎么走，我只能一边告诉他该走的关键地点，一边放轻松。就这样绕来绕去，到了太原街马路湾竟然问我知不知道路，要不知道就问问，这是让我服了他了。本来想要20的路程，最后快30元了，最后下车的时候把发票的头也给弄掉了，只能用别的替换给我，还觉得我得了便宜（其实要发票就是个习惯，也不是为了报销）。<br /><br />想想，自己没有过去有耐心和宽容了，毕竟他是个新手，该多给些支持吧。虽然他可能无法领会到，也不考虑多多准备些，熟悉熟悉路程。多给别人些宽容，这世界也就和谐了吧<img src="../images/emot/grin.gif" border="0" />只是整个路程走了30分钟，最后还得让打惊的老大娘起床开门，倒是她不和谐了，问题看来还是得归结到我没有守时吧，呵呵。大家都多从自身找原因，世界就大同了<img src="../images/emot/shy.gif" border="0" /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1947</link>
<title><![CDATA[解决“HTTP 错误 401.3 - 未经授权：访问由于 ACL 对所请求资源的设置被拒绝。”问题]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Windows相关]]></category>
<pubDate>Wed, 19 Nov 2008 02:03:36 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1947</guid> 
<description>
<![CDATA[ 
	今天更新iis下一个目录的文件，但是访问的时候无法访问和下载，提示：<br /><span style="font-size: medium"><strong>HTTP 错误 401.3 - 未经授权：访问由于 ACL 对所请求资源的设置被拒绝。</strong></span><br /><br />查找相关文档，可以确定这应该是和访问权限相关的，查看了新更新的文件和原来文件的用户访问区别，发现缺少web iis运行用户的访问能力，添加用户访问权限后正常。<br /><br />相关文档如下：<br /><br />在配置IIS的时候，如果安全稍微做的好一些。就会出现各式各样的问题。比如，常见的访问网页会弹出用户名密码的登陆界面，或者是访问某种页面比如html,asp没事情，但是访问jsp或者php就有问题，显示401.3　ACL 禁止访问资源等<br /><br />　　通常的解决办法是。　　　<br />　　<br />　　　　　第一，看iis中（不管iis5 还是iis6)　，网站或者目录，包括虚拟目录的属性，看目录安全性选项卡中的　编辑匿名访问和身份验证控制，看看是用的哪个帐号，如果是用的iis匿名帐号（一般是 IUSR_机器名），或者由系统管理员设置了其他帐号，这个帐号很重要，下面成IIS匿名帐号　察看帐号的密码是否是正确的系统设置的密码，实在不行就在计算机管理里面的用户管理，重新把帐号设置一个密码，然后在编辑匿名访问和身份验证控制选项中把密码重新设置一下。<br /><br />　　　　　第二。在资源管理器里面看放置网站或者目录的安全选项。是否IIS匿名帐号有权限访问，一般来说，NT系统中的IUSR_机器名这个帐号都会是在user组里面，有时候禁用了user组，也会引起这个问题，让刚才设置的IIS匿名帐号或者帐号所在的系统组有对目录的访问权限，至少要有读权限。<br /><br />　　　　　第三，在你放置的程序中，看是否含有其他类型的动态语言写的程序，IIS会默认对asp进行解释，对于ASPX来说，要看net执行文件目录是否让 IIS匿名帐号有读权限？　cgi程序就是perl目录，jsp看是用resin还是用tomcat做的解释，php就是php目录，要保证这些目录都让 IIS匿名帐号有读权限才行。<br /><br />　　　　通过以上设置，基本上没有什么问题了，遇到这样的问题，重新安装IIS也没有用，慢慢查原因吧。在NT环境下的web server出问题，大部分是因为权限　还有组策略的影响。只要确定这两个部分没问题。那基本上就不会出现问题了。 <br /><br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=windows" rel="tag">windows</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=iis" rel="tag">iis</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1946</link>
<title><![CDATA[简单写点东东]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Tue, 18 Nov 2008 16:53:29 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1946</guid> 
<description>
<![CDATA[ 
	最近这段时间，自己回到了学校，也重新体验了大学时代的生活。因为工作的原因，自己已经忙了好一个星期；虽然效率和专心程度也不怎么够，可是也付出了，最后也有了点收获。简单的总结一下就是：<br /><br />要想拥有，的确要先付出；<br />要想事事顺利，前提是要做好充分的准备；<br />要想不心虚，就要很好的充分的努力过，把该做的功课做了就是最好的准备；<br />人是可以简单的生活的，只要你去选择和追求；<br />人是可以有目标的生活的，前提是你要有目标：）<br /><br />废话不少，其实自己有点在逃避生活，躲避一些要做到的选择，总想等着被推着，不太好：）积极生活，对自己对家人对身边的人应该都是好的。<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1945</link>
<title><![CDATA[linux下自动生成Makefile——源代码和头文件都在一个目录下]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Unix&amp;Linux相关]]></category>
<pubDate>Tue, 11 Nov 2008 12:28:21 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1945</guid> 
<description>
<![CDATA[ 
	相关命令：<br /><span style="font-family: Verdana">autoscan; </span><span style="font-family: Verdana">aclocal; autoconf; automake --add-missing; ./configure; make; </span><br />具体环境：<br />源代码和头文件都在一个目录下。<br /><br />以下的文档是在网络上资料基础上改进的，得到了验证。<span style="font-family: Verdana">来源：CCW</span><br /><br />需要注意：后面在定义Makefile.am文件的时候，需要把所有源代码文件加入，也需要制定可执行函数所在的文件。<br /><br />具体操作：<br />1、建目录<br />放置源代码文件和头文件。<br />$ mkdir helloword<br />$ cd helloworld<br /><br />2、编写源代码文件和头文件。<br />如编写helloworld.c<br /><br />3、生成configure<br />我们使用autoscan命令来帮助我们根据目录下的源代码生成一个configure.in的模板文件。<br />命令：<br />$ autoscan<br />$ ls<br />configure.scan&nbsp;&nbsp;helloworld.c<br />执行后在hellowrold目录下会生成一个文件：configure.scan，我们可以拿它作为configure.in的蓝本。<br />现在将configure.scan改名为configure.in，并且编辑它，按下面的内容修改，去掉无关的语句：<br />============================configure.in内容开始=========================================<br />#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -*- Autoconf -*-<br /># Process this file with autoconf to produce a configure script.<br /><br />AC_INIT(helloworld.c)<br />AM_INIT_AUTOMAKE(helloworld, 1.0)<br /><br /># Checks for programs.<br />AC_PROG_CC<br />#if g++ then<br />#AC_PROG_CXX<br /><br /># Checks for libraries.<br /><br /># Checks for header files.<br /><br /># Checks for typedefs, structures, and compiler characteristics.<br /><br /># Checks for library functions.<br />AC_OUTPUT(Makefile)<br />============================configure.in内容结束=========================================<br />然后执行命令aclocal和autoconf，分别会产生aclocal.m4及configure两个文件：<br />$ aclocal<br />$ls<br />aclocal.m4&nbsp;&nbsp;configure.in&nbsp;&nbsp;helloworld.c <br />$ autoconf<br />$ ls<br />aclocal.m4&nbsp;&nbsp;autom4te.cache&nbsp;&nbsp;configure&nbsp;&nbsp;configure.in&nbsp;&nbsp;helloworld.c<br /><br />大家可以看到configure.in内容是一些宏定义，这些宏经autoconf处理后会变成检查系统特性、环境变量、软件必须的参数的shell脚本。<br /><br />autoconf 是用来生成自动配置软件源代码脚本（configure）的工具。configure脚本能独立于autoconf运行，且在运行的过程中，不需要用户的干预。<br /><br />要生成configure文件，你必须告诉autoconf如何找到你所用的宏。方式是使用aclocal程序来生成你的aclocal.m4。<br /><br />aclocal根据configure.in文件的内容，自动生成aclocal.m4文件。aclocal是一个perl 脚本程序，它的定义是：&ldquo;aclocal - create aclocal.m4 by scanning configure.ac&rdquo;。<br /><br />autoconf从configure.in这个列举编译软件时所需要各种参数的模板文件中创建configure。<br />autoconf需要GNU m4宏处理器来处理aclocal.m4，生成configure脚本。<br /><br />m4是一个宏处理器。将输入拷贝到输出，同时将宏展开。宏可以是内嵌的，也可以是用户定义的。除了可以展开宏，m4还有一些内建的函数，用来引用文件，执行命令，整数运算，文本操作，循环等。m4既可以作为编译器的前端，也可以单独作为一个宏处理器。<br /><br />4、新建Makefile.am<br />新建Makefile.am文件，命令：<br />$ vi Makefile.am<br />内容如下:<br />AUTOMAKE_OPTIONS=foreign<br />bin_PROGRAMS=helloworld<br />helloworld_SOURCES=helloworld.c<br /><br />automake会根据你写的Makefile.am来自动生成Makefile.in。<br />Makefile.am中定义的宏和目标,会指导automake生成指定的代码。例如，宏bin_PROGRAMS将导致编译和连接的目标被生成。<br /><br />5、运行automake<br />命令：<br />$ automake --add-missing<br />configure.in: installing `./install-sh'<br />configure.in: installing `./mkinstalldirs'<br />configure.in: installing `./missing'<br />Makefile.am: installing `./depcomp'<br /><br />automake会根据Makefile.am文件产生一些文件，包含最重要的Makefile.in。<br /><br />6、执行configure生成Makefile<br />$ ./configure<br />checking for a BSD-compatible install... /usr/bin/install -c<br />checking whether build environment is sane... yes<br />checking for gawk... gawk<br />checking whether make sets $(MAKE)... yes<br />checking for gcc... gcc<br />checking for C compiler default output... a.out<br />checking whether the C compiler works... yes<br />checking whether we are cross compiling... no<br />checking for suffix of executables...<br />checking for suffix of object files... o<br />checking whether we are using the GNU C compiler... yes<br />checking whether gcc accepts -g... yes<br />checking for gcc option to accept ANSI C... none needed<br />checking for style of include used by make... GNU<br />checking dependency style of gcc... gcc3<br />configure: creating ./config.status<br />config.status: creating Makefile<br />config.status: executing depfiles commands<br />$ ls -l Makefile<br />-rw-rw-r--&nbsp;&nbsp;&nbsp;&nbsp;1 yutao&nbsp;&nbsp;&nbsp;&nbsp;yutao&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 15035 Oct 15 10:40 Makefile<br />你可以看到，此时Makefile已经产生出来了。<br /><br />7、使用Makefile编译代码<br />$ make<br />if gcc -DPACKAGE_NAME=&#92;&quot;&#92;&quot; -DPACKAGE_TARNAME=&#92;&quot;&#92;&quot; -DPACKAGE_VERSION=&#92;&quot;&#92;&quot; -<br /><br />DPACKAGE_STRING=&#92;&quot;&#92;&quot; -DPACKAGE_BUGREPORT=&#92;&quot;&#92;&quot; -DPACKAGE=&#92;&quot;helloworld&#92;&quot; -DVERSION=&#92;&quot;1.0&#92;&quot; <br /><br />-I. -I.&nbsp;&nbsp;&nbsp;&nbsp; -g -O2 -MT helloworld.o -MD -MP -MF &quot;.deps/helloworld.Tpo&quot; &#92;<br />&nbsp;&nbsp;-c -o helloworld.o `test -f 'helloworld.c' &#124;&#124; echo './'`helloworld.c; &#92;<br />then mv -f &quot;.deps/helloworld.Tpo&quot; &quot;.deps/helloworld.Po&quot;; &#92;<br />else rm -f &quot;.deps/helloworld.Tpo&quot;; exit 1; &#92;<br />fi<br />gcc&nbsp;&nbsp;-g -O2&nbsp;&nbsp; -o helloworld&nbsp;&nbsp;helloworld.o <br /><br />运行helloworld<br />$ ./helloworld<br />Hello, Linux World!<br /><br />这样helloworld就编译出来了，你如果按上面的步骤来做的话，应该也会很容易地编译出正确的helloworld文件。<br /><br />你还可以试着使用一些其他的make命令，如make clean，make install，make dist，看看它们会给你什么样的效果。<br /><br />感觉如何？自己也能写出这么专业的Makefile，老板一定会对你刮目相看。<br /><br />四、深入浅出<br /><br />针对上面提到的各个命令，我们再做些详细的介绍。<br /><br />1、 autoscan<br /><br />autoscan是用来扫描源代码目录生成configure.scan文件的。autoscan可以用目录名做为参数，但如果你不使用参数的话，那么autoscan将认为使用的是当前目录。autoscan将扫描你所指定目录中的源文件，并创建 configure.scan文件。<br /><br />2、 configure.scan<br /><br />configure.scan包含了系统配置的基本选项，里面都是一些宏定义。我们需要将它改名为configure.in<br /><br />3、 aclocal<br /><br />aclocal是一个perl 脚本程序。aclocal根据configure.in文件的内容，自动生成aclocal.m4文件。aclocal的定义是：&ldquo;aclocal - create aclocal.m4 by scanning configure.ac&rdquo;。<br /><br />4、 autoconf<br /><br />autoconf是用来产生configure文件的。configure是一个脚本，它能设置源程序来适应各种不同的操作系统平台，并且根据不同的系统来产生合适的Makefile，从而可以使你的源代码能在不同的操作系统平台上被编译出来。<br /><br />configure.in文件的内容是一些宏，这些宏经过autoconf 处理后会变成检查系统特性、环境变量、软件必须的参数的shell脚本。configure.in文件中的宏的顺序并没有规定，但是你必须在所有宏的最前面和最后面分别加上AC_INIT宏和AC_OUTPUT宏。<br /><br />在configure.ini中：<br /><br />#号表示注释，这个宏后面的内容将被忽略。<br />AC_INIT(FILE)<br />这个宏用来检查源代码所在的路径。<br />AM_INIT_AUTOMAKE(PACKAGE, VERSION)<br />这个宏是必须的，它描述了我们将要生成的软件包的名字及其版本号：PACKAGE是软件包的名字，VERSION是版本号。当你使用make dist命令时，它会给你生成一个类似helloworld-1.0.tar.gz的软件发行包，其中就有对应的软件包的名字和版本号。<br />AC_PROG_CC<br />这个宏将检查系统所用的C编译器。<br />AC_OUTPUT(FILE)<br />这个宏是我们要输出的Makefile的名字。<br /><br />我们在使用automake时，实际上还需要用到其他的一些宏，但我们可以用aclocal 来帮我们自动产生。执行aclocal后我们会得到aclocal.m4文件。<br /><br />产生了configure.in和aclocal.m4 两个宏文件后，我们就可以使用autoconf来产生configure文件了。<br /><br />5、 Makefile.am<br /><br />Makefile.am是用来生成Makefile.in的，需要你手工书写。Makefile.am中定义了一些内容：<br />AUTOMAKE_OPTIONS<br /><br />这个是automake的选项。在执行automake时，它会检查目录下是否存在标准GNU软件包中应具备的各种文件，例如AUTHORS、ChangeLog、NEWS等文件。我们将其设置成foreign时，automake会改用一般软件包的标准来检查。<br /><br />bin_PROGRAMS<br /><br />这个是指定我们所要产生的可执行文件的文件名。如果你要产生多个可执行文件，那么在各个名字间用空格隔开。<br /><br />helloworld_SOURCES<br /><br />这个是指定产生&ldquo;helloworld&rdquo;时所需要的源代码。如果它用到了多个源文件，那么请使用空格符号将它们隔开。比如需要helloworld.h，helloworld.c那么请写成helloworld_SOURCES= helloworld.h helloworld.c。<br /><br />如果你在bin_PROGRAMS定义了多个可执行文件，则对应每个可执行文件都要定义相对的filename_SOURCES。<br /><br />6、 automake<br /><br />我们使用automake --add-missing来产生Makefile.in。<br />选项--add-missing的定义是&ldquo;add missing standard files to package&rdquo;，它会让automake加入一个标准的软件包所必须的一些文件。<br />我们用automake产生出来的Makefile.in文件是符合GNU Makefile惯例的，接下来我们只要执行configure这个shell 脚本就可以产生合适的 Makefile 文件了。<br /><br />7、 Makefile<br /><br />在符合GNU Makefiel惯例的Makefile中，包含了一些基本的预先定义的操作：<br />make<br />根据Makefile编译源代码，连接，生成目标文件，可执行文件。<br />make clean<br />清除上次的make命令所产生的object文件（后缀为&ldquo;.o&rdquo;的文件）及可执行文件。<br />make install<br />将编译成功的可执行文件安装到系统目录中，一般为/usr/local/bin目录。<br />make dist<br />产生发布软件包文件（即distribution package）。这个命令将会将可执行文件及相关文件打包成一个tar.gz压缩的文件用来作为发布软件的软件包。<br />它会在当前目录下生成一个名字类似&ldquo;PACKAGE-VERSION.tar.gz&rdquo;的文件。PACKAGE和VERSION，是我们在configure.in中定义的AM_INIT_AUTOMAKE(PACKAGE, VERSION)。<br />make distcheck<br />生成发布软件包并对其进行测试检查，以确定发布包的正确性。这个操作将自动把压缩包文件解开，然后执行configure命令，并且执行make，来确认编译不出现错误，最后提示你软件包已经准备好，可以发布了。<br />===============================================<br />helloworld-1.0.tar.gz is ready for distribution<br />===============================================<br />make distclean<br />类似make clean，但同时也将configure生成的文件全部删除掉，包括Makefile。<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=linux" rel="tag">linux</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=c" rel="tag">c</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=c%252B%252B" rel="tag">c++</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=makefile" rel="tag">makefile</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1944</link>
<title><![CDATA[香格里拉自助游景点]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[职场与生活]]></category>
<pubDate>Tue, 11 Nov 2008 12:20:26 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1944</guid> 
<description>
<![CDATA[ 
	香格里拉，是我一直想去的地方，很喜欢的一个发呆欣赏风景的地方，可是上次去云南却错过了，还得自助游才好。下边先记录一下，给一个朋友找的香格里拉的资料，希望自己能亲自到访：）<br /><br />香格里拉：香格里拉最美的季节是在秋天，但得注意安全。<br />依拉草原，纳帕海和松赞林寺，这几个景点都在县城附近。<br />泡吧：&ldquo;青稞架&rdquo;酒吧。<br />属都湖和机场边的草原。<br />香格里拉最为著名的景点有梅里雪山和雨崩村、虎跳峡、纳帕海、碧塔海等等。<br />叹为观止的民族工艺。藏式木碗;藏毯、铜器、银饰等手工艺品，精巧擦亮。藏医、藏药、东巴象形文字和原始宗教图腾等随力无穷。<br />香格里拉雪山耸峙，草原广袤，河谷深切,苍凉的茶马古道上的许多石门关及滇西奇观的色仓大裂谷都以其绝纱的景致向游人畅开怀抱，在雪山深处，在草原的腹地，林海中的碧塔海、属都湖、纳帕海等无数清幽宁静深遂神秘的高山湖泊呼唤人们去撩开她们美丽的面纱。香格里拉的精华是梅里雪山，梅里雪山的精华是雨崩村。<br />去迪庆建议带上外套、羽绒服、手套、防滑靴。加上气候干燥，紫外线辐射强，女士应准备好防晒霜、遮阳帽、太阳镜，特别是10月份以后探访更要带足御寒衣物。 <br />迪庆属高海拔地区(3300米)，不宜剧烈运动，不宜饮酒，多食蔬菜、水果，以防发生高山反应。<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%25A6%2599%25E6%25A0%25BC%25E9%2587%258C%25E6%258B%2589%25E6%2597%2585%25E6%25B8%25B8" rel="tag">香格里拉旅游</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1943</link>
<title><![CDATA[回到宿舍的第一晚]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 09 Nov 2008 16:45:04 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1943</guid> 
<description>
<![CDATA[ 
	三年了，自己又回到了学生宿舍，算是个轮回吧：）今天晚上把铺盖卷弄在了教工宿舍，今晚就在这里过了。<br /><br />其实，学校新的宿舍挺不错的，现在三个人的房间两个人住，还是高层带电梯的，放眼望去都能看到浑河了，也算是风景秀丽。只是现在还没有来暖气<img src="../images/emot/stupid.gif" border="0" />我现在穿着羽绒服写着blog呢。<br /><br />走在校园里的感觉挺新鲜的，感觉很清新，也勾起了很多过去的回忆。大学校园，我已经在这快十年了，东北大学校园的老人了，呵呵。离开了校园三年后，自己回到这里，可能对自己是件好事情&mdash;&mdash;让自己很好的调整一下现在有点低潮的状态。<br /><br />简单的生活，调整有些烦乱的心情，也要积极充实的生活，还能攒钱&mdash;&mdash;都是好处。加油加油，给自己加油，开开心心的每一天：）<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1942</link>
<title><![CDATA[一天见闻]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 05 Nov 2008 17:15:30 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1942</guid> 
<description>
<![CDATA[ 
	凌晨了，写写昨天一天的见闻吧。<br /><br />晚上出去和一个出租司机闲聊，他告诉我一直想开个电脑复印社，问我如何学习PHOTOSHOP和CAD绘图，还给我讲起他刚上大一的女儿。&mdash;&mdash;每个人都有自己的追求和需要，能执着和开心的去追求其实就是种幸福。<br /><br />一天都在和锐捷研发的讨论，看着他们有种羡慕的感觉，觉得他们的生活比我现在的工作要纯粹得多，应该也会更快乐些。&mdash;&mdash;我的工作虽然压力不大，比较清闲，但是不怎么和我的胃口，容易把人给&ldquo;浪费&rdquo;了。<br /><br />今天两次见到圆通快递的送货师傅，虽然只和他聊了几句，但是觉得他很开心，也很阳光，虽然脸上的皱纹是我的2的n次方倍。&mdash;&mdash;暖洋洋的冬日阳光，即使是在阳光下辛劳，主要你心中乐观，你的生活就是阳光的。<br /><br />八点多去买电影票，前边一个&ldquo;帅哥&rdquo;若无其事的插队到前边，还和售票员一通絮叨，为了能给自己连着的座位，竟然bt的想让别人一起给他串出来一个，最后还是没有买票，让后边排队的人空等。&mdash;&mdash;可能这位DD的行为换个角度，就是生活能力出色吧，能够顶住压力将自己的利益最大化，不知道他的女朋友会怎么夸她。但是这样的人俺是看不起了，rp值低的很，电影也并非高雅而只是娱乐大众，希望大众里这样的人少一些。<br /><br />遇到两个出租车司机，都因为没有给我出租车发票而向我道歉。&mdash;&mdash;挺意外的，有些时候对出租车司机的群体印象很差，但是老实说遇到了很多善良淳朴的司机，和你认真解释该走哪条路，没有正好的出租车票就给你一把过去的，为了给你找到地方不住的问人的，&hellip;&hellip;理解一下，司机都是人，是人就有善良的，是人就有真诚的。<br /><br />需要把握好每天的宝贵时间了，珍惜每一天要珍惜的，告诉自己告诉家人和朋友你的feelings，&hellip;&hellip;<br /><br /><br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1941</link>
<title><![CDATA[252电脑问题解决]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[Windows相关]]></category>
<pubDate>Wed, 05 Nov 2008 10:07:34 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1941</guid> 
<description>
<![CDATA[ 
	今天刚下班，就有个同事过来问我252的机器是不是出问题了，问是不是关机了，真是吓了我一跳，因为这台机器已经一直运行了800多天了，已经是windows2003系统的典范了，运行着基于.net的业务管理系统，呵呵。<br /><br />登上去发现是web服务出了问题，系统在调用数据库的时候出错，没有正常退出，所以无法建立新的连接。重启iis和sqlserver都不能解决，最后使用.net开发环境将项目重新生成后就可以了，在重新生成过程中会清除所有相关的数据连接状态的。<br /><br />还好，有些一直抱有的东西还能坚持：）已经运行了800多天了，时间过的真快，自己呢，也该有改变了，呵呵。<br /><br /><div align="center"><img class="insertimage" src="../attachment.php?fid=916" border="0" /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E5%25B7%25A5%25E4%25BD%259C" rel="tag">工作</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=windows" rel="tag">windows</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1940</link>
<title><![CDATA[高露洁的高钙广告]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[针砭时弊]]></category>
<pubDate>Sat, 01 Nov 2008 15:23:26 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1940</guid> 
<description>
<![CDATA[ 
	刚看到高露洁的新广告，竟然用三字经的方式来夸高露洁牙膏有高钙，对身体和牙齿好，呵呵。真有点高校：）<br />这种文化性的催化式灌输，很不知道口腔也有消化功能，或者刷牙的都把漱口水吞下去好吸收牙膏里的高钙，太&ldquo;科学&rdquo;了<img src="../images/emot/stupid.gif" border="0" /><br /><br />在这bt一下，嘻嘻<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%2592%2588%25E7%25A0%25AD%25E6%2597%25B6%25E5%25BC%258A" rel="tag">针砭时弊</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%25AB%2598%25E9%259C%25B2%25E6%25B4%2581" rel="tag">高露洁</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2589%2599%25E8%2586%258F" rel="tag">牙膏</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1939</link>
<title><![CDATA[最近上开心网都没写Blog的时间了]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Wed, 29 Oct 2008 18:33:33 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1939</guid> 
<description>
<![CDATA[ 
	最近上了开心网，整天弄那些网络游戏了，都没时间写Blog了。更重要的是要完成些具体的工作了，不能对不起这宝贵的时光了：）<br /><br />欢迎用下边的链接加入开心网：）<br /><br />http://www.kaixin001.com/reg/?uid=8137940&amp;usercode=57c5a7e92df6a90a8831ea395747744f_8137940<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1938</link>
<title><![CDATA[最后六张黄山照片：）]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 26 Oct 2008 22:16:28 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1938</guid> 
<description>
<![CDATA[ 
	<div align="center">照片很多，但是节省我那花钱来的空间，弄着几张就ＯＫ了，呵呵。<br /><br />竹林<br /><img class="insertimage" src="../attachment.php?fid=908" border="0" /><br /><br />黄山景区大门<br /><img class="insertimage" src="../attachment.php?fid=909" border="0" /><br /><br />雾气上来了<br /><img class="insertimage" src="../attachment.php?fid=910" border="0" /><br /><br />红叶<br /><img class="insertimage" src="../attachment.php?fid=912" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=913" border="0" /><br /><br />老外留下的连心锁，真情流露呀<br /><img class="insertimage" src="../attachment.php?fid=914" border="0" /><br /><br />清翠竹林<br /><img class="insertimage" src="../attachment.php?fid=915" border="0" /><br /><br /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8%25E3%2580%2580%25E9%25BB%2584%25E5%25B1%25B1" rel="tag">旅游　黄山</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1937</link>
<title><![CDATA[黄山一日游精选2]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 26 Oct 2008 21:47:04 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1937</guid> 
<description>
<![CDATA[ 
	<br /><br /><div align="center">蹲着呢<br /><img class="insertimage" src="../attachment.php?fid=887" border="0" /><br /><br />后边都是雾气<br /><img class="insertimage" src="../attachment.php?fid=888" border="0" /><br /><br />光明顶，天快晴朗了<br /><img class="insertimage" src="../attachment.php?fid=889" border="0" /><br /><br />终于是平地了<br /><img class="insertimage" src="../attachment.php?fid=890" border="0" /><br /><br />远处是那个《红楼梦》电视剧开始的石头<br /><img class="insertimage" src="../attachment.php?fid=891" border="0" /><br /><br />自己看自己很帅呀<br /><img class="insertimage" src="../attachment.php?fid=892" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=893" border="0" /><br /><br />好粗的树呀<br /><img class="insertimage" src="../attachment.php?fid=894" border="0" /><br /><br /><br />像笔吧<br /><img class="insertimage" src="../attachment.php?fid=895" border="0" /><br /><br />山间小路<br /><img class="insertimage" src="../attachment.php?fid=896" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=897" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=898" border="0" /><br /><br />风景的确很有特色，怪石+松树<br /><img class="insertimage" src="../attachment.php?fid=899" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=900" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=901" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=902" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=903" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=904" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=905" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=906" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=907" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%25BB%2584%25E5%25B1%25B1" rel="tag">黄山</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1936</link>
<title><![CDATA[黄山一日游精选1]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 26 Oct 2008 21:39:38 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1936</guid> 
<description>
<![CDATA[ 
	<div align="center"><br /><div align="left">照片来自好几个相机，所以前后顺序混乱，呵呵。黄山的确不错，但是我的体力好差，真需要好好锻炼身体呀：）这次自己的照片很多，真不容易，呵呵，但是觉得有点乱，要是能静静欣赏风景就好^_^<br /></div><br /><br /><img class="insertimage" src="../attachment.php?fid=874" border="0" /><br /><br />后边就是有名气的迎客松，可惜雾气太重了<br /><img class="insertimage" src="../attachment.php?fid=875" border="0" /><br /><br />一路同行的朋友合影，大家都满头水汽，雾气真大<br /><img class="insertimage" src="../attachment.php?fid=876" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=877" border="0" /><br /><br />感觉黄山就不缺这样的松树<br /><img class="insertimage" src="../attachment.php?fid=878" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=879" border="0" /><br /><br />可是这么下来的，过一会还得爬上山，呵呵<br /><img class="insertimage" src="../attachment.php?fid=880" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=881" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=882" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=883" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=884" border="0" /><br /><br />后边像一只大猩猩<br /><img class="insertimage" src="../attachment.php?fid=885" border="0" /><br /><br />好像是放锁的地方，呵呵<br /><img class="insertimage" src="../attachment.php?fid=886" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%25BB%2584%25E5%25B1%25B1" rel="tag">黄山</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1935</link>
<title><![CDATA[黄山市内风景3]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 26 Oct 2008 21:28:34 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1935</guid> 
<description>
<![CDATA[ 
	<div align="center"><br />小狗，pose摆的挺不错的<br /><img class="insertimage" src="../attachment.php?fid=858" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=859" border="0" /><br /><br /><br /><img class="insertimage" src="../attachment.php?fid=860" border="0" /><br /><br />当街<br /><img class="insertimage" src="../attachment.php?fid=861" border="0" /><br /><br />一种烧饼，尝了一个还是觉得不好吃，呵呵<br /><img class="insertimage" src="../attachment.php?fid=862" border="0" /><br /><br />自家生产<br /><img class="insertimage" src="../attachment.php?fid=863" border="0" /><br /><br />现在的小孩子怎么都这么白净呢，营养好呀<br /><img class="insertimage" src="../attachment.php?fid=864" border="0" /><br /><br />画扇面，真不错呀，呵呵<br /><img class="insertimage" src="../attachment.php?fid=865" border="0" /><br /><br />有一只猫，主人告诉我别靠近，很危险，呵呵<br /><img class="insertimage" src="../attachment.php?fid=866" border="0" /><br /><br />当街的馄饨摊<br /><img class="insertimage" src="../attachment.php?fid=867" border="0" /><br /><br />小店，因为不饿就没尝<br /><img class="insertimage" src="../attachment.php?fid=868" border="0" /><br /><br />特产<br /><img class="insertimage" src="../attachment.php?fid=869" border="0" /><br /><br />很有特色的民居建设<br /><img class="insertimage" src="../attachment.php?fid=870" border="0" /><br /><br />很少见的秤了，不知道准不准<br /><img class="insertimage" src="../attachment.php?fid=871" border="0" /><br /><br />缫丝，现场表演<br /><img class="insertimage" src="../attachment.php?fid=872" border="0" /><br /><br />合影，我刚把她男朋友夸了一下，夸他会过日子<br /><img class="insertimage" src="../attachment.php?fid=873" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E7%2585%25A7%25E7%2589%2587" rel="tag">照片</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%25BB%2584%25E5%25B1%25B1" rel="tag">黄山</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1934</link>
<title><![CDATA[黄山市内风景2]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 26 Oct 2008 21:21:12 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1934</guid> 
<description>
<![CDATA[ 
	<div align="center"><br />一条街上都是猫，中午时分正好是他们睡觉的时候，呵呵<br /><img class="insertimage" src="../attachment.php?fid=844" border="0" /><br /><br />这只猫还算干净<br /><img class="insertimage" src="../attachment.php?fid=845" border="0" /><br /><br />土特产<br /><img class="insertimage" src="../attachment.php?fid=846" border="0" /><br /><br />买文房四宝的，好像这里有砚台，很有名气<br /><img class="insertimage" src="../attachment.php?fid=847" border="0" /><br /><br />小木盒子，看上去不错，但是打开就很一般了，所以就没买回来<br /><img class="insertimage" src="../attachment.php?fid=848" border="0" /><br /><br />应该是母狮子，呵呵<br /><img class="insertimage" src="../attachment.php?fid=849" border="0" /><br /><br />看上去真不错，挺精巧的<br /><img class="insertimage" src="../attachment.php?fid=850" border="0" /><br /><br />很多小饰品，挺有特色的<br /><img class="insertimage" src="../attachment.php?fid=851" border="0" /><br /><br />三个和尚，有特色，呵呵，这个角度看挺好玩的<br /><img class="insertimage" src="../attachment.php?fid=852" border="0" /><br /><br />店铺<br /><img class="insertimage" src="../attachment.php?fid=853" border="0" /><br /><br />好多小东西，扇子<br /><img class="insertimage" src="../attachment.php?fid=854" border="0" /><br /><br />挺破旧的，但是估计也是黄金地段呀<br /><img class="insertimage" src="../attachment.php?fid=855" border="0" /><br /><br />合影<br /><img class="insertimage" src="../attachment.php?fid=856" border="0" /><br /><br />是手工编织的手链，呵呵，很简单，但是挺有特色的<br /><img class="insertimage" src="../attachment.php?fid=857" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2597%2585%25E6%25B8%25B8" rel="tag">旅游</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%25BB%2584%25E5%25B1%25B1" rel="tag">黄山</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1933</link>
<title><![CDATA[黄山市内风景1]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 26 Oct 2008 21:12:01 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1933</guid> 
<description>
<![CDATA[ 
	一次机会，能到安徽黄山来逛，虽然出去游玩的时间很少，但是也留下了一些有趣的印象，呵呵。<br /><br /><div align="center">宾馆窗户向外看，一条河+一座桥，风景还好<br /><img class="insertimage" src="../attachment.php?fid=834" border="0" /><br /><br />小桥近景，呵呵，河水很少，天气还不错<br /><img class="insertimage" src="../attachment.php?fid=835" border="0" /><br /><br />河边漫步<br /><img class="insertimage" src="../attachment.php?fid=836" border="0" /><br /><br /><img class="insertimage" src="../attachment.php?fid=837" border="0" /><br /><br />黄山市的老街，有不少古建筑，但也是商业气息浓郁呀：）<br /><img class="insertimage" src="../attachment.php?fid=838" border="0" /><br /><br />一种糖<br /><img class="insertimage" src="../attachment.php?fid=839" border="0" /><br /><br />还是吃得，呵呵<br /><img class="insertimage" src="../attachment.php?fid=840" border="0" /><br /><br />小猕猴桃，味道不错，就是吃起来很麻烦<br /><img class="insertimage" src="../attachment.php?fid=841" border="0" /><br /><br />仿古东东，觉得是给老外的，呵呵<br /><img class="insertimage" src="../attachment.php?fid=842" border="0" /><br /><br />门帘很特别，都有个布帘子，估计晚上就放下来了<br /><img class="insertimage" src="../attachment.php?fid=843" border="0" /><br /></div><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E9%25BB%2584%25E5%25B1%25B1" rel="tag">黄山</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2580%2581%25E8%25A1%2597" rel="tag">老街</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1932</link>
<title><![CDATA[做了就要认真做]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Tue, 21 Oct 2008 12:51:48 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1932</guid> 
<description>
<![CDATA[ 
	今天因为朋友有剩余的东大游泳馆的泳票，我有幸又&ldquo;莅临&rdquo;了东北大学游泳馆。可是折腾来折腾去，自己的水平还是初级+初级，索性将身子埋在水里锻炼肺不呼吸了，呵呵。才发现这也是个&ldquo;发呆&rdquo;的好方式<img src="../images/emot/grin.gif" border="0" /><br /><br />最近的事情很多，一堆一堆涌上来，自己常有想跑的感觉。比如今天的服务器用硬盘的采购，自己和两位同事也没有把价格讲下来，只是弄了4个免费USB键盘；因为这个被领导K了一下，后来领导出手砍下来40元/每块，键盘还是照送。自己习惯性的认为，是自己本身也不喜欢砍价，也不善于这个，给自己买东西都不怎么讲价的，能把硬盘买下来就是了。但是后来领导说了一句话，道出了我没砍下来的原因，&ldquo;因为我不认真&rdquo;。<br /><br />是呀，因为我不认真，因为我没有用心去要把这件事情做好，没有很好的调研价格和制定相应的询价和砍价方案，只是半推半就的要把事情完成就是了，没有认真对待这对于部门来说很重要的事情，也就是没有真心的把工作当成自己的事情。<br /><br />这是自己一贯的问题，不够认真，不够专心。总喜欢遍地开花，却很少能合理利用时间和精力。想想做了10件只做到20%的事情，真比不上做好100%的两件事情呀，虽然有的时候事情很多但是合理的排序和调配很重要，毕竟也是要一件事情一件事情的做，如果把时间和精力放在每个事情都做一点，最后的效果就是时间都浪费在&ldquo;切换&rdquo;的过程中了，时光也就白白流逝，而成绩却少的可怜。大学和工作这些年，这样的例子对于自己可真是很多。<br /><br />简单些，做好每一件在做的事情，认真对待要想的问题，不管未来的方向在哪里，这样的工作和生活理念是正确的，也是该保有和珍惜的^_^<br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%2583%25A1%25E6%2580%259D%25E4%25B9%25B1%25E6%2583%25B3" rel="tag">胡思乱想</a> , <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E8%25AE%25A4%25E7%259C%259F" rel="tag">认真</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1931</link>
<title><![CDATA[mysql查询表结构的命令]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[其他技术信息]]></category>
<pubDate>Sun, 19 Oct 2008 04:56:50 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1931</guid> 
<description>
<![CDATA[ 
	mysql 查看表结构的命令<br /><br />desc 表名;<br /><br />今天在给mysql添加数据的时候查的，呵呵。<br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=mysql" rel="tag">mysql</a>
]]>
</description>
</item><item>
<link>http://tianyuspace.freetcp.com//read.php?1930</link>
<title><![CDATA[索爱手机个人信息发送格式]]></title> 
<author>wangyuneu &lt;wangyuneu@hotmail.com&gt;</author>
<category><![CDATA[其他技术信息]]></category>
<pubDate>Mon, 13 Oct 2008 00:42:04 +0000</pubDate> 
<guid>http://tianyuspace.freetcp.com//read.php?1930</guid> 
<description>
<![CDATA[ 
	前几天给朋友发送我手机里的通讯录，发现对方无法识别。我的是索爱K750C，他的是联想手机，呵呵。但是有趣的是，能够收到详尽的通讯录数据代码，挺有趣的，就贴在网上分享一下。<br /><br />BEGIN:VCARD<br />VERSION:2.1<br />N;CHARSET=UTF-8;ENCODING=QUOTED- PRINTABLE:=E7=BA-A2=E5=8F=B6;<br />TEL;CELL:15940580184<br />X-IRMC-LUID:0002000000EF<br />END:VCARD<br /><br />编码是QUOTED- PRINTABLE，和电子邮件的一种编码差不多。<br />不同品牌的手机间有的时候能够识别，但是不是别的是大多数，也该统一一下。<br /><br /><br/>Tags - <a href="http://tianyuspace.freetcp.com//tag.php?tag=%25E6%2589%258B%25E6%259C%25BA" rel="tag">手机</a>
]]>
</description>
</item>
</channel>
</rss>