<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2608276360617747707</id><updated>2024-10-18T00:52:03.071-07:00</updated><category term="3D Sample"/><category term="Avoiding Unnecessary Object Construction (C++)"/><category term="Converting Numbers to Strings C++"/><category term="Nested Functions in C++"/><category term="Paint"/><category term="chat program"/><title type='text'>Free C++  and  Visual Basic Code</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>13</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-512331623551494021</id><published>2009-03-29T10:28:00.000-07:00</published><updated>2009-03-29T10:33:33.428-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Avoiding Unnecessary Object Construction (C++)"/><title type='text'>Avoiding Unnecessary Object Construction (C++)</title><content type='html'>&lt;span style=&quot;color: rgb(204, 51, 204);&quot;&gt;Avoiding Unnecessary Object Construction&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(204, 51, 204);&quot;&gt;One way to avoid unnecessary object construction is to use a reference instead of an object to store the unnamed temporary object returned by value.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(204, 51, 204);&quot;&gt;This tip references both Scott Meyers&#39; Effective C++ Item 23 (&quot;Don&#39;t try to return a reference when you must return an object.&quot;) and Item 20 (&quot;Facilitate the return value optimization.&quot;).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Here&#39;s the code:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;const Rational&amp;amp; operator*(const Rational&amp;amp; lhs, const Rational&amp;amp; rhs)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;   return Rational(lhs.n * rhs.n, lhs.d * rhs.d);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Rational a(1, 2);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Rational b(3, 5);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Rational c = a*b; // This incurs an additional object construction.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;[const] Rational&amp;amp; c = a*b;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;// A better way of doing it. Here we just give the returned temporary object a name &#39;c&#39;.&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/512331623551494021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/512331623551494021' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/512331623551494021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/512331623551494021'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2009/03/avoiding-unnecessary-object.html' title='Avoiding Unnecessary Object Construction (C++)'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-5379025681082882743</id><published>2009-03-29T10:26:00.000-07:00</published><updated>2009-03-29T10:36:37.135-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Converting Numbers to Strings C++"/><title type='text'>Converting Numbers to Strings C++</title><content type='html'>&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;Converting Numbers to Strings&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;Instead of writing your own function to convert an integer or float to a string, just use the C++ class stringstream (in the sstream header).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;In C++:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;#include &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;#include &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;#include &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;using namespace std;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;void itoa(int num, string &amp;amp; result)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;   stringstream converter;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;   converter &lt;&lt; result=&quot; converter.str();&quot;&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/5379025681082882743/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/5379025681082882743' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/5379025681082882743'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/5379025681082882743'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2009/03/converting-numbers-to-strings-c.html' title='Converting Numbers to Strings C++'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-8161530384656907029</id><published>2009-03-29T10:25:00.001-07:00</published><updated>2009-03-29T10:37:34.665-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Nested Functions in C++"/><title type='text'>Nested Functions in C++</title><content type='html'>&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;Nested Functions in C++&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;Although C++ does not allow nested function declaration, you can simulate it using a structure with a static function:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;void outer()&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt; static int v1 = 5;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt; int v2 = 5;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt; struct thru&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt; {&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;  static void inner()&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;  {&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 51, 153);&quot;&gt;   std::cout &lt;&lt;&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;The inner() function will not have access to local variables of outer() (the line that is commented out in the code above will cause an error, for example); however, it will be able to access the local static variable v1 in outer().&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/8161530384656907029/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/8161530384656907029' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/8161530384656907029'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/8161530384656907029'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2009/03/nested-functions-in-c.html' title='Nested Functions in C++'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-704871693898638761</id><published>2009-03-29T10:14:00.000-07:00</published><updated>2009-03-29T10:39:38.726-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="3D Sample"/><title type='text'>3D Sample Applications</title><content type='html'>&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;Version Compatibility:    &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;Visual Basic 5 Visual Basic 6&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;More information: &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;This .zip file contains three applications which illustrate the basics of rendering 3D images using VB&#39;s graphics methods. A readme file explaining the underlying logic is included.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;br /&gt;&lt;/td&gt;&lt;td valign=&quot;top&quot;&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;This code has been viewed &lt;b&gt;140303&lt;/b&gt; times.&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnQfcR2KS5Cybi8WJB8wcRBegl-_w5SaR8_OaQVTHf3yO9XpjseRSVZxOTQatPzM9blpxrT2JZdCjkKJHW6nZtgg7-XGs3itf2oSsDltLQBlAM9gT_PnGJd5nw81FGWV_rA358RGLkpZF7/s1600-h/3d2.jpg&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 368px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnQfcR2KS5Cybi8WJB8wcRBegl-_w5SaR8_OaQVTHf3yO9XpjseRSVZxOTQatPzM9blpxrT2JZdCjkKJHW6nZtgg7-XGs3itf2oSsDltLQBlAM9gT_PnGJd5nw81FGWV_rA358RGLkpZF7/s400/3d2.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5318660255491250418&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Instructions: &lt;/b&gt;Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.freevbcode.com/code/3Dprogramming.zip&quot;&gt;code/3Dprogramming.zip&lt;/a&gt;     &lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/704871693898638761/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/704871693898638761' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/704871693898638761'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/704871693898638761'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2009/03/3d-sample-applications.html' title='3D Sample Applications'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnQfcR2KS5Cybi8WJB8wcRBegl-_w5SaR8_OaQVTHf3yO9XpjseRSVZxOTQatPzM9blpxrT2JZdCjkKJHW6nZtgg7-XGs3itf2oSsDltLQBlAM9gT_PnGJd5nw81FGWV_rA358RGLkpZF7/s72-c/3d2.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-3474183395635866926</id><published>2009-03-29T10:06:00.000-07:00</published><updated>2009-03-29T10:13:56.123-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Paint"/><title type='text'>EPaint - Complete Photo/Image Editor</title><content type='html'>&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;b&gt;Version Compatibility:&lt;/b&gt;&lt;/td&gt;    &lt;td valign=&quot;top&quot;&gt; &lt;i&gt;&lt;b&gt; Visual Basic 6&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;   &lt;p&gt; &lt;b&gt;More information: &lt;/b&gt;EPaint is a complete photo/image editing program with a lot of great tools and the possibility for making your own filters on the fly.&lt;/p&gt;&lt;p&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgD8S2Ktjpd2mhp7eQDHg64ayClwh8oqmDFE2kBkMsZzbAmhS3MbKICSDrMzOZhRe_j0OjiqKv2lDZfAnXEs7k8phdeV2SOZMInJQ3jVj7R5DZdS4WCiUEHDG2Z_cyUJJ6d3-rTkOa8vT7Z/s1600-h/29-3-2552+0-10-56.jpg&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 361px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgD8S2Ktjpd2mhp7eQDHg64ayClwh8oqmDFE2kBkMsZzbAmhS3MbKICSDrMzOZhRe_j0OjiqKv2lDZfAnXEs7k8phdeV2SOZMInJQ3jVj7R5DZdS4WCiUEHDG2Z_cyUJJ6d3-rTkOa8vT7Z/s400/29-3-2552+0-10-56.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5318659020406442194&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEzVBHHa2As43mFUUuybWqrXQhwliqLMRUabYD6hxK2aXzuaIQFSdpNvC5g2D_wvG5Z4v-3-8hHSiTYmPy6pNFBxBrNBu-P0q9wmSoEPlVjQWlNkoELcAW4sDseWVr5WGaMWeAqhghJoee/s1600-h/2.jpg&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 240px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEzVBHHa2As43mFUUuybWqrXQhwliqLMRUabYD6hxK2aXzuaIQFSdpNvC5g2D_wvG5Z4v-3-8hHSiTYmPy6pNFBxBrNBu-P0q9wmSoEPlVjQWlNkoELcAW4sDseWVr5WGaMWeAqhghJoee/s400/2.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5318659036973989906&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;This code has been viewed &lt;b&gt;72702&lt;/b&gt; times.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Instructions: &lt;/b&gt;Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.freevbcode.com/source/epaint.zip&quot;&gt;source/epaint.zip&lt;/a&gt;     &lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/3474183395635866926/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/3474183395635866926' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/3474183395635866926'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/3474183395635866926'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2009/03/epaint-complete-photoimage-editor.html' title='EPaint - Complete Photo/Image Editor'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgD8S2Ktjpd2mhp7eQDHg64ayClwh8oqmDFE2kBkMsZzbAmhS3MbKICSDrMzOZhRe_j0OjiqKv2lDZfAnXEs7k8phdeV2SOZMInJQ3jVj7R5DZdS4WCiUEHDG2Z_cyUJJ6d3-rTkOa8vT7Z/s72-c/29-3-2552+0-10-56.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-3132996475852953850</id><published>2008-09-02T07:41:00.000-07:00</published><updated>2009-03-29T10:04:33.037-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="chat program"/><title type='text'>A simple chat program</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjxHMj8RCB68KsKMsH21Lhp21d_IqGdU6Mn611pCOPMRT2Q-QDhbjJzVONsFxzPd_CD8FewHJHYNIfw6_TrRq-3oejUJZxP8aAUFhiX8l0wTj3eb99opLTtjZeXKko1Ls3-gGTA83gqZS3E/s1600-h/1.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 240px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjxHMj8RCB68KsKMsH21Lhp21d_IqGdU6Mn611pCOPMRT2Q-QDhbjJzVONsFxzPd_CD8FewHJHYNIfw6_TrRq-3oejUJZxP8aAUFhiX8l0wTj3eb99opLTtjZeXKko1Ls3-gGTA83gqZS3E/s400/1.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5318656578045599874&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;strong&gt;Version Compatibility: Visual Basic 6&lt;/strong&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhx2w1Gu5f2gB6RDq-Evv2MFKDnJRFIB9cgFpUiPoDdtq4FDqgSxG63VNpOFtfRFerd-si9vz1-AZ95o8vyANwohA_n6vQIwxSdOOt0I7MsHqSJV3F9yf_E6vwM6MYuCdfUBqoQ-7xRqIjI/s1600-h/2.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 241px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhx2w1Gu5f2gB6RDq-Evv2MFKDnJRFIB9cgFpUiPoDdtq4FDqgSxG63VNpOFtfRFerd-si9vz1-AZ95o8vyANwohA_n6vQIwxSdOOt0I7MsHqSJV3F9yf_E6vwM6MYuCdfUBqoQ-7xRqIjI/s400/2.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5318656595953428882&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;More information: This is an application for creating an IRC chat server. Very easy to use. Simply open the Visual Basic Project file (cab_irc.vbp), and run the project. Be sure to click enter at the splash screen.&lt;br /&gt;&lt;br /&gt;This code has been viewed 107610 times.&lt;br /&gt;&lt;br /&gt;Instructions: Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.freevbcode.com/Source/0505/Cab_IRC_Ex.zip&quot;&gt;Download&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/3132996475852953850/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/3132996475852953850' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/3132996475852953850'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/3132996475852953850'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2008/09/simple-chat-program.html' title='A simple chat program'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjxHMj8RCB68KsKMsH21Lhp21d_IqGdU6Mn611pCOPMRT2Q-QDhbjJzVONsFxzPd_CD8FewHJHYNIfw6_TrRq-3oejUJZxP8aAUFhiX8l0wTj3eb99opLTtjZeXKko1Ls3-gGTA83gqZS3E/s72-c/1.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-5295335298784041587</id><published>2007-11-18T07:27:00.000-08:00</published><updated>2008-09-02T07:40:48.427-07:00</updated><title type='text'>Add a Progress Bar and Other Features To Your PPT Presentation</title><content type='html'>More information: PPT-Pixy is an add-in for MS PowerPoint that aims at dealing with some of the missing features of PowerPoint. The code, a ready-to-use add-in (PPT_Pixy_v110.ppa) and the documentation in PDF format is included in the download. PPT-Pixy offers 4 functionalities: Automatic creation of a slide progress indicator, add page numbers x/X that do not include backup slides, easy to use and precise offset and positioning of objects and easy to use sizing of objects.&lt;br /&gt;&lt;br /&gt;Instructions: Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.freevbcode.com/source/0806/ppt-pixy_v_110.zip&quot;&gt;Download code&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/5295335298784041587/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/5295335298784041587' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/5295335298784041587'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/5295335298784041587'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2007/11/add-progress-bar-and-other-features-to.html' title='Add a Progress Bar and Other Features To Your PPT Presentation'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-8100000939978075281</id><published>2007-11-08T22:38:00.001-08:00</published><updated>2007-11-08T22:38:55.429-08:00</updated><title type='text'>Editable ASP Events Calendar</title><content type='html'>&lt;strong&gt;Author: &lt;/strong&gt;Intelligent Solutions Inc. (Featured Developer)&lt;br /&gt;&lt;strong&gt;Category:&lt;/strong&gt; ASP, HTML, and XML&lt;br /&gt;&lt;strong&gt;Type:&lt;/strong&gt; Applications&lt;br /&gt;&lt;strong&gt;Difficulty:&lt;/strong&gt; Intermediate&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Version Compatibility:&lt;/strong&gt;ASP  &lt;br /&gt;&lt;br /&gt;More information: This ASP application displays user-added events within a navigatable calendar. Installation and usage instructions are included within a readme.txt file.&lt;br /&gt;&lt;br /&gt;Instructions: Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;br /&gt;&lt;a href=&quot;http://www.freevbcode.com/source/ASP_Calendar.zip&quot;&gt;source/ASP_Calendar.zip&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/8100000939978075281/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/8100000939978075281' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/8100000939978075281'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/8100000939978075281'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2007/11/editable-asp-events-calendar.html' title='Editable ASP Events Calendar'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-5771868104173420445</id><published>2007-11-06T13:42:00.001-08:00</published><updated>2007-11-06T13:42:41.995-08:00</updated><title type='text'>Create a Page-Through ResultSet using Frames</title><content type='html'>&lt;strong&gt;Author:&lt;/strong&gt; Anonymous&lt;br /&gt;&lt;strong&gt;Category:&lt;/strong&gt; ASP, HTML, and XML&lt;br /&gt;&lt;strong&gt;Type:&lt;/strong&gt; Applications&lt;br /&gt;&lt;strong&gt;Difficulty:&lt;/strong&gt; Intermediate&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Version Compatibility:&lt;/strong&gt;ASP  &lt;br /&gt;More information: This application demonstrates how to create a page-through result set on a web page using frames. The records are displayed in the main frame and the status (current page, total pages) are displayed in the bottom frame.&lt;br /&gt;&lt;br /&gt;The application uses ASP, client-side VB Script, and DHTML to accomplish this, so it is a good demonstration of all these technologies.&lt;br /&gt;IE 4.0 or above is required.&lt;br /&gt;&lt;br /&gt;Instructions: Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;br /&gt;&lt;a href=&quot;http://www.freevbcode.com/code/ASPFrameDB1.zip&quot;&gt;code/ASPFrameDB1.zip&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/5771868104173420445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/5771868104173420445' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/5771868104173420445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/5771868104173420445'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2007/11/create-page-through-resultset-using.html' title='Create a Page-Through ResultSet using Frames'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-3966644403377020875</id><published>2007-11-06T13:38:00.001-08:00</published><updated>2007-11-06T13:38:25.284-08:00</updated><title type='text'>Complete Visual Basic Web Site</title><content type='html'>&lt;strong&gt;Author:&lt;/strong&gt; Anonymous&lt;br /&gt;&lt;strong&gt;Category:&lt;/strong&gt; ASP, HTML, and XML&lt;br /&gt;&lt;strong&gt;Type:&lt;/strong&gt; Applications&lt;br /&gt;&lt;strong&gt;Difficulty:&lt;/strong&gt; Intermediate&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Version Compatibility:&lt;/strong&gt;ASP &lt;br /&gt;&lt;br /&gt;More information: This is a complete web site, devoted to Visual Basic, ready to run out of the box. It includes sample code, articles, and links sections, and a feedback and search feature.&lt;br /&gt;&lt;br /&gt;Instructions: Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;br /&gt;&lt;a href=&quot;http://www.freevbcode.com/code/ASPHercules.zip&quot;&gt;code/ASPHercules.zip&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/3966644403377020875/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/3966644403377020875' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/3966644403377020875'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/3966644403377020875'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2007/11/complete-visual-basic-web-site.html' title='Complete Visual Basic Web Site'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-4062558945427023225</id><published>2007-10-31T11:06:00.000-07:00</published><updated>2007-10-31T11:06:26.125-07:00</updated><title type='text'>An XML-COM+ replacement for the ASP Session object</title><content type='html'>&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;strong&gt;Author:&lt;/strong&gt;Sebastian Odin Smith&lt;br /&gt;&lt;strong&gt;Category:&lt;/strong&gt;ASP, HTML, and XML&lt;br /&gt;&lt;strong&gt;Type:&lt;/strong&gt;Classes&lt;br /&gt;&lt;strong&gt;Difficulty:&lt;/strong&gt;Advanced &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;strong&gt;Version Compatibility:&lt;/strong&gt;Visual Basic 5   Visual Basic 6   &lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;p&gt;&lt;br /&gt;More information: In order to maintain client session state within a web application that is hosted in a server farm environment a method of storing state must be designed and implemented. Within a Microsoft environment, session state can be stored in a number of ways, each with it&#39;s own pros and cons. &lt;/p&gt;&lt;p&gt;The use of ASP Session variables is the easiest to use, but the least scalable. Querystring and form information are the most scalable, but they can be difficult to use and are totally unsecured. In order to find a compromise between the available session persistent methods, the xmlSession component was created. &lt;/p&gt;&lt;p&gt;This component will provide the web developer with method to easily maintain session state without the scalability problems associated with traditional session variables. All &quot;session&quot; information is stored in a centrally located data store (file or database) that can be accessed by any server in the farm. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;Notes: Windows 2000 and version 3.0 or higher of the Microsoft&#39;s XML object model is required. Complete documentation is included. There is also a test vb project and and project group (.vbg) included in the test directory. Running the test project and stepping through the code will give you an idea of what the module does.&lt;br /&gt;&lt;br /&gt;Instructions: Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;br /&gt;&lt;/span&gt;&lt;a href=&quot;http://www.freevbcode.com/code/xmlSession.zip&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;code/xmlSession.zip&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/4062558945427023225/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/4062558945427023225' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/4062558945427023225'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/4062558945427023225'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2007/10/xml-com-replacement-for-asp-session.html' title='An XML-COM+ replacement for the ASP Session object'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-4238190552461808396</id><published>2007-10-31T10:37:00.000-07:00</published><updated>2007-10-31T10:37:15.999-07:00</updated><title type='text'>ADO Access 2000 VB Code Generator</title><content type='html'>&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;strong&gt;Author:&lt;/strong&gt; Carlos Vara &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;strong&gt;Category:&lt;/strong&gt; Database &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;strong&gt;Type:&lt;/strong&gt; Applications &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;strong&gt;Difficulty:&lt;/strong&gt; Intermediate&lt;br /&gt;&lt;strong&gt;Version Compatibility:&lt;/strong&gt; Visual Basic 5 Visual Basic 6 &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;br /&gt;&lt;strong&gt;More information:&lt;/strong&gt; this utilitie generate code that you can use inside your apps to create an Access 2000 Database With ADO. You select the database and it generates the code to create a database with the same name and structure.&lt;br /&gt;This code has been viewed 166390 times.&lt;br /&gt;&lt;strong&gt;Instructions:&lt;/strong&gt; Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;/span&gt;&lt;br /&gt;&lt;a href=&quot;http://www.freevbcode.com/source/ADOCodeGen.zip&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;source/ADOCodeGen.zip&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/4238190552461808396/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/4238190552461808396' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/4238190552461808396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/4238190552461808396'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2007/10/ado-access-2000-vb-code-generator.html' title='ADO Access 2000 VB Code Generator'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2608276360617747707.post-6009283885750969642</id><published>2007-10-31T10:15:00.002-07:00</published><updated>2007-10-31T10:15:35.653-07:00</updated><title type='text'>ADO Utilities Class Version 2.0</title><content type='html'>&lt;span style=&quot;font-size:85%;&quot;&gt;Author:&lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Brian Gillham&lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;(Featured Developer)&lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;br /&gt;Category:&lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Database&lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;br /&gt;Type:&lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Classes&lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;br /&gt;Difficulty:&lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Intermediate&lt;/span&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;br /&gt;Version Compatibility:Visual Basic 6   &lt;/span&gt;&lt;br /&gt;&lt;p&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;br /&gt;More information: This class encapsulates many routine tasks in ADO programming, which reduces the tedium and increases the reusability of your code. For example, if you pass it a valid connection string, it will automatically set up a connection, if you pass it a valid SQL string, it will return a recordset, and so on. It includes a function that returns a shaped (parent-child) recordset, without you having to deal with writing the complex SQL that is required for shaped recordsets.&lt;br /&gt;Version 2.0, added 06/06/02, incorporates the SMARTSql class on this site and also adds improvements such as automatic selection of cursors. There is a sample project; you may have to modify the connection string that is included as a constant to get it the sample to work.&lt;br /&gt;This code has been viewed 153273 times.&lt;br /&gt;Instructions: Click the link below to download the code. Select &#39;Save&#39; from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.&lt;br /&gt;&lt;/span&gt;&lt;a href=&quot;http://www.freevbcode.com/source/ADOUtils.zip&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;source/ADOUtils.zip&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://freesource4u.blogspot.com/feeds/6009283885750969642/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/2608276360617747707/6009283885750969642' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/6009283885750969642'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2608276360617747707/posts/default/6009283885750969642'/><link rel='alternate' type='text/html' href='http://freesource4u.blogspot.com/2007/10/ado-utilities-class-version-20.html' title='ADO Utilities Class Version 2.0'/><author><name>maruko</name><uri>http://www.blogger.com/profile/03203956285234343772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>