<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech Solutions</title>
	<atom:link href="http://www.compedia4us.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.compedia4us.com</link>
	<description>Blogging &#124; Tech Tutorials &#124; Make Money Online &#124; Online Articles</description>
	<lastBuildDate>Fri, 06 Aug 2010 14:32:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Apply Linked Style to Your Web Pages Using CSS</title>
		<link>http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css</link>
		<comments>http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css#comments</comments>
		<pubDate>Fri, 09 Jul 2010 12:30:01 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[linked css style]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css</guid>
		<description><![CDATA[Ideally, you place styles in a separate document (a style sheet) that links to multiple pages so that the styles have global (site-wide) scope. The styles defined in this style sheet can then affect every page of your site, not just a single page or a single tag. This is the only method of the [...]]]></description>
			<content:encoded><![CDATA[<p>Ideally, you place styles in a separate document (a style sheet) that links to multiple pages so that the styles have global (site-wide) scope. The styles defined in this style sheet can then affect every page of your site, not just a single page or a single tag. This is the only method of the three that truly separates the presentational styles from the structural markup.</p>
<p><span id="more-5709"></span></p>
<p>If you centralize all your CSS styles in a style sheet in this way, Web site design and editing become much easier. For example, if you need to make changes that affect the whole site (”The client wants all the paragraph text to be blue, not black.”), doing so can be as quick and painless as modifying one CSS style. This is certainly much easier than the pre-CSS task of modifying every FONT attribute of every paragraph tag in every page of the site.</p>
<p><img style="display: inline; border: 0px;" title="CSS" src="http://www.compedia4us.com/wp-content/uploads/2010/07/CSS.png" border="0" alt="CSS" width="446" height="271" /></p>
<p>You can link your style sheet to as many XHTML pages as you want with a single line of code in the head of each XHTML page:</p>
<p>&lt;link href=&#8221;my_style_sheet.css&#8221; media=&#8221;screen&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; /&gt;</p>
<p>Then the styles are applied to each page’s markup as the page loads. Note that, in the above link tag, the media attribute is defined as &#8220;screen&#8221;, meaning the style sheet is designed for the screen, which currently means Web browsers. (Certain user agents look for particular media attributes that best suit their display capabilities; possibilities here include: all, projection, handheld, print and aural.</p>
<p>See a full list on the W3 Schools site (<a href="http://www.w3schools.com/css/css_mediatypes.asp">www.w3schools.com/css/css_mediatypes.asp</a>).</p>
<p>A browser reads a style sheet where the link tag media attribute is all or screen. But by adding a second link tag with the media attribute of &#8220;print&#8221;, you can offer a second style sheet that the browser will use when printing. A style sheet for printing might hide navigational and other elements that don’t make sense when the content goes to paper. If you create a second style sheet for printing, its link tag might look<br />
like this</p>
<p>&lt;link href=&#8221;my_style_sheet_print.css&#8221; media=&#8221;print&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; /&gt;</p>
<p>So now that you know what style sheets are, let’s look at how you write style sheet rules, and how concepts like Inheritance, Specificity, and the Cascade control how these rules affect your markup.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css" rel="bookmark" class="crp_title">Three Ways to Style Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Embedded Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml" rel="bookmark" class="crp_title">What Are The Basic Rules Of Writing XHTML</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls" rel="bookmark" class="crp_title">How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</a></li><li><a href="http://www.compedia4us.com/2010/03/solution-for-the-dns-error-problem-in-google-chrome-%e2%80%93-%e2%80%9cthe-link-appears-to-be-broken%e2%80%9d" rel="bookmark" class="crp_title">Solution for the DNS error problem in Google Chrome &ndash; &ldquo;The link appears to be broken&rdquo;</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apply Embedded Style to Your Web Pages Using CSS</title>
		<link>http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css</link>
		<comments>http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css#comments</comments>
		<pubDate>Fri, 09 Jul 2010 12:16:00 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[embedded css style]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css</guid>
		<description><![CDATA[We have previously discussed about Inline CSS Styles to apply on Web Pages and this time we are going to discuss about the second way i.e Embedded CSS Style to apply on creating WebPages.&#160; You can place a group of CSS styles in the head of your XHTML document. These are known as embedded styles [...]]]></description>
			<content:encoded><![CDATA[<p>We have previously discussed about <a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css">Inline CSS Styles</a> to apply on Web Pages and this time we are going to discuss about the second way i.e Embedded CSS Style to apply on creating WebPages.&#160; You can place a group of CSS styles in the head of your XHTML document. These are known as embedded styles (or page styles) because they are part of the page (or embedded in it). Embedded styles work like this: </p>
<p><span id="more-5706"></span></p>
<p>&lt;head&gt; </p>
<p>&lt;title&gt;Embedded Styles example&lt;/title&gt; </p>
<p>&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=iso-8859-1&quot; /&gt; </p>
<p>&lt;meta http-equiv=&quot;Content-Language&quot; content=&quot;en-us&quot; /&gt; </p>
<p>&lt;style type=&quot;text/css&quot;&gt; </p>
<p>h1 {font-size: 16px;} </p>
<p>p {color:blue;} </p>
<p>&lt;/style&gt; </p>
<p>&lt;/head&gt; </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="cssembeddedstyle" border="0" alt="cssembeddedstyle" src="http://www.compedia4us.com/wp-content/uploads/2010/07/cssimg.gif" width="349" height="324" /> </p>
<p>The style tag tells the browser it is about to encounter code other than XHTML; the tag’s attribute states that the code is CSS. Here’s what you need to know about embedded (or page) styles: </p>
<ul>
<li>• The scope of embedded styles is limited to the page that contains the styles. </li>
<li>• If you are only publishing a single page with these particular styles, you can embed the styles in the head of the document, although you are not truly separating the styles from the content; they are still in the same document. You will become familiar with embedded styles as you follow along with the hands-on single-page examples in this chapter. </li>
<li>• If you are working up multiple styles for a complex layout such as a form, sometimes it’s easier to write the styles as embedded styles in the head of the document so that you don’t have to constantly switch between the markup and the style sheet. Then, once everything is working, you can move the styles into the main style sheet and replace the styles in the header with a link to the style sheet. </li>
<li>• Page styles override style sheet styles, but they lose out to attributes you define in inline styles. </li>
<li>• If you are sending an XHTML page to someone for a critique, it’s considerate to embed the CSS styles in the page, so the reviewer only has to open the page and everything works; however, for a Web site of any scale, there is really only one way to manage the CSS and that is in a style sheet that can be linked to all of the site’s pages.</li>
</ul>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css" rel="bookmark" class="crp_title">Three Ways to Style Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Linked Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml" rel="bookmark" class="crp_title">What Are The Basic Rules Of Writing XHTML</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls" rel="bookmark" class="crp_title">How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</a></li><li><a href="http://www.compedia4us.com/2010/04/convert-the-web-page-into-pdf-file-format" rel="bookmark" class="crp_title">Convert The Web Page Into PDF File Format</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three Ways to Style Your Web Pages Using CSS</title>
		<link>http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css</link>
		<comments>http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css#comments</comments>
		<pubDate>Fri, 09 Jul 2010 11:59:15 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[inline css style]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css</guid>
		<description><![CDATA[There are three ways to add CSS to your Web pages: inline styles, embedded styles, and linked styles from a separate CSS style sheet. The only one that really makes any sense in terms of developing Web sites is to link your XHTML pages to a CSS style sheet, but we will examine the other [...]]]></description>
			<content:encoded><![CDATA[<p>There are three ways to add CSS to your Web pages: <a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css">inline styles</a>, <a href="http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css">embedded styles</a>, and <a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css">linked styles</a> from a separate CSS style sheet. The only one that really makes any sense in terms of developing Web sites is to link your XHTML pages to a CSS style sheet, but we will examine the other two as well, as they can be useful while creating your pages. </p>
<p><span id="more-5703"></span></p>
<p>A style sheet can be linked to an infinite number of XHTML pages, which helps ensure a consistent look from page to page and allows edits made to a style to be instantly reflected across an entire site. </p>
<h2><u>Inline Styles </u></h2>
<p>Inline styles (also known as local styles) are added to a tag using the XHTML style attribute, like this </p>
<p>&lt;p&gt;This paragraph simply takes on the browser’s default paragraph style.&lt;/p&gt; </p>
<p>&lt;p style=&quot;font-size: 25pt; font-weight:bold; font-style:italic; color:red;&quot;&gt;By adding inline CSS styling to this paragraph, we can override the default styles.&lt;/p&gt; </p>
<p>&lt;p&gt;And now we are back to a regular default paragraph without any inline styles.&lt;/p&gt; </p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="inlinestyleexample" border="0" alt="inlinestyleexample" src="http://www.compedia4us.com/wp-content/uploads/2010/07/image.png" width="500" height="391" /> </p>
<p>Here are some things you need to know about inline styles: </p>
<ul>
<li>• Their scope is very restricted. An inline style only affects the tag to which it is attached. </li>
<li>• The practice of using inline styles is simply another way of putting presentational markup directly on the tags, as we did in days of yore. Adding inline styles everywhere is as bad for the portability and edit ability of your markup as adding deprecated HTML attributes, such as FONT. Inline styles should be generally avoided. </li>
<li>• On those rare occasions when you need to override a style in just one specific instance and there is no better way to do it, you can create an inline style and not feel too guilty about it. That said, you could almost always avoid using inline styles by adding a unique ID or class to the tag in question and then writing a corresponding style in your style sheet. </li>
<li>• Using an inline style is a good way to try out a style before you move it into the style sheet (see “Linked Styles” on the next page). Just remember to clear out the style attribute entirely once you achieve the effect you want and then cut and paste just the style itself into the style sheet. If you have it in the markup, that inline style will always override whatever change you try to make to that particular tag from the style sheet, and you can spend hours trying to fix the style sheet when the problem is, in fact, hidden in the markup. </li>
<li>• Inline styles override the same styles you define with embedded styles (described next), which override global styles you define in style sheets.</li>
</ul>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Embedded Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Linked Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml" rel="bookmark" class="crp_title">What Are The Basic Rules Of Writing XHTML</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls" rel="bookmark" class="crp_title">How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile" rel="bookmark" class="crp_title">How to Apply a Theme to your Twitter Profile</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Stop Twitter From Sending New Follower Messages</title>
		<link>http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2</link>
		<comments>http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2#comments</comments>
		<pubDate>Fri, 02 Jul 2010 13:32:52 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[articles]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[stop followers notification in twitter]]></category>
		<category><![CDATA[stop twitter sending messages]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2</guid>
		<description><![CDATA[With all these great renovations you’ve been doing, it won’t be long before people start beating a path to your Twitter door. You’ll know right away if your custom design is a hit because Twitter sends you an e-mail message every time a kind soul decides to follow you. Personally, I love getting these messages [...]]]></description>
			<content:encoded><![CDATA[<p>With all these great renovations you’ve been doing, it won’t be long before people start beating a path to your Twitter door. You’ll know right away if your custom design is a hit because Twitter sends you an e-mail message every time a kind soul decides to follow you. Personally, I love getting these messages because it’s great to know that my tweets have a growing audience, and it also gives me a chance to check out lots of other profiles. </p>
<p><span id="more-5701"></span></p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Follow me on Twitter_thumb" border="0" alt="Follow me on Twitter_thumb" src="http://www.compedia4us.com/wp-content/uploads/2010/07/FollowmeonTwitter_thumb1.jpg" width="400" height="250" /> </p>
<p>You never know who you might come across and decide to follow yourself. On the other hand, if your profile becomes quite popular, getting tons of messages from Twitter may not appeal to you. Similarly, you might be following as many people as you can handle, so you’re not interested in also following any of your new followers. If that’s the case, then you should follow these steps to tell Twitter to stop sending you an e-mail message each time someone follows you: </p>
<p>1. Sign in to your Twitter account. </p>
<p>2. Click Settings. The Settings page appears. </p>
<p>3. Click the Notices tab. </p>
<p>4. Deselect the Email when someone starts following me check box. </p>
<p>5. Click Save. Twitter updates your profile with the new setting</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile" rel="bookmark" class="crp_title">How To Apply A Customize Background Image On Your Twitter Profile</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile" rel="bookmark" class="crp_title">How to Apply a Theme to your Twitter Profile</a></li><li><a href="http://www.compedia4us.com/2010/05/twitter-has-decided-to-ban-the-third-party-ad-networks" rel="bookmark" class="crp_title">Twitter has decided to Ban the Third Party Ad Networks</a></li><li><a href="http://www.compedia4us.com/2009/10/tiny-twitter-a-best-way-to-tweet-on-your-mobile-phone" rel="bookmark" class="crp_title">Tiny Twitter &#8211; a best way to tweet on your mobile phone</a></li><li><a href="http://www.compedia4us.com/2009/10/vodafone-live-manual-settings-for-sony-ericsson-phones" rel="bookmark" class="crp_title">Vodafone live! manual settings for Sony Ericsson phones</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Best Free Anti Spyware Programs</title>
		<link>http://www.compedia4us.com/2010/07/6-best-free-anti-spyware-programs</link>
		<comments>http://www.compedia4us.com/2010/07/6-best-free-anti-spyware-programs#comments</comments>
		<pubDate>Fri, 02 Jul 2010 13:11:58 +0000</pubDate>
		<dc:creator>James Adams</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[anti spyware]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[best anti spywares]]></category>
		<category><![CDATA[secure your pc]]></category>
		<category><![CDATA[six free anti spywares]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/07/6-best-free-anti-spyware-programs</guid>
		<description><![CDATA[Spyware is an application which is designed to gather your personal information and transmit it to a criminal. These criminals have created a multi-million dollar industry which is solely devoted to stop them. Fortunately, you don&#8217;t have to spend millions to protect yourself against spyware. In fact, you don&#8217;t have to spend a dime. Here [...]]]></description>
			<content:encoded><![CDATA[<p>Spyware is an application which is designed to gather your personal information and transmit it to a criminal. These criminals have created a multi-million dollar industry which is solely devoted to stop them. Fortunately, you don&#8217;t have to spend millions to protect yourself against spyware. In fact, you don&#8217;t have to spend a dime. Here are some of the best free anti-spyware programs available.<span id="more-5696"></span></p>
<h4>1. <a href="http://www.microsoft.com/hk/athome/security/spyware/software/default.mspx">Windows Defender</a></h4>
<p>Microsoft&#8217;s Windows Defender is one of the best at the detection and removal of spyware. It begins by searching through your common files, then branching out to look at the rest of your system. The program destroys the regular spyware parasites, but doesn&#8217;t provide protection against some of the common viruses.</p>
<p><img style="border-bottom: 0px;border-left: 0px;float: none;margin-left: auto;border-top: 0px;margin-right: auto;border-right: 0px" border="0" alt="windows-defender" src="http://www.compedia4us.com/wp-content/uploads/2010/07/windowsdefender.jpg" width="549" height="449" />&#160; </p>
<h4>2. <a href="http://www.lavasoft.com/products/ad_aware_free.php">Ad-Aware SE, Personal Edition</a></h4>
<p>Ad Aware is one of the most popular spyware and malware detectors and killers on the market today. The scans are fast because there is no version of the antivirus software in the free version. Ad-Aware is updated all the time, and is very effective at its job. There is a pay version of this program which offers real time protection, but the free version is well worth the download.</p>
<p><img style="border-bottom: 0px;border-left: 0px;float: none;margin-left: auto;border-top: 0px;margin-right: auto;border-right: 0px" border="0" alt="ad-aware" src="http://www.compedia4us.com/wp-content/uploads/2010/07/adaware.jpg" width="563" height="406" />&#160; </p>
<h4>3. <a href="http://www.superantispyware.com">SuperAntispyware</a></h4>
<p>The free version of SUPERAntiSpyware is limited in its scope, but does everything necessary. It will scan hard drives, registries and memory for spyware and malware. It will also detect and remove most threats, including spyware, malware, worms and keyloggers. You can also manually download updates every eight hours, designed to keep you on the cutting edge of anti-spyware databases. The free version does not offer real-time detection and removal, but their upgraded versions do.</p>
<p><img style="border-bottom: 0px;border-left: 0px;float: none;margin-left: auto;border-top: 0px;margin-right: auto;border-right: 0px" border="0" alt="superantispyware" src="http://www.compedia4us.com/wp-content/uploads/2010/07/superantispyware.jpg" width="550" height="482" />&#160; </p>
<h4>4. <a href="http://www.pywareterminator.com">Spyware Terminator 2.0</a></h4>
<p>This program offers spyware blocking, removal and protection from spyware. The real time protection monitors your system and prevents spyware from being downloaded to your machine. This anti-spyware application is effective in defending against the malware and spyware threats that are out there. It is great for those who want to load the program and forget about it.</p>
<p><img style="border-bottom: 0px;border-left: 0px;float: none;margin-left: auto;border-top: 0px;margin-right: auto;border-right: 0px" border="0" alt="spyware-terminator" src="http://www.compedia4us.com/wp-content/uploads/2010/07/spywareterminator.jpg" width="535" height="409" />&#160; </p>
<h4>5. <a href="http://www.malwarebytes.org/mbam.php">MalwareBytes Anti Malware</a></h4>
<p>This program is free for personal use, making it a perfect candidate for at home protection. The professionals use this program at home to defend against malware on their personal computers because it removes a majority of the malware out there. It is also effective against rogue antivirus programs, detecting and removing those quickly and easily. MalwareBytes has a professional edition which adds scheduled scans, automatic updates and real-time protection against malware.</p>
<p><img style="border-bottom: 0px;border-left: 0px;float: none;margin-left: auto;border-top: 0px;margin-right: auto;border-right: 0px" border="0" alt="malwarebytes" src="http://www.compedia4us.com/wp-content/uploads/2010/07/malwarebytes.jpg" width="572" height="487" />&#160; </p>
<h4>6. <a href="http://www.avast.com/free-antivirus-download">Avast! Antivirus 4.8 Home Edition</a></h4>
<p>The free home edition of Avast! removes viruses and spyware from your system and keeps it that way. Avast!&#8217;s protection checks out email, IMs and peer to peer systems. Avast! makes it nearly impossible for a computer to receive malicious software like spyware. Like many others, there is a $39.95 professional edition which offers some more features. Malicious programs are everywhere on the net, and these applications are designed to stop them. Using two or more of these in conjunction with each other is suggested, because there indeed is no one size fits all approach that can be taken. As with people, these free applications all have their strengths and weaknesses, but all of them defend and stop spyware from infecting your machine. <em>James Adams is a writer and designer who works for <a href="http://www.cartridgesave.co.uk/">Cartridge Save</a> as a product reviewer where he writes reviews of <a href="http://www.cartridgesave.co.uk/franking-machine-ink.html">franking machine cartridges</a>.</em></p>
<p><img style="border-bottom: 0px;border-left: 0px;float: none;margin-left: auto;border-top: 0px;margin-right: auto;border-right: 0px" border="0" alt="avast" src="http://www.compedia4us.com/wp-content/uploads/2010/07/avast.jpg" width="539" height="433" /> </p>
<p><font size="2"><strong>post by: James Adams</strong></font></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2009/08/grab-antivirus-and-antispyware-in-one-software-%e2%80%93-download-vipre-application" rel="bookmark" class="crp_title">Grab Antivirus and Antispyware in one Software – Download VIPRE Application</a></li><li><a href="http://www.compedia4us.com/2010/02/download-driver-access" rel="bookmark" class="crp_title">Download Driver Access</a></li><li><a href="http://www.compedia4us.com/2009/08/how-to-solve-blank-desktop-problem-explorer-exe-not-run-while-computer-startup" rel="bookmark" class="crp_title">How to solve Blank Desktop Problem | Explorer.exe Not Run while Computer Startup</a></li><li><a href="http://www.compedia4us.com/2010/04/protect-your-usb-drives-against-autorun-viruses-for-life-time" rel="bookmark" class="crp_title">Protect Your USB Drives Against Autorun Viruses For Life Time</a></li><li><a href="http://www.compedia4us.com/2009/02/how-to-protect-your-mobile-phone-from-viruses" rel="bookmark" class="crp_title">How to Protect your Mobile phone from viruses</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/07/6-best-free-anti-spyware-programs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is Baseband Signaling On Physical Layer In the Field of Telecommunication</title>
		<link>http://www.compedia4us.com/2010/06/what-is-baseband-signaling-on-physical-layer-in-the-field-of-telecommunication</link>
		<comments>http://www.compedia4us.com/2010/06/what-is-baseband-signaling-on-physical-layer-in-the-field-of-telecommunication#comments</comments>
		<pubDate>Wed, 30 Jun 2010 16:29:26 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Telecommunication]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[baseband signaling]]></category>
		<category><![CDATA[physical layer]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/what-is-baseband-signaling-on-physical-layer-in-the-field-of-telecommunication</guid>
		<description><![CDATA[Baseband, or digital, signaling is based on the use of discrete states to convey information across a communications channel. These discrete states are typically represented as pulses of some sort (such as voltage) and are thus often called square waves. Below Image shows a square wave by which two discrete states (0 and 1) can [...]]]></description>
			<content:encoded><![CDATA[<p>Baseband, or digital, signaling is based on the use of discrete states to convey information across a communications channel. These discrete states are typically represented as pulses of some sort (such as voltage) and are thus often called square waves. Below Image shows a square wave by which two discrete states (0 and 1) can be represented each by a different voltage (plus and minus 12 volts in the picture below).</p>
<p><span id="more-5687"></span></p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image19.png" width="493" height="182" /> </p>
<p>Many different baseband signaling schemes have been developed over the years; a few of the most popular are shown in the image below. At the top of the figure is a uni-polar signaling scheme, in which a digital 1 is represented by a +5 volt state and a digital 0 is represented by a no voltage (ground) state. This scheme was widely used in early transistor-transistor logic (TTL) circuitry. In the middle of the figure is a bipolar signaling scheme, in which a digital 1 is represented by a –12volt state and a digital 0 is represented by a +12volt state. This scheme is widely used today in a Physical layer protocol known as EIA-232-E. At the bottom of the figure is a bipolar return to zero (BPRZ) scheme in which digital 0s are represented by a no voltage (ground) state and digital 1s are represented by alternating 3-volt pulses. </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image20.png" width="548" height="501" /> </p>
<p>This latter scheme, sometimes called alternate mark inversion (AMI), is used on T-1 lines by carriers and customers alike. As we have seen, each of these baseband signaling schemes has either seen widespread use in the past or is in widespread use today. A major determinant of the choice to use one baseband scheme over another has to do with the ease with which timing and synchronization is supported by the technique.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/definition-of-signaling-and-information-content-and-what-is-broadband-signaling" rel="bookmark" class="crp_title">Definition of Signaling And Information Content And What Is Broadband Signaling</a></li><li><a href="http://www.compedia4us.com/2009/10/what-are-digital-basis-of-computers" rel="bookmark" class="crp_title">What are Digital basis of Computers</a></li><li><a href="http://www.compedia4us.com/2010/06/what-is-volt-and-description-of-volt" rel="bookmark" class="crp_title">What Is Volt And Description Of Volt</a></li><li><a href="http://www.compedia4us.com/2010/06/what-is-timing-and-synchronization-and-how-it-relates-with-physical-layerinterfaces" rel="bookmark" class="crp_title">What is Timing and Synchronization and how it relates with Physical Layer/Interfaces</a></li><li><a href="http://www.compedia4us.com/2010/01/what-is-parallel-and-serial-physical-communication" rel="bookmark" class="crp_title">What is Parallel and Serial Physical Communication</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/what-is-baseband-signaling-on-physical-layer-in-the-field-of-telecommunication/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Configure MySQL and Apache to Start Automatically</title>
		<link>http://www.compedia4us.com/2010/06/how-to-configure-mysql-and-apache-to-start-automatically</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-configure-mysql-and-apache-to-start-automatically#comments</comments>
		<pubDate>Wed, 30 Jun 2010 14:42:06 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache tutorials]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[mysql tutorials]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorials]]></category>
		<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-configure-mysql-and-apache-to-start-automatically</guid>
		<description><![CDATA[If you’re going to be doing a lot of development (and if you bought this book, that’s a given!), then you should consider configuring the Apache and MySQL servers to start automatically when your system boots up. The following sections outline the process to accomplish this process automatically. Automatically Start MySQL And Apache on UNIX [...]]]></description>
			<content:encoded><![CDATA[<p>If you’re going to be doing a lot of development (and if you bought this book, that’s a given!), then you should consider configuring the Apache and MySQL servers to start automatically when your system boots up. The following sections outline the process to accomplish this process automatically.</p>
<p><span id="more-5684"></span></p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="php_apache_mysql" border="0" alt="php_apache_mysql" src="http://www.compedia4us.com/wp-content/uploads/2010/06/php_apache_mysql.jpg" width="367" height="347" /> </p>
<h2><u>Automatically Start MySQL And Apache on UNIX</u></h2>
<p>On UNIX, both MySQL and Apache servers come with startup/shutdown scripts, which can be used to start and stop them. These scripts are located within the installation hierarchy for each program. Here’s an example of how to use the </p>
<p><em><u>MySQL server control script:</u></em> </p>
<p>[root@host]# /usr/local/mysql/support-files/mysql.server start </p>
<p>[root@host]# /usr/local/mysql/support-files/mysql.server stop </p>
<p><u><em>And here’s an example of how to use the Apache control script:</em></u> </p>
<p>[root@host]# /usr/local/apache/bin/apachectl start </p>
<p>[root@host]# /usr/local/apache/bin/apachectl stop </p>
<p>To have MySQL and Apache start automatically at boot time on UNIX, simply invoke their respective control scripts with appropriate parameters from your system’s boot-up and shutdown scripts in the /etc/rc.d/* hierarchy.</p>
<h2><u>Automatically Start MySQL And Apache On Windows</u></h2>
<p>On Windows, you can use the WinMySQLadmin utility to start and shut down MySQL, and the server controls installed by Apache on the Start menu to control the Apache server. To start MySQL and Apache automatically on Windows, simply add a link to the mysqld.exe and apache.exe server binaries to your Startup group.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/01/installation-of-mysql-in-unix-operating-system" rel="bookmark" class="crp_title">Installation of MySQL in UNIX Operating System</a></li><li><a href="http://www.compedia4us.com/2010/01/installation-of-apache-and-php-in-unix-operating-system" rel="bookmark" class="crp_title">Installation of Apache and PHP in UNIX Operating System</a></li><li><a href="http://www.compedia4us.com/2010/01/installation-of-apache-on-windows-operating-system" rel="bookmark" class="crp_title">Installation of Apache on Windows Operating System</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-setting-up-the-mysql-super-user-password" rel="bookmark" class="crp_title">How to Setting Up the MySQL Super-User Password</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-test-mysql-after-installation" rel="bookmark" class="crp_title">How to Test MySQL after Installation</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-configure-mysql-and-apache-to-start-automatically/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is Near-End Crosstalk (NEXT) And Far End Crosstalk (FEXT)</title>
		<link>http://www.compedia4us.com/2010/06/what-is-near-end-crosstalk-next-and-far-end-crosstalk-fext</link>
		<comments>http://www.compedia4us.com/2010/06/what-is-near-end-crosstalk-next-and-far-end-crosstalk-fext#comments</comments>
		<pubDate>Tue, 29 Jun 2010 13:03:00 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Telecommunication]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[far end crosstalk]]></category>
		<category><![CDATA[near end crosstalk]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/what-is-near-end-crosstalk-next-and-far-end-crosstalk-fext</guid>
		<description><![CDATA[When the crosstalk is detected on the same end of the cable that generated the signal, then near-end crosstalk has occurred. NEXT is most common within 20 to 30 meters (60 to 90 feet) of the transmitter. The below image clearly describe the near-end crosstalk. Crosstalk on poorly designed or poorly installed cables is a [...]]]></description>
			<content:encoded><![CDATA[<p>When the crosstalk is detected on the same end of the cable that generated the signal, then near-end crosstalk has occurred. NEXT is most common within 20 to 30 meters (60 to 90 feet) of the transmitter. The below image clearly describe the near-end crosstalk. Crosstalk on poorly designed or poorly installed cables is a major problem with technologies such as 10Base-T and 100Base-TX. </p>
<p><span id="more-5682"></span></p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image18.png" width="488" height="281" /> </p>
<p>However, as long as the cable is installed correctly, NEXT is less of an issue when using 1000Base-T because the designers implemented technologies to facilitate NEXT cancellation. NEXT-cancellation techniques with 1000Base-T are necessary because all four pairs are employed for both transmitting and receiving data.</p>
<blockquote><p><font color="#ff0000">IMPORTANT :-</font> Cables that have had their twists undone (untwisted) can be problematic because the twists help cancel crosstalk. Twists are normally untwisted at the ends near the patch panels or connectors when the cable is connected. On the receiving pair of wires in a cable, the signal received at the end of the cable will be the weakest, so the signal there can be more easily interfered with. If the wires on adjacent transmit pairs are untwisted, this will cause a greater amount of crosstalk than normal. A cable should never have the wire pairs untwisted more than 0.5 inches for Category 5 and 5e, and 0.375 inches maximum for Category 6 cables.</p>
</blockquote>
<h2><u>Far End Crosstalk (FEXT)</u></h2>
<p>Far-end crosstalk (FEXT) is similar to NEXT except that it is detected at the opposite end of the cable from where the signal was sent. Due to attenuation, the signals at the far end of the transmitting wire pair are much weaker than the signals at the near end. The measure of FEXT is used to calculate equal-level far-end crosstalk (ELFEXT) (discussed in the next section). More FEXT will be seen on a shorter cable than a longer one because the signal at the receiving side will have less distance over which to attenuate.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/01/hindrances-to-high-speed-data-transfer" rel="bookmark" class="crp_title">Hindrances to High-Speed Data Transfer</a></li><li><a href="http://www.compedia4us.com/2010/01/what-factor-slows-down-your-data-over-the-network-cables" rel="bookmark" class="crp_title">What Factor Slows Down Your Data over the Network Cables</a></li><li><a href="http://www.compedia4us.com/2010/06/specifications-of-twisted-pair-cable" rel="bookmark" class="crp_title">Specifications of Twisted Pair Cable</a></li><li><a href="http://www.compedia4us.com/2009/11/types-of-ibm-cable" rel="bookmark" class="crp_title">Types of IBM Cable</a></li><li><a href="http://www.compedia4us.com/2009/10/unshielded-twisted-pair-utp-cables" rel="bookmark" class="crp_title">Unshielded Twisted Pair (UTP) Cables</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/what-is-near-end-crosstalk-next-and-far-end-crosstalk-fext/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Do Companies Make Money with Linux</title>
		<link>http://www.compedia4us.com/2010/06/how-do-companies-make-money-with-linux</link>
		<comments>http://www.compedia4us.com/2010/06/how-do-companies-make-money-with-linux#comments</comments>
		<pubDate>Tue, 29 Jun 2010 12:38:54 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux guide]]></category>
		<category><![CDATA[make money online]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-do-companies-make-money-with-linux</guid>
		<description><![CDATA[Open source enthusiasts believe that better software can result from an open source software development model than from proprietary development models. So in theory, any company creating software for its own use can save money by adding its software contributions to those of others to gain a much better end product for themselves. Companies that [...]]]></description>
			<content:encoded><![CDATA[<p>Open source enthusiasts believe that better software can result from an open source software development model than from proprietary development models. So in theory, any company creating software for its own use can save money by adding its software contributions to those of others to gain a much better end product for themselves. Companies that want to make money selling software need to be more creative than they did in the old days. </p>
<p><span id="more-5680"></span></p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="make-money-roadsign_480_1" border="0" alt="make-money-roadsign_480_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/makemoneyroadsign_480_1.jpg" width="397" height="292" /> </p>
<p>While you can sell the software you create that includes GPL software, you must pass the source code of that software forward. Of course, others can then recompile that product, basically using your product without charge. Here are a few ways that companies are dealing with that issue: </p>
<p>✦ Software subscriptions—Red Hat, Inc. sells its Red Hat Enterprise Linux products on a subscription basis. For a certain amount of money per year, you get binary code to run Linux (so you don’t have to compile it yourself), guaranteed support, tools for tracking the hardware and software on your computer, and access to the company’s knowledge base. While Red Hat’s Fedora project includes much of the same software and is also available in binary form, there are no guarantees associated with the software or future updates of that software. A small office or personal user might take the risk on Fedora (which is itself an excellent operating system) but a big company that’s running mission-critical applications will probably put down a few dollars for RHEL. </p>
<p>✦ Donations—Many open source projects accept donations from individuals or open source companies that use code from their projects. Amazingly, many open source projects support one or two developers and run exclusively on donations. </p>
<p>✦ Bounties—The concept of software bounties is a fascinating way for open source software companies to make money. Let’s say that you are using XYZ software package and you need a new feature right away. By paying a software bounty to the project itself, or to other software developers, you can have your needed improvements moved to the head of the queue. The software you pay for will remain covered by its open source license, but you will have the features you need, at probably a fraction of the cost of building the project from scratch. </p>
<p>✦ Boxed sets, mugs, and T-shirts—Many open source projects have online stores where you can buy boxed sets (some people still like physical CDs and hard copies of documentation) and a variety of mugs, T-shirts, mouse pads, and other items. If you really love a project, for goodness sake, buy a T-shirt! This is in no way an exhaustive list, because more creative ways are being invented every day to support those who create open source software. </p>
<p>Remember that many people have become contributors to and maintainers of open source software because they needed or wanted the software themselves. The contributions they make for free are worth the return they get from others who do the same.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/importance-of-linux-operating-system-and-its-features" rel="bookmark" class="crp_title">Importance of Linux Operating System and Its Features</a></li><li><a href="http://www.compedia4us.com/2009/11/how-microsoft-grants-software-licenses" rel="bookmark" class="crp_title">How Microsoft Grants Software Licenses</a></li><li><a href="http://www.compedia4us.com/2010/06/what-is-software-and-what-are-two-categories-of-software" rel="bookmark" class="crp_title">What Is Software And What Are Two Categories Of Software</a></li><li><a href="http://www.compedia4us.com/2009/02/how-to-protect-your-mobile-phone-from-viruses" rel="bookmark" class="crp_title">How to Protect your Mobile phone from viruses</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-solve-the-delayed-startup-issue-in-firefox-3-5" rel="bookmark" class="crp_title">How to Solve the delayed startup issue in Firefox 3.5</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-do-companies-make-money-with-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is Volt And Description Of Volt</title>
		<link>http://www.compedia4us.com/2010/06/what-is-volt-and-description-of-volt</link>
		<comments>http://www.compedia4us.com/2010/06/what-is-volt-and-description-of-volt#comments</comments>
		<pubDate>Mon, 28 Jun 2010 14:41:33 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Elecrtronics]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[define voltage]]></category>
		<category><![CDATA[description of voltage]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[voltage]]></category>
		<category><![CDATA[what is volt]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/what-is-volt-and-description-of-volt</guid>
		<description><![CDATA[The volt is the standard unit of electromotive force (EMF) or potential difference. An accumulation of static electric charge, such as an excess or shortage of electrons, is always, associated with a voltage. There are other situations in which voltages exist. Voltage is generated at a power plant, and produced in an electrochemical reaction, and [...]]]></description>
			<content:encoded><![CDATA[<p>The volt is the standard unit of electromotive force (EMF) or potential difference. An accumulation of static electric charge, such as an excess or shortage of electrons, is always, associated with a voltage. There are other situations in which voltages exist. Voltage is generated at a power plant, and produced in an electrochemical reaction, and caused by light falling on a special semiconductor chip. </p>
<p><span id="more-5678"></span></p>
<p>It can be produced when an object is moved in a magnetic field, or is placed in a fluctuating magnetic field. A potential difference between two points produces an electric field, represented by electric lines of flux as you can see in below image. There is always a pole that is relatively positive, with fewer electrons, and one that is relatively negative, with more electrons. The positive pole does not necessarily have a deficiency of electrons compared with neutral objects, and the negative pole might not actually have a surplus of electrons with respect to neutral things. </p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image17.png" width="392" height="316" /> </p>
<p>But there’s always a difference in charge between the two poles. The negative pole always has more electrons than the positive pole. The abbreviation for volt is V. Sometimes, smaller units are used. The millivolt (mV) is equal to a thousandth (0.001) of a volt. The microvolt (μV) is equal to a millionth (0.000001) of a volt. And it is sometimes necessary to use units much larger than one volt. One kilovolt (kV) is equal to one thousand volts (1,000). One megavolt (MV) is equal to one million volts (1,000,000) or one thousand kilovolts. In a dry cell, the EMF is usually between 1.2 and 1.7 V; in a car battery, it is most often 12 V to 14 V. In household utility wiring, it is a low-frequency alternating current of about 117 V for electric lights and most appliances, and 234 V for a washing machine, dryer, oven, or stove. In television sets, transformers convert 117 V to around 450 V for the operation of the picture tube. </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="1195422026161972150h0us3s_Sign_danger_high_voltage.svg.hi" border="0" alt="1195422026161972150h0us3s_Sign_danger_high_voltage.svg.hi" src="http://www.compedia4us.com/wp-content/uploads/2010/06/1195422026161972150h0us3s_Sign_danger_high_voltage.svg_.hi_.jpg" width="327" height="309" /> </p>
<p>In some broadcast transmitters, kilovolts are used. The largest voltages on Earth occur between clouds, or between clouds and the ground, in thundershowers; this potential difference is on the order of tens of megavolts. In every case, voltage, EMF, or potential difference represents the fact that charge carriers will flow between two points if a conductive path is provided. The number of charge carriers might be small even if the voltage is huge, or very large even if the voltage is tiny. Voltage represents the pressure or driving force that impels the charge carriers to move. In general, for a given number of charge carriers, higher voltages will produce a faster flow, and therefore a larger current. It’s something like water pressure. The amount of water that will flow through a hose is proportional to the water pressure, all other things being equal.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/what-is-electromotive-force-and-nonelectrical-energy" rel="bookmark" class="crp_title">What is Electromotive force and Nonelectrical energy</a></li><li><a href="http://www.compedia4us.com/2010/06/what-is-current-and-static-electricity-in-the-field-of-electronics" rel="bookmark" class="crp_title">What is Current and Static Electricity in the field of Electronics</a></li><li><a href="http://www.compedia4us.com/2009/10/description-of-electrons" rel="bookmark" class="crp_title">Description of Electrons</a></li><li><a href="http://www.compedia4us.com/2010/02/what-are-resistors-and-semi-conductors" rel="bookmark" class="crp_title">What are Resistors and Semi-Conductors</a></li><li><a href="http://www.compedia4us.com/2010/06/what-is-baseband-signaling-on-physical-layer-in-the-field-of-telecommunication" rel="bookmark" class="crp_title">What Is Baseband Signaling On Physical Layer In the Field of Telecommunication</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/what-is-volt-and-description-of-volt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Significance of . NET and C# (C Sharp)</title>
		<link>http://www.compedia4us.com/2010/06/significance-of-net-and-c-c-sharp</link>
		<comments>http://www.compedia4us.com/2010/06/significance-of-net-and-c-c-sharp#comments</comments>
		<pubDate>Sat, 26 Jun 2010 14:26:19 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[C-Sharp]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[.net framework]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/significance-of-net-and-c-c-sharp</guid>
		<description><![CDATA[In order to understand the significance of .NET, it is useful to remind ourselves of the nature of many of the Windows technologies that have appeared in the past 10 years or so. Although they may look quite different on the surface, all of the Windows operating systems from Windows 3.1 (introduced in 1992) through [...]]]></description>
			<content:encoded><![CDATA[<p>In order to understand the significance of .NET, it is useful to remind ourselves of the nature of many of the Windows technologies that have appeared in the past 10 years or so. Although they may look quite different on the surface, all of the Windows operating systems from Windows 3.1 (introduced in 1992) through Windows Server 2008 have the same familiar Windows API at their core.</p>
<p><span id="more-5675"></span></p>
<p><a href="http://www.compedia4us.com/wp-content/uploads/2010/06/csharpdot_net.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="csharpdot_net" border="0" alt="csharpdot_net" src="http://www.compedia4us.com/wp-content/uploads/2010/06/csharpdot_net_thumb.jpg" width="528" height="167" /></a> </p>
<p>As we’ve progressed through new versions of Windows, huge numbers of new functions have been added to the API, but this has been a process of evolving and extending the API rather than replacing it.The same can be said for many of the technologies and frameworks that we’ve used to develop software for Windows. For example, COM ( Component Object Model ) originated as OLE ( Object Linking and Embedding ). At the time, it was, to a large extent, simply a means by which different types of Office documents could be linked, so that, for example, you could place a small Excel spreadsheet in your Word document. From that it evolved into COM, DCOM ( Distributed COM ), and eventually COM+ — a sophisticated technology that formed the basis of the way almost all components communicated, as well as implementing transactions, messaging services, and object pooling. </p>
<p>Microsoft chose this evolutionary approach to software for the obvious reason that it is concerned about backward compatibility. Over the years, a huge base of third &#8211; party software has been written for Windows, and Windows wouldn’t have enjoyed the success it has had if every time Microsoft introduced a new technology it broke the existing code base! Although backward compatibility has been a crucial feature of Windows technologies and one of the strengths of the Windows platform, it does have a big disadvantage. Every time some technology evolves and adds new features, it ends up a bit more complicated than it was before.</p>
<p>It was clear that something had to change. Microsoft couldn&#8217;t go on forever extending the same development tools and languages, always making them more and more complex in order to satisfy the conflicting demands of keeping up with the newest hardware and maintaining backward compatibility with what was around when Windows first became popular in the early 1990s. There comes a point where you have to start with a clean slate if you want a simple yet sophisticated set of languages, environments, and developer tools, which makes it easy for developers to write state &#8211; of &#8211; the &#8211; art software. </p>
<p>This fresh start is what C# and .NET are all about. Roughly speaking, .NET is a framework — an API — for programming on the Windows platform. Along with the .NET Framework, C# is a language that has been designed from scratch to work with .NET, as well as to take advantage of all the progress in developer environments and in our understanding of object &#8211; oriented programming principles that have taken place over the past 20 years. We should make it clear that backward compatibility has not been lost in the process. Existing programs will continue to work, and .NET was designed with the ability to work with existing software. Presently, communication between software components on Windows almost entirely takes place using COM. Taking account of this, .NET does have the ability to provide wrappers around existing COM components so that .NET components can talk to them. </p>
<p>It is true that you don ’ t need to learn C# in order to write code for .NET. Microsoft has extended C++, provided another new language called J#, and made substantial changes to Visual Basic to turn it into the more powerful language Visual Basic .NET, in order to allow code written in either of these languages to target the .NET environment. These other languages, however, are hampered by the legacy of having evolved over the years rather than having been written from the start with today’s technology in mind.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/what-is-net-framework" rel="bookmark" class="crp_title">What is .NET Framework?</a></li><li><a href="http://www.compedia4us.com/2010/06/importance-of-linux-operating-system-and-its-features" rel="bookmark" class="crp_title">Importance of Linux Operating System and Its Features</a></li><li><a href="http://www.compedia4us.com/2010/06/microsoft-will-stop-windows-xp-os-on-netbooks-from-oct-2010" rel="bookmark" class="crp_title">Microsoft will Stop Windows XP OS On Netbooks from Oct 2010</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-install-windows-xp-professional-using-an-existing-operating-system" rel="bookmark" class="crp_title">How to Install Windows XP Professional Using an Existing Operating System</a></li><li><a href="http://www.compedia4us.com/2009/11/turn-your-windows-7-into-wi-fi-hotspot-with-virtual-router" rel="bookmark" class="crp_title">Turn your Windows 7 into Wi-Fi Hotspot with Virtual Router</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/significance-of-net-and-c-c-sharp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically Allocated IP Addresses And Relationship Between Domain Names And IP Addresses</title>
		<link>http://www.compedia4us.com/2010/06/dynamically-allocated-ip-addresses-and-relationship-between-domain-names-and-ip-addresses</link>
		<comments>http://www.compedia4us.com/2010/06/dynamically-allocated-ip-addresses-and-relationship-between-domain-names-and-ip-addresses#comments</comments>
		<pubDate>Sat, 26 Jun 2010 11:58:54 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[dynamically allocated ip address]]></category>
		<category><![CDATA[ip address]]></category>
		<category><![CDATA[networks]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/dynamically-allocated-ip-addresses-and-relationship-between-domain-names-and-ip-addresses</guid>
		<description><![CDATA[A network administrator is responsible for assigning which devices receive&#160; which IP addresses in a corporate network. The admin assigns an IP address to&#160; a device in one of two ways: by configuring the device with a specific address&#160; or by letting the device automatically learn its address from the network.&#160; Dynamic Host Configuration Protocol [...]]]></description>
			<content:encoded><![CDATA[<p>A network administrator is responsible for assigning which devices receive&#160; which IP addresses in a corporate network. The admin assigns an IP address to&#160; a device in one of two ways: by configuring the device with a specific address&#160; or by letting the device automatically learn its address from the network.&#160; Dynamic Host Configuration Protocol (DHCP) is the protocol used for automatic&#160; IP address assignment. </p>
<p><span id="more-5672"></span></p>
<p>Dynamic addressing saves considerable administrative&#160; effort and conserves IP addressing space. It can be difficult to manually&#160; administer IP addresses for every computer and device on a network. Most&#160; networks use DHCP to automatically assign an available IP address to a device&#160; when it connects to the network. Generally, devices that don’t move around&#160; receive fixed addresses, known as static addressing. For example, servers,&#160; routers, and switches usually receive static IP addresses. The rest use dynamic&#160; addressing. For home networks you do not need a network administrator to&#160; set up your address; instead, a home broadband router allocates IP addresses&#160; via DHCP.</p>
<h2><u>Domain Names and Relationship to IP Addresses</u></h2>
<p>Because IP addresses are difficult to remember in their dotted-decimal notation, a naming convention called domain names was established that’s more natural for people to use. Domain names such as www.cisco.com are registered and associated with a particular public IP address. The Domain Name System (DNS) maps a readable name to an IP address. For example, when you enter <a href="http://www.cisco.com">http://www.cisco.com</a> into a browser, the PC uses the DNS protocol to contact a DNS name server. The name server translates the name <a href="http://www.cisco.com">http://www.cisco.com</a> into the actual IP address for that host..</p>
<p><a href="http://www.compedia4us.com/wp-content/uploads/2010/06/image16.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image_thumb.png" width="574" height="521" /></a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/what-is-an-addressing-and-types-of-addressing-present-in-a-computer-over-the-network" rel="bookmark" class="crp_title">What is an Addressing and Types of Addressing present in a Computer over the Network</a></li><li><a href="http://www.compedia4us.com/2009/11/configuration-guide-of-windows-server-2003-after-fresh-installation" rel="bookmark" class="crp_title">Configuration Guide of Windows Server 2003 after Fresh Installation</a></li><li><a href="http://www.compedia4us.com/2010/02/working-of-ethernet-at-the-data-link-layer" rel="bookmark" class="crp_title">Working of Ethernet at the Data Link Layer and Ethernet Addressing</a></li><li><a href="http://www.compedia4us.com/2009/09/configure-remote-access-vpn-using-asa" rel="bookmark" class="crp_title">Configure Remote Access VPN using ASA</a></li><li><a href="http://www.compedia4us.com/2009/09/apply-route-summarization-by-using-of-bgp-protocol" rel="bookmark" class="crp_title">Apply Route Summarization by using of BGP protocol</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/dynamically-allocated-ip-addresses-and-relationship-between-domain-names-and-ip-addresses/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What Is AdSense?</title>
		<link>http://www.compedia4us.com/2010/06/what-is-adsense</link>
		<comments>http://www.compedia4us.com/2010/06/what-is-adsense#comments</comments>
		<pubDate>Fri, 25 Jun 2010 14:45:05 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Google Section]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[make money online]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/what-is-adsense</guid>
		<description><![CDATA[Before signing up to AdSense, it’s important to understand what you’re signing up to. Many of the principles and strategies that I describe in this book make the most of the way that AdSense works. If you can understand where AdSense are getting their ads, how they assign those ads to Web pages and how [...]]]></description>
			<content:encoded><![CDATA[<p>Before signing up to AdSense, it’s important to understand what you’re signing up to. Many of the principles and strategies that I describe in this book make the most of the way that AdSense works. If you can understand where AdSense are getting their ads, how they assign those ads to Web pages and how they fix the prices for clicks on those ads or for ad appearances on those pages, you’ll be in a great position to manipulate AdSense in a way that gives you maximum revenues. </p>
<p><span id="more-5664"></span></p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="google-adsense_1" border="0" alt="google-adsense_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/googleadsense_1.jpg" width="428" height="316" /> </p>
<p>Unfortunately, I can’t really do that. Much of the way that Google runs the AdSense program is kept under wraps. I know a few things — and enough to do a great deal with our AdSense ads. But I don’t know it all. No one outside Google does. And for good reason. If it was clear how Google figured out the content of each website and which ads suit that site best, there’s a good chance that the Web would be filled with sites created specially to bring in the highest paying ads instead of sites built to bring in and inform users. People do try to build sites for ads not content, but they tend to make less money than high quality sites that attract loyal users who click on ads. The fact is, we can make the most of both AdSense and our own ad space without knowing the algorithms that Google uses to assign ads and pay sites.</p>
<p>That’s because AdSense is pretty simple. At the most basic level, AdSense is a service run by Google that places ads on websites. When you sign up to AdSense, you agree to take the ads that Google gives you and receive a fee each time a user clicks on that ad (or for each thousand ad appearances the ad receives on your site, depending on the type of ad). The ads themselves come from another Google service: AdWords. If you want to understand AdSense, you will need to understand AdWords. Advertisers submit their ads to Google using the AdWords program. They write a headline and a short piece of text — and here’s where it gets interesting — they choose how much they want to pay.</p>
<p>Advertisers decide on the size of their advertising budgets and the amount they’re prepared to pay for each click they receive. Google then decides where to put those ads. So a company that has a website selling handmade furniture might create an ad that looks like this: </p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image15.png" width="428" height="194" /> </p>
<p>The company’s owner might then say that he’s prepared to pay $1000 a month for his advertising budget but not more than $1 for a click. He can be certain now of getting at least a thousand leads a month. But that’s where his control over the ad ends. Google will figure out which sites suit an ad like that and put them where it sees fit, charging the advertiser up to a dollar a click until the advertiser’s budget runs out. (Of that dollar, how much the publisher receives is a Google secret. The New York Times has reported Google pays publishers 78.5 percent of the advertising price per click. The figure hasn’t been confirmed but it is around what most people in the industry expect that Google pays.) </p>
<p>That makes <a href="http://www.compedia4us.com/tag/adwords">AdWords</a> different to more traditional form of advertising. In the print world, an advertiser chooses where it wants to place its ads and decides if the price is worth paying. The newspaper too decides how much it wants advertisers to pay to appear on its pages. Any advertiser that meets that price gets the slot and the publisher always knows how much his space is worth. Neither of those things is true online. When an advertiser signs up to AdWords, he has no idea where his ads are going to turn up. When you sign up to AdSense, you’ve got no idea how much you’re going to be paid for the ad space on your page. You leave it to Google to decide whether to give you ads which could pay just a few cents per click or ads which could pay a few dollars per click.</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="pic204_1" border="0" alt="pic204_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/pic204_1.jpg" width="421" height="229" />&#160;</p>
<blockquote><p>Google says that it always assigns ads in such a way that publishers receive maximum revenues, and that advertisers get the best value for their money.</p>
</blockquote>
<p>So if you have a site that talks about interior design and which mentions “homemade furnishings” a great deal, Google will assume that your readers will be interested in the sample ad above. But that won’t be the only ad that could appear on your page. There could be dozens of others. Google will give you the ads that it thinks will give you the highest revenues. That might not be the ad with the highest possible click price though. If a lower paying ad gives you more clicks and higher overall revenues, you should find yourself receiving that ad instead. In theory then, you could just leave it to Google to decide which ads to give you and at which price. In my experience though, that just cuts you out of a giant opportunity. </p>
<p>You can influence the choice of ads that you get on your page, both in terms of content and in terms of price. You can certainly influence the number of clicks you receive on those ads. Google leaves that entirely up to you — and it’s a crucial part of the difference between earnings that pay for candy bars and earnings that pay for cars. In short then, while signing up for AdSense can be both the beginning and the end of turning your site into income, if you’re serious about making serious money with your site, it needs to be the beginning. You’ll want to make sure you’re not getting low-paying ads, and you’ll want to make sure that you’re getting the clicks that turn those ads into cash.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2009/09/secure-and-safe-google-accounts-with-mobile-phone-numbers" rel="bookmark" class="crp_title">Secure and safe Google Accounts With Mobile Phone Numbers</a></li><li><a href="http://www.compedia4us.com/2009/07/google-now-come-up-with-chrome-operating-system" rel="bookmark" class="crp_title">Google now come up with Chrome Operating System</a></li><li><a href="http://www.compedia4us.com/2009/11/the-incoming-google-wave" rel="bookmark" class="crp_title">The Incoming Google Wave</a></li><li><a href="http://www.compedia4us.com/2009/09/google-search-maps-and-youtube-combines-in-a-palm-pre-phone" rel="bookmark" class="crp_title">Google Search, Maps and YouTube combines in a Palm Pre Phone</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls" rel="bookmark" class="crp_title">How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/what-is-adsense/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</title>
		<link>http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls#comments</comments>
		<pubDate>Fri, 25 Jun 2010 14:03:14 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[improve website ranking]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls</guid>
		<description><![CDATA[Search Engine Ranking is the basic concern of a web designer/developer and everyone who owns a website wants to be on the top of Search Engines. So the question is that how a website owner can improve its site ranking on major search engines like Google, Yahoo and Bing. Well certain website characteristics can harm [...]]]></description>
			<content:encoded><![CDATA[<p>Search Engine Ranking is the basic concern of a web designer/developer and everyone who owns a website wants to be on the top of Search Engines. So the question is that how a website owner can improve its site ranking on major search engines like Google, Yahoo and Bing. Well certain website characteristics can harm or limit your potential search engine rankings. By avoiding these common SEO pitfalls, you can pave the way for higher search engine visibility. </p>
<p><span id="more-5660"></span></p>
<h2><u>Inadequate inbound links</u> </h2>
<p>One of the biggest problems with low-ranking websites is a lack of popular inbound links. Without a healthy number of high-quality links that point back to your site, you’ll be at a disadvantage against a competitor who has more. Other linking issues include links to flagged sites, overuse of parameters, improper redirects, lack of keywords, and generic link text. </p>
<h2><u>Drowning in splash pages&#160; </u></h2>
<p>Splash pages are usually graphically rich pages designed to impress visitors or to direct them to alternative views of content, such as high- or low-bandwidth versions of a site. A “Skip Intro” link on a web page implicitly says that the page isn’t very important. The problem with splash pages—whether they include “Skip Intro”links or not—is that they are a wasted opportunity. Splash pages usually reside at the top of a site’s hierarchy. </p>
<p>Pages that are higher in your site hierarchy tend to get more links and more traffic than pages that are lower in your hierarchy check the below image. If visitors must click and if search engines must crawl farther to reach the real home page (i.e., what should be your top-level index page), you’ve put up a barrier to success.</p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image14.png" width="515" height="335" /> </p>
<h2><u>Flash fires </u></h2>
<p>Flash is installed on nearly every computer (98%) that accesses the Internet.8 This popularity has caused a conflagration of Flash gizmos on the Web. The problem with Flash is that search engines do not index it properly. We recommend using Flash to enhance the user experience, not to create it entirely. So, a Flash news ticker or embedded hotel reservation system is OK, but creating your entire site in Flash is not OK. </p>
<p>Following is a Flash SEO trick from Flash expert Gregory Cowley(<a href="http://gregorycowley.com/">http://gregorycowley.com/</a>). </p>
<blockquote><p>One technique you can use to make your Flash pages more SEO friendly is the two div trick. Use one div for the Flash movie, and the other with your HTML equivalent. Use JavaScript to hide the HTML DIV if the Flash plug-in is available, and the HTML is still available for search engines. This doesn’t work in complicated multi-page sites though. The key to a multi-page site, however, is to have all your text in an XML file outside of Flash.</p>
</blockquote>
<p>This code requires a FlashObject class, available at <a href="http://code.google.com/p/swfobject/">http://code.google.com/p/swfobject/</a></p>
<p>&lt;div id=&quot;flashcontent&quot;&gt; </p>
<p>This is replaced by the Flash content if the user has the correct version of the Flash plug-in installed. Place your HTML content in here and Google will index it just as it would normal HTML content (because it is HTML content!) Use HTML, embed images, anything you would normally place on an HTML page is fine.    <br />&lt;/div&gt; </p>
<p>&lt;script type=&quot;text/javascript&quot;&gt; </p>
<p>// &lt;![CDATA[ </p>
<p>var fo = new FlashObject(&quot;flashmovie.swf&quot;, &quot; flashmovie&quot;, &quot;00&quot;, &quot;300&quot;, &quot;8&quot;, &quot;#FF6600&quot;); </p>
<p>fo.write(&quot;flashcontent&quot;); </p>
<p>// ]]&gt; </p>
<p>&lt;/script&gt; </p>
<p>To avoid the appearance of cloaking, be sure to not change the textual content between the two divs. </p>
<h2><u>Unprofessional design </u></h2>
<p>A first impression of your website can take only milliseconds9 but will affect its long-term success. You wouldn’t go on a date poorly groomed and with dirty fingernails, right? Don’t make a similar mistake with your website. Having a professionally designed site is the most important factor for perceived web credibility. The higher the aesthetic quality of your site, the higher its perceived credibility will be. Consumers are more willing to buy from (and presumably webmasters are more willing to link to) firms with well-designed sites. </p>
<p>Web credibility, valuable content, and useful tools are key factors that compel webmasters to link to you, and visitors to stay and spend money. </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="SEOPackageConsulting-logos" border="0" alt="SEOPackageConsulting-logos" src="http://www.compedia4us.com/wp-content/uploads/2010/06/SEOPackageConsultinglogos.jpg" width="263" height="441" /> </p>
<h2><u>Fix your focus.&#160; </u></h2>
<p>Some sites do not focus specifically enough. A store that sells everything, or that wants to be the next Amazon.com, has a long, painful road ahead. Such a broadly focused site is unlikely to succeed in natural SEO and probably needs to advertise with pay-per-click (PPC). It’s best to narrow your focus topically or geographically so that you have a better chance of ranking well and having higher conversion rates. There is one exception to this rule, however. If you can optimize every individual product page (e.g., HP LaserJet 6MP printer replacement toner cartridge C3903), it is possible to rank highly for those very specific terms. </p>
<h2><u>Obscure navigation </u></h2>
<p>The navigation on your site should comprise text that is easily indexed and that wasn’t created from graphical text, JavaScript, or Flash. Search engines can only index the text within your pages. They don’t read text that is embedded in graphics or Flash movies, nor do they execute JavaScript. A reasonable compromise for image-based navigation is to include alternative text for images. </p>
<h2><u>Give up graphics-based navigation. </u></h2>
<p>Macromedia Fireworks (now owned by Adobe) and Adobe ImageReady popularized the automatic slicing of graphics that made creating fancy navigation menus easy. Search engines don’t read graphical text, however. By embedding your keywords in graphics, you lose a golden opportunity to bake your SEO directly into the information architecture of your site. </p>
<h2><u>Junk JavaScript-only navigation. </u></h2>
<p>Avoid JavaScript-only navigation such as this: </p>
<p>&lt;script src=&quot;/scripts/menunav.js&quot; type=&quot;text/javascript&quot;&gt; </p>
<p>Switch to list-based Cascading Style Sheet (CSS)-style menus or provide a text equivalent to your navigation elsewhere on the page for search engines to follow. </p>
<h2><u>Duplicate content </u></h2>
<p>Avoid exact or near duplicates of pages at different URIs. Although Google engineer Matt Cutts has said that there is no penalty for duplicate content, Google’s own webmaster guidelines say “don’t create multiple pages, sub-domains, or domains with substantially duplicate content.” Google generally tries to display the best version of a resource, but in rare cases it can penalize a site that appears to game the system with duplicate content The use of duplicate titles and meta tags across too many pages on the same site can harm rankings. Duplicate content will confuse the Googlebot as to which page is authoritative, thereby diluting your PageRank among the various URIs. You can use the robots exclusion protocol to exclude duplicate content (see http://www.robotstxt.org/orig.html). </p>
<p>On the other hand, creating mini sites, each with valuable content on a different topic related to your business, is one way around the two-URIs-per-domain limit to Google SERPs. Some companies buy domain names for each product or service, create and promote separate websites, and attain multiple top 10 spots on the first SERP. We don’t recommend using this technique of creating multiple sites to crowd all of your competitors off the first SERP.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Embedded Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/seo-search-engine-optimization-and-the-benefits-of-seo" rel="bookmark" class="crp_title">SEO (Search Engine Optimization) and the Benefits of SEO</a></li><li><a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css" rel="bookmark" class="crp_title">Three Ways to Style Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Linked Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml" rel="bookmark" class="crp_title">What Are The Basic Rules Of Writing XHTML</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What Are The Basic Rules Of Writing XHTML</title>
		<link>http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml</link>
		<comments>http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml#comments</comments>
		<pubDate>Thu, 24 Jun 2010 18:51:47 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[how to write xhtml]]></category>
		<category><![CDATA[rules of xhtml]]></category>
		<category><![CDATA[web designing]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml</guid>
		<description><![CDATA[Correctly written XHTML markup gives you the best chance that your pages will display correctly in a broad variety of devices for years to come. The clean, easy-to-write, and flexible nature of XHTML produces code that loads fast, is easy to understand when editing, and prepares your content for use in a variety of applications. [...]]]></description>
			<content:encoded><![CDATA[<p>Correctly written XHTML markup gives you the best chance that your pages will display correctly in a broad variety of devices for years to come. The clean, easy-to-write, and flexible nature of XHTML produces code that loads fast, is easy to understand when editing, and prepares your content for use in a variety of applications. </p>
<p><span id="more-5653"></span></p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="css-is-awesome" border="0" alt="css-is-awesome" src="http://www.compedia4us.com/wp-content/uploads/2010/06/cssisawesome.jpg" width="425" height="368" /> </p>
<p>You can easily determine if your site complies with Web standards—if your markup is well-formed with valid XHTML, and your style sheet is valid CSS. Well-formed means that the XHTML is structured correctly according to the markup rules described in this chapter. Valid means that that page only uses tags that are defined in the DTD (document type definition) that is associated with every modern Web page by the page’s DOCTYPE tag. You can check to see if your page meets these two criteria by uploading the page onto a Web server and then going to <a href="http://validator.w3.org">http://validator.w3.org</a> and entering the page’s URL. </p>
<p>Here’s the complete (and mercifully, short) list of the coding requirements for XHTML compliance: </p>
<p>1. <u><em><font color="#ff0000">Declare a DOCTYPE.</font></em></u> The DOCTYPE goes before the opening html tag at the top of the page and tells the browser whether the page contains HTML, XHTML, or a mix of both, so that it can correctly interpret the markup. There are three main DOCTYPEs that let the browser know what kind of markup it is dealing with: Strict: All markup is XHTML-compliant. </p>
<p>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; </p>
<p>&quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;</a>&gt; </p>
<p>Transitional: This states that the markup is a mix of XHTML and deprecated HTML. Many well-established sites are currently using this one, so their old HTML code can exist happily in the document alongside the XHTML they are now adding. </p>
<p>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; </p>
<p>&quot;<a href="http://www.w3.org/TR/html4/loose.dtd">http://www.w3.org/TR/html4/loose.dtd&quot;</a>&gt; </p>
<p>Frameset: This is the same as transitional but in this case frames, which are deprecated under XHTML, are OK, too. </p>
<p>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Frameset//EN&quot; </p>
<p>&quot;<a href="http://www.w3.org/TR/html4/frameset.dtd&quot;">http://www.w3.org/TR/html4/frameset.dtd&quot;</a>&gt; </p>
<p>It is important to specify a DOCTYPE. Browsers that don’t see a DOCTYPE in the markup assume that the site page was coded for browsers developed long before Web standards. My recommendation is that if you are building a site from scratch, and can therefore avoid deprecated or abandoned tag attributes, such as FONT and COLOR, use the XHTML Strict DOCTYPE listed previously. </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="0782128181.01._SCLZZZZZZZ_" border="0" alt="0782128181.01._SCLZZZZZZZ_" src="http://www.compedia4us.com/wp-content/uploads/2010/06/0782128181.01._SCLZZZZZZZ_.jpg" width="410" height="279" /> </p>
<p>When encountering a page without a DOCTYPE, many browsers go into what is known as Quirks mode, a backwards-compatibility feature supported by Mozilla, Internet Explorer 6 for Windows, and Internet Explorer 5 for Macintosh. In Quirks mode, the browser functions as if it has no knowledge of the modern DOM (document object model) and pretends it has never heard of Web standards. This ability to switch modes depending on the DOCTYPE, or lack thereof, enables browsers to do the best possible job of interpreting the code of both standards- compliant and noncompliant sites. </p>
<p>Note that for some weird reason, the DOCTYPE tag does not need to be closed with a slash and DOCTYPE is always in caps. This entirely contradicts XHTML rules 4 and 7 below. Go figure. </p>
<p>2. <em><u><font color="#ff0000">Declare an XML namespace.</font></u></em> Note this line in your new html tag. Here’s an example: </p>
<p>&lt;html xmlns=&quot;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml&quot;</a> lang=&quot;en&quot; xml: lang=&quot;en&quot;&gt; </p>
<p>When a browser is handling an XHTML page and wants to know what’s in the DTD, which lists and defines all the valid XHTML tags, here’s where it can find it: buried away on the   <br />servers of the WC3. In short, the DOCTYPE and namespace declarations ensure that the browser interprets your XHTML code as you intended. </p>
<p>3. <u><em><font color="#ff0000">Declare your content type.</font></em></u> The content type declaration goes in the head of your document, along with any other meta tags you may add. The most common is </p>
<p>&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=iso-8859-1&quot; /&gt; </p>
<p>This simply states what character coding was used for the document. ISO-8859-1 is the Latin character set, used by all standard flavors of English. If your next site is going to be in Cyrillic or Hebrew, you can fi nd the appropriate content types on Microsoft’s site (http://msdn.microsoft.com/workshop/author/dhtml/reference/charsets/charset4.asp). </p>
<p>4. <u><em><font color="#ff0000">Close every tag, whether enclosing or nonenclosing.</font></em></u> Enclosing tags have content within them, like this </p>
<p>&lt;p&gt;This is a paragraph of text inside paragraph tags. To be XHTML-compliant, it must, and in this case does, have a closing tag.&lt;/p&gt; </p>
<p>Nonenclosing tags do not go around text but still must be closed, using space-slash at the end, like this </p>
<p>&lt;img src=&quot;images/siamese.jpg&quot; alt=&quot;My cat&quot; /&gt; </p>
<p>The space before the slash isn’t required in modern browsers, but I always add it as it’s easier to see that the tag is correctly closed. </p>
<p>5. <u><em><font color="#ff0000">All tags must be nested correctly.</font></em></u> If a tag opens before a preceding one closes, it must be closed before that preceding one closes. </p>
<p>For example: &lt;p&gt;It’s &lt;strong&gt;very important&lt;/strong&gt; to nest tags correctly.&lt;/p&gt; </p>
<p>Here, the strong tag is correctly placed inside the &lt;p&gt;; it closes before the containing p tag is closed. A tag enclosed inside another in this way is said to be nested. </p>
<p>This is wrongly nested </p>
<p>&lt;p&gt;The nesting of these tags is &lt;strong&gt;wrong.&lt;/p&gt;&lt;/strong&gt; </p>
<p>Multiple elements can be nested inside a containing element; a list nests multiple li elements inside a single ul or ol element, like this: </p>
<p>&lt;ul&gt; </p>
<p>&lt;li&gt;Item 1&lt;/li&gt; </p>
<p>&lt;li&gt;Item 2&lt;/li&gt; </p>
<p>&lt;li&gt;Item 3&lt;/li&gt; </p>
<p>&lt;/ul&gt; </p>
<p>Because CSS relies on proper nesting in order to target styles to elements, you have to get this right. Use the W3C validator for confirmation that all tags are correctly nested and therefore your document is well-formed. </p>
<p>6. <u><em><font color="#ff0000">Inline tags can’t contain block level tags.</font></em></u> Block-level elements, such as p (paragraph) and div (division), automatically organize themselves one under the next down the page. If you have two paragraphs, the second paragraph appears by default under the previous one—no line breaks are required. By contrast, inline tags, such as a (anchor, a hyperlink) and em (emphasis, usually displayed as italics) occur in the normal flow of text, and don’t force a new line. If you nest a block element, such as a paragraph p, inside an inline element, such as a link a, your code won’t validate. </p>
<p>Also, some block-level elements can’t contain other block-level elements either; for instance, an h1-6 (heading) tag can’t contain a paragraph. Besides using validation, you can let common sense be your guide to avoid these problems. You wouldn’t put an entire paragraph inside a paragraph heading when you are writing on paper or in Word, so don’t do illogical things like that in your XHTML either, and you won’t go far wrong. </p>
<p>7. <u><em><font color="#ff0000">Write tags entirely in lowercase.</font></em></u> Self-explanatory—no capital letters at all. I’ve always done this myself, but if you haven’t, the days of P are over. Now it has to be p. </p>
<p>8. <u><em><font color="#ff0000">Attributes must have values and must be quoted.</font></em></u> Some tags’ attributes don’t need values in HTML, but in XHTML, all attributes must have values. For example, if you previously used the select tag to create a pop-up menu in an HTML form, and wanted to have one menu choice selected by default when the page loaded, you might have written something like this </p>
<p>&lt;SELECT NAME=ANIMALS&gt; </p>
<p>&lt;OPTION VALUE=Cats&gt;Cats&lt;/OPTION&gt; </p>
<p>&lt;OPTION VALUE=Dogs SELECTED&gt;Dogs&lt;/OPTION&gt; </p>
<p>&lt;/SELECT&gt; </p>
<p>which would have given you a drop-down menu with Dogs displayed by default. The equivalent valid XHTML is this </p>
<p>&lt;select name=&quot;animals&quot;&gt; </p>
<p>&lt;option value=&quot;cats&quot;&gt;Cats&lt;/option&gt; </p>
<p>&lt;option value=&quot;dogs&quot; selected=&quot;selected&quot;&gt;Dogs&lt;/option&gt; </p>
<p>&lt;/select&gt; </p>
<p>Note that in this revised version, all the tag and attribute names are in lowercase and all the attribute values are in quotes. </p>
<p>9. <u><em><font color="#ff0000">Use the encoded equivalents for a left angle bracket and ampersand within content</font></em></u>. When XHTML encounters a left angle-bracket, &lt; (also known as the less-than symbol), it quite reasonably assumes you are starting a tag. But what if you actually want that symbol to appear in your content? The answer is to encode it using an entity. An entity is a short string of characters that represents a single character; an entity causes XHTML to interpret and display the character correctly and not to confuse it with markup. The entity for the left angle-bracket/less-than symbol is &amp;lt;—remember lt stands for less than.&#160; </p>
<p>Entities not only help avoid parsing errors like the one just mentioned, but they also enable certain symbols to be displayed at all, such as &amp;copy; for the copyright symbol (©). Every symbolic entity begins with an ampersand (&amp;) and ends with a semicolon (;). Because of this, XHTML regards ampersands in your code as the start of entities, so you must also encode ampersands as entities when you want them to appear in your content; the ampersand entity is &amp;amp;. </p>
<p>A good rule of thumb is that if a character you want to use is not printed on the keys of your keyboard (such as é, ®, ©, or £), you need to use an entity in your markup. There are some 50,000 entities in total, which encompass the character sets of most of the world’s major languages, but you can find a shorter list of the commonly used entities at the Web Design Group site (<a href="http://www.htmlhelp.com/reference/html40/entities">www.htmlhelp.com/reference/html40/entities</a>). And those are the rules of XHTML markup. They are relatively simple, but you must follow them exactly if you want your pages to validate (and you do).</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Embedded Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css" rel="bookmark" class="crp_title">Three Ways to Style Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Linked Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/03/make-a-video-from-powerpoint-presentation-%e2%80%93-how-to" rel="bookmark" class="crp_title">Make a Video from PowerPoint Presentation &ndash; How to</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls" rel="bookmark" class="crp_title">How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Apply A Customize Background Image On Your Twitter Profile</title>
		<link>http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile#comments</comments>
		<pubDate>Thu, 24 Jun 2010 12:24:41 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apply custom background]]></category>
		<category><![CDATA[customize twitter background]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter tips]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile</guid>
		<description><![CDATA[If you want to ramp up the “wow” factor, if you want to use your Twitter profile as part of a personal or business branding strategy, or if you just want a Twitter home that truly reflects your style and personality, then you need to augment your design with a custom background image. You might [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">If you want to ramp up the “wow” factor, if you want to use your Twitter profile as part of a personal or business branding strategy, or if you just want a <a href="http://www.compedia4us.com/tag/twitter">Twitter</a> home that truly reflects your style and personality, then you need to augment your design with a custom background image. You might think this is just a simple matter of uploading your favorite photo, but Twitter offers several unique challenges when it comes to selecting a background image. </p>
<p><span id="more-5648"></span></p>
<p align="justify"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image13.png" width="559" height="368" /> </p>
<p align="justify">Run through the steps you need to follow to apply a custom background image to your Twitter profile: </p>
<ol>
<li>
<div align="justify">Sign in to your Twitter account. </div>
</li>
<li>
<div align="justify">Click Settings. The Settings page appears. </div>
</li>
<li>
<div align="justify">Click the Design tab. </div>
</li>
<li>
<div align="justify">Click Change background image. </div>
</li>
<li>
<div align="justify">Click Browse. If you’re using Safari, click Choose File, instead. A file selection dialog box appears. </div>
</li>
<li>
<div align="justify">Choose the file you want to use, and then click Open (or Choose in Safari). You can use either a JPEG or a PNG file, and the maximum size is 800KB. </div>
</li>
<li>
<div align="justify">If you want Twitter to tile the image to cover the background, select the Tile background check box. </div>
</li>
<li>
<div align="justify">Click Save Changes. Twitter updates your profile with the new background image.</div>
</li>
</ol>
<blockquote><p align="justify"><font color="#ff0000">IMPORTANT :-</font> After you save your profile, you might end up on the “Something is technically wrong” page or even the fail whale page. This is an annoyingly common problem, and the best solution is to keep refreshing your browser until Twitter gets its act together. Note that when you refresh, your browser asks whether you want to resubmit the form, so be sure to choose yes.</p>
</blockquote>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile" rel="bookmark" class="crp_title">How to Apply a Theme to your Twitter Profile</a></li><li><a href="http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2" rel="bookmark" class="crp_title">How to Stop Twitter From Sending New Follower Messages</a></li><li><a href="http://www.compedia4us.com/2009/10/now-easily-make-yourself-a-cs-1-6-spray-logo" rel="bookmark" class="crp_title">Now Easily make yourself Counter Strike 1.6 spray logo</a></li><li><a href="http://www.compedia4us.com/2009/10/tiny-twitter-a-best-way-to-tweet-on-your-mobile-phone" rel="bookmark" class="crp_title">Tiny Twitter &#8211; a best way to tweet on your mobile phone</a></li><li><a href="http://www.compedia4us.com/2010/05/twitter-has-decided-to-ban-the-third-party-ad-networks" rel="bookmark" class="crp_title">Twitter has decided to Ban the Third Party Ad Networks</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Definition of Signaling And Information Content And What Is Broadband Signaling</title>
		<link>http://www.compedia4us.com/2010/06/definition-of-signaling-and-information-content-and-what-is-broadband-signaling</link>
		<comments>http://www.compedia4us.com/2010/06/definition-of-signaling-and-information-content-and-what-is-broadband-signaling#comments</comments>
		<pubDate>Wed, 23 Jun 2010 16:54:05 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Telecommunication]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[broadband signaling]]></category>
		<category><![CDATA[information content]]></category>
		<category><![CDATA[signaling]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/definition-of-signaling-and-information-content-and-what-is-broadband-signaling</guid>
		<description><![CDATA[Signaling refers to the precise method by which information is conveyed across the physical medium. Signaling techniques can be grouped into two general categories: broadband and baseband. Broadband signaling corresponds roughly to what is commonly thought of as analog in nature, whereas baseband corresponds roughly to digital signaling. What is Broadband Signaling:- Broadband, or analog, [...]]]></description>
			<content:encoded><![CDATA[<p>Signaling refers to the precise method by which information is conveyed across the physical medium. Signaling techniques can be grouped into two general categories: broadband and baseband. Broadband signaling corresponds roughly to what is commonly thought of as analog in nature, whereas baseband corresponds roughly to digital signaling.</p>
<p><span id="more-5646"></span></p>
<h2>What is Broadband Signaling:-</h2>
</p>
<p>Broadband, or analog, signaling is based on the use of continuously varying waves to convey information across a communications channel. Such continuously varying waves are usually represented by the sine function, and are called sine waves. Below Image Illustrates a sine wave and shows two of the three ways in which it can be characterized. As shown in the figure, a sine wave can be thought of as beginning at some midpoint between two extremes (such as voltages). As time progresses, the sine wave approaches and becomes equal to the higher of the two extremes. The wave then decreases through the midpoint once again on its way to the lower of the two extremes before returning once again to the midpoint. This set of excursions (midpoint&gt;highest extreme&gt;midpoint&gt;lowest extreme&gt;midpoint) composes one cycle of the sine wave. The number of such cycles that occur over 1 second is said to be the frequency of the sine wave. Frequency is expressed therefore as cycles-per-second, or Hertz (Hz). </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image10.png" width="505" height="244" /> </p>
<p>A second important characteristic of a sine wave is its amplitude, which refers to the relative distance between the extreme points in the excursion of the wave. As the points become further apart, amplitude increases. To state the phenomena of frequency and amplitude in musical terms, frequency corresponds to pitch and amplitude corresponds to loudness. A third characteristic of sine waves is more difficult to describe. That characteristic is phase. The phase of a given sine wave is measured relative to another sine wave (a reference) and is expressed as an angular difference between the two. Two sine waves are said to be “180 degrees apart” when, at the same instant that one of them has reached its positive-most point, the other has reached its negative-most point. Below picture illustrates relationships between pairs of sine waves along the amplitude, frequency, and phase dimensions. The first sine waves in the figure occur at different frequencies. Those in the middle of the figure occur at different amplitudes. The sine waves at the right side of the figure occur at different phases; in fact, they are 180 degrees apart. Notice that for the waves that display a phase difference, the other two characteristics (frequency and amplitude) are equal.</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image11.png" width="494" height="208" /></p>
<p>The point of this discussion is to emphasize that only three characteristics of sine waves are available to be manipulated for the purposes of conveying information over a communications channel. Thus, if a communications channel requires the use of broadband signaling, and the information to be conveyed is digital in nature (0s and 1s), some mechanism for “impressing” the digital information onto a sine wave must be designed. A device that is designed to convey digital information over a broadband communications channel is a modem. Modems manipulate one (or a combination) of the three characteristics of a sine wave to signal the presence of either a 0 or a 1 on the channel. Historically, modems have manipulated amplitude (amplitude shift keying), frequency (frequency shift keying) or phase (phase shift keying). Currently, most modems manipulate both amplitude and phase by a technique called quadrature amplitude modulation (QAM). </p>
<p>The Image given below&#160; illustrates the operation of a frequency shift keyed modem. The broadband communications channel in this example is a telephone line. The line can accept only frequencies that fall roughly between 300 and 3300Hz. To convey digital information across such a channel, we first select two discrete frequencies that fall within the channel (such as 800Hz and 2400Hz). </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image12.png" width="484" height="170" /> </p>
<p>Then we arbitrarily assign one frequency (the lower one in the figure) to represent a digital 0, and the other frequency (the higher one in the figure) to represent a digital 1. By switching between the two frequencies, depending on whether a 0 or a 1 must be conveyed to the receiver, the transmitter modulates the incoming bit stream to be compatible with the broadband nature of the channel. The receiver, in a process called demodulation, looks at the line, notes which of the two frequencies it is currently receiving, and converts the frequency back to a 0 or a 1, whichever is appropriate. Whether a modem manipulates frequency, amplitude, or phase, the principle of modulation at the transmitter and demodulation at the receiver are the same. The specific technique used in practice will be determined by the bandwidth of the channel and the desired data rate.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/what-is-baseband-signaling-on-physical-layer-in-the-field-of-telecommunication" rel="bookmark" class="crp_title">What Is Baseband Signaling On Physical Layer In the Field of Telecommunication</a></li><li><a href="http://www.compedia4us.com/2009/10/concept-of-attenuation" rel="bookmark" class="crp_title">Concept of Attenuation</a></li><li><a href="http://www.compedia4us.com/2010/01/what-is-parallel-and-serial-physical-communication" rel="bookmark" class="crp_title">What is Parallel and Serial Physical Communication</a></li><li><a href="http://www.compedia4us.com/2009/10/what-are-amplifiers-coaxial-cables-and-modulators-in-the-field-of-optical-communication" rel="bookmark" class="crp_title">What are Amplifiers , Coaxial Cables and Modulators in the field of Optical Communication</a></li><li><a href="http://www.compedia4us.com/2010/06/what-is-timing-and-synchronization-and-how-it-relates-with-physical-layerinterfaces" rel="bookmark" class="crp_title">What is Timing and Synchronization and how it relates with Physical Layer/Interfaces</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/definition-of-signaling-and-information-content-and-what-is-broadband-signaling/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Setting Up the MySQL Super-User Password</title>
		<link>http://www.compedia4us.com/2010/06/how-to-setting-up-the-mysql-super-user-password</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-setting-up-the-mysql-super-user-password#comments</comments>
		<pubDate>Wed, 23 Jun 2010 16:34:27 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[super user mysql password]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-setting-up-the-mysql-super-user-password</guid>
		<description><![CDATA[When MySQL is first installed, access to the database server is restricted to the MySQL administrator, aka root. By default, this user is initialized with a null password, which is generally considered a Bad Thing. You should, therefore, rectify this as soon as possible by setting a password for this user via the included mysqladmin [...]]]></description>
			<content:encoded><![CDATA[<p>When MySQL is first installed, access to the database server is restricted to the <a href="http://www.compedia4us.com/tag/mysql">MySQL</a> administrator, aka root. By default, this user is initialized with a null password, which is generally considered a Bad Thing. You should, therefore, rectify this as soon as possible by setting a password for this user via the included mysqladmin utility, using the following syntax in UNIX: </p>
<p><span id="more-5642"></span></p>
<p>[root@host]# /usr/local/mysql/bin/mysqladmin ↵ (Press Enter)</p>
<p>-u root password &#8216;new-password&#8217;</p>
<p>&#160;</p>
<p>In Windows, you can use the following equivalent syntax from an MS-DOS prompt: </p>
<p>&#160;</p>
<p>C:\&gt; c:\program files\mysql\bin\mysqladmin ↵ (Press Enter)</p>
<p>-u root password &#8216;new-password&#8217; </p>
<p>This password change goes into effect immediately, with no requirement to restart   <br />the server.</p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="logo-mysql_1" border="0" alt="logo-mysql_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/logomysql_1.jpg" width="436" height="328" /> </p>
<blockquote><p><font color="#ff0000">IMPORTANT</font> :- The MySQL root user is not the same as the system root user on UNIX. So, altering the system root user’s password does not affect the MySQL root user’s password, and vice versa.</p>
</blockquote>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/how-to-configure-mysql-and-apache-to-start-automatically" rel="bookmark" class="crp_title">How To Configure MySQL and Apache to Start Automatically</a></li><li><a href="http://www.compedia4us.com/2010/01/installation-of-mysql-in-unix-operating-system" rel="bookmark" class="crp_title">Installation of MySQL in UNIX Operating System</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-test-mysql-after-installation" rel="bookmark" class="crp_title">How to Test MySQL after Installation</a></li><li><a href="http://www.compedia4us.com/2010/01/installation-guide-of-necessary-softwares-in-order-to-work-on-php" rel="bookmark" class="crp_title">Installation guide of necessary Software&#8217;s in order to work on PHP</a></li><li><a href="http://www.compedia4us.com/2009/11/how-to-use-a-password-reset-disk-in-windows-xp" rel="bookmark" class="crp_title">How to Use a Password Reset Disk in Windows XP</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-setting-up-the-mysql-super-user-password/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Most Useful Wi-Fi Enabled Gadgets</title>
		<link>http://www.compedia4us.com/2010/06/5-most-useful-wi-fi-enabled-gadgets</link>
		<comments>http://www.compedia4us.com/2010/06/5-most-useful-wi-fi-enabled-gadgets#comments</comments>
		<pubDate>Tue, 22 Jun 2010 16:54:15 +0000</pubDate>
		<dc:creator>James Adams</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Wi-Fi gadgets]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/5-most-useful-wi-fi-enabled-gadgets</guid>
		<description><![CDATA[Wi-Fi hotspots are popping up in more places than ever before. Besides your home, they’re also found in restaurants, cafes, airports, and even outdoor parks! With so many locations to choose from, it’s obvious that Wi-Fi isn’t just for surfing the ‘net with your laptop anymore. How can you find and take advantage of this [...]]]></description>
			<content:encoded><![CDATA[<p>Wi-Fi hotspots are popping up in more places than ever before. Besides your home, they’re also found in restaurants, cafes, airports, and even outdoor parks! With so many locations to choose from, it’s obvious that Wi-Fi isn’t just for surfing the ‘net with your laptop anymore. How can you find and take advantage of this ever-growing number of hotspots? Here’s a brief look at five cool apps to help you detect—and use—a good Wi-Fi signal. </p>
<p><span id="more-5638"></span></p>
<p>1. <a href="http://www.amazon.com/gp/offer-listing/B001AW4IMS/ref=dp_olp_new?ie=UTF8&amp;condition=new">Wi-Fi Detecting Watch ($29.95)</a> This unique watch offers a portable, discreet way to check Wi-Fi signal strength in the vicinity of your current location. Never again will you have the frustrating experience of booting up your laptop only to discover that you can’t get a signal anyway. Oh, and the watch can also tell you what time it is. </p>
<p><img style="border-top-width: 0px;border-left-width: 0px;float: none;border-bottom-width: 0px;margin-left: auto;margin-right: auto;border-right-width: 0px" height="277" alt="wifi_detecting_watch_front_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/wifi_detecting_watch_front_1.jpg" width="277" border="0" /> </p>
<p>2. <a href="http://www.withings.com/en/index/?taranim=2">Withings Wi-Fi Body Scale ($159.00)</a> Have you set a goal to loose a certain amount of weight? Would you like to share your progress with your friends? Say goodbye to tedious record keeping and weight loss updates. The Wi-Fi Body Scale automatically records your weight and can send it to any number of places, such as Google Health, your blog, your Facebook account, or even Twitter! It can also e-mail you a weekly progress report, and it generates graphs so you can visualize your progress. Loosing weight and getting support from your friends has never been easier! </p>
<p><img style="border-top-width: 0px;border-left-width: 0px;float: none;border-bottom-width: 0px;margin-left: auto;margin-right: auto;border-right-width: 0px" height="259" alt="withings-wi-fi-body-scale1_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/withingswifibodyscale1_1.jpg" width="332" border="0" /> </p>
<p>3. <a href="http://www.apple.com/airportexpress/">AirPort Express ($99.00)</a> This nifty device allows you to quickly set up a Wi-Fi network in your home or on the go. Just plug it in, and soon you’ll be listening to music from you iTunes collection right on your living room stereo, printing from any place in the house, and/or sharing the Wi-Fi signal with up to 10 other users. At a price of just $99, the AirPort Express is one of the best deals on the market when it comes to bang for your buck. </p>
<p><img style="border-top-width: 0px;border-left-width: 0px;float: none;border-bottom-width: 0px;margin-left: auto;margin-right: auto;border-right-width: 0px" height="256" alt="airport_express_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/airport_express_1.jpg" width="340" border="0" /> </p>
<p>4. <a href="http://www.estarling.com/">eStarling TouchConnect Photo Album ($199.99)</a> Do you like to share photos with family and friends? With the eStarling TouchConnect Photo Album, never again will you need to hassle with sending photos as attachments in an e-mail or—worse yet—printing and mailing them. The TouchConnect can receive photos over the Internet from anywhere in the world. It even has the ability to automatically display pictures from your Flickr albums that contain the keywords you specify. </p>
<p><img style="border-top-width: 0px;border-left-width: 0px;float: none;border-bottom-width: 0px;margin-left: auto;margin-right: auto;border-right-width: 0px" height="258" alt="eStarling-TouchConnect-1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/eStarlingTouchConnect1.jpg" width="405" border="0" /> </p>
<p>5. <a href="http://www.thinkgeek.com/tshirts-apparel/hats-ties/bd12/">Wi-Fi Detactor Cap ($14.99)</a> Nothing says geek quite like this baseball cap that doubles as a Wi-Fi detector. Its glowing bars light up the closer you get to a good signal. Now everyone around you can know whether there’s Wi-Fi in the area or not. Think of this, then, not as declaring your total nerd status, but as offering a public service for the good of humanity! Caution: Avoid wearing on first dates. This list is by no means exhaustive. </p>
<p><img style="border-top-width: 0px;border-left-width: 0px;float: none;border-bottom-width: 0px;margin-left: auto;margin-right: auto;border-right-width: 0px" height="319" alt="bd12_wifi_detector_cap_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/bd12_wifi_detector_cap_1.jpg" width="355" border="0" /> </p>
<p>Really, given the number of hotspots and potential use for them, the possibilities are endless. Why not see what other types of gadgets you can think up? Then make some of them, or if that isn’t possible, sell your ideas to someone who can. Who knows—the next hot Wi-Fi device on a list like this just might be yours! <em>James is the in-house writer and tech analyst at an online store offering </em><a href="http://www.cartridgesave.co.uk/">cartridges next day</a> in the UK. Subscribe to their <a href="http://www.cartridgesave.co.uk/news/">blog</a> for more of his writing.</p>
<p><em><strong>post by: James Adams</strong></em></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/01/listen-songs-of-your-choice-from-entire-albums-on-blackberry-handset-with-grooveshark" rel="bookmark" class="crp_title">Listen Songs of your choice from Entire Albums on Blackberry handset with Grooveshark</a></li><li><a href="http://www.compedia4us.com/2010/05/make-a-passport-photo-from-home" rel="bookmark" class="crp_title">Make A Passport Photo From Home</a></li><li><a href="http://www.compedia4us.com/2009/11/the-incoming-google-wave" rel="bookmark" class="crp_title">The Incoming Google Wave</a></li><li><a href="http://www.compedia4us.com/2010/07/6-best-free-anti-spyware-programs" rel="bookmark" class="crp_title">6 Best Free Anti Spyware Programs</a></li><li><a href="http://www.compedia4us.com/2010/04/vopium-will-convert-your-ipad-gadget-into-iphone-just-for-free" rel="bookmark" class="crp_title">Vopium will Convert your iPad Gadget into iPhone just for Free</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/5-most-useful-wi-fi-enabled-gadgets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Test Apache and PHP After Installation</title>
		<link>http://www.compedia4us.com/2010/06/how-to-test-apache-and-php-after-installation</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-test-apache-and-php-after-installation#comments</comments>
		<pubDate>Tue, 22 Jun 2010 13:33:03 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[test apache]]></category>
		<category><![CDATA[test php]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-test-apache-and-php-after-installation</guid>
		<description><![CDATA[We have previously discussed about the topic in which we covered a topic of&#160; how to test MySQL after installation and now we are going to discuss about how to test Apache and PHP after installing it to our computers.&#160; Once you successfully install Apache, test it by popping open your web browser and pointing [...]]]></description>
			<content:encoded><![CDATA[<p>We have previously discussed about the topic in which we covered a topic of&#160; how to test MySQL after installation and now we are going to discuss about how to test Apache and PHP after installing it to our computers.&#160; Once you successfully install Apache, test it by popping open your web browser and pointing it to <a href="http://localhost/">http://localhost/</a>. You should see Apache’s default It Worked! page (as you can see in below image).</p>
<p><span id="more-5630"></span></p>
<p><img title="image" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="458" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image8.png" width="554" border="0" /> </p>
<p>How to Test Apache and PHP</p>
<p>Once you successfully install PHP as an Apache module, you should test it to ensure that the web server can recognize PHP scripts and handle them correctly. To perform this test, create a PHP script in any text editor containing the following lines: </p>
<p>&lt;?php </p>
<p>phpinfo(); </p>
<p>?&gt; </p>
<p>Save this file as test.php in your web server document root (the htdocs/ subdirectory of your Apache installation directory) and point your browser to http://localhost/test.php. You should see a page containing information on the PHP build, check out the below picture. Eyeball the list of extensions to make sure that the MySQL extension is active. If it isn’t, review the previous installation procedure, as well as the installation documents that shipped with the software, to see what went wrong.</p>
<p><img title="image" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="449" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image9.png" width="551" border="0" /></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/01/installation-of-apache-on-windows-operating-system" rel="bookmark" class="crp_title">Installation of Apache on Windows Operating System</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-test-mysql-after-installation" rel="bookmark" class="crp_title">How to Test MySQL after Installation</a></li><li><a href="http://www.compedia4us.com/2010/01/installation-of-php-on-windows-operating-system" rel="bookmark" class="crp_title">Installation of PHP on Windows Operating System</a></li><li><a href="http://www.compedia4us.com/2010/01/installation-of-apache-and-php-in-unix-operating-system" rel="bookmark" class="crp_title">Installation of Apache and PHP in UNIX Operating System</a></li><li><a href="http://www.compedia4us.com/2009/10/how-to-instal-apache-server-mysql-and-php-server-at-once" rel="bookmark" class="crp_title">How to Instal Apache server, MySQL and PHP server at once</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-test-apache-and-php-after-installation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
