<?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/'><id>tag:blogger.com,1999:blog-8980734269859237005.comments</id><updated>2010-07-31T02:19:44.277-07:00</updated><title type='text'>DevCurry</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.devcurry.com/feeds/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/comments/default'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/comments/default?start-index=26&amp;max-results=25'/><author><name>Suprotim Agarwal</name><uri>http://www.blogger.com/profile/08349831623922214390</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>641</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-442795583277771049</id><published>2010-07-31T02:19:44.277-07:00</published><updated>2010-07-31T02:19:44.277-07:00</updated><title type='text'>Anonymous: Thanks so much for the correct VB snipp...</title><content type='html'>Anonymous: Thanks so much for the correct VB snippet.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7999868936047810148/comments/default/442795583277771049'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7999868936047810148/comments/default/442795583277771049'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/calculate-size-of-folderdirectory-using.html?showComment=1280567984277#c442795583277771049' title=''/><author><name>Suprotim Agarwal</name><uri>http://www.blogger.com/profile/08349831623922214390</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='16792399207439810270'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/calculate-size-of-folderdirectory-using.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-7999868936047810148' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/7999868936047810148' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-643298503816809117</id><published>2010-07-29T10:13:46.346-07:00</published><updated>2010-07-29T10:13:46.346-07:00</updated><title type='text'>The VB example, while technically correct, is not ...</title><content type='html'>The VB example, while technically correct, is not how it is usually done.&lt;br /&gt;&lt;br /&gt;    Imports System.Console&lt;br /&gt;    Imports System.IO&lt;br /&gt;&lt;br /&gt;    Module Module1&lt;br /&gt;&lt;br /&gt;    Sub Main()&lt;br /&gt;        Dim dInfo As New DirectoryInfo(&amp;quot;C:/Temp&amp;quot;)&lt;br /&gt;        &amp;#39; set bool parameter to false if you&lt;br /&gt;        &amp;#39; do not want to include subdirectories.&lt;br /&gt;        Dim sizeOfDir = DirectorySize(dInfo)&lt;br /&gt;&lt;br /&gt;        WriteLine(&amp;quot;Directory size in Bytes : {0:N0} Bytes&amp;quot;, sizeOfDir)&lt;br /&gt;        WriteLine(&amp;quot;Directory size in KB : {0:N2} KB&amp;quot;, sizeOfDir / 1024)&lt;br /&gt;        WriteLine(&amp;quot;Directory size in MB : {0:N2} MB&amp;quot;, sizeOfDir / (1024 * 1024))&lt;br /&gt;&lt;br /&gt;        ReadLine()&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;    Private Function DirectorySize(ByVal dInfo As DirectoryInfo, Optional ByVal includeSubDir As Boolean = True) As Long&lt;br /&gt;        &amp;#39; Enumerate all the files&lt;br /&gt;        Dim totalSize = Aggregate file In dInfo.EnumerateFiles() Into Sum(file.Length)&lt;br /&gt;&lt;br /&gt;        &amp;#39; If Subdirectories are to be included&lt;br /&gt;        If includeSubDir Then&lt;br /&gt;            &amp;#39; Enumerate all sub-directories&lt;br /&gt;            totalSize += Aggregate dir In dInfo.EnumerateDirectories Into Sum(DirectorySize(dir))&lt;br /&gt;        End If&lt;br /&gt;&lt;br /&gt;        Return totalSize&lt;br /&gt;    End Function&lt;br /&gt;&lt;br /&gt;    End Module&lt;br /&gt;&lt;br /&gt;1. You never have to import System or LINQ&lt;br /&gt;2. Import System.Console to avoid writing `Console.` everwhere&lt;br /&gt;3. VB has LINQ syntax for aggragates.&lt;br /&gt;4. Type inference is a good thing.&lt;br /&gt;5. Optionals are also a good thing when used responsibly.&lt;br /&gt;6. The `/` operator already returns doubles. For intereger division use `\`.&lt;br /&gt;7. Underscores are only needed in LINQ expressions, the rest of the time it is implied by the context.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7999868936047810148/comments/default/643298503816809117'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7999868936047810148/comments/default/643298503816809117'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/calculate-size-of-folderdirectory-using.html?showComment=1280423626346#c643298503816809117' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/calculate-size-of-folderdirectory-using.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-7999868936047810148' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/7999868936047810148' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-3621990554021476075</id><published>2010-07-29T06:51:46.084-07:00</published><updated>2010-07-29T06:51:46.084-07:00</updated><title type='text'>Hi,

