<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/yangbo_hr" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/yangbo_hr" type="application/rss+xml"></fs:self_link><lastBuildDate>Sat, 30 May 2009 01:48:00 GMT</lastBuildDate><title>杨波的专栏</title><link>http://blog.csdn.net/yangbo_hr/</link><item><title>Gentoo使用经验</title><link>http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225189.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/4225189.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/4225189.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4225189</trackback:ping><description>两年前一个叫张文明的Linux高手给我推荐了Gentoo，说开发人员应该用用，于是我就很高兴的使用上了Gentoo。其实，Gentoo的入门和掌握比Ubuntu都要困难，不过随着不得不想办法解决一些问题，我发现其实使用Gentoo除了比Ubuntu费劲以外，其实也还是有好处的，就是可以在解决问题的同时增长很多linux的知识。下面是我使用gentoo的一些经验，写出来一是备忘，二是希望能和同好者分享。~x86看到这个标志的时候，通常是你无法安装一些包的时候，因为~x86表示的是一个包属于“测试分支，x86是机器架构”。Gentoo中有软件分支的概念，一个软件分支就是有相同属性的一组软件包，软件分支有“稳定类分支”和“测试类分支”。一般默认安装gentoo后就是在“稳定类分支”上，这上面的软件包都是经过严格测试后的软件，而测试类分支上的软件是可以使用但是还没有经过完全测试的软件，一些较新的软件都会先标记为测试类分支，测试OK后才标记为稳定分支。当我们需要使用测试分支上的软件包时，我们可以有两种办法告诉系统，一是在/etc/make.conf中添加一个变量ACCEPT_KEYWORDS=&quot;&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/4225189.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/225348089/yangbo_hr/csdn.net/s.gif?r=http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225189.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348089/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348089/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 30 May 2009 09:48:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225189.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225189.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225189.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348089/1059751</fs:itemid></item><item><title>ruby quiz learned - Solitaire Cipher</title><link>http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225187.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/4225187.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/4225187.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4225187</trackback:ping><description>记录从Ruby Quiz练习中学习到的技术。Quiz 1 － Solitaire Cipher 用时近4小时. 代码存放在Github。预处理的函数可以用一个形象的英文动词sanitize来命名，sanitize意为“清洁”，就像本函数是要把输入参数清洁化为大写字母，并且只保留字母。抽象出Deck对象。使用 return 语句更易读。五个字母分为一组，用空格分割，最后一组不足五个的话用X补全：我的实现：
   def every_5 msg
      splited = &quot;&quot;
      msg.chars.each_with_index do |c, idx|
         splited = 4 and (idx+1)%5==0
      end
      splited.upcase
   end
   def preprocess orig_msg
      filterd_msg = orig_msg.chars.reject do |c|
         c =~ /[^a-zA-Z]/
      end
      msg = filterd_msg.to&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/4225187.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/225348090/yangbo_hr/csdn.net/s.gif?r=http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225187.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348090/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348090/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 30 May 2009 09:47:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225187.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225187.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225187.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348090/1059751</fs:itemid></item><item><title>Introspect in ruby</title><link>http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225185.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/4225185.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/4225185.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4225185</trackback:ping><description>Method objecttrane = &quot;John Coltrane&quot;.method(:length)trane.callUnbound methodunbound_length = String.instance_method(:length)bound_length = unbound_length.bind(str)bound_length.calleval, module_eval, class_eval, instance_evaltrane = %q{&quot;John Coltrane&quot;.length}eval tranewith context(binding)def get_a_binding  val = 123  bindingendval = &quot;cat&quot;the_binding = get_a_bindingeval(&quot;val&quot;, the_binding)eval(&quot;val&quot;) System hookmodule Kernel  alias_method :old_system, :systemclass Class  alias_method :old_new, :n&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/4225185.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/225348091/yangbo_hr/csdn.net/s.gif?r=http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225185.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348091/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348091/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 30 May 2009 09:46:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225185.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225185.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2009/05/30/4225185.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348091/1059751</fs:itemid></item><item><title>用synce配置linux(gentoo)和HTC KaiserII(Dopoda)链接的方法</title><link>http://blog.csdn.net/yangbo_hr/archive/2009/05/28/4222878.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/4222878.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/4222878.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4222878</trackback:ping><description>我的操作系统：Gentoo linux，kernel 2.6.24我的手机：HTC Kaiser，操作系统windows mobile6.1按照gentoo的文档进行kernel配置，完成后需要按照下面的要点进行设置。配置好kernel，装载驱动模块ipaq。lsmod查看有没有。确保PDA的连接设置中去掉“高级网络功能”选项。Settings -&gt; Connections -&gt; USB to PC and disable advanced network functionality on your pda. （如果使用的是rndis模式链接，那么这个选现就需要选上，下面会提到rndis连接模式）确认创建了串口设备ttyUSB0。tail -f message即可到synce的网站下载synce并且按照文档进行安装。我用的是gentoo，所以比较麻烦，需要用layman来配置gentoo的overlay。第一次使用layman的话，执行echo &quot;source /usr/local/portage/layman/make.conf&quot; &gt;&gt; /etc/make.conf添加synce的o&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/4222878.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/225348092/yangbo_hr/csdn.net/s.gif?r=http://blog.csdn.net/yangbo_hr/archive/2009/05/28/4222878.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348092/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348092/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 29 May 2009 04:25:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2009/05/28/4222878.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2009/05/28/4222878.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2009/05/28/4222878.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348092/1059751</fs:itemid></item><item><title>在firefox中写博客</title><link>http://blog.csdn.net/yangbo_hr/archive/2009/05/24/4212581.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/4212581.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/4212581.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4212581</trackback:ping><description>使用Firefox的一个博客编辑插件scribefire可以很方便地一边浏览网页一边编写博客，实现类似于Windows Live Writer的功能。首先在firefox中安装此插件，然后在“博客”标签页中点击“添加帐号“按钮，就可以设置你的博客帐号了。 设置csdn博客的方法用户网址填写：http://blog.csdn.net/[用户名]API类型： metaweblog api接口地址：http://blog.csdn.net/[用户名]/services/metablogapi.aspx在编辑器标签页中编写博客内容，编写完成后点击“发布”按钮就完成了。不过很可惜的是，ScribeFire不能够从CSDN中取回已有的博客内容，所以无法修改已经发布的博客内容，只好发布一篇新的，然后把旧的删除掉。&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/4212581.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/225348093/yangbo_hr/csdn.net/s.gif?r=http://blog.csdn.net/yangbo_hr/archive/2009/05/24/4212581.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348093/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348093/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 25 May 2009 00:43:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2009/05/24/4212581.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2009/05/24/4212581.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2009/05/24/4212581.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348093/1059751</fs:itemid></item><item><title>一分钟设置Virtualbox桥接模式</title><link>http://blog.csdn.net/yangbo_hr/archive/2009/05/23/4210008.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/4210008.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/4210008.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4210008</trackback:ping><description>在windows的“管理网络”中选择两个网络设备，然后右键选择“桥接”，创建一个网桥。我的叫MiniBridge Port在virtualbox的网络类型中选择“桥接”模式，选择创建的网桥名称。如果你用的是DHCP，那么。。。就没有第三步了！&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/4210008.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/225348094/yangbo_hr/csdn.net/s.gif?r=http://blog.csdn.net/yangbo_hr/archive/2009/05/23/4210008.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348094/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348094/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 23 May 2009 08:28:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2009/05/23/4210008.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2009/05/23/4210008.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2009/05/23/4210008.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348094/1059751</fs:itemid></item><item><title>手机软件开发入门 - 中国象棋（2）090311</title><link>http://blog.csdn.net/yangbo_hr/archive/2009/03/11/3982031.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/3982031.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/3982031.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3982031</trackback:ping><description>认识 windows mobile 的窗口部件&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/3982031.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348095/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348095/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 12 Mar 2009 05:54:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2009/03/11/3982031.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2009/03/11/3982031.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2009/03/11/3982031.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348095/1059751</fs:itemid></item><item><title>手机软件开发入门 - 中国象棋（1）090308</title><link>http://blog.csdn.net/yangbo_hr/archive/2009/03/08/3968944.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/3968944.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/3968944.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3968944</trackback:ping><description>最近迷恋起中国想起来了。我象棋下得一般，但是总感觉人生如棋，每一个决定都会影响将来局势的发展。深思熟虑者，后势就比较占优。沉着应战，方显人生力量。刚好，2月份的时候把我的一部使用了快两年的三星普通手机换成了一部HTC的P4550智能手机，闲来无事就想装些游戏，于是下载了coolchix一款老外开发的中国象棋游戏，应该说棋力不是很高，但是我还是输多胜少，不太甘心，于是下载了楚汉棋缘研究基本杀法和棋谱，感觉很有帮助。&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/3968944.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348096/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348096/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 08 Mar 2009 22:47:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2009/03/08/3968944.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2009/03/08/3968944.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2009/03/08/3968944.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348096/1059751</fs:itemid></item><item><title>Prawn: 纯Ruby PDF 生成器程序库</title><link>http://blog.csdn.net/yangbo_hr/archive/2008/08/05/2768882.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/2768882.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/2768882.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2768882</trackback:ping><description>ruby pdf 生成器&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/2768882.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348097/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348097/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 05 Aug 2008 17:48:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2008/08/05/2768882.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2008/08/05/2768882.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2008/08/05/2768882.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348097/1059751</fs:itemid></item><item><title>取整函数领悟</title><link>http://blog.csdn.net/yangbo_hr/archive/2008/07/07/2619416.aspx</link><wfw:comment>http://blog.csdn.net/yangbo_hr/comments/2619416.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yangbo_hr/comments/commentRss/2619416.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2619416</trackback:ping><description>取整函数简单说就是取一个数的整数部分。  它分为向下取整和向上取整两种类型。&lt;br /&gt;向下取整的数学符号是：只有下端弯曲的方括号&lt;br /&gt;&lt;br /&gt;它表示取去掉小数部分的整数，也就是小于x的最大整数，在计算机程序语言中，通常用函数 floor(x) 表示。    如：floor(3.14) = 3，floor(-3.14) = -4.     可以这样理解“floor表示地板，就是向下取整的意思”&lt;br /&gt;向上取整的数学符号是：只有上端弯曲的方括号   &lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/yangbo_hr/aggbug/2619416.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/yangbo_hr/225348098/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/yangbo_hr/225348098/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 07 Jul 2008 08:10:00 +0800</pubDate><author>疯狂的石头</author><comments>http://blog.csdn.net/yangbo_hr/archive/2008/07/07/2619416.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yangbo_hr/archive/2008/07/07/2619416.aspx</guid><dc:creator>疯狂的石头</dc:creator><fs:srclink>http://blog.csdn.net/yangbo_hr/archive/2008/07/07/2619416.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yangbo_hr/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yangbo_hr/~1059751/225348098/1059751</fs:itemid></item></channel></rss>