﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>kad1r.com rss feed</title><link>http://www.kad1r.com/rss.aspx</link><description>kad1r.com rss feed</description><copyright>(c) 2010, Kadir Avci</copyright><language>en-En</language><pubDate>Wed, 08 Feb 2012 11:25:00 GMT</pubDate><item><title>AVG Internet Security 2011 - 90 days free</title><description>&lt;p&gt;&lt;img alt="avg internet security 2011" src="/images/default_images/avg-internet-security.jpg" /&gt;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Protection that actually speeds up your PC&lt;/li&gt;
    &lt;li&gt;Block hackers and stop identity thieves&lt;/li&gt;
    &lt;li&gt;Gaming and surfing without interruptions&lt;/li&gt;
    &lt;li&gt;Keep messaging free of spam, worms and scams&lt;/li&gt;
    &lt;li&gt;Expert support from techies that care&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;Campain page: &lt;a target="_blank" href="http://www.avg.pl/ZimaZAVG" rel="external nofollow"&gt;http://www.avg.pl/ZimaZAVG&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;Campain code: &lt;span style="font-weight: bold;"&gt;ZIMAZAVG&lt;/span&gt;&lt;/div&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=297&amp;Category=Promotions&amp;title=AVG-internet-Security-2011-90-days-free</link><pubDate>Tue, 17 Jan 2012 17:41:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=297&amp;Category=Promotions&amp;title=AVG-internet-Security-2011-90-days-free</guid></item><item><title>Database helper class - database crud processes</title><description>&lt;p&gt;I want to share my class for database processes. I mean SQL CRUD processes. Create(Insert), Read(Select), Insert and Update.&lt;br /&gt;