Is there any method that returns list of file...</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;Is there any method that returns list of files from a directory for a given date range (i.e. start date - end date)</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/5629041706750981732/comments/default/3621990554021476075'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/5629041706750981732/comments/default/3621990554021476075'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/06/7-new-methods-to-enumerate-directory.html?showComment=1280411506084#c3621990554021476075' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/06/7-new-methods-to-enumerate-directory.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-5629041706750981732' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/5629041706750981732' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-6126417803474653383</id><published>2010-07-27T13:25:04.751-07:00</published><updated>2010-07-27T13:25:04.751-07:00</updated><title type='text'>Many thanks - this is really clear and allows me t...</title><content type='html'>Many thanks - this is really clear and allows me to get out of a hole I had dug for myself!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/8290994535446495130/comments/default/6126417803474653383'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/8290994535446495130/comments/default/6126417803474653383'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2009/03/handling-events-of-controls-inside.html?showComment=1280262304751#c6126417803474653383' title=''/><author><name>infront</name><uri>http://www.blogger.com/profile/00381639375590026171</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2009/03/handling-events-of-controls-inside.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-8290994535446495130' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/8290994535446495130' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-469536628749249040</id><published>2010-07-27T00:11:38.273-07:00</published><updated>2010-07-27T00:11:38.273-07:00</updated><title type='text'>@sarankamal:

