<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DU8GRXg8fyp7ImA9WhRRFE4.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011</id><updated>2011-11-28T06:50:24.677+07:00</updated><title>iseng's tutorial and tools</title><subtitle type="html">contains my tutorial when I have "idle hands". Also contains some of my works</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://asugixtutorial.blogspot.com/" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/IsengsTutorial" /><feedburner:info uri="isengstutorial" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;DEQGQn09eCp7ImA9Wx5TE04.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-665653328834289044</id><published>2010-07-28T23:58:00.000+07:00</published><updated>2010-07-28T23:58:43.360+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-28T23:58:43.360+07:00</app:edited><title>how to transfer 2 byte data</title><summary>Sometimes you want to send 2 byte data or more. But we all know that many transfer medium like serial, I2C, CAN bus, bluetooth, etc; only allows use 1 byte data transfer only. So how to send integer value into byte medium? One way is converting into a sequence of character. Another way is splitting the data per bytes. For example, sending integer16 into byteHi and byteLo. It may easy if using </summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/665653328834289044/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=665653328834289044" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/665653328834289044?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/665653328834289044?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/R3Qz4z01L0E/how-to-transfer-2-byte-data.html" title="how to transfer 2 byte data" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_f4x7MFMYEJI/TFBVxAqXPLI/AAAAAAAAAMs/obeTbBp-Gik/s72-c/mem+map+c+sharp.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2010/07/how-to-transfer-2-byte-data.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQFQ3czeip7ImA9WxFaFk4.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-4575454666088972119</id><published>2010-07-20T20:58:00.000+07:00</published><updated>2010-07-20T20:58:32.982+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-20T20:58:32.982+07:00</app:edited><title>how to trap errors in firmware</title><summary>Programming a microcontroller sometimes makes you frustrated. Its because it has errors which we don't know where. So these is a little example:

-----------
for(;;)
{
   valueA = functionA();
   valueB = functionB();
   valueC = functionC();
}
------------ but my microcontroller seems not work??
Lets create a trap using leds attached on portA
-------------- 
//for(;;)//{ //just make sure this </summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/4575454666088972119/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=4575454666088972119" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/4575454666088972119?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/4575454666088972119?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/Xpwx1NBKCHs/how-to-trap-errors-in-firmware.html" title="how to trap errors in firmware" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2010/07/how-to-trap-errors-in-firmware.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkcDQHg5eSp7ImA9WxFaE0g.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-1361013953613851991</id><published>2010-07-17T15:07:00.000+07:00</published><updated>2010-07-17T15:07:51.621+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-17T15:07:51.621+07:00</app:edited><title>removing many items from list</title><summary>Let's take a look a screenshoot first :

Lets suppose you have a list, and you want to delete selected list.
For the first time, I am using foreach, but it throws an exception. Yes of course, item count will change after removing. So the foreach constraint will changed while looping. So it can't use foreach. It must use loop.
for(int i = 0; i&amp;lt;mList.Count; i++)  It's wrong because m.List.Count </summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/1361013953613851991/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=1361013953613851991" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/1361013953613851991?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/1361013953613851991?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/x0Wbxlu42wc/removing-many-items-from-list.html" title="removing many items from list" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_f4x7MFMYEJI/TEFgCVX-aFI/AAAAAAAAAMk/2Ftl94umOSs/s72-c/multiSelect.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2010/07/removing-many-items-from-list.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0EBSHc8eyp7ImA9WxFWGUQ.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-1063237113234170600</id><published>2010-05-27T19:06:00.009+07:00</published><updated>2010-06-08T18:14:19.973+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-08T18:14:19.973+07:00</app:edited><title>sine array generator</title><summary>
Sometimes we want to create sine wave from our microcontroller project. And it need arrays of constants to fed to PWM generator. And you don't know what constants to be filled to.

Well, I have same problems too. So I calculate sine wave formula and put it into a software to make it simpler.

If you found some bug, please let me know by posting comment in this blog 

