<?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: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-820774982463576597</id><updated>2012-01-13T06:21:10.231-08:00</updated><category term='url-encoded form data is not valid'/><category term='Operation not valid due to current state of the object'/><category term='developerspeaks'/><category term='blogengine.net'/><category term='joomla'/><category term='lightbox'/><category term='split menu'/><category term='youtube extensions'/><category term='Microsoft security update'/><category term='throwifmaxhttpcollectionkeysexceeded'/><category term='joomla split-menu'/><category term='youtube'/><category term='Bonaire'/><category term='http collection keys exceeded'/><title type='text'>technical</title><subtitle type='html'>Insights from an developer...</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-4239660772284186536</id><published>2012-01-04T11:36:00.000-08:00</published><updated>2012-01-04T12:00:03.517-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='url-encoded form data is not valid'/><category scheme='http://www.blogger.com/atom/ns#' term='throwifmaxhttpcollectionkeysexceeded'/><category scheme='http://www.blogger.com/atom/ns#' term='http collection keys exceeded'/><category scheme='http://www.blogger.com/atom/ns#' term='Microsoft security update'/><category scheme='http://www.blogger.com/atom/ns#' term='Operation not valid due to current state of the object'/><title type='text'>Operation is not valid due to the current state of the object</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif; text-align: left;"&gt;We faced this annoying bug recently. Below is a snapshot&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-PnoAvX691o8/TwSpcvKQL1I/AAAAAAAAAVA/SXOzPCT1jlQ/s1600/ERROR.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-PnoAvX691o8/TwSpcvKQL1I/AAAAAAAAAVA/SXOzPCT1jlQ/s1600/ERROR.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;It seems that microsoft has recently released an security update that limits the postback variables to 1000. If your page has more 1000 variables in a postback then the above error is fired. Microsoft has released this update after they found some security vulnerabilities in the .Net framework. One of them is potential DOS attack involving hash table collisions.&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;ThrowIfMaxHttpCollectionKeysExceeded is a new method introduced in this regard in the HttpValueCollection. This method actually check if the count of variables is greater then AppSettings.MaxHttpCollectionKeys. If it doesnt find AppSettings.MaxHttpCollectionKeys in web.config then it assumes a default value of 1000.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;Inorder to fix this add the following lines to your web.config&lt;/span&gt;&lt;br /&gt;&lt;pre class="prettyprint"&gt;&lt;span class="tag"&gt;&amp;lt;appSettings&amp;gt;&lt;/span&gt;&lt;span class="pln"&gt;&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;span class="tag"&gt;&amp;lt;add&lt;/span&gt;&lt;span class="pln"&gt; &lt;/span&gt;&lt;span class="atn"&gt;key&lt;/span&gt;&lt;span class="pun"&gt;=&lt;/span&gt;&lt;span class="atv"&gt;"aspnet:MaxHttpCollectionKeys"&lt;/span&gt;&lt;span class="pln"&gt; &lt;/span&gt;&lt;span class="atn"&gt;value&lt;/span&gt;&lt;span class="pun"&gt;=&lt;/span&gt;&lt;span class="atv"&gt;"1001"&lt;/span&gt;&lt;span class="pln"&gt; &lt;/span&gt;&lt;span class="tag"&gt;/&amp;gt;&lt;/span&gt;&lt;span class="pln"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="tag"&gt;&amp;lt;/appSettings&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;value can be anyting but should be above 1000 if you are experencing this error. Hope it helps someone.&lt;/span&gt;&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-4239660772284186536?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/4239660772284186536/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2012/01/operation-is-not-valid-due-to-current.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/4239660772284186536'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/4239660772284186536'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2012/01/operation-is-not-valid-due-to-current.html' title='Operation is not valid due to the current state of the object'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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/-PnoAvX691o8/TwSpcvKQL1I/AAAAAAAAAVA/SXOzPCT1jlQ/s72-c/ERROR.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-2515131075853145107</id><published>2011-11-05T11:34:00.000-07:00</published><updated>2011-11-05T11:40:42.696-07:00</updated><title type='text'>How to change the boring looking DropDownList and Mutiselect ListBox in Asp.Net using Jquery</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;I recently found a jquery plugin called &lt;span class="Apple-style-span"&gt;&lt;a href="http://harvesthq.github.com/chosen/" style="color: orange;"&gt;Chosen&lt;/a&gt; &lt;/span&gt;which can style and add up some extra features to existing dropdown box and list boxHere`s the ordinary ListBox and DropDownList&lt;/span&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-3aA-tdgqEdg/TrV_nK6QxPI/AAAAAAAAATk/4w6eUyMsjno/s1600/initial.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;img border="0" height="299" src="http://4.bp.blogspot.com/-3aA-tdgqEdg/TrV_nK6QxPI/AAAAAAAAATk/4w6eUyMsjno/s400/initial.png" width="400" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Below is the transformed  ListBox and DropDownList &lt;/span&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-sieanTfIJXc/TrV_xgFtAhI/AAAAAAAAATw/jtgW1LzFzi4/s1600/2pic.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;img border="0" height="250" src="http://3.bp.blogspot.com/-sieanTfIJXc/TrV_xgFtAhI/AAAAAAAAATw/jtgW1LzFzi4/s400/2pic.png" width="400" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Also the notice the search functionality added to DropDownlist and ListBox, It is really handy if you have a large list&lt;/span&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-WD_-rS96NKI/TrWAV4jmxjI/AAAAAAAAAT8/3A9xEYtWx7s/s1600/3pic.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;img border="0" height="287" src="http://1.bp.blogspot.com/-WD_-rS96NKI/TrWAV4jmxjI/AAAAAAAAAT8/3A9xEYtWx7s/s400/3pic.png" width="400" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Also Listbox Consumes Less space when chosen is applied which is ideal for screen escalate&lt;/span&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-h7yqb7fzlOw/TrWAlDqzYCI/AAAAAAAAAUI/KA6df_tgvVM/s1600/4pic.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;img border="0" height="276" src="http://3.bp.blogspot.com/-h7yqb7fzlOw/TrWAlDqzYCI/AAAAAAAAAUI/KA6df_tgvVM/s400/4pic.png" width="400" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;So here are the simple steps:&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;1) Download the chosen plugin from &lt;a href="https://github.com/harvesthq/chosen" style="color: orange;"&gt;here&amp;nbsp;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;2) Download Jquery from &lt;a href="http://code.jquery.com/jquery-1.6.4.min.js" style="color: orange;"&gt;here&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;3) Add the chosen.css, jquery.min.js, chosen.jquery.js in the header of the file&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;4) Define a cssclass attribute for the ListBox and DropDownList, say ddl and lstbox&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;5) Include the following in footer of the page&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; $(".ddl").chosen();&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; $(".lstbox").chosen();&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;6) Voila, you have transformed your ListBox and DropDownList and all the asp.net events for ListBox and &amp;nbsp; &amp;nbsp; DropDownlist work as usual&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Additional Features:&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;1) we can add the default field text by including the attribute "data-placeholder" in ListBox and DropDownList    eg: data-placeholder="Choose Role..."&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;2) Automatically removes the disabled options&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;3) No Results search text, just add the following  $(".ddl").chosen({no_results_text: "No results matched"});&lt;br /&gt;4) Add "allow_single_deselect: true" when selection is not a required field, which will make chosen add an UI element for option deselection&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;Check this for live &lt;a href="http://harvesthq.github.com/chosen/" style="color: orange;"&gt;demo&lt;/a&gt; and more features&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-2515131075853145107?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/2515131075853145107/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2011/11/how-to-change-boring-looking.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/2515131075853145107'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/2515131075853145107'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2011/11/how-to-change-boring-looking.html' title='How to change the boring looking DropDownList and Mutiselect ListBox in Asp.Net using Jquery'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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/-3aA-tdgqEdg/TrV_nK6QxPI/AAAAAAAAATk/4w6eUyMsjno/s72-c/initial.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-5065990783986234694</id><published>2010-10-16T01:17:00.000-07:00</published><updated>2010-10-16T01:26:48.857-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='joomla'/><category scheme='http://www.blogger.com/atom/ns#' term='joomla split-menu'/><category scheme='http://www.blogger.com/atom/ns#' term='split menu'/><title type='text'>Joomla Split Menu</title><content type='html'>Quite often you know how things work but it's how they are applied that can make all the difference. This is the beauty with Joomla where you can always be surprised at the different ways the same layout can be achieved. This happened to me the other week when I noticed a different way that a split menu can be achieved in Joomla using simple techniques already known to joomla users. Indeed, many of you may already have used this method but it seems to have escaped my attention until now.&lt;br /&gt;&lt;br /&gt;To achieve Split menu in Joomla do the following&lt;br /&gt;1) Create a your menu as normal, including sub-menu items as required for your site.&lt;br /&gt;2) Create a new Menu Module. Place it in the menu position that is for your top menu bar or your main navigation (styling of that menu is up to you). Select the menu. Now, in the parameters set the start level to zero and end level to 1. This module will probably be displayed on all pages. Publish and save that module.&lt;br /&gt;3) Create a second Menu Module. Place it in one of your columns where you want the split menu to appear. Select the same menu as for the other module. In the parameters for this one, set the start level to 1 and the end level to, say, 3. This module will probably be displayed on all pages as well. Publish and save the module.&lt;br/&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sSJIGGM99O0/TLlf_9BihKI/AAAAAAAAAPA/OiEo3zIu4yQ/s1600/scr1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 100px;" src="http://1.bp.blogspot.com/_sSJIGGM99O0/TLlf_9BihKI/AAAAAAAAAPA/OiEo3zIu4yQ/s320/scr1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5528555569891411106" /&gt;&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sSJIGGM99O0/TLlgMTnskrI/AAAAAAAAAPI/3vKqdHHDfcs/s1600/scr2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 100px;" src="http://1.bp.blogspot.com/_sSJIGGM99O0/TLlgMTnskrI/AAAAAAAAAPI/3vKqdHHDfcs/s320/scr2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5528555782115463858" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-5065990783986234694?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/5065990783986234694/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2010/10/joomla-split-menu.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/5065990783986234694'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/5065990783986234694'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2010/10/joomla-split-menu.html' title='Joomla Split Menu'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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/_sSJIGGM99O0/TLlf_9BihKI/AAAAAAAAAPA/OiEo3zIu4yQ/s72-c/scr1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-7209231471692244965</id><published>2010-08-28T01:22:00.000-07:00</published><updated>2010-08-28T04:05:28.375-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='lightbox'/><category scheme='http://www.blogger.com/atom/ns#' term='developerspeaks'/><category scheme='http://www.blogger.com/atom/ns#' term='Bonaire'/><title type='text'>Bonaire Littman`s Store Website Walkthrough</title><content type='html'>Bonaire Littman`s Store website is my first thorough experiement with Jquery Plugins. Our flash team had already developed a website for the above client and they wanted a somewhat similar site without flash. I accepted the challenge and after some thorough search on google found some interesting jquery plugins. The site is up and running at&lt;br /&gt;http://www.bonairelittmanstores.com&lt;br /&gt;&lt;br /&gt;The first jquery plugin i used in the site is our favourite lightbox. Whenever we click on any  product images the enlarged view is shown in lightbox. I didn`t use any modified versions of lightbox like lytebox since basic lightbox suited best for the site. Also i used a simple tip effect that would show the product name whithin a cloud whenever we hover over the product image.&lt;br /&gt;&lt;br /&gt;The second jquery plugin used is facefiles as i wanted to display the description of the product whenever user hovers over the enlarged image in lightbox. I had to some custom modifications to replicate the flash website functionality. whenever we need to close the description we need to click on the close button in the description bottom. Closing the button in lightbox bottom will close both description as well as the lightbox&lt;br /&gt;&lt;br /&gt;The third jquery plugin i used was thickbox as i wanted a quick note to appear on top of the description of the image in enlarged view. I used the modal window to display the quicknote, hence the user has to click on the close button on the right top to get rid of the quick note once he is done.&lt;br /&gt;&lt;br /&gt;This site is developed using php4 as i realised the client server doesnt support php5. we didnt want to pursue them to upgrade as the php code was just to retrieve the contents from xml file.&lt;br /&gt;&lt;br /&gt;Here are a few screenshots of the project&lt;br /&gt;&lt;a href="http://www.imagebam.com/image/6f8a0195094669" target="_blank"&gt;Tip effect&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.imagebam.com/image/d2f80695094675" target="_blank"&gt;Lightbox effect&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.imagebam.com/image/278ace95094677" target="_blank"&gt;Facefiles effect&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.imagebam.com/image/dbb02595094680" target="_blank"&gt;Thickbox effect&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-7209231471692244965?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/7209231471692244965/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2010/08/bonaire-littmans-store-website.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/7209231471692244965'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/7209231471692244965'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2010/08/bonaire-littmans-store-website.html' title='Bonaire Littman`s Store Website Walkthrough'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-8603169925498193712</id><published>2010-05-11T01:20:00.000-07:00</published><updated>2010-05-11T01:46:21.798-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='youtube extensions'/><category scheme='http://www.blogger.com/atom/ns#' term='blogengine.net'/><category scheme='http://www.blogger.com/atom/ns#' term='youtube'/><title type='text'>Blogengine.NET - youtube extension</title><content type='html'>Hi Friends, i have modified the existing youtube extension written by Al Bsharah  for blogengine.net to make it work even for PAGES in BE. Thanks for the extension AL&lt;br /&gt;&lt;br /&gt;Installation is the same as described in &lt;a href="http://al.bsharah.com/post/2008/10/25/BlogEngineNET-Extension-YouTube-Video.aspx" target="_blank"&gt;here&lt;/a&gt;. &lt;br /&gt;Download it here&lt;br /&gt;&lt;br /&gt;&lt;table border="0" cellpadding="0" cellspacing="0" style="background-color:#5D7CBA; border-color: #353535; color:#0; font-family:Arial, Helvetica, sans-serif; font-size:11px; padding:0px; border-width:1px; border-style:solid"&gt;&lt;tr style="background-color:#FFFFFF;"&gt;&lt;td align="center" style="padding:5px"&gt;&lt;a href="http://www.esnips.com/doc/e4da9617-f993-43d1-b7b2-fb60319441ba/YouTubePlayer-1-2/?widget=documentIcon" target="_blank"&gt;YouTubePlayer-1-2&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="padding:5px; font-size:9px; color:#FFFFFF" valign="bottom"&gt;Hosted by &lt;a href="http://www.esnips.com" style="color:#FFFFFF"&gt;eSnips&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt; 1. Take this ZIP file - YouTubePlayer-1-2.zip - and extract the YouTubePlayer.cs file into your /App_Code/Extensions folder within the root of your BlogEngine installation.&lt;br /&gt; 2. Log into the "Extensions" portion of your admin panel, you should see the YouTubePlayer extension.&lt;br /&gt; 3. Click the Edit link to change settings.  NOTE: You do not need to modify these settings if you don't want, you can skip to step 4.&lt;br /&gt;        * Width and Height are set to the default YouTube size, you can change them if you wish but I don't believe it will change the size of the video.&lt;br /&gt;        * Show Border is nice if you want to blend the video border into the color scheme of your website.  By default this is turned off (0).  Turn it on by changing the setting to "1".&lt;br /&gt;        * Primary and Secondary colors are used for the border and need to be entered in Hexidecimal value.  The example below uses 709397 for the secondary (the aqua in this site) and 000000 (black) for the primary.  You can see how it looks below.&lt;br /&gt; 4. Create a new entry/page and add this code to your BE POST/PAGE to insert a YouTube video:  [ youtube:YourVideoCodeGoesHere ]  (without the spaces).&lt;br /&gt;        * Note that the "YourVideoCodeGoesHere" part is typically random characters and letters.  You can see them in the URL of your YouTube video.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-8603169925498193712?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/8603169925498193712/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2010/05/blogenginenet-youtube-extension.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/8603169925498193712'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/8603169925498193712'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2010/05/blogenginenet-youtube-extension.html' title='Blogengine.NET - youtube extension'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-3518546466234778635</id><published>2010-03-26T01:00:00.000-07:00</published><updated>2010-03-26T01:19:38.738-07:00</updated><title type='text'>Windows Run Commands</title><content type='html'>Important windows run command:-&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;color:red;" &gt;To Access…&lt;/span&gt; &lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;Run Command&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Accessibility Controls  -&lt;span style="color: rgb(51, 102, 255);"&gt;access.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Accessibility Wizard -&lt;span style="color: rgb(51, 102, 255);"&gt;accwiz&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Add Hardware Wizard -&lt;span style="color: rgb(51, 102, 255);"&gt;hdwwi&lt;span style="color: rgb(51, 51, 255);"&gt;z.cp&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;l&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Add/Remove Programs  -&lt;span style="color: rgb(51, 102, 255);"&gt;appwiz.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Administrative Tools -&lt;span style="color: rgb(51, 51, 255);"&gt;control admintools&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Adobe Acrobat (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;acrobat&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Adobe Designer (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;formdesigner&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Adobe Distiller (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;acrodist&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Adobe ImageReady (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;imageready&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Adobe Photoshop (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;photoshop&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Automatic Updates -&lt;span style="color: rgb(51, 51, 255);"&gt;wuaucpl.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Bluetooth Transfer Wizard -&lt;span style="color: rgb(51, 51, 255);"&gt;fsquirt&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Calculator -&lt;span style="color: rgb(51, 51, 255);"&gt;calc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Certificate Manager -&lt;span style="color: rgb(51, 51, 255);"&gt;certmgr.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Character Map -&lt;span style="color: rgb(51, 51, 255);"&gt;charmap&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Check Disk Utility -&lt;span style="color: rgb(51, 51, 255);"&gt;chkdsk&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Clipboard Viewer -&lt;span style="color: rgb(51, 51, 255);"&gt;clipbrd&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Command Prompt -&lt;span style="color: rgb(51, 51, 255);"&gt;cmd&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Component Services -&lt;span style="color: rgb(51, 51, 255);"&gt;dcomcnfg&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Computer Management -&lt;span style="color: rgb(51, 51, 255);"&gt;compmgmt.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Control Panel -&lt;span style="color: rgb(51, 51, 255);"&gt;control&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Date and Time Properties  -&lt;span style="color: rgb(51, 51, 255);"&gt;timedate.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;DDE Shares  -&lt;span style="color: rgb(51, 51, 255);"&gt;ddeshare&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Device Manager -&lt;span style="color: rgb(51, 51, 255);"&gt;devmgmt.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Direct X Control Panel (if installed)* -&lt;span style="color: rgb(51, 51, 255);"&gt;directx.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Direct X Troubleshooter -&lt;span style="color: rgb(51, 51, 255);"&gt;dxdiag&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Disk Cleanup Utility -&lt;span style="color: rgb(51, 51, 255);"&gt;cleanmgr&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Disk Defragment -&lt;span style="color: rgb(51, 51, 255);"&gt;dfrg.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Disk Management -&lt;span style="color: rgb(51, 51, 255);"&gt;diskmgmt.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Disk Partition Manager -&lt;span style="color: rgb(51, 51, 255);"&gt;diskpart&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Display Properties -&lt;span style="color: rgb(51, 51, 255);"&gt;control desktop&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Display Properties -&lt;span style="color: rgb(51, 51, 255);"&gt;desk.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Display Properties (w/Appearance Tab Preselected) -&lt;span style="color: rgb(51, 51, 255);"&gt;control color&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Dr. Watson System Troubleshooting Utility -&lt;span style="color: rgb(51, 51, 255);"&gt;drwtsn32&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Driver Verifier Utility -&lt;span style="color: rgb(51, 51, 255);"&gt;verifier&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Event Viewer -eventvwr.msc&lt;/li&gt;&lt;li&gt;Files and Settings Transfer Tool -&lt;span style="color: rgb(51, 51, 255);"&gt;migwiz&lt;/span&gt;&lt;/li&gt;&lt;li&gt;File Signature Verification Tool -&lt;span style="color: rgb(51, 51, 255);"&gt;sigverif&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Findfast -&lt;span style="color: rgb(51, 51, 255);"&gt;findfast.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Firefox (if installed)  -&lt;span style="color: rgb(51, 51, 255);"&gt;firefox&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Folders Properties -&lt;span style="color: rgb(51, 51, 255);"&gt;folders&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Fonts control -&lt;span style="color: rgb(51, 51, 255);"&gt;fonts&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Fonts Folder -&lt;span style="color: rgb(51, 51, 255);"&gt;fonts&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Free Cell Card Game -&lt;span style="color: rgb(51, 51, 255);"&gt;freecell&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Game Controllers  -&lt;span style="color: rgb(51, 51, 255);"&gt;joy.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Group Policy Editor (XP Prof) -&lt;span style="color: rgb(51, 51, 255);"&gt;gpedit.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Hearts Card Game -&lt;span style="color: rgb(51, 51, 255);"&gt;mshearts&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Help and Support -&lt;span style="color: rgb(51, 51, 255);"&gt;helpctr&lt;/span&gt;&lt;/li&gt;&lt;li&gt;HyperTerminal -&lt;span style="color: rgb(51, 51, 255);"&gt;hypertrm&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Iexpress Wizard -&lt;span style="color: rgb(51, 51, 255);"&gt;iexpress&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Indexing Service -&lt;span style="color: rgb(51, 51, 255);"&gt;ciadv.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Internet Connection Wizard -&lt;span style="color: rgb(51, 51, 255);"&gt;icwconn1&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Internet Explorer -&lt;span style="color: rgb(51, 51, 255);"&gt;iexplore&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Internet Properties  -&lt;span style="color: rgb(51, 51, 255);"&gt;inetcpl.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Internet Setup Wizard -&lt;span style="color: rgb(51, 51, 255);"&gt;inetwiz&lt;/span&gt;&lt;/li&gt;&lt;li&gt;IP Configuration (Display Connection Configuration) -&lt;span style="color: rgb(51, 51, 255);"&gt;ipconfig /all&lt;/span&gt;&lt;/li&gt;&lt;li&gt;IP Configuration (Display DNS Cache Contents) -&lt;span style="color: rgb(51, 51, 255);"&gt;ipconfig /displaydns&lt;/span&gt;&lt;/li&gt;&lt;li&gt;IP Configuration (Delete DNS Cache Contents) -&lt;span style="color: rgb(51, 51, 255);"&gt;ipconfig /flushdns&lt;/span&gt;&lt;/li&gt;&lt;li&gt;IP Configuration (Release All Connections) -&lt;span style="color: rgb(51, 51, 255);"&gt;ipconfig /release&lt;/span&gt;&lt;/li&gt;&lt;li&gt;IP Configuration (Renew All Connections) -&lt;span style="color: rgb(51, 51, 255);"&gt;ipconfig /renew&lt;/span&gt;&lt;/li&gt;&lt;li&gt;IP Configuration (Refreshes DHCP &amp;amp; Re-Registers DNS) -&lt;span style="color: rgb(51, 51, 255);"&gt;ipconfig /registerdns&lt;/span&gt;&lt;/li&gt;&lt;li&gt;IP Configuration (Display DHCP Class ID) -&lt;span style="color: rgb(51, 51, 255);"&gt;ipconfig /showclassid&lt;/span&gt;&lt;/li&gt;&lt;li&gt;IP Configuration (Modifies DHCP Class ID) -&lt;span style="color: rgb(51, 51, 255);"&gt;ipconfig /setclassid&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Java Control Panel (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;jpicpl32.cp&lt;/span&gt;l&lt;/li&gt;&lt;li&gt;Java Control Panel (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;javaws&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Keyboard Properties -&lt;span style="color: rgb(51, 51, 255);"&gt;control keyboard&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Local Security Settings -&lt;span style="color: rgb(51, 51, 255);"&gt;secpol.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Local Users and Groups -&lt;span style="color: rgb(51, 51, 255);"&gt;lusrmgr.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Logs You Out Of Windows  -&lt;span style="color: rgb(51, 51, 255);"&gt;logoff&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Malicious Software Removal Tool  -&lt;span style="color: rgb(51, 51, 255);"&gt;mrt&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Microsoft Access (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;msaccess&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Microsoft Chat -&lt;span style="color: rgb(51, 51, 255);"&gt;winchat&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Microsoft Excel (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;excel&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Microsoft Frontpage (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;frontpg&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Microsoft Movie Maker -&lt;span style="color: rgb(51, 51, 255);"&gt;moviemk&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Microsoft Paint -&lt;span style="color: rgb(51, 51, 255);"&gt;mspaint&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Microsoft Powerpoint (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;powerpnt&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Microsoft Word (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;winword&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Microsoft Syncronization Tool -&lt;span style="color: rgb(51, 51, 255);"&gt;mobsync&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Minesweeper Game -&lt;span style="color: rgb(51, 51, 255);"&gt;winmine&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Mouse Properties -&lt;span style="color: rgb(51, 51, 255);"&gt;control mouse&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Mouse Properties -&lt;span style="color: rgb(51, 51, 255);"&gt;main.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Nero (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;nero&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Netmeeting  -&lt;span style="color: rgb(51, 51, 255);"&gt;conf&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Network Connections -&lt;span style="color: rgb(51, 51, 255);"&gt;control netconnections&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Network Connections -&lt;span style="color: rgb(51, 51, 255);"&gt;ncpa.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Network Setup Wizard -&lt;span style="color: rgb(51, 51, 255);"&gt;netsetup.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Notepad -&lt;span style="color: rgb(51, 51, 255);"&gt;notepad&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Nview Desktop Manager (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;nvtuicpl.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Object Packager -&lt;span style="color: rgb(51, 51, 255);"&gt;packager&lt;/span&gt;&lt;/li&gt;&lt;li&gt;ODBC Data Source Administrator -&lt;span style="color: rgb(51, 102, 255);"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;odbccp32&lt;/span&gt;.&lt;span style="color: rgb(51, 51, 255);"&gt;cpl&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;On Screen Keyboard -&lt;span style="color: rgb(51, 51, 255);"&gt;osk&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Opens AC3 Filter (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;ac3filter.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Outlook Express -&lt;span style="color: rgb(51, 51, 255);"&gt;msimn&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Paint -&lt;span style="color: rgb(51, 51, 255);"&gt;pbrush&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Password Properties -&lt;span style="color: rgb(51, 51, 255);"&gt;password.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Performance Monitor -&lt;span style="color: rgb(51, 51, 255);"&gt;perfmon.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Performance Monitor -&lt;span style="color: rgb(51, 51, 255);"&gt;perfmon&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Phone and Modem Options  -&lt;span style="color: rgb(51, 51, 255);"&gt;telephon.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Phone Dialer -&lt;span style="color: rgb(51, 51, 255);"&gt;dialer&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Pinball Game -&lt;span style="color: rgb(51, 51, 255);"&gt;pinball&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Power Configuration  -&lt;span style="color: rgb(51, 51, 255);"&gt;powercfg.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Printers and Faxes -&lt;span style="color: rgb(51, 51, 255);"&gt;control printers&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Printers Folder -&lt;span style="color: rgb(51, 51, 255);"&gt;printers&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Private Character Editor -&lt;span style="color: rgb(51, 51, 255);"&gt;eudcedit&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Quicktime (If Installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;QuickTime.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Quicktime Player (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;quicktimeplayer&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Real Player (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;realplay&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Regional Settings  -&lt;span style="color: rgb(51, 51, 255);"&gt;intl.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Registry Editor -&lt;span style="color: rgb(51, 51, 255);"&gt;regedit&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Registry Editor -&lt;span style="color: rgb(51, 51, 255);"&gt;regedit32&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Remote Access Phonebook -&lt;span style="color: rgb(51, 51, 255);"&gt;rasphone&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Remote Desktop  -&lt;span style="color: rgb(51, 51, 255);"&gt;mstsc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Removable Storage -&lt;span style="color: rgb(51, 51, 255);"&gt;ntmsmgr.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Removable Storage Operator Requests -&lt;span style="color: rgb(51, 51, 255);"&gt;ntmsoprq.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Resultant Set of Policy (XP Prof) -&lt;span style="color: rgb(51, 51, 255);"&gt;rsop.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Scanners and Cameras -&lt;span style="color: rgb(51, 51, 255);"&gt;sticpl.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Scheduled Tasks -control &lt;span style="color: rgb(51, 51, 255);"&gt;schedtasks&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Security Center  -&lt;span style="color: rgb(51, 51, 255);"&gt;wscui.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Services -&lt;span style="color: rgb(51, 51, 255);"&gt;services.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Shared Folders -&lt;span style="color: rgb(51, 51, 255);"&gt;fsmgmt.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Shuts Down Windows -&lt;span style="color: rgb(51, 51, 255);"&gt;shutdown&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Sounds and Audio  -&lt;span style="color: rgb(51, 51, 255);"&gt;mmsys.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Spider Solitare Card Game -&lt;span style="color: rgb(51, 51, 255);"&gt;spider&lt;/span&gt;&lt;/li&gt;&lt;li&gt;SQL Client Configuration  -&lt;span style="color: rgb(51, 51, 255);"&gt;cliconfg&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System Configuration Editor -&lt;span style="color: rgb(51, 51, 255);"&gt;sysedit&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System Configuration Utility -&lt;span style="color: rgb(51, 51, 255);"&gt;msconfig&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System File Checker Utility (Scan Immediately) -&lt;span style="color: rgb(51, 51, 255);"&gt;sfc /scannow&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System File Checker Utility (Scan Once At The Next Boot) -&lt;span style="color: rgb(51, 51, 255);"&gt;sfc /scanonce&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System File Checker Utility (Scan On Every Boot) -&lt;span style="color: rgb(51, 51, 255);"&gt;sfc /scanboot&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System File Checker Utility (Return Scan Setting To Default) -&lt;span style="color: rgb(51, 51, 255);"&gt;sfc /revert&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System File Checker Utility (Purge File Cache) -&lt;span style="color: rgb(51, 51, 255);"&gt;sfc /purgecache&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System File Checker Utility (Sets Cache Size to size x) -&lt;span style="color: rgb(51, 51, 255);"&gt;sfc /cachesize=x&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System Information -&lt;span style="color: rgb(51, 51, 255);"&gt;msinfo32&lt;/span&gt;&lt;/li&gt;&lt;li&gt;System Properties  -&lt;span style="color: rgb(51, 51, 255);"&gt;sysdm.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Task Manager -&lt;span style="color: rgb(51, 51, 255);"&gt;taskmgr&lt;/span&gt;&lt;/li&gt;&lt;li&gt;TCP Tester -&lt;span style="color: rgb(51, 51, 255);"&gt;tcptest&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Telnet Client -&lt;span style="color: rgb(51, 51, 255);"&gt;telnet&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Tweak UI (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;tweakui&lt;/span&gt;&lt;/li&gt;&lt;li&gt;User Account Management -&lt;span style="color: rgb(51, 51, 255);"&gt;nusrmgr.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Utility Manager -&lt;span style="color: rgb(51, 51, 255);"&gt;utilman&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Address Book -&lt;span style="color: rgb(51, 51, 255);"&gt;wab&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Address Book Import Utility -&lt;span style="color: rgb(51, 51, 255);"&gt;wabmig&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Backup Utility (if installed) -&lt;span style="color: rgb(51, 51, 255);"&gt;ntbackup&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Explorer -&lt;span style="color: rgb(51, 51, 255);"&gt;explorer&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Firewall -&lt;span style="color: rgb(51, 51, 255);"&gt;firewall.cpl&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Magnifier  -&lt;span style="color: rgb(51, 51, 255);"&gt;magnify&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Management Infrastructure -&lt;span style="color: rgb(51, 51, 255);"&gt;wmimgmt.msc&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Media Player -&lt;span style="color: rgb(51, 51, 255);"&gt;wmplayer&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Messenger -&lt;span style="color: rgb(51, 51, 255);"&gt;msmsgs&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Picture Import Wizard (need camera connected) -&lt;span style="color: rgb(51, 51, 255);"&gt;wiaacmgr&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows System Security Tool -&lt;span style="color: rgb(51, 51, 255);"&gt;syskey&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Update Launches -&lt;span style="color: rgb(51, 51, 255);"&gt;wupdmgr&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows Version (to show which version of windows) -&lt;span style="color: rgb(51, 51, 255);"&gt;winver&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Windows XP Tour Wizard -&lt;span style="color: rgb(51, 51, 255);"&gt;tourstart&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Wordpad  -&lt;span style="color: rgb(51, 51, 255);"&gt;write&lt;br /&gt;&lt;br /&gt;ENJOY....&lt;br /&gt;orginal source: &lt;a href="http://mypchell.com/guides/34-guides/69-156-useful-run-commands"&gt;MYPCHELL.COM&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-3518546466234778635?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/3518546466234778635/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2010/03/windows-run-commands.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/3518546466234778635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/3518546466234778635'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2010/03/windows-run-commands.html' title='Windows Run Commands'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-4831542362675284073</id><published>2010-02-10T05:33:00.000-08:00</published><updated>2010-02-10T05:40:33.523-08:00</updated><title type='text'>Domain Management Terms</title><content type='html'>&lt;span style="font-style:italic;"&gt;What is a host name?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A host name is an Internet address or domain name with a prefix. For example, a host name of the domain name yourdomainname.com may be "example.yourdomainname.com."&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;&lt;br /&gt;What is a CNAME record?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A CNAME (canonical name) record is a DNS record that can be used to create host names for a domain name. These host names can be set to point to other domain names or host names.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;&lt;br /&gt;What is an A record?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;An A (address) record is a DNS record that can be used to point your domain name and host names to a static IP address.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;What is a subdomain?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A subdomain, sometimes called a "third-level" domain, is a great way to create a memorable web address for a section of your web site.&lt;br /&gt;&lt;br /&gt;Your domain is a folder that contains your site files; a subdirectory is a folder contained within this main folder (such as http://www.yourdomain.com/subdirectory1). A subdomain, on the other hand, is basically an alias, another address that can be created for one of your subdirectories. An Internet user can enter the subdomain in his browser's address bar to view the subdirectory with which it's associated.&lt;br /&gt;&lt;br /&gt;A subdomain combines a unique identifier with a domain name to become essentially a "domain within a domain." The unique identifier simply replaces the www in the web address.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-4831542362675284073?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/4831542362675284073/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2010/02/domain-management-terms.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/4831542362675284073'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/4831542362675284073'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2010/02/domain-management-terms.html' title='Domain Management Terms'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-9199427885972296377</id><published>2009-11-11T00:06:00.000-08:00</published><updated>2009-11-11T00:18:47.513-08:00</updated><title type='text'>Search based on Image!!!</title><content type='html'>Hi Folks, You can now search based on image. Site by the URL http://www.tineye.com/ gives this option. Upload your image/photo and hit enter. Also you can paste the photo URL`s too. Currently their search index is very small and you may not get accurate results, but their index is fast growing and you can search for the image later.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-9199427885972296377?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/9199427885972296377/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2009/11/search-based-on-image.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/9199427885972296377'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/9199427885972296377'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2009/11/search-based-on-image.html' title='Search based on Image!!!'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-41071276906266474</id><published>2009-05-28T22:18:00.000-07:00</published><updated>2009-05-28T22:22:52.174-07:00</updated><title type='text'>Google File command!</title><content type='html'>Want to search PDF, document, txt files using google. Just type the following command in Google search&lt;br /&gt;&lt;br /&gt;"filetype:FILE EXTENSION FILE NAME" without double quotes and your file is ready to for download &lt;br /&gt;&lt;br /&gt;eg: you want to search a PDF file related to open source. Just type like this&lt;br /&gt;&lt;br /&gt;"filetype:pdf open source" without double quotes and all pdf related to open source will be listed.&lt;br /&gt;&lt;br /&gt;Just enjoy...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-41071276906266474?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/41071276906266474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2009/05/google-file-command.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/41071276906266474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/41071276906266474'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2009/05/google-file-command.html' title='Google File command!'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-3417206283011204490</id><published>2009-04-07T03:56:00.000-07:00</published><updated>2009-04-07T23:32:00.300-07:00</updated><title type='text'>Bulit in FTP in Internet Explorer!!!</title><content type='html'>Hi there, I made an interesting Discovery today. As most of you might know we can access FTP sites directly using INTERNET EXPLORER. Just type the credentials in following format and you are ready to access your FTP  &lt;blockquote&gt;&lt;span style="font-weight:bold;"&gt;ftp:username:password@ftp.domain.com&lt;/span&gt;&lt;/blockquote&gt;. Isn`t that easy?&lt;br /&gt;    We may be requested for password and user name once again, enter them and press OK.&lt;br /&gt;After we are taken to the site, we have to choose "OPEN FTP SITE IN WINDOWS EXPLORER" under VIEW in the menu bar. That`s all. Thanks for reading. Keep visiting this blog for more information like this.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-3417206283011204490?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/3417206283011204490/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2009/04/bulit-in-ftp-in-internet-explorer.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/3417206283011204490'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/3417206283011204490'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2009/04/bulit-in-ftp-in-internet-explorer.html' title='Bulit in FTP in Internet Explorer!!!'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-820774982463576597.post-1469880208381894189</id><published>2009-04-03T04:12:00.000-07:00</published><updated>2009-04-03T04:16:02.142-07:00</updated><title type='text'>Good technical sites to help in your project</title><content type='html'>Sites which may help you in ur project.......!&lt;br /&gt;For all code gurus and computer geeks&lt;br /&gt;http://www.cprogramming.com - Learn C or C++&lt;br /&gt;&lt;br /&gt;http://www.programmersheaven.com This site is dedicated to programmers all over the world.&lt;br /&gt;&lt;br /&gt;http://www.thevbzone.com - Online Visual Basic programming resource for both beginners and experts.&lt;br /&gt;&lt;br /&gt;http://www.programmingtutorials.com - Your link to online programming tutorials.&lt;br /&gt;&lt;br /&gt;http://javaboutique.internet.com - Lots of applets, sourcecode and tutorials on Java. Excellent resource!&lt;br /&gt;&lt;br /&gt;http://devcentral.iticentral.com - Check out the best 100% free tutorials and articles on the web for the software development community.&lt;br /&gt;&lt;br /&gt;http://www.csis.ul.ie/COBOL - COBOL programming - tutorials, lectures, exercises, examples.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;http://www.codeproject.com - Your place for 6,517 free C++, C# and .NET articles, code snippets, discussions, news and the best bunch of developers on the net.&lt;br /&gt;&lt;br /&gt;http://www.developer.com - Lots of stuff on programming in C, C++ and JAVA, a good place to look for articles and literature on many subjects.&lt;br /&gt;&lt;br /&gt;http://www.codebeach.com - Code Beach is your complete guide to free and open source code and tutorials for ASP, C++, C#, ColdFusion, Delphi/Kylix, Java, _JavaScript, Palm, Perl, PHP, Pocket PC, Python, Visual Basic, and XML.&lt;br /&gt;&lt;br /&gt;http://www.troobloo.com - TrooBloo is a large database of technology articles and tutorials. You can browse different categories (e.g. PHP, Web Services, XML), search the database and receive new articles and tutorials by email.&lt;br /&gt;&lt;br /&gt;http://www.devarticles.com - devArticles.com is a joint effort by a team of dedicated and skilled programmers from many different countries around the world including Australia, Germany, England, South America and the United States. devArticles was developed to provide up-to date, relevant and informative content to beginning, intermediate and advanced developers and programmers alike.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/820774982463576597-1469880208381894189?l=developerspeaks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://developerspeaks.blogspot.com/feeds/1469880208381894189/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://developerspeaks.blogspot.com/2009/04/good-technical-sites-to-help-in-your.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/1469880208381894189'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/820774982463576597/posts/default/1469880208381894189'/><link rel='alternate' type='text/html' href='http://developerspeaks.blogspot.com/2009/04/good-technical-sites-to-help-in-your.html' title='Good technical sites to help in your project'/><author><name>Dobin Fernandes</name><uri>http://www.blogger.com/profile/11946750865867209684</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>1</thr:total></entry></feed>