I've tried this on a website destine...</title><content type='html'>@sarankamal:&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve tried this on a website destined for iPhone with a very large table (1000 rows, 6 columns) and the user-interface locks and becomes unresponsive for several seconds. You definitely want to be careful about devices/browsers with low JavaScript performance.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/3052310467731570234/comments/default/469536628749249040'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/3052310467731570234/comments/default/469536628749249040'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2009/07/hide-table-column-with-single-line-of.html?showComment=1280214698273#c469536628749249040' title=''/><author><name>JokeyRhyme</name><uri>http://www.blogger.com/profile/04600684381643093386</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2009/07/hide-table-column-with-single-line-of.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-3052310467731570234' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/3052310467731570234' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-2808210940559317725</id><published>2010-07-25T01:38:38.255-07:00</published><updated>2010-07-25T01:38:38.255-07:00</updated><title type='text'>very cool &amp; good js tip, thank you very much for s...</title><content type='html'>very cool &amp;amp; good js tip, thank you very much for sharing.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/6244836889398261654/comments/default/2808210940559317725'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/6244836889398261654/comments/default/2808210940559317725'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/display-date-in-mmddyyyy-format-using.html?showComment=1280047118255#c2808210940559317725' title=''/><author><name>JavaScript Media Player</name><uri>http://www.javascriptbank.com/web-based-javascript-media-player.html</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/display-date-in-mmddyyyy-format-using.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-6244836889398261654' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/6244836889398261654' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-4072044931546315192</id><published>2010-07-24T09:26:08.126-07:00</published><updated>2010-07-24T09:26:08.126-07:00</updated><title type='text'>Nice post. gtmetrix looks real good, especially th...</title><content type='html'>Nice post. gtmetrix looks real good, especially the report breakdown. &lt;br /&gt;&lt;br /&gt;To the people behind this site -&lt;br /&gt;When I ran gmetrix, I got the following suggestions for this site:&lt;br /&gt;Add Expires headers &lt;br /&gt;Use a Content Delivery Network (CDN) &lt;br /&gt;Make fewer HTTP requests &lt;br /&gt;Reduce DNS lookups</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/2602523479938740120/comments/default/4072044931546315192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/2602523479938740120/comments/default/4072044931546315192'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/understanding-yslow-firebug-extension.html?showComment=1279988768126#c4072044931546315192' title=''/><author><name>Jourt</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/understanding-yslow-firebug-extension.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-2602523479938740120' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/2602523479938740120' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-4357375369800850406</id><published>2010-07-24T07:11:28.842-07:00</published><updated>2010-07-24T07:11:28.842-07:00</updated><title type='text'>Google Page Speed is also a good tool to analyze t...</title><content type='html'>Google Page Speed is also a good tool to analyze the speed of your website. It is available in the Firebug plugin for Firefox.&lt;br /&gt;&lt;br /&gt;Also gtmetrix(dot)com is a good website that analyzes the speed of your website using both YSlow and PageSpeed.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/2602523479938740120/comments/default/4357375369800850406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/2602523479938740120/comments/default/4357375369800850406'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/understanding-yslow-firebug-extension.html?showComment=1279980688842#c4357375369800850406' title=''/><author><name>Kevin Rodrigues</name><uri>http://kevinrodrigues.com/blog</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/understanding-yslow-firebug-extension.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-2602523479938740120' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/2602523479938740120' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-8148965669338563063</id><published>2010-07-23T10:08:17.883-07:00</published><updated>2010-07-23T10:08:17.883-07:00</updated><title type='text'>Nice, but it doesn't validate the actual zip code,...</title><content type='html'>Nice, but it doesn&amp;#39;t validate the actual zip code, just the xxxxx-xxxx.&lt;br /&gt;&lt;a href="http://longjump.com" rel="nofollow"&gt;PaaS for ISVs&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4216412417243358033/comments/default/8148965669338563063'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4216412417243358033/comments/default/8148965669338563063'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/validate-us-zip-code-using-javascript.html?showComment=1279904897883#c8148965669338563063' title=''/><author><name>Relationals</name><uri>http://www.blogger.com/profile/03834742868442911130</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/validate-us-zip-code-using-javascript.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-4216412417243358033' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/4216412417243358033' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-1160417010294574371</id><published>2010-07-21T01:35:20.018-07:00</published><updated>2010-07-21T01:35:20.018-07:00</updated><title type='text'>Why installing an extra plugin if this is build in...</title><content type='html'>Why installing an extra plugin if this is build in JavaScript?&lt;br /&gt;&lt;br /&gt;Open your javascript console an type:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;/^[0-9]{5}(?:-[0-9]{4})?$/.exec(&amp;quot;98002&amp;quot;)&lt;/b&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/8775387651083498944/comments/default/1160417010294574371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/8775387651083498944/comments/default/1160417010294574371'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/test-regular-expressions-in-your.html?showComment=1279701320018#c1160417010294574371' title=''/><author><name>Christian Harms</name><uri>http://www.blogger.com/profile/18044191896934550541</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/test-regular-expressions-in-your.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-8775387651083498944' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/8775387651083498944' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-3371907252859169864</id><published>2010-07-20T08:59:48.563-07:00</published><updated>2010-07-20T08:59:48.563-07:00</updated><title type='text'>In my version of VS2010, the "Show all settings" c...</title><content type='html'>In my version of VS2010, the &amp;quot;Show all settings&amp;quot; checkbox was not there, but I _was_ still able to click the &amp;quot;Restore file associations&amp;quot; button and have it work.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/1066556418399708728/comments/default/3371907252859169864'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/1066556418399708728/comments/default/3371907252859169864'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/05/restore-file-associations-in-visual.html?showComment=1279641588563#c3371907252859169864' title=''/><author><name>slide</name><uri>http://www.blogger.com/profile/09111492254896423873</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/05/restore-file-associations-in-visual.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-1066556418399708728' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/1066556418399708728' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-1070299217436540063</id><published>2010-07-20T06:31:18.846-07:00</published><updated>2010-07-20T06:31:18.846-07:00</updated><title type='text'>Also take a look at loadUI.

