<?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>Tweakast</title>
	<atom:link href="http://www.tweakast.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tweakast.com</link>
	<description>It's more than just a tweak</description>
	<lastBuildDate>Fri, 29 May 2009 06:21:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>3 Essential CSS tweaks for the Internet Explorer</title>
		<link>http://www.tweakast.com/2009/05/29/3-essential-css-tweaks-for-the-internet-explorer/</link>
		<comments>http://www.tweakast.com/2009/05/29/3-essential-css-tweaks-for-the-internet-explorer/#comments</comments>
		<pubDate>Fri, 29 May 2009 04:02:20 +0000</pubDate>
		<dc:creator>Wayne</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css hacks]]></category>
		<category><![CDATA[css hacks for IE]]></category>
		<category><![CDATA[Learn CSS]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/?p=291</guid>
		<description><![CDATA[





 

Ever done a CSS layout for a website, only to find that everything falls apart when you view it using Internet Explorer (IE)?

Every browser has its issues with CSS. IE is one of the most popular browsers and the most probably the more problematic with web designers. Hence they often use css hacks to [...]


Related posts:<ol><li><a href='http://www.tweakast.com/2007/04/13/typography-part-2-font-art-and-text-tweaks-using-css-and-photoshop/' rel='bookmark' title='Permanent Link: Typography Part 2 &#8211; Font art and text tweaks using CSS and Photoshop'>Typography Part 2 &#8211; Font art and text tweaks using CSS and Photoshop</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:UseFELayout /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if !mso]><span class="mceItemObject"   classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></span><br />
<mce:style><!  st1\:*{behavior:url(#ieooui) } --></p>
<p><!--[endif]--> <!--[if gte mso 10]><br />
<mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} --></p>
<p><!--[endif]--></p>
<p class="MsoNormal">Ever done a CSS layout for a website, only to find that everything falls apart when you view it using Internet Explorer (IE)?</p>
<p class="MsoNormal">
<p class="MsoNormal">Every browser has its issues with CSS. IE is one of the most popular browsers and the most probably the more problematic with web designers. Hence they often use css hacks to work around the problem.</p>
<p class="MsoNormal">
<p class="MsoNormal">Here’s 3 essential tweaks you should know about IE and how you can tweak your css to make it work.</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Tweak no.1 -  The box model tweak<br />
</strong></p>
<p class="MsoNormal">IE reads the CSS box model differently. While modern browsers such as Firefox adopts the W3C box model standards, IE has adopted the traditional CSS box model and hence the difference.</p>
<p class="MsoNormal">
<p class="MsoNormal">Here’s how this will affect your css codes:</p>
<p class="MsoNormal">Suppose you have the following:</p>
<p class="MsoNormal"><code><span style="font-size: 10pt;"> </span></code></p>
<p class="MsoNormal"><code><span style="font-size: 10pt;">div {</span></code><span style="font-size: 10pt; font-family: &quot;Courier New&quot;;"><br />
<code>margin: 4em;</code><br />
<code>padding: 3em;</code><br />
<code>border: 1em solid green;</code><br />
<code>width: 20em</code><br />
<code>}</code></span></p>
<p class="MsoNormal">
<p class="MsoNormal">IE computes the div’s width based on the margin and width. In this case, the total width will be 28em.</p>
<p class="MsoNormal">
<p class="MsoNormal">To make the box model work in IE, you need to write two types of css settings in your css file, 1 for IE and 1 for any other browser using css child selectors:</p>
<p class="MsoNormal">
<p class="MsoNormal"><code><span style="font-size: 10pt;">#1: #test {width: 40px;}</span></code><span style="font-size: 10pt; font-family: &quot;Courier New&quot;;"><br />
#2: <strong><span style="font-family: &quot;Courier New&quot;;">html&gt;body</span></strong><code> #test {width: 30px;}</code></span></p>
<p class="MsoNormal">
<p class="MsoNormal">#1 will be read by older IE browsers, while #2, with the css child selector “&gt;” will be read by newer browsers (Both IE7 and above and non-IE browsers).</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Tweak no.2 &#8211; The margin tweak<br />
</strong></p>
<p class="MsoNormal">Just as the box model paradox isn’t enough to wreck your nerves, IE also handles margin spacing alittle differently.</p>
<p class="MsoNormal">
<p class="MsoNormal">If you find your div tags or web elements misaligned in IE, you can try fixing it by using padding instead of using margins.</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Tweak no. 3 &#8211; Centralizing your layout in IE<br />
</strong></p>
<p class="MsoNormal">If you centralize your layout using commands like margin:auto, you will realized that your design refused to budge in older version of IE (6.0 and below).</p>
<p class="MsoNormal">
<p class="MsoNormal">Help is on the way with this simple tweak.</p>
<p class="MsoNormal">
<p class="MsoNormal">Write the text-align:center command under the “body” tag of your css like this:</p>
<p class="MsoNormal">
<p class="MsoNormal">body {</p>
<p class="MsoNormal">text-align:center</p>
<p class="MsoNormal">}</p>
<p class="MsoNormal">
<p class="MsoNormal">There’s plenty of CSS hacks out there to tackle these and other CSS issues. Just always make sure the hacks you used are valid on the older and current browsers as well.</p>
<p class="MsoNormal">
<p class="MsoNormal">Do spread the tweak around and leave a tweak in the comments to share with everyone!</p>


<p>Related posts:<ol><li><a href='http://www.tweakast.com/2007/04/13/typography-part-2-font-art-and-text-tweaks-using-css-and-photoshop/' rel='bookmark' title='Permanent Link: Typography Part 2 &#8211; Font art and text tweaks using CSS and Photoshop'>Typography Part 2 &#8211; Font art and text tweaks using CSS and Photoshop</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2009/05/29/3-essential-css-tweaks-for-the-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn CSS in 3 easy steps</title>
		<link>http://www.tweakast.com/2009/05/09/learn-css-in-3-easy-steps/</link>
		<comments>http://www.tweakast.com/2009/05/09/learn-css-in-3-easy-steps/#comments</comments>
		<pubDate>Sat, 09 May 2009 04:34:56 +0000</pubDate>
		<dc:creator>Wayne</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS editor]]></category>
		<category><![CDATA[CSS tutorials]]></category>
		<category><![CDATA[CSS Tweaks]]></category>
		<category><![CDATA[Learn CSS]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/?p=142</guid>
		<description><![CDATA[
Ever wanted to build a website, or a blog design from scratch? Other than your trusty photoshop and HTML skills, you will also need to know Cascading Style Sheets (CSS) in your line of skills.
CSS is not that hard to pick up, here&#8217;s how you can learn the essentials fast with these links.
1. Setting up 
Choosing [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:UseFELayout /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if !mso]><span class="mceItemObject"   classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></span><br />
<mce:style><!  st1\:*{behavior:url(#ieooui) } --></p>
<p><span style="font-family: Arial;">Ever wanted to build a website, or a blog design from scratch? Other than your trusty photoshop and HTML skills, you will also need to know Cascading Style Sheets (</span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;">) in your line of skills.</span></p>
<p><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;"> is not that hard to pick up, here&#8217;s how you can learn the essentials fast with these links.</span></p>
<h3><span style="font-size: 16pt;">1. Setting up </span></h3>
<p class="MsoNormal"><strong><span style="font-family: Arial;">Choosing a text editor</span></strong></p>
<p class="MsoNormal"><strong></strong><span style="font-family: Arial;">For the purpose of fully appreciating the concepts of </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;">, we will be using a simple text editor such as notepad. </span></p>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<p class="MsoNormal"><span style="font-family: Arial;">I would recommend downloading notepad++, an enhanced version of notepad which highlights and identifies markup tags such as those in HTML and CSS</span></p>
<p class="MsoNormal"><strong><span style="font-family: Arial;"> </span></strong></p>
<p class="MsoNormal"><span style="font-family: Arial;">You can download notepad++ here. (Choose the installer.exe version if you are using Windows).</span></p>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<ul>
<li><a title="Notepad++ Download" href="http://sourceforge.net/project/showfiles.php?group_id=95717&amp;package_id=102072" target="_blank"><span style="font-family: Arial;">Notepad++ download<br />
</span></a></li>
</ul>
<p class="MsoNormal"><strong><span style="font-family: Arial;"> </span></strong></p>
<p class="MsoNormal"><strong><span style="font-family: Arial;">Choosing a browser</span></strong></p>
<p class="MsoNormal"><span style="font-family: Arial;">Many modern browsers these days support </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;">. I would recommend Mozilla Firefox for the tutorials and links of this entry. They are tested and proven to work on Firefox (by myself).</span></p>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<p class="MsoNormal"><span style="font-family: Arial;">If you don’t have firefox, you can download it here.</span></p>
<ul>
<li><span style="font-family: Arial;"><a title="Firefox download link" href="http://www.mozilla.com/en-US/firefox/personal.html" target="_blank">Firefox download</a><br />
</span></li>
</ul>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<h3><span style="font-size: 16pt;">2. Learning the </span><span style="font-size: 16pt;">CSS</span><span style="font-size: 16pt;"> Concept </span></h3>
<p class="MsoNormal"><span style="font-family: Arial;">Now that you’re all setup, let’s begin by understanding how website layouts are commonly arranged using </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;">. </span></p>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<p class="MsoNormal"><span style="font-family: Arial;">The awe of </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;"> is its ability to apply a “style” or setting to multiple web pages. Thus, you need to know how to configure </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;"> handles HTML elements and groups those using classes and ids to apply to many many web pages.</span></p>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<p class="MsoNormal"><span style="font-family: Arial;">Web designers also use </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;"> to arrange web elements using a box model. Simply put, it is just visualizing your layout in rectangular blocks to arrange your web elements.</span></p>
<p class="MsoNormal"><span style="font-family: Arial;">For example like in the picture, you can create DIV blocks for the following web elements: </span></p>
<ol>
<li><span style="font-family: Arial;">&#8220;header&#8221; DIV which is the rectangular block to house your logo<br />
</span></li>
<li><span style="font-family: Arial;">a navigation DIV block for your navigation bar<br />
</span></li>
<li><span style="font-family: Arial;">a content div block for your content and picture<br />
</span></li>
<li><span style="font-family: Arial;">a footer div block for your copyright information and other footer contents.<br />
</span></li>
</ol>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<div id="attachment_179" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-179" title="CSS Box Model" src="http://www.tweakast.com/wp-content/uploads/2009/05/untitled-1-copy2-300x225.jpg" alt="CSS Box Model" width="300" height="225" /><p class="wp-caption-text">CSS Box Model</p></div>
<p class="MsoNormal"><span style="font-family: Arial;">I recommend this website to understand these </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;"> concepts and more:</span></p>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<ul>
<li><a title="CSS tutorial" href="http://www.html.net/tutorials/css/introduction.asp" target="_blank"><span style="font-family: Arial;">CSS Tutorial </span></a></li>
</ul>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<p class="MsoNormal"><span style="font-family: Arial;">If you are lost and do not understand any of these </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;"> functions and their uses, here’s a link that has the entire list of them and examples:</span></p>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<ul>
<li><a title="w3schools CSS tutorial" href="http://www.w3schools.com/css/" target="_blank"><span style="font-family: Arial;">w3schools CSS tutorial</span></a></li>
</ul>
<h3><span style="font-size: 16pt;">3. </span><span style="font-size: 16pt;">CSS</span><span style="font-size: 16pt;"> tutorials to get you going</span></h3>
<p class="MsoNormal"><span style="font-family: Arial;">Now that you have some idea on how </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;"> works and its common practices, here are tutorials that you can do to apply them &#8211; by creating a CSS layout from scratch. </span></p>
<p class="MsoNormal"><span style="font-family: Arial;">These tutorials features popular layouts used on the Internet. They are easy to follow, with step-by-step instructions and ready-made images for you to use. </span></p>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<ul>
<li><span style="font-family: Arial;"><a title="Creating a css layout from scratch" href="http://www.subcide.com/tutorials/csslayout/" target="_blank">Creating a CSS Layout from scratch<br />
</a></span></li>
<li><span style="font-family: Arial;"><a title="Creating a 3 column CSS layout " href="http://css.maxdesign.com.au/floatutorial/tutorial0901.htm" target="_blank">Creating a 3 Column layout using CSS </a><a title="Creating a 3 column CSS layout " href="http://css.maxdesign.com.au/floatutorial/tutorial0901.htm" target="_blank">(you might wanna read through the tutorials on float featured on the website before starting this one)<br />
</a></span></li>
</ul>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>
<p class="MsoNormal"><span style="font-family: Arial;">Now that you’ve picked up </span><span style="font-family: Arial;">CSS</span><span style="font-family: Arial;">, you can try recreating websites by visualizing them with your new found skill to get the hang of it.Have fun!<br />
</span></p>
<p class="MsoNormal"><span style="font-family: Arial;"> </span></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2009/05/09/learn-css-in-3-easy-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make your MSN nickname look more interesting?</title>
		<link>http://www.tweakast.com/2009/05/06/how-to-make-your-msn-nicknam-more-interesting/</link>
		<comments>http://www.tweakast.com/2009/05/06/how-to-make-your-msn-nicknam-more-interesting/#comments</comments>
		<pubDate>Tue, 05 May 2009 16:13:29 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Tweaks/Tips]]></category>
		<category><![CDATA[Cute Nickname]]></category>
		<category><![CDATA[MSN Generators]]></category>
		<category><![CDATA[MSN Nickname]]></category>
		<category><![CDATA[MSN Symbols]]></category>
		<category><![CDATA[Upside Down Nickname]]></category>
		<category><![CDATA[Weird Nickname]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/?p=113</guid>
		<description><![CDATA[Have you gotten bored with your dull-looking MSN? It&#8217;s time to make your MSN look more interesting! I bet you have seen your friends with nicknames that are upside down or even reversed. Reversing your nickname isn&#8217;t that difficult. While there are many MSN tools available on the internet for you to do it without your [...]


Related posts:<ol><li><a href='http://www.tweakast.com/2007/05/13/make-yourself-disappear-in-msn/' rel='bookmark' title='Permanent Link: Make yourself disappear in MSN'>Make yourself disappear in MSN</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Have you gotten bored with your dull-looking MSN? It&#8217;s time to make your MSN look more interesting! I bet you have seen your friends with nicknames that are upside down or even reversed. Reversing your nickname isn&#8217;t that difficult. While there are many MSN tools available on the internet for you to do it without your hand getting dirty, here&#8217;s some of my favourite MSN tools I use. Have fun playing!</p>
<h3>Generators for MSN Nickname</h3>
<p><span style="font-weight: normal;">Here are some ways you can make your MSN nickname look interesting:</span></p>
<ul>
<li><a title="Make your MSN nickname upside down" href="http://www.sherv.net/flip.html" target="_blank">Upside down</a></li>
<li><a title="How to reverse your MSN nickname" href="http://www.msnheaven.com/nicknames/msn-nicks/reversed-nickname.php" target="_self">Reverse</a> (Example: tsakeawt)</li>
<li><a title="How to make your MSN nickname artistic" href="http://www.batkhela.com/msn/nick-names.shtml" target="_blank">Artistic</a> (Example: (¯`·._.·[TWEAKAST]·._.·´¯) )</li>
<li><a title="How to translate your MSN nickname" href="http://www.msnheaven.com/nicknames/msn-nicks/leet-translator.php" target="_blank">1337 translator</a> (Example: +\/\/E@k45+)</li>
<li><a title="How to make your MSN nickname weird" href="http://www.sherv.net/weirdmaker.html" target="_blank">Weird</a></li>
</ul>
<p>More at:</p>
<ul>
<li><a rel="nofollow" href="http://www.minderlegaal.nl/" target="_blank">http://www.minderlegaal.nl/</a></li>
<li><a href="http://www.isola-atlantide.com/msn/nickname/" target="_blank">http://www.isola-atlantide.com/msn/nickname/</a></li>
<li><a rel="nofollow" href="http://www.msnletters.info/" target="_blank">http://www.msnletters.info/</a></li>
<li><a rel="nofollow" href="http://www.sherv.net/weirdmaker.html" target="_blank">http://www.sherv.net/weirdmaker.html</a></li>
<li><a rel="nofollow" href="http://www.msnparadiso.com/index5.php?Ver=Creacion_Nick&amp;Lang=Es" target="_blank">http://www.msnparadiso.com/index5.php?Ve&#8230;</a></li>
<li><a rel="nofollow" href="http://www.nuevodisplay.com/conversor.html" target="_blank">http://www.nuevodisplay.com/conversor.ht&#8230;</a></li>
<li><a rel="nofollow" href="http://www.messletters.com/" target="_blank">http://www.messletters.com/</a></li>
<li><a rel="nofollow" href="http://www.armatudisplay.com/" target="_blank">http://www.armatudisplay.com</a></li>
<li><a rel="nofollow" href="http://www.fanzer-chk.com/conversor_nick.html" target="_blank">http://www.fanzer-chk.com/conversor_nick&#8230;</a></li>
<li><a rel="nofollow" href="http://www.weirdmaker.webb.se/" target="_blank">http://www.weirdmaker.webb.se/</a></li>
<li><a rel="nofollow" href="http://www.eslamoda.com/" target="_blank">http://www.eslamoda.com/</a></li>
<li><a rel="nofollow" href="http://emotik.com/index.php?msn=nicks" target="_blank">http://emotik.com/index.php?msn=nicks</a></li>
<li><a rel="nofollow" href="http://www.msnweirdmakers.com/" target="_blank">http://www.msnweirdmakers.com/</a></li>
<li><a rel="nofollow" href="http://www.revfad.com/flip.html" target="_blank">http://www.revfad.com/flip.html</a></li>
<li><a rel="nofollow" href="http://www.messengerfreak.com/text_maker.php" target="_blank">http://www.messengerfreak.com/text_maker&#8230;</a></li>
<li><a rel="nofollow" href="http://msn.omduena.com/ascii_arts01.html" target="_blank">http://msn.omduena.com/ascii_arts01.html</a></li>
<li><a rel="nofollow" href="http://msnnames.msnman.com/ascii.msn.names.htm" target="_blank">http://msnnames.msnman.com/ascii.msn.nam&#8230;</a></li>
<li><a rel="nofollow" href="http://www.zptweb.net/Generador-nicks-ASCII-messenger-tools-tool.html" target="_blank">http://www.zptweb.net/Generador-nicks-AS&#8230;</a></li>
</ul>
<h3>Symbols for MSN Nickname</h3>
<p>Here are some symbols for you to insert into your MSN nickname:<span style="text-decoration: underline;"><br />
</span></p>
<div class="mceTemp">
<dl id="attachment_121" class="wp-caption alignnone" style="width: 139px;"><a href="http://www.tweakast.com/cute_MSN_nickname.txt"><img class="size-full wp-image-121" title="cute_msn_nickname" src="http://www.tweakast.com/wp-content/uploads/2009/05/cute_msn_nickname.jpg" alt="Cute Msn nickname" width="129" height="238" /></a></p>
<dd class="wp-caption-dd">Click on the picture to download the text file</dd>
</dl>
</div>
<p>More at:</p>
<ul>
<li><a title="symbols for your MSN nickname" href="http://www.sherv.net/symbols.html" target="_blank">http://www.sherv.net/symbols.html</a></li>
<li><a title="symbols for MSN nickname" href="http://almaweb.es/tutos/gruposmsn/nicks.html" target="_blank">http://almaweb.es/tutos/gruposmsn/nicks.html</a></li>
</ul>
<h3>Conclusion</h3>
<p>This post is just some tweaks to your MSN nickname. If these weaks don&#8217;t fancy you, then you can download <a title="Messenger Plus Live!" href="http://www.msgplus.net" target="_blank">Messenger Plus Live!</a> &amp; Nudge script and try to nudge your friends continuously.</p>
<p>Last but not least if you have any more interesting MSN nicknames to share, feel free to post them as comments below.</p>


<p>Related posts:<ol><li><a href='http://www.tweakast.com/2007/05/13/make-yourself-disappear-in-msn/' rel='bookmark' title='Permanent Link: Make yourself disappear in MSN'>Make yourself disappear in MSN</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2009/05/06/how-to-make-your-msn-nicknam-more-interesting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Useful tips for your Daily Googling!</title>
		<link>http://www.tweakast.com/2007/07/09/useful-tips-for-your-daily-googling/</link>
		<comments>http://www.tweakast.com/2007/07/09/useful-tips-for-your-daily-googling/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 15:27:47 +0000</pubDate>
		<dc:creator>Wayne</dc:creator>
				<category><![CDATA[Tweaks/Tips]]></category>
		<category><![CDATA[google tips]]></category>
		<category><![CDATA[Google tutorial]]></category>
		<category><![CDATA[google tweaks]]></category>
		<category><![CDATA[how to google]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/2007/07/09/useful-tips-for-your-daily-googling/</guid>
		<description><![CDATA[Every now and then, I would find myself &#8220;lost&#8221; in the world of information on the Net, especially when I&#8217;m researching for my projects.
So I have included below some tips on searching with Google. Hope they will proved handy in your quest for information!
3 Basic Search tips: 
1. Provide appropriate keywords
Google fundamentally matches results based [...]


Related posts:<ol><li><a href='http://www.tweakast.com/2007/04/14/my-seo-skill-my-seo-grave-mistakes/' rel='bookmark' title='Permanent Link: My SEO Skill. My SEO Grave Mistakes!'>My SEO Skill. My SEO Grave Mistakes!</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Every now and then, I would find myself &#8220;lost&#8221; in the world of information on the Net, especially when I&#8217;m researching for my projects.</p>
<p>So I have included below some tips on searching with Google. Hope they will proved handy in your quest for information!</p>
<p><strong>3 Basic Search tips: </strong></p>
<p><strong>1. Provide appropriate keywords</strong><br />
Google fundamentally matches results based on your keywords provided.  And now with stemming technology, Google attempts to produce results based on keywords having similar meanings to the one provided.</p>
<p>You can afford to be general in your keywords here, but <strong>do supply appropriate and meaningful keywords. </strong></p>
<p>For e.g. if you&#8217;re searching for baseball team caps online, it would be better to supply keywords such as &#8220;baseball team caps&#8221; than &#8220;baseball caps&#8221; or &#8220;nice baseball caps&#8221;.   <strong> </strong></p>
<p><strong>2. Use wildcards</strong><br />
You can use * in your search phrase if you have forgotten some of the words. As long as you still have the contents of your search phrase intact, Google will attempt to fill in the blanks for you.</p>
<p><a title="wildcard-screens.jpg" href="http://www.tweakast.com/wp-content/uploads/2007/07/wildcard-screens.jpg"><img src="http://www.tweakast.com/wp-content/uploads/2007/07/wildcard-screens.jpg" alt="wildcard-screens.jpg" /></a></p>
<p><strong>3.Quotes</strong><br />
You can ask Google to search for a particular phrase by ending &#8220;&#8221; at the beginning and the end of your phrase (for e.g. &#8220;This is a phrase&#8221;). Google then displays results which contains the phrase.</p>
<p><img src="http://www.tweakast.com/wp-content/uploads/2007/07/quotes-screens.jpg" alt="quotes-screens.jpg" /></p>
<p>Now, keeping the 3 basic search tips in mind, below are some of other cool things that you can do Google!</p>
<p><strong>4.A Calculator</strong><br />
Just enter any numerical calculations in the search field, and search it. Google will interpret and calculates the answer as your first result. (Displayed together with the calculator icon).</p>
<p><img src="http://www.tweakast.com/wp-content/uploads/2007/07/calculator-screens-1.jpg" alt="calculator-screens-1.jpg" /></p>
<p>It also does your unit conversions ranging from pounds to kg, miles to kilometers.</p>
<p><img src="http://www.tweakast.com/wp-content/uploads/2007/07/calculator-screens-2.jpg" alt="calculator-screens-2.jpg" /></p>
<p>This calculator is so powerful, it even knows &#8220;the answer to life, the universe and everything&#8221; try it!</p>
<p><strong>5. Isolate site/domain types with site:</strong><br />
With the site: command, you can specify Google to search within a particular domain type or within a web page.</p>
<p>For e.g. lions site: edu specifies Google to search on &#8220;lions&#8221; within websites with addresses containing &#8220;edu&#8221;.</p>
<p>for e.g. guitars site:www.guitars.com specifies Google to search only within the website: www.guitars.com for the search phrase, &#8220;guitars&#8221;.</p>
<p><img src="http://www.tweakast.com/wp-content/uploads/2007/07/site-screens.jpg" alt="site-screens.jpg" /><br />
<strong>6. Search linked pages with link:</strong><br />
link: allows you to search for pages which have links to the website specified in the search field. Bloggers and fellow SEO users might be interested to play around with this feature.</p>
<p>for e.g. link:tweakast.com searches for pages which have links to our blog.</p>
<p><img src="http://www.tweakast.com/wp-content/uploads/2007/07/link-screens.jpg" alt="link-screens.jpg" /></p>
<p><strong>7.Specify and search within a number range:</strong><br />
You can specify and search within a number range in Google such as the following search phrase:</p>
<p>Olympics 1996..2004</p>
<p>The above will return anything related to the Olympics within the year 1996 to 2004.</p>
<p><img src="http://www.tweakast.com/wp-content/uploads/2007/07/numrange-screens.jpg" alt="numrange-screens.jpg" /></p>
<p><strong>8.Search for music and movie reviews with movie: and music:</strong><br />
Google returns movie reviews and music reviews when you use movie: and music: within your search text respectively.<br />
<img src="http://www.tweakast.com/wp-content/uploads/2007/07/movies-screens.jpg" alt="movies-screens.jpg" /></p>
<p><strong>9.</strong> <strong>Use Google as a dictionary using define:</strong><br />
This is my favourite feature in Google! It functions as a dictionary checking up the meaning of the words entered into the search field. It also can explain definitions of acronyms too.</p>
<p><strong> 10. Filter specific file types with filetype:</strong><br />
This feature is also very useful for academic projects and researches. By specifying for e.g. &#8220;hand injuries filetype:pdf&#8221;, Google will only return pdf files with hand injuries contents.</p>
<p><img src="http://www.tweakast.com/wp-content/uploads/2007/07/filetype-screens.jpg" alt="filetype-screens.jpg" /></p>
<p>Hope these tips help you in your daily surfing! Feel free to share other tips you might know, in the comments section. Google on!</p>


<p>Related posts:<ol><li><a href='http://www.tweakast.com/2007/04/14/my-seo-skill-my-seo-grave-mistakes/' rel='bookmark' title='Permanent Link: My SEO Skill. My SEO Grave Mistakes!'>My SEO Skill. My SEO Grave Mistakes!</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2007/07/09/useful-tips-for-your-daily-googling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25 Design Website you would love to get inspirations from</title>
		<link>http://www.tweakast.com/2007/06/20/25-design-website-you-would-love-to-get-inspirations-from/</link>
		<comments>http://www.tweakast.com/2007/06/20/25-design-website-you-would-love-to-get-inspirations-from/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 04:35:36 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/2007/06/20/25-design-website-you-would-love-to-get-inspirations-from/</guid>
		<description><![CDATA[For all designers, it&#8217;s time to get more design inspirations. Thinking a design from scratch can be a difficult task, I cannot not agree with this. At times, I faced myself with dead brain and couldn&#8217;t produce any nice design idea. One solution to this problem is to surf other designers&#8217; works to get inspiration. [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>For all designers, it&#8217;s time to get more design inspirations. Thinking a design from scratch can be a difficult task, I cannot not agree with this. At times, I faced myself with dead brain and couldn&#8217;t produce any nice design idea. One solution to this problem is to surf other designers&#8217; works to get inspiration. I&#8217;ve compiled a list of good websites that you will love and pack you more with their creative juices.</p>
<h3>25 Websites that showcase nice designs and tickle your inspirations</h3>
<h4>1. <a href="http://www.netdiver.net">Netdiver</a></h4>
<p>My all-time favourite website. Netdiver contains all the finest websites that you probably have never seen them before. <a title="Netdiver" href="http://www.netdiver.net"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/1netdiver.jpg" alt="Netdiver" /></a></p>
<h4>2. <a href="http://www.designiskinky.net/">Design is kinky</a></h4>
<p>Design is kinky? Yes it is when it&#8217;s designed with heart and soul. Do check out how kinky they are now.</p>
<p><a title="Design is Kinky" href="http://www.designiskinky.net/"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/2designiskinky.jpg" alt="Design is Kinky" /></a></p>
<p><span id="more-52"></span></p>
<h4>3. <a href="http://www.artzmania.com">Artzmania</a></h4>
<p>Nothing beats anything that is for free. Artzmania offers good content on design. It&#8217;s worth investing your time on it. <a href="http://www.artzmania.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/3artzmania.jpg" alt="Artzmania" /></a></p>
<h4>4. <a href="http://www.csszengarden.com/">CSS Zen Garden</a></h4>
<p>Good CSS resource website that features the entire nice CSS-designed website, be it a novice or an expert. CSS Zen Garden is definitely a beautiful garden for those CSS lovers. <a title="Zen Garden" href="http://www.csszengarden.com/"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/4zengarden.jpg" alt="Zen Garden" /></a></p>
<h4>5. <a href="http://kuler.adobe.com">Adobe Kuler</a></h4>
<p>If you are something like me, who doesn&#8217;t have any color sense. Try adobe kuler community if you need some help on choosing right combination of colors. <a href="http://kuler.adobe.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/5kuler.jpg" alt="Kuler Adobe" /></a></p>
<h4>6. <a href="http://www.colourlovers.com">Colourlovers</a></h4>
<p>Same as above, a community that brings colours to your life. <a href="http://www.colourlovers.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/7colourlovers.jpg" alt="Colourlovers" /></a></p>
<h4>7. <a href="http://www.deviantart.com">Deviantart</a></h4>
<p>Deviantart may be the largest art community on the internet (as far as I know). Be it a bad art or a good art, you are free to post your arts and prepare to receive comments on deviantart. But one thing for sure, most of the arts are nicely beautifully created. Take a peek.</p>
<p><a href="http://www.deviantart.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/6deviantart.jpg" alt="Deviantart" /></a></p>
<h4>8. <a href="http://www.smashingmagazine.com">Smashing Magazine</a></h4>
<p>Smashing Magazine is one of my favourite sites for its in-depth information, which sometimes can make you envy and jealous.</p>
<p><a href="http://www.smashingmagazine.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/8smashingmagazine.jpg" alt="Smashing Magazine" /></a></p>
<h4>9. <a href="http://www.digitalthread.com">DigitalThread</a></h4>
<p>Featuring the entire nice designed website.</p>
<p><a title="DigitalThread" href="http://www.digitalthread.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/9digitalthread.jpg" alt="DigitalThread" /></a></p>
<h4>10. <a href="http://www.thebestdesigns.com/">The best designs</a></h4>
<p>The best designs website shows you all websites, with tags, that you will be expecting from them.</p>
<p><a href="http://www.thebestdesigns.com/"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/10bestdesign.jpg" alt="The Best Design" /></a></p>
<h4>11. <a href="http://www.thefwa.com/">FWA</a></h4>
<p>The Favourite Website Awards go to all websites that are featured on FWA. Kudos to them. If you are looking for tons of flash goodness, you are at the right place. Dive in now.</p>
<p><a href="http://www.thefwa.com/"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/11fwa.jpg" alt="The Favorite Web Awards" /></a></p>
<h4>12. <a href="http://bestwebgallery.com/">Best Web Gallery</a></h4>
<p>Not many websites are listed on the site but the websites that are showcased on the Best Web Gallery deserve to be mentioned. Worth a look.</p>
<p><a href="http://bestwebgallery.com/"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/12bestwebgallery.jpg" alt="Best Web Gallery" /></a></p>
<h4>13. <a href="http://www.fcukstar.com">Fcukstar</a></h4>
<p>Fcukstar is back again with more updates on nice flashy sites. These websites are the top notch.</p>
<p><a href="http://www.fcukstar.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/13fcukstar.jpg" alt="Fcukstar" /></a></p>
<h4>14. <a href="http://www.strangefruits.nl/">Strangefruits</a></h4>
<p>Strange fruits? I don&#8217;t really know what it means, but I&#8217;m certain that you will see some strange websites.</p>
<p><a href="http://www.strangefruits.nl/"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/14sf.jpg" alt="Strangefruits" /></a></p>
<h4>15. <a href="http://www.mows.sk/awards/index.php">Mowsnet Web Awards</a></h4>
<p>Awards are given to websites in term of gold, silver and bronze. I&#8217;m not sure about their criteria but it&#8217;s worth a look.</p>
<p><a href="http://www.mows.sk/awards/index.php"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/15mowsnet-web-awards.jpg" alt="Mowsnet Web Awards" /></a></p>
<h4>16. <a href="http://www.websitedesignawards.com/">Website Design Awards</a></h4>
<p>Another Design Awards website</p>
<p><a href="http://www.websitedesignawards.com/"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/16website-desigin-award.jpg" alt="16website-desigin-award.jpg" /></a></p>
<h4>17. <a href="http://www.pingmag.jp/">Pingmag</a></h4>
<p>Pingmag is a Tokyo Based magazine featuring illustration arts to fashion design.</p>
<p><a href="http://www.pingmag.jp/"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/17pingmag.jpg" alt="Pingmag" /></a></p>
<h4>18. <a href="http://www.threadless.com">Threadless</a></h4>
<p>Want to have your design on the shirt? Yes you can with Threadless, Threadless offers user to submit their work and vote the works. It&#8217;s really more than just a shirt.</p>
<p><a href="http://www.threadless.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/18threadless.jpg" alt="Threadless" /></a></p>
<h4>19. <a href="http://www.bamagazine.com/">Before and After Magazine</a></h4>
<p>Before and After Magazine offers tutorials on how to make your design rock. There are couples of free ebooks for downloading, or rather if you have money, you can subscribe their magazine.</p>
<p><a href="http://www.bamagazine.com/"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/20before-and-after.jpg" alt="Before and After" /></a></p>
<h4>20. <a href="http://www.iconbuffet.com">IconBuffet</a></h4>
<p>Collection of beautiful icons that are available on the web, but not at the cost of nothing. Nevertheless, what we need to see is the beauty of these icons. <img src='http://www.tweakast.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.iconbuffet.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/22iconbuffet.jpg" alt="Icon Buffets" /></a></p>
<h4>21. <a href="http://www.logopond.com">Logopond</a></h4>
<p>Lazy to think of a web 2.0 logo design? Logopond has an answer for you, it has nice collection of logos for you to inspire and refer.</p>
<p><a href="http://www.logopond.com"><img src="http://www.tweakast.com/wp-content/uploads/2007/06/25logopool.jpg" alt="Logo Pool" /></a></p>
<h4>22. Walk around your neighbourhood</h4>
<p>Take a slow stroll with your dog in the evening. Sometimes, while walking, you may find interesting idea along the way.</p>
<h4>23. View movies and Posters</h4>
<p>I believe everyone has seen a movie and poster, you should take note on why the poster/movie is designed in this manner, how the typeface is used if you need some inspirations. Besides analyzing these, do remember to enjoy the show too!</p>
<h4>24. Hit the bookstores/libraries</h4>
<p>I always love to go to the bookstore/library whenever I&#8217;m free to look at books on designing. The amount of books that are found in a bookstore/library can be a reward for designer; this is what I called instant result to inspiration. You don&#8217;t have to search high and low for inspirations on the net. With just a glance across the books, you should be able to tell what the books that you are looking for.</p>
<h4>25. Photography</h4>
<p>Take as many photos as possible on interesting objects with your trusty camera. You would be shocked to see some of your shots which can be used for your design.</p>
<p>As for now, feed yourself with those creative and nice designed website. Hope that this list will prove useful to you when you need inspirations for design.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2007/06/20/25-design-website-you-would-love-to-get-inspirations-from/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to improve your typing speed?</title>
		<link>http://www.tweakast.com/2007/06/12/how-to-improving-your-typing-speed/</link>
		<comments>http://www.tweakast.com/2007/06/12/how-to-improving-your-typing-speed/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 15:07:43 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Tweaks/Tips]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/2007/06/12/how-to-improving-your-typing-speed/</guid>
		<description><![CDATA[Typing accurate and fast can be a difficult task, even for me, I will have difficulties typing 100% accurate. But with adequate training and lessons online, you should be able to type fast and accurate in just a matter of time.
Firstly, you may want to try checking out on how fast you can type at [...]


Related posts:<ol><li><a href='http://www.tweakast.com/2007/05/26/how-to-defin-your-goals/' rel='bookmark' title='Permanent Link: How to define your goals'>How to define your goals</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Typing accurate and fast can be a difficult task, even for me, I will have difficulties typing 100% accurate. But with adequate training and lessons online, you should be able to type fast and accurate in just a matter of time.</p>
<p>Firstly, you may want to try checking out on how fast you can type at <a href="http://labs.jphantom.com/wpm/">Joshua Rennert&#8217;s typing speed measurement page</a>, and get a sense of your current skill level. If you achieve a “wow”, you probably are a fast typist. My highest record is 89 wpm (which is below average in my opinion).</p>
<h3>How I achieve 89 words per minute?</h3>
<p><strong>1.    Learn the proper and fastest technique of typing</strong><br />
Touch typing is definitely faster than hunt and peck. Learn that.</p>
<ul>
<li><strong>Why learn to touch type?</strong> When you can do it well, touch typing is the fastest way to write. Many people can soon learn to touch type faster than they can write with a pen. [<a href="http://www.bbc.co.uk/schools/typing/">BBC – Dancing Mat typing</a>]</li>
<li>Fingerwork offers some useful tips on how to achieve touch typing in the shortet time possible. [<a href="http://www.fingerworks.com/typing.html">Fingerwork – touch typing tips</a>]</li>
<li>Online Java tutorials on learning how to type [<a href="http://www.nimblefingers.com/">Nimblefinger</a>]</li>
</ul>
<p><strong>2.    Practice, and practice, and more practice</strong><br />
Grab your favourite book and start typing from first to last page. Sooner or later, your typing speed will be faster without you noticing.</p>
<p><strong>3.    Play some typing games/software</strong><br />
Have fun typing with games/software, if you are bored.</p>
<p><strong>Games:</strong></p>
<ul>
<li><a href="http://www.jonmiles.co.uk/fingerjig.php">Jonathan Miles: Fingerjig Typing Game</a></li>
<li><a href="http://2addicted.com/letters">2addicted letters</a></li>
<li><a href="http://2addicted.com/words">2addicted words<br />
</a></li>
<li><a href="http://get.games.yahoo.com/proddesc?gamekey=typershark">Typer Shark</a></li>
<li><a href="http://www.addictinggames.com/typefast.html">Addicting Games &#8211; Typefast</a></li>
<li><a href="http://en.wikipedia.org/wiki/The_Typing_of_the_Dead">The Typing of the Dead</a> (Commercial)</li>
</ul>
<p><strong>Software:</strong></p>
<ul>
<li><a href="http://www.download.com/10-Finger-BreakOut-Free-Typing-Game/3000-2051_4-10505268.html">10 Finger BreakOut &#8211; Free Typing Game 6.2</a></li>
<li><a href="http://typingsoft.com/stamina.htm">Stamina typing</a></li>
</ul>
<p><strong>4.    Chat with your friends online</strong><br />
The more you chat with your friends, the faster your typing speed gets.</p>
<p><strong>5.    Use your keyboard you feel comfortable with</strong><br />
When you are using your keyboard, be sure to not to strain your wrist while you are typing. It’s important to place your wrist in a comfortable area. I would suggest you to use ergonomic keyboard.</p>
<ul>
<li><a href="http://reviews.cnet.com/4520-11324_7-6324059-6.html">CNET &#8211; Pain-free typing tips</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.tweakast.com/2007/05/26/how-to-defin-your-goals/' rel='bookmark' title='Permanent Link: How to define your goals'>How to define your goals</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2007/06/12/how-to-improving-your-typing-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defining your site&#8217;s features in 4 simple steps</title>
		<link>http://www.tweakast.com/2007/05/30/defining-your-sites-features-in-4-simple-steps/</link>
		<comments>http://www.tweakast.com/2007/05/30/defining-your-sites-features-in-4-simple-steps/#comments</comments>
		<pubDate>Tue, 29 May 2007 16:34:12 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/2007/05/30/defining-your-sites-features-in-4-simple-steps/</guid>
		<description><![CDATA[Deciding on what feature to include in your site may be one of the most difficult task to do. Why is this so? Before you implement the features in your site, you need to find out who is your competitors, what is your financial goals, and what is your targeted audience.
How to define the features?
1. [...]


Related posts:<ol><li><a href='http://www.tweakast.com/2007/05/25/writing-mission-statement-for-your-site/' rel='bookmark' title='Permanent Link: Writing mission statement for your site'>Writing mission statement for your site</a></li><li><a href='http://www.tweakast.com/2007/05/26/how-to-defin-your-goals/' rel='bookmark' title='Permanent Link: How to define your goals'>How to define your goals</a></li><li><a href='http://www.tweakast.com/2007/04/07/blog-explosion-the-good-and-the-bad/' rel='bookmark' title='Permanent Link: Blog Explosion. The good and the bad.'>Blog Explosion. The good and the bad.</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Deciding on what feature to include in your site may be one of the most difficult task to do. Why is this so? Before you implement the features in your site, you need to find out who is your competitors, what is your financial goals, and what is your targeted audience.</p>
<p><strong>How to define the features?</strong></p>
<p><strong>1. Set your priorities</strong> about what will be included. These should be based on your users&#8217; needs and your goals.</p>
<p><strong>2. Make a blue-sky list</strong> is to brainstorm ideas on what your site can do, with as many ideas as possible. From the list, you can slowly filter out the ideas and refine them about how the site should be organized, how it might help or entertain users, how it will generate revenue, and how it will be different from competing sites.</p>
<p><strong>3. Identifing core features</strong> without which your site couldn&#8217;t launch. Before even prioritize your list, you should pull out the &#8220;must-have&#8221; features, that&#8217;s the main attraction of your site.</p>
<p><strong>4. Prioritizing other features</strong> you&#8217;d like to include.</p>


<p>Related posts:<ol><li><a href='http://www.tweakast.com/2007/05/25/writing-mission-statement-for-your-site/' rel='bookmark' title='Permanent Link: Writing mission statement for your site'>Writing mission statement for your site</a></li><li><a href='http://www.tweakast.com/2007/05/26/how-to-defin-your-goals/' rel='bookmark' title='Permanent Link: How to define your goals'>How to define your goals</a></li><li><a href='http://www.tweakast.com/2007/04/07/blog-explosion-the-good-and-the-bad/' rel='bookmark' title='Permanent Link: Blog Explosion. The good and the bad.'>Blog Explosion. The good and the bad.</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2007/05/30/defining-your-sites-features-in-4-simple-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to define your goals</title>
		<link>http://www.tweakast.com/2007/05/26/how-to-defin-your-goals/</link>
		<comments>http://www.tweakast.com/2007/05/26/how-to-defin-your-goals/#comments</comments>
		<pubDate>Sat, 26 May 2007 15:31:10 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Tweaks/Tips]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/2007/05/26/defining-your-goals/</guid>
		<description><![CDATA[Once you have written your mission statement, you can determine the general direction of your site. What, exactly, are you hoping your site will accomplish? What concrete goals should the site help you achieve?
The goals themselves will vary, depending on the type of site. But it doesn&#8217;t matter what is it, it&#8217;s important to define [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Once you have written your mission statement, you can determine the general direction of your site. What, exactly, are you hoping your site will accomplish? What concrete goals should the site help you achieve?</p>
<p>The goals themselves will vary, depending on the type of site. But it doesn&#8217;t matter what is it, it&#8217;s important to define your goals.</p>
<p>By stating your goals, you</p>
<ul>
<li>Create attainable measures of success</li>
<li>Provide an objective framework for making decision</li>
<li>Help prevent meddling</li>
</ul>
<p><strong>What kind of goals?</strong><br />
Goals will vary depending on your focus, they can be things like achieving 100 unique visitors per day, earning $1 per day, reducing page loading time or even building your community.</p>
<p>Whatever your goals are, they should be</p>
<ul>
<li>Relevant</li>
<li>Measurable</li>
<li>Have a deadline</li>
<li>Realistic</li>
</ul>
<p>The last point can&#8217;t be stressed enough. Website may be powerful but they&#8217;re not magic. Don&#8217;t expect them to achieve it for you.</p>
<p><strong>Read further</strong><br />
<a href="http://www.problogger.net/archives/2006/08/19/how-to-achieve-your-goals-hint-1/">How to achieve your Goals</a> by <a href="http://www.problogger.net">Problogger</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2007/05/26/how-to-defin-your-goals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing mission statement for your site</title>
		<link>http://www.tweakast.com/2007/05/25/writing-mission-statement-for-your-site/</link>
		<comments>http://www.tweakast.com/2007/05/25/writing-mission-statement-for-your-site/#comments</comments>
		<pubDate>Fri, 25 May 2007 15:37:29 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/2007/05/25/writing-mission-statement-for-your-site/</guid>
		<description><![CDATA[It&#8217;s essential to write a mission statement for your site. Like Tweakast, our mission statement is to gather all the tweaks over the world and make it a place for everyone to learn and share. That&#8217;s our mission statement even before we build this site. I cannot stress how important it is, mission statement gives [...]


Related posts:<ol><li><a href='http://www.tweakast.com/2007/05/30/defining-your-sites-features-in-4-simple-steps/' rel='bookmark' title='Permanent Link: Defining your site&#8217;s features in 4 simple steps'>Defining your site&#8217;s features in 4 simple steps</a></li><li><a href='http://www.tweakast.com/2007/05/26/how-to-defin-your-goals/' rel='bookmark' title='Permanent Link: How to define your goals'>How to define your goals</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s essential to write a mission statement for your site. Like Tweakast, our mission statement is to gather all the tweaks over the world and make it a place for everyone to learn and share. That&#8217;s our mission statement even before we build this site. I cannot stress how important it is, mission statement gives you a sense of direction of where you are heading.</p>
<p><strong>A mission statement&#8230;</strong></p>
<ul>
<li>Clarifies what you&#8217;re creating</li>
<li>Clarifies your objectives</li>
<li>Prevents your mission from off-tracking</li>
<li>Insulates you from the whims of others</li>
</ul>
<p><strong>Every mission statement should include</strong></p>
<ul>
<li>Who the site is for</li>
<li>What the site does</li>
<li>How the site differs from its competitors</li>
</ul>
<p>You need not spend a lot of time on this but mission statement must capture the essence of your site&#8217;s purpose and they must be meaningful too.</p>


<p>Related posts:<ol><li><a href='http://www.tweakast.com/2007/05/30/defining-your-sites-features-in-4-simple-steps/' rel='bookmark' title='Permanent Link: Defining your site&#8217;s features in 4 simple steps'>Defining your site&#8217;s features in 4 simple steps</a></li><li><a href='http://www.tweakast.com/2007/05/26/how-to-defin-your-goals/' rel='bookmark' title='Permanent Link: How to define your goals'>How to define your goals</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2007/05/25/writing-mission-statement-for-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 things the web can do for you</title>
		<link>http://www.tweakast.com/2007/05/25/things-the-web-can-do-for-you/</link>
		<comments>http://www.tweakast.com/2007/05/25/things-the-web-can-do-for-you/#comments</comments>
		<pubDate>Fri, 25 May 2007 15:21:50 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.tweakast.com/2007/05/25/things-the-web-can-do-for-you/</guid>
		<description><![CDATA[Moving on from Web 1.0 to Web 2.0, many technologies have evolved rapidly. It&#8217;s not no longer just giving information. It&#8217;s all about sharing and interacting with people but you should understand the benefits on what the web can generally do for you.
1. Reach new customers &#38; markets
With all the latest technologies (Youtube, Google, Myspace [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Moving on from Web 1.0 to Web 2.0, many technologies have evolved rapidly. It&#8217;s not no longer just giving information. It&#8217;s all about sharing and interacting with people but you should understand the benefits on what the web can generally do for you.</p>
<p><span style="font-weight: bold">1. Reach new customers &amp; markets</span><br />
With all the latest technologies (Youtube, Google, Myspace and etc), they can help you find (and keep) new customers, regardless of location or lifestyle.</p>
<p><span style="font-weight: bold">2. Convert people with passing interest into customers</span><br />
After seeing your ad, hearing your name or passing your store, new customers can visit your site and learn more.</p>
<p><span style="font-weight: bold">3. Encourage repeat business</span><br />
Using email, newsletter and your website, you can keep existing customers, readers or fans informed about the latest news.</p>
<p><span style="font-weight: bold">4. Reduce bad leads</span><br />
By Clarifying who you are, what you do and what you don&#8217;t do too!</p>
<p><span style="font-weight: bold">5. Follow up on ads &amp; press coverage</span><br />
When you appear in any ad or magazine, the web lets reader learn more.</p>
<p><span style="font-weight: bold">6. Save money on offline marketing</span><br />
It helps to save money by replacing flyers and mails with website and email.</p>
<p><span style="font-weight: bold">7. Provide better, faster customer support</span><br />
Some websites offer live support while others provide information such as company background, location and hour, and product specifications.</p>
<p><span style="font-weight: bold">8. Save money on phone support</span><br />
A penny saved is a penny earned. Moreover, you will have more time to focus on other areas.</p>
<p><span style="font-weight: bold">9. Gauge customer interest</span><br />
By looking at what your visitors&#8217; surfing habit, you can get a rough sense what they are looking for. This is extremely useful when it comes to planning events, ordering new inventory, or predicting sales</p>
<p><span style="font-weight: bold">10. Stimulate creativity!</span><br />
Let your creative mind run wild! That&#8217;s how Digg, Wikipedia, MySpace were born.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tweakast.com/2007/05/25/things-the-web-can-do-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
