<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>cheungmine的专栏</title><link>http://blog.csdn.net/cheungmine/</link><description>千里马常有，而伯乐不常有!</description><dc:language>zh-CN</dc:language><lastUpdateTime>Wed, 27 Aug 2008 12:02:00 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>张亮</dc:creator><title>如何读取Oracle的BLOB字段里的文件</title><link>http://blog.csdn.net/cheungmine/archive/2008/08/27/2836925.aspx</link><pubDate>Wed, 27 Aug 2008 11:27:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/08/27/2836925.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2836925.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/08/27/2836925.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2836925.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2836925</trackback:ping><description>使用ORADBI读取存储在BLOB字段里的多个文件，并还原到指定的路径下。&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2836925.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>张亮</dc:creator><title>如何在oracle的blob字段里保存多个文件</title><link>http://blog.csdn.net/cheungmine/archive/2008/08/27/2836894.aspx</link><pubDate>Wed, 27 Aug 2008 11:19:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/08/27/2836894.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2836894.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/08/27/2836894.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2836894.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2836894</trackback:ping><description>Oracle的BLOB字段类型可以用来保存长2进制数据。但是通常读写BLOB字段数据的代码都是很罗嗦，非细心编码很容易出错。我把这个功能集成到我的OCI包装库（ORADBI）中。整个ORADBI是我在OCI基础上写的C语言API。从创作这个API到一直不断的更新维护，已经有1年多了。我也将一直维护下去，不断完善和添加新的功能。ORADBI是完全免费和完全开源的，使用者只要不声明为其版权所有，可以用它做任何事情。这是个直接利用OCI操作BLOB的例子。我相信，这是你能找到的最快捷的方法。&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2836894.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>张亮</dc:creator><title>神经网络: 计算简单的加法</title><link>http://blog.csdn.net/cheungmine/archive/2008/08/26/2833679.aspx</link><pubDate>Tue, 26 Aug 2008 15:54:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/08/26/2833679.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2833679.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/08/26/2833679.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2833679.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2833679</trackback:ping><description>神经网络当然不是用来计算简单的加法。比如用来影像识别。考虑一个数字化系统（注记识别）：16×16的灰度影像作为输入，共256个输入项，而输出一个注记值。用户在数字化的工作中，可以不断对网络进行训练。得到输出。最后，这个系统可以不依赖人而自动识别文字注记。
&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2833679.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>张亮</dc:creator><title>list.c - A linked list by C --- C语言实现的单向链表</title><link>http://blog.csdn.net/cheungmine/archive/2008/07/18/2675140.aspx</link><pubDate>Fri, 18 Jul 2008 23:51:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/07/18/2675140.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2675140.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/07/18/2675140.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2675140.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2675140</trackback:ping><description>我实现的C语言单向链表:单向链表很简单，可以存储任意类型的数据：整型、字符串或指针类型。但是，不要混存。除整型外，链表节点数据由调用者分配和负责释放，即调用者负责提供一个回调函数，当链表释放时，自动调用你提供的这个函数。记住：链表不分配任何用户的数据，仅分配和管理自己的私有数据，因此，分配和释放链表所存放的数据的工作必须由用户来完成。读者可以在测试代码中看到用例。&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2675140.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>张亮</dc:creator><title>RTree.c 最新源代码</title><link>http://blog.csdn.net/cheungmine/archive/2008/07/18/2675066.aspx</link><pubDate>Fri, 18 Jul 2008 23:35:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/07/18/2675066.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2675066.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/07/18/2675066.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2675066.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2675066</trackback:ping><description>RTree.c 最新源代码,它是线程安全的。&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2675066.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>张亮</dc:creator><title>Windows下如何使用BOOST C++库</title><link>http://blog.csdn.net/cheungmine/archive/2008/07/10/2635461.aspx</link><pubDate>Thu, 10 Jul 2008 19:44:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/07/10/2635461.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2635461.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/07/10/2635461.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2635461.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2635461</trackback:ping><description>在windows下使用boost c++库的说明:我主要介绍用RegEx和Signals这2个需要编译后才能使用的库.&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2635461.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>张亮</dc:creator><title>WebService无法连接Oracle</title><link>http://blog.csdn.net/cheungmine/archive/2008/07/09/2628427.aspx</link><pubDate>Wed, 09 Jul 2008 12:41:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/07/09/2628427.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2628427.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/07/09/2628427.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2628427.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2628427</trackback:ping><description>WebService无法连接Oracle10g的解决办法&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2628427.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>一滴朝露</dc:creator><title>RGB和HSL颜色转换</title><link>http://blog.csdn.net/cheungmine/archive/2008/06/26/2587231.aspx</link><pubDate>Thu, 26 Jun 2008 00:24:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/06/26/2587231.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2587231.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/06/26/2587231.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2587231.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2587231</trackback:ping><description>RGB颜色和HSL的相互转换的C代码。提供了一对函数：RGBtoHSL; HSLtoRGB。&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2587231.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>张亮</dc:creator><title>如何在WINDOWS下编译BOOST C++库</title><link>http://blog.csdn.net/cheungmine/archive/2008/06/25/2586557.aspx</link><pubDate>Wed, 25 Jun 2008 18:18:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/06/25/2586557.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2586557.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/06/25/2586557.aspx#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2586557.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2586557</trackback:ping><description>在WINDOWS下编译BOOST C++库&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2586557.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>一滴朝露</dc:creator><title>东进的语音卡编程：最简单的电话外呼程序</title><link>http://blog.csdn.net/cheungmine/archive/2008/06/23/2579869.aspx</link><pubDate>Mon, 23 Jun 2008 18:47:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/06/23/2579869.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2579869.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/06/23/2579869.aspx#Feedback</comments><slash:comments>4</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2579869.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2579869</trackback:ping><description>第1次使用东进的语音卡编程，我用的是D081A模拟语音卡。这个例子给入门的朋友作参考，它实现了一个最简单的外呼电话的功能。&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2579869.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>一滴朝露</dc:creator><title>基于Oracle OCI的数据访问C语言接口ORADBI</title><link>http://blog.csdn.net/cheungmine/archive/2008/04/01/2242096.aspx</link><pubDate>Tue, 01 Apr 2008 21:57:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/04/01/2242096.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2242096.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/04/01/2242096.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2242096.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2242096</trackback:ping><description>ORADBI是我在Oracle OCI（Oracle 调用接口）基础上开发的。根据Oracle公司的介绍：OCI是如此可靠，以至于Oracle数据库中的每一条SQL语句都通过OCI来执行。当应用程序开发人员需要面向Oracle数据库服务器的最强大的接口时，他们将调用 Oracle调用接口（OCI）。OCI提供了对所有Oracle数据库功能的最全面的访问。OCI API中包含了最新的性能、可伸缩性和安全性特性。
采用OCI的最大好处就是：它是最切近Oracle底层的技术，因此，效率是最高的。同时，它是跨平台的。因此，在我给出的ORADBI库，除了OCI之外，没有其他外部依赖，稍加改动，就可以移植到非Windows平台上或其他嵌入式平台。
&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2242096.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>一滴朝露</dc:creator><title>关于IE控件frameset导致GDI对象泄漏的问题</title><link>http://blog.csdn.net/cheungmine/archive/2008/03/29/2227697.aspx</link><pubDate>Sat, 29 Mar 2008 11:43:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2008/03/29/2227697.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/2227697.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2008/03/29/2227697.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/2227697.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2227697</trackback:ping><description>关于IE控件frameset导致GDI对象泄漏的问题&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/2227697.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>一滴朝露</dc:creator><title>RTree源代码——C语言实现</title><link>http://blog.csdn.net/cheungmine/archive/2007/11/22/1898129.aspx</link><pubDate>Thu, 22 Nov 2007 17:04:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2007/11/22/1898129.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/1898129.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2007/11/22/1898129.aspx#Feedback</comments><slash:comments>6</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/1898129.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1898129</trackback:ping><description>RTree是BTree向多维空间发展的另一种形式。这些算法主要是GUTTMAN提出来的。我根据开源的实现，把它整理出来，方便大家使用。&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/1898129.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>一滴朝露</dc:creator><title>C语言实现一个四叉树quadtree</title><link>http://blog.csdn.net/cheungmine/archive/2007/11/20/1894304.aspx</link><pubDate>Tue, 20 Nov 2007 11:22:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2007/11/20/1894304.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/1894304.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2007/11/20/1894304.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/1894304.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1894304</trackback:ping><description> 用C语言实现一个2维四叉树quadtree，具有一定的实际意义。你可以把几何图形的索引（用long型的id标识）放到这个树中（根据最小边界矩形）。quadtree可以用来快速区域查找图形，虽然不是那么精确，但是毕竟没有漏掉的。虽然quadtree的效率不如RTree？但是RTree的实现毕竟复杂了些，我会尽快收集整理出RTree的代码。RTree确实比QuadTree好的多？（起码RTree很时髦啊！）&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/1894304.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>一滴朝露</dc:creator><title>C语言实现一个简单的单向链表list</title><link>http://blog.csdn.net/cheungmine/archive/2007/11/20/1894229.aspx</link><pubDate>Tue, 20 Nov 2007 10:44:00 GMT</pubDate><guid>http://blog.csdn.net/cheungmine/archive/2007/11/20/1894229.aspx</guid><wfw:comment>http://blog.csdn.net/cheungmine/comments/1894229.aspx</wfw:comment><comments>http://blog.csdn.net/cheungmine/archive/2007/11/20/1894229.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/cheungmine/comments/commentRss/1894229.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1894229</trackback:ping><description>用C语言实现一个简单实用的单向链表list，具有一定的实际意义。尤其我们不想使用STL里面的list类的时候。我实现的这个list，结点存储任何调用者分配的任意类型的数据（void*）。这个list适用于一些简单的场合，消耗极少的资源。&lt;img src ="http://blog.csdn.net/cheungmine/aggbug/1894229.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>