It's free open source...</title><content type='html'>Also take a look at loadUI.&lt;br /&gt;&lt;br /&gt;It&amp;#39;s free open source and looks really promising.&lt;br /&gt;&lt;br /&gt;Made by the soapui guys</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4826528447295294759/comments/default/1070299217436540063'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4826528447295294759/comments/default/1070299217436540063'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/10-free-tools-to-loadstress-test-your.html?showComment=1279632678846#c1070299217436540063' title=''/><author><name>Jim Johnsson</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/10-free-tools-to-loadstress-test-your.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-4826528447295294759' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/4826528447295294759' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-8264576751013349550</id><published>2010-07-19T00:10:33.718-07:00</published><updated>2010-07-19T00:10:33.718-07:00</updated><title type='text'>Thanks for code!
home jobs</title><content type='html'>Thanks for code!&lt;br /&gt;&lt;a href="http://www.czarnovel.com/" rel="nofollow"&gt;home jobs&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4216412417243358033/comments/default/8264576751013349550'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4216412417243358033/comments/default/8264576751013349550'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/validate-us-zip-code-using-javascript.html?showComment=1279523433718#c8264576751013349550' title=''/><author><name>Stela James</name><uri>http://www.blogger.com/profile/10953767385585248513</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/validate-us-zip-code-using-javascript.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-4216412417243358033' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/4216412417243358033' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-4354937805480626747</id><published>2010-07-16T22:22:00.198-07:00</published><updated>2010-07-16T22:22:00.198-07:00</updated><title type='text'>As you may have guessed, blogger does not escape t...</title><content type='html'>As you may have guessed, blogger does not escape the || characters, hence you are not able to see it in the post. You have to manually specify &amp;amp;# 124;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7683623884370100361/comments/default/4354937805480626747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7683623884370100361/comments/default/4354937805480626747'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/disable-certain-days-in-week-using.html?showComment=1279344120198#c4354937805480626747' title=''/><author><name>Suprotim Agarwal</name><uri>http://www.blogger.com/profile/08349831623922214390</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='16792399207439810270'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/disable-certain-days-in-week-using.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-7683623884370100361' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/7683623884370100361' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-7146364716555281502</id><published>2010-07-16T21:04:00.999-07:00</published><updated>2010-07-16T21:04:00.999-07:00</updated><title type='text'>Hi Suprotim,