requirements : minimum Net </summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/1063237113234170600/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=1063237113234170600" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/1063237113234170600?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/1063237113234170600?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/a_oyETT6syc/sine-array-generator.html" title="sine array generator" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_f4x7MFMYEJI/S_5p0PIHSCI/AAAAAAAAAKQ/vWKjANtRmcw/s72-c/screen+shoot.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2010/05/sine-array-generator.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0cCSXs6fSp7ImA9WxRXGEQ.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-5773269859325742786</id><published>2008-10-25T08:11:00.004+07:00</published><updated>2008-10-25T08:44:28.515+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-25T08:44:28.515+07:00</app:edited><title>how to trap "delete" key event in C#</title><summary>"delete" key is a special, it has different function from other key. That's why we can't use ordinary key down / key press event. For example, I have richTextBox called "rtbInput", pictureBox called "picLine" and I want to update line number whenever user delete some text. This is my code to do that :private void rtbInput_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e){            if(</summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/5773269859325742786/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=5773269859325742786" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/5773269859325742786?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/5773269859325742786?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/ebYov2pYvKI/how-to-trap-delete-key-event-in-c.html" title="how to trap &quot;delete&quot; key event in C#" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2008/10/how-to-trap-delete-key-event-in-c.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A04DRX45cCp7ImA9WxRXEU8.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-4941901626488854036</id><published>2008-10-15T19:09:00.012+07:00</published><updated>2008-10-16T11:06:14.028+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-16T11:06:14.028+07:00</app:edited><title>manually create table of figures</title><summary>You may want to include table of figures or table of tables but you cannot do automatically. This steps will show how to add table of figures (TOF for short).block the caption of your picture, on "insert" tab, click "bookmark". A bookmark dialog will shows up.add the bookmark name. Make sure to insert the name that represent the picture. Example : name "pic2_1" for picture 2.1, "pic2_11" for </summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/4941901626488854036/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=4941901626488854036" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/4941901626488854036?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/4941901626488854036?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/jHaIaUlDgqU/manually-create-table-of-figures.html" title="manually create table of figures" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_f4x7MFMYEJI/SPXehzxj51I/AAAAAAAAAHc/8XKUsYM1-3U/s72-c/bookmark.PNG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2008/10/manually-create-table-of-figures.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEUAR345fip7ImA9WxRXEEo.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-7163562514378097640</id><published>2008-10-15T18:16:00.008+07:00</published><updated>2008-10-15T19:04:06.026+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-15T19:04:06.026+07:00</app:edited><title>easy creating table of contents</title><summary>If you writing a experiment report or something, maybe you want to include table of contents (or TOC for short) for you report. I'l show you how..... First thing first, after everything is set, you must insert page number, don't forget that. This is my example. After do that, follow all steps below :block the word you want to use as entry word on TOC. Like below....on "references" tab, click "Add</summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/7163562514378097640/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=7163562514378097640" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/7163562514378097640?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/7163562514378097640?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/7X23X6zCx2g/easy-creating-table-of-contents.html" title="easy creating table of contents" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_f4x7MFMYEJI/SPXTBiwwcZI/AAAAAAAAAFo/v5Qm8WQtO0c/s72-c/example+header.PNG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2008/10/easy-creating-table-of-contents.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUMNRHw8fCp7ImA9WxRXEEs.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-5867554135750416218</id><published>2008-10-15T09:54:00.004+07:00</published><updated>2008-10-15T17:44:55.274+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-15T17:44:55.274+07:00</app:edited><title>how to insert page number with different format?</title><summary>sometimes you want to insert different page number format, for example on several pages with format : i, ii, iii, and several pages with number like: 1,2,3. You can do that by following steps below :put your cursor at the end of page.select "page layout" tab, click "breaks", select "next page".on next page, double click header (and footer).unmark "link to previous". this make your header (and </summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/5867554135750416218/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=5867554135750416218" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/5867554135750416218?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/5867554135750416218?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/HEFpx9sMncg/how-to-insert-page-number-with.html" title="how to insert page number with different format?" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_f4x7MFMYEJI/SPXItUe-_xI/AAAAAAAAAEw/mrXsU0i2Fnw/s72-c/page+break.PNG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2008/10/how-to-insert-page-number-with.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkAFQHg_cSp7ImA9WxRTFk8.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-7795699803359664840</id><published>2008-09-05T22:04:00.000+07:00</published><updated>2008-09-05T22:31:51.649+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-05T22:31:51.649+07:00</app:edited><title>How to create custom animation brush in the gimp</title><summary>This time, I want to show how to create simple custom animation brush in the GIMP.Create new canvas, mine is 133x80 px. If you want the brush have independent color. Create canvas with RGB mode, fill with transparency. If you want the color of the brush depend from the brush dialog, use Grayscale mode, fill with white (not foreground or background). Create your image, maybe you want to create to </summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/7795699803359664840/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=7795699803359664840" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/7795699803359664840?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/7795699803359664840?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/I88k4FA996Q/how-to-create-custom-animation-brush-in.html" title="How to create custom animation brush in the gimp" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_f4x7MFMYEJI/SMFLlj0TlgI/AAAAAAAAABs/mmKpZhuf5jc/s72-c/pipe+create.PNG" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2008/09/how-to-create-custom-animation-brush-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8AQnc9eCp7ImA9WxRTFk8.&quot;"><id>tag:blogger.com,1999:blog-1467572918143579011.post-2581667664920484711</id><published>2008-09-05T21:17:00.000+07:00</published><updated>2008-09-05T22:00:43.960+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-05T22:00:43.960+07:00</app:edited><title>How to create custom static brush in the gimp</title><summary>I'll show you how to create custom static brush for use with the GIMP.Create new canvas, mine use 375x50 px. If you want a brush that have own color, use RGB mode and fill the canvas with transparency. If you want a brush that have color depend from brush dialog, use grayscale mode and fill the canvas with white (not foreground or background) like image below Create your image, maybe you want to </summary><link rel="replies" type="application/atom+xml" href="http://asugixtutorial.blogspot.com/feeds/2581667664920484711/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=1467572918143579011&amp;postID=2581667664920484711" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/2581667664920484711?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/1467572918143579011/posts/default/2581667664920484711?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/IsengsTutorial/~3/ZBB2hKFrEk4/how-to-create-custom-static-brush-in.html" title="How to create custom static brush in the gimp" /><author><name>asugix</name><uri>http://www.blogger.com/profile/05808149737621483191</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_f4x7MFMYEJI/SMFEtyzef8I/AAAAAAAAAAw/s6S7jHVsdSQ/s72-c/static+create.PNG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://asugixtutorial.blogspot.com/2008/09/how-to-create-custom-static-brush-in.html</feedburner:origLink></entry></feed>