If you are using stored procedures in your web projects it's very usefull for you. Because you just write your sql parameters and stored procedure name and then finish. Just it.&lt;br /&gt;
&lt;br /&gt;
Here is the class and code sample.&lt;br /&gt;
&lt;br /&gt;
web.config example:&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;&lt; connectionstrings&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt; add pooling=&amp;quot;True;&amp;quot;&amp;quot; info=&amp;quot;False;&amp;quot; security=&amp;quot;&amp;quot; persist=&amp;quot;&amp;quot; pwd=&amp;quot;password;&amp;quot; uid=&amp;quot;sa;&amp;quot; database=&amp;quot;dbname;&amp;quot; source=&amp;quot;KADIR-PC\SQLEXPRESS;&amp;quot; connectionstring=&amp;quot;&amp;quot;Data&amp;quot; name=&amp;quot;&amp;quot;localhost&amp;quot;&amp;quot;&gt;&lt; /add&gt;&lt;br /&gt;
&amp;nbsp; &lt; / connectionstrings&gt;&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
Class usage:&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;SqlParameter[] param = new SqlParameter[6];&lt;br /&gt;
param[0] = new SqlParameter(&amp;quot;@catname&amp;quot;, &amp;quot;test&amp;quot;);&lt;br /&gt;
param[1] = new SqlParameter(&amp;quot;@title&amp;quot;, &amp;quot;testsd&amp;quot;);&lt;br /&gt;
param[2] = new SqlParameter(&amp;quot;@description&amp;quot;, &amp;quot;tt&amp;quot;);&lt;br /&gt;
param[3] = new SqlParameter(&amp;quot;@keywords&amp;quot;, &amp;quot;tst&amp;quot;);&lt;br /&gt;
param[4] = new SqlParameter(&amp;quot;@active&amp;quot;, 1);&lt;br /&gt;
param[5] = new SqlParameter(&amp;quot;@date&amp;quot;, DateTime.Now);&lt;br /&gt;
DataTable dtInsert = dbHelper.runQueryWithParams(&amp;quot;insert_categories&amp;quot;, param);&lt;/code&gt;&lt;/p&gt;
&lt;div&gt;&lt;!--kamore--&gt;&lt;/div&gt;
&lt;p&gt;Class codes:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;/p&gt;
&lt;p&gt;using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.Linq;&lt;br /&gt;
using System.Web;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Data.SqlClient;&lt;br /&gt;
&lt;br /&gt;
/// &lt;summary&gt;&lt;br /&gt;
/// Summary description for dbHelper&lt;br /&gt;
/// &lt;/summary&gt;&lt;br /&gt;
public class dbHelper&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; public dbHelper()&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // TODO: Add constructor logic here&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; public static DataTable runQuery(string procName)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataTable dt = new DataTable();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings[&amp;quot;localhost&amp;quot;].ConnectionString);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SqlCommand cmd = new SqlCommand(procName, conn);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cmd.CommandType = CommandType.StoredProcedure;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (conn.State == ConnectionState.Closed || conn.State == ConnectionState.Broken)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; conn.Open();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SqlDataAdapter da = new SqlDataAdapter(cmd);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SqlDataReader dr = cmd.ExecuteReader();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt.Load(dr);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return dt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (Exception ex)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; throw new Exception(&amp;quot;Error: &amp;quot; + ex.Message);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; finally&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; conn.Close();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cmd.Dispose();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; public static DataTable runQueryWithParams(string storedProcedureName, params SqlParameter[] arrParam)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataTable dt = new DataTable();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings[&amp;quot;localhost&amp;quot;].ConnectionString);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SqlCommand cmd = new SqlCommand(storedProcedureName, conn);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cmd.CommandType = CommandType.StoredProcedure;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (conn.State == ConnectionState.Closed || conn.State == ConnectionState.Broken)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; conn.Open();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (arrParam != null)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (SqlParameter param in arrParam)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cmd.Parameters.Add(param);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SqlDataAdapter da = new SqlDataAdapter(cmd);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SqlDataReader dr = cmd.ExecuteReader();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt.Load(dr);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return dt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (Exception ex)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; throw new Exception(&amp;quot;Error: &amp;quot; + ex.Message);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; finally&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cmd.Dispose();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; conn.Close();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
}&lt;/code&gt;&lt;/p&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=296&amp;Category=ASP.Net&amp;title=Database-helper-class-database-crud-processes</link><pubDate>Sun, 15 Jan 2012 16:47:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=296&amp;Category=ASP.Net&amp;title=Database-helper-class-database-crud-processes</guid></item><item><title>Is it necessary to know Math for programming?</title><description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;Is it necessary to know Math for programming?&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;
First times of the computers the user who were using them are approximately %80 of mathematicians. But nowadays this is different. But if you really want to be a very good programmer, is it necessary to know math? The answer is depending what you are doing, I mean what your job is.&lt;br /&gt;
If your job is&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;em&gt;AI (Artificial Intelligence)&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Calculating statistical datas&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Working over animation models&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Astronomy, or weather simulations&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Voice analysis, character recognizing&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Fingerprint recognizing or identity recognizing&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Biologic research applications&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Artifical nerve networks&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;or writing new programming language&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;
If your job is none of them you don't need to know math. I mean normal &lt;a target="_blank" href="http://www.kad1r.com" title="kad1r, kadir avci, web developer, web designer"&gt;web developer&lt;/a&gt; or java programmer or c# programmer does not have to know math.&lt;br /&gt;
&lt;em&gt;&lt;strong&gt;Why best programmers know Math?&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;
Because math supports you to recognize or comprehend the situations or systems very fast. So the base of project (applications) or your databases are much more effective and substantial. And ofcouse because of knowing math your time spend is decreasing.&lt;/p&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=295&amp;Category=Programming&amp;title=is-it-necessary-to-know-Math-for-programming?</link><pubDate>Thu, 05 Jan 2012 17:03:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=295&amp;Category=Programming&amp;title=is-it-necessary-to-know-Math-for-programming?</guid></item><item><title>2011 Programming Language Statistics</title><description>&lt;p&gt;&lt;img alt="programming languages order in 2011, best programming languages 2011" src="/images/default_images/programming-languages-order.jpg" /&gt;&lt;/p&gt;
&lt;div&gt;You can find previous years order and more information from refer link. As you can see first three order was not changed again. Java is the leader. We can see C# and Objective C is increasing. Php, Pyhton and Delphi is decreasing.&lt;/div&gt;
&lt;div&gt;Refer link: &lt;a rel="nofollow" href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html" target="_blank"&gt;http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html&lt;/a&gt;&lt;/div&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=294&amp;Category=Programming&amp;title=2011-Programming-Language-Statistics</link><pubDate>Mon, 02 Jan 2012 20:14:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=294&amp;Category=Programming&amp;title=2011-Programming-Language-Statistics</guid></item><item><title>How to gain your visitor in 10 seconds</title><description>&lt;p&gt;&lt;strong&gt;How to gain your visitor in 10 seconds&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;em&gt;Your webpage must be compatible with all browser. It's simple and clear. Visitors don't like view issues.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Don't make them install Flash player or etc. I hate that. When I saw that I immediately close the page.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;First 2nd and 3rd seconds visitor try to understand where I am. And please stay away messages or first pages like &amp;quot;Welcome to my website&amp;quot; or &amp;quot;Untitled&amp;quot;.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;After 3rd seconds visitors generally look top of the page and middle of the page. These two are important. Your website navigation, social networks and content titles and some writes of your contents are very important. If you are using headline visitors always look at there. And visitors spend their first 7 seconds to look them.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;If they quit it means you gain the visitor a little.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Last thing is be stay online to visitors. If your contents or visitors what they are looking for is for them. Congratulations.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=293&amp;Category=Tips, Tricks&amp;title=How-to-gain-your-visitor-in-10-seconds</link><pubDate>Mon, 02 Jan 2012 16:14:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=293&amp;Category=Tips, Tricks&amp;title=How-to-gain-your-visitor-in-10-seconds</guid></item><item><title>Happy new year (welcome 2012)</title><description>&lt;p&gt;&lt;img src="/images/default_images/google-2012-logo.jpg" alt="new year logo, google new year logo" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;A merry Christmas to everybody! A happy New Year to the world! I hope New Year brings you bright hopes, new success and many new reasons to smile and happyness.&lt;/em&gt;&lt;/p&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=292&amp;Category=News&amp;title=Happy-new-year-welcome-2012</link><pubDate>Sat, 31 Dec 2011 00:10:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=292&amp;Category=News&amp;title=Happy-new-year-welcome-2012</guid></item><item><title>Free Stock Photos to download for your projects</title><description>&lt;p&gt;&lt;img width="635" alt="stock photos, stock photo website, free stock photo download" src="/images/default_images/stock-photos.JPG" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;For free stock photo databases, there are few sites on the web and their qualities are high quality.&lt;br /&gt;
Here are huge resources of free stock photos on the web.&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Stock Xchng &lt;/strong&gt;&amp;ndash;&lt;a title="Stock Xchng" rel="external nofollow" target="_blank" href="http://www.sxc.hu/"&gt; http:/www.sxc.hu/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Dreamstime&lt;/strong&gt; &amp;ndash; &lt;a title="Dreamstime" rel="external nofollow" target="_blank" href="http://www.dreamstime.com/free-photos"&gt;http://www.dreamstime.com/free-photos&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Stockvault.Net &lt;/strong&gt;- &lt;a title="Stockvault.Net" rel="external nofollow" target="_blank" href="http://www.stockvault.net/"&gt;http://www.stockvault.net/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;PhotoXpress&lt;/strong&gt; &amp;ndash; &lt;a title="PhotoXpress" rel="external nofollow" target="_blank" href="http://www.photoxpress.com/"&gt;http://www.photoxpress.com/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Everystockphoto&lt;/strong&gt; &amp;ndash; &lt;a title="Everystockphoto" rel="external nofollow" target="_blank" href="http://www.everystockphoto.com/"&gt;http://www.everystockphoto.com/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Free Stock Photos Bank&lt;/strong&gt; - &lt;a title="Free Stock Photos Bank" rel="external nofollow" target="_blank" href="http://www.freephotosbank.com/"&gt;http://www.freephotosbank.com/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Free Digital Photos&lt;/strong&gt; &amp;ndash; &lt;a title="Free Digital Photos" rel="external nofollow" target="_blank" href="http://www.freedigitalphotos.net/"&gt;http://www.freedigitalphotos.net/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Morguefile&lt;/strong&gt; &amp;ndash; &lt;a title="Morguefile" rel="external nofollow" target="_blank" href="http://www.morguefile.com/"&gt;http://www.morguefile.com/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Freerangestock&lt;/strong&gt; &amp;ndash; &lt;a title="Freerangestock" rel="external nofollow" target="_blank" href="http://freerangestock.com/"&gt;http://freerangestock.com/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Lomography &lt;/strong&gt;&amp;ndash; &lt;a title="Lomography" rel="external nofollow" target="_blank" href="http://www.lomography.com/photos"&gt;http://www.lomography.com/photos&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Imagebase &lt;/strong&gt;&amp;ndash; &lt;a title="Imagebase" rel="external nofollow" target="_blank" href="http://imagebase.davidniblack.com/"&gt;http://imagebase.davidniblack.com/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Openphoto&lt;/strong&gt; &amp;ndash; &lt;a title="Openphoto" rel="external nofollow" target="_blank" href="http://openphoto.net/"&gt;http://openphoto.net/&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Woophy&lt;/strong&gt; &amp;ndash; &lt;a title="Woophy" rel="external nofollow" target="_blank" href="http://woophy.com/photo/"&gt;http://woophy.com/photo/&lt;/a&gt;&lt;/p&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=291&amp;Category=Web Design&amp;title=Free-Stock-Photos-to-download-for-your-projects</link><pubDate>Fri, 23 Dec 2011 12:22:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=291&amp;Category=Web Design&amp;title=Free-Stock-Photos-to-download-for-your-projects</guid></item><item><title>Focus on textbox in asp.net</title><description>&lt;div&gt;If you want to focus the textbox in your webpage try this code. Just remove the _&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;C# code:&lt;/div&gt;
&lt;div&gt;&lt;code&gt;Page_.RegisterStartupScript (&amp;quot;SetFocus&amp;quot;, &amp;quot;
&lt;script_&gt;_document_.getElementById('&amp;quot; + TextBox1.ClientID + &amp;quot;').focus();&lt;!--_script--&gt;&amp;quot;);&lt;/script_&gt;
&lt;/code&gt;&lt;/div&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=290&amp;Category=ASP.Net&amp;title=Focus-on-textbox-in-asp.net</link><pubDate>Sun, 18 Dec 2011 00:56:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=290&amp;Category=ASP.Net&amp;title=Focus-on-textbox-in-asp.net</guid></item><item><title>Ciaran Begley - Solace Sounds 69 (EOYC)</title><description>&lt;p&gt;Ciaran Begley was amazing at 16.12.2011. His track list is in down below. I love the collection. My favorite vocals are 16, 19 and 27.&lt;/p&gt;
&lt;p&gt;&lt;embed height="344" width="425" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://www.youtube.com/v/tp://www.youtube.com/watch?feature=player_embedded&amp;amp;v=dq3NWbi5tEM%26hl=en%26fs=1%26rel=0%26ap=%2526fmt=18"&gt;&lt;/embed&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.youtube.com/watch?feature=player_embedded&amp;amp;v=dq3NWbi5tEM" target="_blank"&gt;http://www.youtube.com/watch?feature=player_embedded&amp;amp;v=dq3NWbi5tEM&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Download - &lt;a target="_blank" href="http://hulkshare.com/k064yqd2vz6m" rel="external nofollow"&gt;http://hulkshare.com/k064yqd2vz6m&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;01. Reeves Feat. Alanah - Lonely (Aurosonic Intro Vox Bootleg)&lt;br /&gt;
02. Arty Feat. Tania Zygar - The Wall (Arty Remode Mix)&lt;br /&gt;
03. Kaskade &amp;amp; Tiesto Feat. Haley - Only You (Ken Loi Remix) &lt;br /&gt;
04. Heatbeat - Megabootleg 500&lt;br /&gt;
05. Emma Hewitt - Colours (Armin Van Buuren Remix) &lt;br /&gt;
06. John O'Callaghan Feat. Cathy Burton - Perfection (Shogun Remix) &lt;br /&gt;
07. Grace - Not Over Yet (Max Graham Vs. Protoculture Remix)&lt;br /&gt;
08. Triple A - Winter Stayed (Armin Van Buurens On The Beach Mix) &lt;br /&gt;
09. Richard Durand Feat. Ellie Lawson - Wide Awake (Full Vocal Mix) &lt;br /&gt;
10. Paul Oakenfold Feat. Tamra - Sleep (Marcus Schossow Perfecto Mix) &lt;br /&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;div&gt;&lt;!--kamore--&gt;&lt;/div&gt;
&lt;p&gt;&lt;em&gt; 11. Boom Jinx Feat. Justine Suissa - Phoenix From The Flames (Omnia And The Blizzard Remix)&lt;br /&gt;
12. Cosmic Gate And Emma Hewitt - Be Your Sound (Orjan Nilsen Remix) &lt;br /&gt;
13. Federation - Synchronized (Protoculture Remix)&lt;br /&gt;
14. Tritonal Feat. Meredith Call - Broken Down (Will Holland Remix) &lt;br /&gt;
15. Sied Van Riel Feat. Fenja - The Game (Original Mix) &lt;br /&gt;
16. Jon O'Bir Feat. Julie Harrington - Perfect As You Are (Original Mix)&lt;br /&gt;
17. Tiddey Feat. Lyck - Keep Waiting (Orjan Nilsen Midsummernite Remix) &lt;br /&gt;
18. Cardinal Feat. Arielle - Sink Into Me (Protoculture Remix) &lt;br /&gt;
19. Josh Gabriel Pres. Winter Kills - Hot As Hades (John O'Callaghan Deep Dream Remix)  &lt;br /&gt;
20. Max Graham Feat. Neeve Kennedy - So Caught Up (Joint Operations Centre Remix)  &lt;br /&gt;
21. Mike Foyle Pres. Statica - Headrush  &lt;br /&gt;
22. Arnej Pres. 8 Wonders - X (Original Mix)  &lt;br /&gt;
23. Mark Sherry Feat. Sharone - Silent Tears - (Orjan Nilsen Remix) &lt;br /&gt;
24. Andrew Bayer - From The Earth (Breakfast Remix) &lt;br /&gt;
25. The Thrillseekers - Song For Sendai (Original Mix)  &lt;br /&gt;
26. Protoculture Feat. Shannon Hurley - Sun Gone Down (Original Mix)  &lt;br /&gt;
27. Alex M.O.R.P.H. Feat. Sylvia Tosun - An Angels Love (Vocal Mix)  &lt;br /&gt;
28. Ana Criado - Can't Hold Back The Rain (Stoneface &amp;amp; Terminal Mix)  &lt;br /&gt;
29. Bellatrax Feat. Sylvia Tosun - World Keeps Turning (Alex M.O.R.P.H. &amp;amp; Chris Ortega Remix)   &lt;br /&gt;
30. Richard Durand Feat. Hadley- Run To You (Sean Tyas Remix) &lt;br /&gt;
31. Glenn Morrison Feat. Christian Burns - Tokyo (Alex M.O.R.P.H. Remix)  &lt;br /&gt;
32. Tom Colontonio Feat. Cibon - The Sun (Original Mix)  &lt;br /&gt;
33. Simon Patterson - Mood Swing &lt;br /&gt;
34. Simon Patterson - Latika  &lt;br /&gt;
35. John O'Callaghan Feat. Audrey Gallagher - Bring Back The Sun (Original Mix)   &lt;br /&gt;
36. Roger Shah Feat. Adrina Thorpe - Island (Club Mix) &lt;br /&gt;
37. Bobina Feat. Betsie Larken - You Belong To Me (Jorn Van Deynhoven Remix)  &lt;br /&gt;
38. Gareth Emery Feat. Lucy Saunders - Fight The Sunrise (Daniel Kandis Rise Mix) &lt;br /&gt;
39. Sied Van Riel Feat. Nicola McKenna - Stealing Time (Aly &amp;amp; Fila Remix)  &lt;br /&gt;
40. Aly &amp;amp; Fila Feat. Jwaydan - We Control The Sunlight (Original Mix)&lt;br /&gt;
41. Aly &amp;amp; Fila Feat. Sue McLarnen - Still (Jorn Van Deynhoven Remix)  &lt;br /&gt;
42. Armin Van Buuren - Coming Home (Arctic Moon Remix)  &lt;br /&gt;
43. Insigma - Open Your Eyes (Alex M.O.R.P.H. Remix)  &lt;br /&gt;
44. Infinite Feat. Jakub Hubner - Lacrimosa (Ronny K. Emotional Remix)&lt;br /&gt;
45. Binary Finary - Freedom Seekers (Arctic Moon Remix) &lt;br /&gt;
46. Ahmed Romel - Only For You (Arctic Moon Remix)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=289&amp;Category=Trance/Vocal Trance&amp;title=Ciaran-Begley-Solace-Sounds-69-EOYC</link><pubDate>Sat, 17 Dec 2011 10:51:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=289&amp;Category=Trance/Vocal Trance&amp;title=Ciaran-Begley-Solace-Sounds-69-EOYC</guid></item><item><title>Why I'm addict to .Net and why I choose it?</title><description>&lt;p&gt;Hello everyone. I will try to explain why I choose .Net for development side. The answer is very simple. Very powerful IDE and .Net libraries. Visual Studio as you know it's an IDE&amp;nbsp;which is for .Net, provide us easiness.&lt;/p&gt;
&lt;p&gt;For instance;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;The errors and warnings &lt;/em&gt;&lt;/u&gt;&lt;em&gt;- In web design the w3c compatibility is very important. So it shows us the errors or warnings and we can easly fix them.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;Master pages&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - When we create a website first we design the fundamentals. We're making the shape and we want it stays stable and fixed. So we create a single masterpage and design it. Then other pages are created over the masterpages and we can create the all webpages with one masterpage.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;User controls&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - Some times we need some changing in webpages. For instance, in the masterpage we design some fixed places. But we don't want to see them in the other pages. Or we want to add some places. So we create user controls.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;Html tags&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - When we are using html tags, it shows us the opening and closing tags automatically and we can write our code very fast.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;Pattern&lt;/em&gt;&lt;/u&gt;&lt;em&gt; -  It's pattern is very effective. We can write codes in pattern. It's like a tree.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;Dynamic&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - It's more dynamic for other languages. Especially for Php and Ruby.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;Performance&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - When you compare the performance .Net is the best. If you want to inspect here is the &lt;a target="_blank" href="http://www.kad1r.com/article.aspx?articleId=59&amp;amp;Category=ASP.Net&amp;amp;title=ASP.Net-vs-PHP" title="asp.net vs php comparison"&gt;&lt;em&gt;asp.net vs php comparison link&lt;/em&gt;&lt;/a&gt;.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;Up to date&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - It's always up to date with new trends and changes.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;OOP&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - Ofcouse Php is OOP to but .Net is more OOP.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;Framework&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - Php is just a scripting language, but .Net is a framework!&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;Job Opportunities&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - In my country .Net job opportunities is much more better and as you know most of company pass to .Net.&lt;br /&gt;
    &lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;.Net code complexity is fairly linear.&amp;nbsp; PHP code becomes exponentially more complex and time consuming.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;u&gt;&lt;em&gt;More language support&lt;/em&gt;&lt;/u&gt;&lt;em&gt; - .Net supports C++, C#, Visual Basic.NET, Jscript.NET, Python, Perl, Java (J#), COBOL, Eiffel and Delphi.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;So that's why I&amp;nbsp;choose .Net and I'm still develop my applications with .Net.&lt;strong&gt; I love ASP.Net ;)&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=288&amp;Category=ASP.Net&amp;title=Why-im-addict-to-.Net-and-why-i-choose-it?</link><pubDate>Wed, 14 Dec 2011 22:21:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=288&amp;Category=ASP.Net&amp;title=Why-im-addict-to-.Net-and-why-i-choose-it?</guid></item><item><title>My new mouse - Razer Abyssus</title><description>&lt;p&gt;&lt;img alt="kad1r.com, razer abyssus" src="/images/default_images/razer/razer-abyssus-1-kad1r.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img width="600" alt="razer abyssus, kad1r.com" src="/images/default_images/razer/razer-abyssus-2-kad1r.jpg" /&gt;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;em&gt;3500dpi Razer Precision&amp;trade; 3.5G Infrared Sensor&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;3 Buttons Tuned For Ultra-Responsive Feedback&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;em&gt;Hardware Toggles for DPI and Polling Rate&lt;/em&gt; - Adapt to your game instantly with 2 toggle switches for 450/1800/3500dpi and 125/1000Hz polling rate adjustments without the need for any software drivers.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3500dpi Razer Precision&amp;trade; 3.5G infrared sensor&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000Hz Ultrapolling&amp;trade; / 1ms response time&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mechanical dpi/polling rate switches&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; On-The-Fly Sensitivity&amp;trade; adjustment&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; No Drift Control&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Always-On&amp;trade; mode&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ultra-large non-slip buttons&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 16-bit ultra-wide data path&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 60-120 inches per second and 15g of acceleration&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Three independently programmable Hyperesponse&amp;trade; buttons&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ambidextrous design&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Scroll wheel with 24 individual click positions&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Zero-acoustic Ultraslick&amp;trade; mouse feet&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Seven-foot, lightweight, non-tangle cord&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Approximate Size : 115 mm / 4.53&amp;quot; (Length) x 63 mm / 2.48&amp;quot; (Width) x 40 mm / 1.58&amp;quot; (Height)&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Approximate Weight: 72 g / 0.16 lbs&lt;br /&gt;
    &amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=287&amp;Category=News&amp;title=My-new-mouse-Razer-Abyssus</link><pubDate>Sat, 10 Dec 2011 20:32:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=287&amp;Category=News&amp;title=My-new-mouse-Razer-Abyssus</guid></item><item><title>BullGuard Internet Security 12 (3 months) promotion</title><description>&lt;p&gt;&lt;img src="/images/default_images/bullguard-internet-security-12.jpg" alt="bullguard internet security, bullguard 12" style="width:620px;" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Behavioural Detection makes our Antivirus engine catch 65% more viruses than traditional antivirus engines&lt;/li&gt;
    &lt;li&gt;Safe Browsing flags unsafe websites on every search results page you access&lt;/li&gt;
    &lt;li&gt;The Vulnerability Scanner warns you about outdated software that may be putting you at risk&lt;/li&gt;
    &lt;li&gt;Online Backup allows you to protect your most precious data&lt;/li&gt;
    &lt;li&gt;Parental Control makes keeping your kids safe on the internet a piece of cake.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://bullguard.com/marketingfiles/ext/web/advent_calendar/#" target="_blank"&gt;Click for the BullGuard Internet Security 12 3 months promotion.&lt;/a&gt;&lt;/p&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=286&amp;Category=Promotions&amp;title=BullGuard-internet-Security-12-3-months-promotion</link><pubDate>Tue, 06 Dec 2011 00:03:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=286&amp;Category=Promotions&amp;title=BullGuard-internet-Security-12-3-months-promotion</guid></item><item><title>Bitdefender Internet Security 2012 - 1 year promotion</title><description>&lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;em&gt;Bitdefender Internet Security 2012&lt;/em&gt;&lt;/u&gt;&lt;/strong&gt; integrates &lt;em&gt;&lt;u&gt;antivirus, antispam, antiphising, firewall, parental controls&lt;/u&gt;&lt;/em&gt;, and social networking safeguards into the perfect silent &lt;u&gt;security solution&lt;/u&gt; for Internet-connected families!&lt;/p&gt;
&lt;p&gt;Here is the &lt;a target="_blank" rel="external nofollow" href="http://www.bitdefender.de/media/html/de/pcwelt/"&gt;BitDefender Internet Security 2012 promotion page&lt;/a&gt;. Just type your email address to the box.&lt;/p&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=285&amp;Category=Promotions&amp;title=Bitdefender-internet-Security-2012-1-year-promotion</link><pubDate>Fri, 02 Dec 2011 20:31:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=285&amp;Category=Promotions&amp;title=Bitdefender-internet-Security-2012-1-year-promotion</guid></item><item><title>People and Design (Serie 2)</title><description>&lt;p&gt;&lt;a target="_blank" href="http://www.kad1r.com/article.aspx?articleId=268&amp;amp;Category=Web%20Design&amp;amp;title=People-and-Design"&gt;People and Design Serie 1&lt;/a&gt; is here as you know. It's very popular.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img width="600" alt="people and design image 1" src="/images/default_images/people-design-s2/people-design-s2-1.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-3.jpg" alt="people and design image 3" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-4.jpg" alt="people and design image 4" /&gt;&lt;/p&gt;
&lt;div&gt;&lt;!--kamore--&gt;&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-5.jpg" alt="people and design image 5" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-6.jpg" alt="people and design image 6" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-7.jpg" alt="people and design image 7" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-8.jpg" alt="people and design image 8" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-9.jpg" alt="people and design image 9" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-10.jpg" alt="people and design image 10" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-11.jpg" alt="people and design image 11" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-12.jpg" alt="people and design image 12" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img width="600" src="/images/default_images/people-design-s2/people-design-s2-13.jpg" alt="people and design image 13" /&gt;&lt;/p&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=284&amp;Category=Web Design&amp;title=People-and-Design-Serie-2</link><pubDate>Thu, 01 Dec 2011 20:03:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=284&amp;Category=Web Design&amp;title=People-and-Design-Serie-2</guid></item><item><title>How to make your blog looks professional</title><description>&lt;p&gt;&lt;img width="650" title="good design, design, web design, web tasarım, web dizayn" alt="good design, design, web design, web tasarım, web dizayn" src="/images/default_images/good-design.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;u&gt;&lt;em&gt;Some design tips and tricks for making professional blogs.&lt;/em&gt;&lt;/u&gt;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;strong&gt;Remove ads&lt;/strong&gt; - &lt;em&gt;I know all of you want to gain some money from blogs or webpages. But nobody like the advertising especially if they are so boring.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Remove pop-ups&lt;/strong&gt; - &lt;em&gt;Remove pop-up images or ads because you always can &lt;/em&gt;see the pop-ups registeration or e-mail subscribing. I hate them and I know you hate too.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Don't use too many social media icons&lt;/strong&gt; - &lt;em&gt;Many blogger use social media icons. Everybody wants you to share their posts and they can't know which social bookmark sites that you are using. So they put all social media button. But we know that everybody use at least Facebook or Twitter or FriendFeed. So use just a couple buttons to share your posts.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Don't make crowded or complex design&lt;/strong&gt; - &lt;em&gt;Your design must be simple and clear. When user come to your blog they can see everything what they need.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Don't use splash page&lt;/strong&gt; - &lt;em&gt;Some designers use splash pages. Just don't use it.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Don't use marquee texts&lt;/strong&gt; - &lt;em&gt;Marquee text using by newspapers blogs or webpages. Why are you using them. They are so boring to get mouse icon over the texts and try to read them. They are useless and wasting time.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Don't use toolbars &lt;/strong&gt;- &lt;em&gt;Toolbars that always use with social media are boring. They are always showing&amp;nbsp; pop-ups.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Make good navigation and pagers&lt;/strong&gt; - &lt;em&gt;As I told you before your design must be simple. User wants to see where is your search box, categories, best posts or something like that. And they also don't want to scroll down for an infinity times. Limit your contents number. For example use total 10 or 12 posts for your main pages.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Registration&lt;/strong&gt; - &lt;em&gt;Registrations are boring. Some blog admins wants you to register to read the content. What is wrong with you guys. Why are you using this? What is the point?&amp;nbsp;Just getting more money but it is useless.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Limit your color palette&lt;/strong&gt; - &lt;em&gt;Limit your colors. Don't use too many colors and compatib&lt;/em&gt;&lt;em&gt;le colors.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Always use search box&lt;/strong&gt; - &lt;em&gt;If the user like your blog they want to search other contents or sometimes your content is unreachable and maybe they can find it by search box.&lt;/em&gt;&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Don't use background musics &lt;/strong&gt;- &lt;em&gt;It's so classic nowadays. Please don't use mucis and it's not good for your bandwidht.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;</description><link>http://www.kad1r.com/article.aspx?articleId=283&amp;Category=Web Design&amp;title=How-to-make-your-blog-looks-professional</link><pubDate>Tue, 29 Nov 2011 09:55:00 GMT</pubDate><guid>http://www.kad1r.com/article.aspx?articleId=283&amp;Category=Web Design&amp;title=How-to-make-your-blog-looks-professional</guid></item></channel></rss>