Your code posted in the code is inco...</title><content type='html'>Hi Suprotim,&lt;br /&gt;&lt;br /&gt;Your code posted in the code is incorrect. Instead of &lt;br /&gt;if (day == 2  day == 5) {&lt;br /&gt;it should be &lt;br /&gt;&lt;b&gt;if (day == 2 || day == 5) {&lt;/b&gt;.&lt;br /&gt;&lt;br /&gt;I have found another solution on &lt;a rel="nofollow"&gt;http://jquerybyexample.blogspot.com/2010/07/disable-specific-days-in-jquery.html&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;However your jsCodebin code is correct.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7683623884370100361/comments/default/7146364716555281502'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7683623884370100361/comments/default/7146364716555281502'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/disable-certain-days-in-week-using.html?showComment=1279339440999#c7146364716555281502' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/disable-certain-days-in-week-using.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-7683623884370100361' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/7683623884370100361' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-5815027152217111454</id><published>2010-07-15T15:23:57.237-07:00</published><updated>2010-07-15T15:23:57.237-07:00</updated><title type='text'>It helps me too, thank you!</title><content type='html'>It helps me too, thank you!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7638021320187081200/comments/default/5815027152217111454'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7638021320187081200/comments/default/5815027152217111454'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2009/02/how-do-you-check-if-sqldatasource.html?showComment=1279232637237#c5815027152217111454' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2009/02/how-do-you-check-if-sqldatasource.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-7638021320187081200' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/7638021320187081200' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-5840999782496555763</id><published>2010-07-15T07:46:11.629-07:00</published><updated>2010-07-15T07:46:11.629-07:00</updated><title type='text'>Thanks for this! It really helped.</title><content type='html'>Thanks for this! It really helped.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/9040279367594552599/comments/default/5840999782496555763'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/9040279367594552599/comments/default/5840999782496555763'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/06/does-installing-net-40-framework.html?showComment=1279205171629#c5840999782496555763' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/06/does-installing-net-40-framework.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-9040279367594552599' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/9040279367594552599' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-6786001233921133447</id><published>2010-07-15T01:49:26.495-07:00</published><updated>2010-07-15T01:49:26.495-07:00</updated><title type='text'>great post i really like it.
keep posting stuff li...</title><content type='html'>great post i really like it.&lt;br /&gt;keep posting stuff like this</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4515234563839820091/comments/default/6786001233921133447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4515234563839820091/comments/default/6786001233921133447'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/06/popular-net-web-content-management.html?showComment=1279183766495#c6786001233921133447' title=''/><author><name>travel surabaya ke bali</name><uri>http://www.tour-travel.fortunerentcar.com</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/06/popular-net-web-content-management.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-4515234563839820091' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/4515234563839820091' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-8934194457844586797</id><published>2010-07-13T08:02:43.284-07:00</published><updated>2010-07-13T08:02:43.284-07:00</updated><title type='text'>Whether this is pointless or not it is not 100% ac...</title><content type='html'>Whether this is pointless or not it is not 100% accurate.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m busy updating an old web application with a few iFrames in it and trying to find the absolute position of an element inside an iFrame is a huge headache!&lt;br /&gt;&lt;br /&gt;.offset() &amp;amp; .position() only return the top and left co-ordinates within the iFrame and not the screen it is being displayed in, therefore it is not the absolute position!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7929794693406874996/comments/default/8934194457844586797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/7929794693406874996/comments/default/8934194457844586797'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2009/07/find-position-of-element-using-jquery.html?showComment=1279033363284#c8934194457844586797' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2009/07/find-position-of-element-using-jquery.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-7929794693406874996' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/7929794693406874996' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-2227631764528453440</id><published>2010-07-13T07:36:19.474-07:00</published><updated>2010-07-13T07:36:19.474-07:00</updated><title type='text'>The last news from open STA date from 2003, does a...</title><content type='html'>The last news from open STA date from 2003, does anyone know if it is still stable or worth using ?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4826528447295294759/comments/default/2227631764528453440'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4826528447295294759/comments/default/2227631764528453440'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/10-free-tools-to-loadstress-test-your.html?showComment=1279031779474#c2227631764528453440' title=''/><author><name>Kahor</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/10-free-tools-to-loadstress-test-your.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-4826528447295294759' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/4826528447295294759' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-5962047481194031035</id><published>2010-07-12T17:09:40.855-07:00</published><updated>2010-07-12T17:09:40.855-07:00</updated><title type='text'>what about Graffiti CMS? its now open source too o...</title><content type='html'>what about Graffiti CMS? its now open source too on codeplex. no one mentioned it?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4515234563839820091/comments/default/5962047481194031035'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4515234563839820091/comments/default/5962047481194031035'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/06/popular-net-web-content-management.html?showComment=1278979780855#c5962047481194031035' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/06/popular-net-web-content-management.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-4515234563839820091' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/4515234563839820091' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-3887307572815819868</id><published>2010-07-12T07:06:48.131-07:00</published><updated>2010-07-12T07:06:48.131-07:00</updated><title type='text'>PushToTest.com has a free community version of the...</title><content type='html'>PushToTest.com has a free community version of their open source testing framework TestMaker.  You can re-use your existing Java, Ruby, Groovy, Python, .Net scripts or Selenium and soapUI recordings.  Worth a mention.&lt;br /&gt;&lt;br /&gt;http://www.pushtotest.com</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4826528447295294759/comments/default/3887307572815819868'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4826528447295294759/comments/default/3887307572815819868'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/10-free-tools-to-loadstress-test-your.html?showComment=1278943608131#c3887307572815819868' title=''/><author><name>Isaiah</name><uri>http://www.tvmfunding.com</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/10-free-tools-to-loadstress-test-your.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-4826528447295294759' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/4826528447295294759' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-7880118010700372909</id><published>2010-07-12T03:16:06.669-07:00</published><updated>2010-07-12T03:16:06.669-07:00</updated><title type='text'>jQuery Sparkle also includes a very nice and slim ...</title><content type='html'>jQuery Sparkle also includes a very nice and slim jQuery Events Calendar based on the jQuery UI DatePicker. It&amp;#39;s been a good choice so far for using in the sidebars of client dashboards on production sites:&lt;br /&gt;&lt;br /&gt;http://www.balupton.com/projects/jquery-sparkle/&lt;br /&gt;^ Should be down the bottom last time I checked.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/8405847142749327378/comments/default/7880118010700372909'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/8405847142749327378/comments/default/7880118010700372909'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/06/5-jquery-calendar-plugins-that-can-be.html?showComment=1278929766669#c7880118010700372909' title=''/><author><name>balupton</name><uri>http://www.blogger.com/profile/02409722249062911213</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/06/5-jquery-calendar-plugins-that-can-be.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-8405847142749327378' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/8405847142749327378' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-6310406129222894385</id><published>2010-07-11T12:00:05.225-07:00</published><updated>2010-07-11T12:00:05.225-07:00</updated><title type='text'>I do prefer http://www.badboy.com.au/ since 2003, ...</title><content type='html'>I do prefer http://www.badboy.com.au/ since 2003, I realy do.&lt;br /&gt;&lt;br /&gt;Webtesting for the masses - so under the radar..</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4826528447295294759/comments/default/6310406129222894385'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/4826528447295294759/comments/default/6310406129222894385'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/10-free-tools-to-loadstress-test-your.html?showComment=1278874805225#c6310406129222894385' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/10-free-tools-to-loadstress-test-your.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-4826528447295294759' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/4826528447295294759' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-8980734269859237005.post-1864700598433445605</id><published>2010-07-11T08:12:48.911-07:00</published><updated>2010-07-11T08:12:48.911-07:00</updated><title type='text'>that's all cool js ebook, thank you very much for ...</title><content type='html'>that&amp;#39;s all cool js ebook, thank you very much for sharing.&lt;br /&gt;&lt;br /&gt;You can read more JS book from my list, &lt;a href="http://www.javascriptbank.com/top-10-best-javascript-ebooks-that-beginners-should-learn.html" rel="nofollow"&gt;Top 10 Best JavaScript eBooks that Beginners should Learn&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/9043514982746450761/comments/default/1864700598433445605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8980734269859237005/9043514982746450761/comments/default/1864700598433445605'/><link rel='alternate' type='text/html' href='http://www.devcurry.com/2010/07/5-javascript-books-worth-every-cent.html?showComment=1278861168911#c1864700598433445605' title=''/><author><name>Javascript Examples</name><uri>http://www.javascriptbank.com/</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.devcurry.com/2010/07/5-javascript-books-worth-every-cent.html' ref='tag:blogger.com,1999:blog-8980734269859237005.post-9043514982746450761' source='http://www.blogger.com/feeds/8980734269859237005/posts/default/9043514982746450761' type='text/html'/></entry></feed>