<?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>HTML-Website</title>
	<atom:link href="http://html-website.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://html-website.com</link>
	<description>Web Talk, Coding Tips, and Random Jabber!</description>
	<lastBuildDate>Mon, 16 Nov 2009 00:25:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AJAX in PHP for fresh $_GET&#8217;s</title>
		<link>http://html-website.com/ajax-in-php-for-fresh-_gets/</link>
		<comments>http://html-website.com/ajax-in-php-for-fresh-_gets/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 06:57:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=214</guid>
		<description><![CDATA[


If you are having trouble showing fresh content from PHP/MySQL in AJAX, try this out!
First, you must obviously include JQuery lib.
Then, using Jquery set an AJAX load in your View or Template:
&#60;script type="text/javascript"&#62;
(document).ready(function() {

     $("#element").load("stuff.php?idea");

});
&#60;/script&#62;

&#60;div id="element"&#62;&#60;/div&#62;
Then get the php file you are loading, in this case its stuff.php, and create a [...]]]></description>
			<content:encoded><![CDATA[<p>If you are having trouble showing fresh content from PHP/MySQL in AJAX, try this out!<br />
First, you must obviously include JQuery lib.<br />
Then, using Jquery set an AJAX load in your View or Template:</p>
<pre>&lt;script type="text/javascript"&gt;
<span>(document).ready(function(</span>) {
<span>
     $("#element").load("stuff.</span>php?idea");

});
&lt;/script&gt;

&lt;div id="element"&gt;&lt;/div&gt;</pre>
<p>Then get the php file you are loading, in this case its stuff.php, and create a get request for the value passed in the URL, which is 'idea'.</p>
<pre>if (isset($_GET['idea']))
{
  echo 'Ajax is working';
  //
  // All your functions in here
  //
  exit; // Make sure to exit so nothing else processes.
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/ajax-in-php-for-fresh-_gets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Validation: Problem Solving, 90% of the Work</title>
		<link>http://html-website.com/validation-problem-solving-90-of-the-work/</link>
		<comments>http://html-website.com/validation-problem-solving-90-of-the-work/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 12:03:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=212</guid>
		<description><![CDATA[When you program you'll quickly learn how fun it is, but the biggest lesson anyone will learn is the importance of validation. A good programmer is someone that foresees events that could possibly take place and cause an issue -- that doesn't mean they'll find every issue, but many. You have to play with what [...]]]></description>
			<content:encoded><![CDATA[<p>When you program you'll quickly learn how fun it is, but the biggest lesson anyone will learn is the importance of validation. A good programmer is someone that foresees events that could possibly take place and cause an issue -- that doesn't mean they'll find <strong>every</strong> issue, but many. You have to play with what you create to invent possibilities of bugs seeping out so they won't happen.</p>
<p>Alternatively, there are design patterns that give you a nice clue how to handle this, but that's a little more advanced for someone less than 4 years in I think. There are also options of using application frameworks that will make this easier (like Symfony, CodeIgniter, and other MVC frameworks). At this juncture I prefer doing it by my own objects and functions rather than learning how a separate framework functions, though they are all fairly similar.</p>
<p>90% of Work in programming is validation in my opinion. It's easy to write procedural code, difficult to thoughtfully break it down into Object Oriented code, either way there must be validation. For example an unvalidated field that processes a query could be bad news if your MySQL strings don't escape correctly and someone intentionally or unintentionally breaks the database query and destroys a table, possibly the entire database. Safe queries wherever data is stored is one of the most important things, also checking for digits, regular expressions, and such are required in order to get an application run reliably and track issues fast. Even one field that processes a query incorrectly can disable an entire application, and running a complete system update is more work than having it taken care of in the first place.</p>
<p>I made a simple relational table to assign users to projects with an ID, project_id, and user_id.<br />
Instead of breaking content into an array from one row like I previously had using an explode by ',', I went with new inserts per user/project assignment -- and must avoid duplicates since it's an insert.</p>
<p>Problems always arise with dirty strings, invalid strings, and duplicate content. I had to remove any potential to a duplicate so I figured these steps:</p>
<p>1. The creation only happens one time, so this can only apply to editing.</p>
<p>2. This will apply to the Edit section, so I have to pass a hidden variable to store the project ID, so I can chain it to <em>this</em> project ID. (Note: Not the same as project_id).</p>
<p>3. Since mysql_insert_id() would not work because this is an UPDATE not an INSERT I had to use the hidden variable I posted to find a relationship between the current project and the existing relational table. There is also no mysql_update_id() feature, which I wish there was!</p>
<pre>// Process more users
if (isset($_POST['assign_users']))
{
	foreach ($_POST['assign_users'] as $add_user)
	{
	// First Check for Duplicate Assignments
	$check_duplicates = mysql_query("
		SELECT * FROM project_users
		WHERE `project_id`='$selectedProject'
		AND `user_id`='$add_user'");

	// Count Total Matches
	$count = mysql_num_rows($check_duplicates);

		// If No Duplicates, Proceed.
		if ($count == 0)
		{

			$add_user = clean($add_user);

			mysql_query("INSERT INTO project_users SET
				`project_id`='$selectedProject',
				`user_id`='$add_user'");
		}
	}
}</pre>
<p>As you can see before the final query which loops (the one most tabbed over), a lot of validation goes into it. This is very minor considering the outside functions. It's easy to write a block of code, but if it's not protected correctly there is nothing good about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/validation-problem-solving-90-of-the-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>General Programming 101</title>
		<link>http://html-website.com/general-programming-101/</link>
		<comments>http://html-website.com/general-programming-101/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 12:00:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=210</guid>
		<description><![CDATA[Programming is all logical and wrapped within a syntax. A syntax is like a structure, or requirement of rules to follow in the way it's written.
Kind of like driving down the road and staying in your lane, and using your blinker. Don't break those rules or something bad and unexpected might happen.
Here are two conditional [...]]]></description>
			<content:encoded><![CDATA[<p>Programming is all logical and wrapped within a syntax. A syntax is like a structure, or requirement of rules to follow in the way it's written.</p>
<p>Kind of like driving down the road and staying in your lane, and using your blinker. Don't break those rules or something bad and unexpected might happen.</p>
<p><strong>Here are two conditional statements that you can assume what they do easily:</strong><br />
if ()<br />
else ()</p>
<p><strong>You also have operators, which compare and do things much like in math:</strong><br />
=<br />
*<br />
!</p>
<p><strong>The key to all programming is called looping, or loops. Loops repeat themselves:</strong><br />
foreach ()<br />
for ()<br />
while ()</p>
<p><strong>You also assign variables, these are usually different in most languages so here are two different:</strong><br />
var jesse<br />
$jesse</p>
<p>If you want to create a simple program here is how you could do one.</p>
<p><strong>1. Assign variables. (The semi-colin at the end means it's the end of that piece)</strong></p>
<pre>$jesse = 24;
$joe = 25;</pre>
<p><strong>2. Create a condition using and operator</strong></p>
<pre>if ($jesse &gt; $joe)
{
  echo 'Jesse is older than Joe';
}</pre>
<p><strong>3. Create and alternative condition, if that ones is false</strong></p>
<pre>else
{
  echo 'Joe is older than Jesse';
}</pre>
<p><strong>4. Create an array for fun</strong></p>
<pre>$names = array('Joe', 'Jesse', 'Jenny', 'Justine');</pre>
<p><strong>5. Create a loop to print the array</strong></p>
<pre>foreach ($names as $name)
{
  echo $name . '
';
}</pre>
<p><strong>6. Cool, here is all the code. It looks easier when you know what you're dealing with!</strong></p>
<pre>$jesse = 24;
$joe = 25;

if ($jesse &gt; $joe)
{
  echo 'Jesse is older than Joe';
}
else
{
  echo 'Joe is older than Jesse';
}

$names = array('Joe', 'Jesse', 'Jenny', 'Justine');

foreach ($names as $name)
{
  echo $name . '
';
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/general-programming-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Project Management &amp; PHP Groupware</title>
		<link>http://html-website.com/php-project-management-for-freelancers/</link>
		<comments>http://html-website.com/php-project-management-for-freelancers/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 13:56:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[groupware]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[project management]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=200</guid>
		<description><![CDATA[There is a new project in town called freelancerKit.
I've tinkered with the demo and seems practical and easy to use. There have been a lot of Project Management programs put together, recently the ever popular BaseCamp HQ and Active Collab.
I suppose the difference with this one is the simplicity, and affordable one time price. It's [...]]]></description>
			<content:encoded><![CDATA[<p>There is a new project in town called <a href="http://www.freelancerkit.com" target="_blank"><strong>freelancerKit</strong></a>.</p>
<p>I've tinkered with the demo and seems practical and easy to use. There have been a lot of Project Management programs put together, recently the ever popular BaseCamp HQ and Active Collab.</p>
<p>I suppose the difference with this one is the simplicity, and affordable one time price. It's targeted more at freelancers but seems to work with a company as it offers Employee user permissions as well.</p>
<p>The short description of freelancerKit is that it is a <strong>PHP Project Management</strong>, PHP Groupware, PHP Collaboration, Note taking and File Management.</p>
<p><img class="aligncenter" title="freelancerKit" src="http://www.freelancerkit.com/public/images/slide-2.jpg" alt="" width="700" height="300" /></p>
<p><strong>Check it out <a href="http://www.freelancerkit.com/">here</a>.<br />
And the demo <a href="http://www.freelancerkit.com/demo">here</a>.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/php-project-management-for-freelancers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best YoVille Help</title>
		<link>http://html-website.com/best-yoville-help/</link>
		<comments>http://html-website.com/best-yoville-help/#comments</comments>
		<pubDate>Sat, 16 May 2009 09:52:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=197</guid>
		<description><![CDATA[This is the best yoville help you will ever get!
#1. Quit the Game
#2. Never Play it again
#3. Never Speak about it again.
Otherwise you may as well  live in a pit and never come out. Society needs people, stop hiding!
Also, please stop text messaging, its killing society  
]]></description>
			<content:encoded><![CDATA[<p>This is the <strong>best yoville help</strong> you will ever get!</p>
<p>#1. Quit the Game<br />
#2. Never Play it again<br />
#3. Never Speak about it again.</p>
<p>Otherwise you may as well  live in a pit and never come out. Society needs people, stop hiding!</p>
<p>Also, please stop text messaging, its killing society <img src='http://html-website.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/best-yoville-help/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Arcade Script</title>
		<link>http://html-website.com/arcade-script/</link>
		<comments>http://html-website.com/arcade-script/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 22:05:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=194</guid>
		<description><![CDATA[Arcade Script Check it out, Stand Alone Arcade!



Arcade Script

]]></description>
			<content:encoded><![CDATA[<p><strong>Arcade Script</strong> Check it out, Stand Alone Arcade!</p>
<div style="text-align: center;">
<a href="http://www.standalonearcade.com" title="SAA Arcade" target="_blank"><br />
<img src="http://www.standalonearcade.com/images/banner.jpg" title="Arcade Script"></a><br><br />
<a href="http://www.standalonearcade.com" title="Arcade Script"><strong>Arcade Script</strong></a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/arcade-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Cult Following</title>
		<link>http://html-website.com/apple-cult-following/</link>
		<comments>http://html-website.com/apple-cult-following/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 21:23:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=192</guid>
		<description><![CDATA[It's strange everyother Apple user calls themself a  'Web Developers', yet I can't seem to find a shred of evidence from them of any type of portfolio or piece of work. We sure have a lot of Apple Web Developers who have never worked a day in their life at their expert profession! Hey, If [...]]]></description>
			<content:encoded><![CDATA[<p>It's strange everyother Apple user calls themself a  'Web Developers', yet I can't seem to find a shred of evidence from them of any type of portfolio or piece of work. We sure have a lot of Apple Web Developers who have never worked a day in their life at their expert profession! Hey, If I'm extremely lucky I'll see something this Apple aristocrat made in Adobe Photoshop 5 years ago, of course that's when they were a newbie! They must have a lot of experience now after purchasing that Mac! When someone buys a Mac they seem to transform into an All-Knowing-Twittering-Digging-Facebooking-Myspacing Hipster. There must be some magic behind that shiny Apple.</p>
<p>There are only a few steps to follow if you want to become Apple Sheep. Always start with getting a loan for a Mac, it doesn't matter which kind, since there are so many selections.. Put on some ripped jeans and a scarf in warm weather, Turn your music up loud and head to starbucks. Act like you know the worlds secrets behind that little smirk from now owning an Apple. Order your special drink and humbly sit in the corner with a book you won't read, but bring it along just to talk about if someone approaches you, then you'll look twice as intelligent. Let out a sigh, being unemplyed is hard, so instead of looking for work sign on to facebook and MySpace to begin posting comments to all your friends for the next 2 hours complaining about the economy. After you are bored of that why not Google the latest web trends and create some new accounts with popular Web 2.0 Social Networking Sites and find people to do the same as you post about your drink at Starbucks. Repeat Daily! Congratulations, you are an Apple Sheep!</p>
<p>If you get really into it, spread the news about Recycling and Green Environment on your new Electric Car -- And don't forget the big Apple sticker in the middle of your window!</p>
<p>Mmake sure to take a lot of pictures of yourself and put them on Flickr, take a few hundred and do a few Photoshop effects, make it really fancy! What an expression! How about a few shots of that shiny new Apple laying around your room? Don't forget to make strange faces for the camera! Even though you never make them in public, it's okay when you are alone in your room with your Apple - Everyone loves that!</p>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/apple-cult-following/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10+ Cool Windows Apps</title>
		<link>http://html-website.com/10-cool-windows-apps/</link>
		<comments>http://html-website.com/10-cool-windows-apps/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 08:45:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web News]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=186</guid>
		<description><![CDATA[Here are 10+ Cool Windows Apps fresh from the bakery that you must check out! Even better, they are 100% Free!
1. Stardock Fences - Have a cluttered desktop? This beautiful piece of software lets you create little fences, or boxes around designated areas and name and customize them. You have to see the video and [...]]]></description>
			<content:encoded><![CDATA[<p>Here are <strong>10+ Cool Windows Apps</strong> fresh from the bakery that you must check out! Even better, they are 100% Free!</p>
<p>1.<a href="http://www.stardock.com/products/fences/index.asp" target="_blank"> Stardock Fences</a> - Have a cluttered desktop? This beautiful piece of software lets you create little fences, or boxes around designated areas and name and customize them. You have to see the video and try it to appreciate it - it's much better than the name sounds!</p>
<p>2.<a href="http://www.freewebs.com/nerdcave/taskbarshuffle.htm" target="_blank"> Taskbar Shuffle</a> - Don't underestimate these little add-ons, this is a big convenience when you like your task bar items arranged a certain way. Just drag and drop and move them!</p>
<p>3. <a href="http://www.pidgin.im/" target="_blank">Pidgin</a> - This is the best instant messenger I've used. It supports Yahoo, MSN, AIM, Google Talk, and a few others.</p>
<p>4. <a href="http://www.rssowl.org/download" target="_blank">RSS Owl</a> - Simplify your RSS already!</p>
<p>5. <a href="http://www.videolan.org/vlc/" target="_blank">VLC Media Player</a> - The best media player for windows that plays every movie file rather than needing Windows Media Player, Realplayer, and Quicktime. All in One baby!</p>
<p>6. <a href="http://www.abisource.com/" target="_blank">AbiWord</a> - If you don't want to spend $90,000 on Microsoft Word just use this it's even better because the paper clip guy won't nag you!</p>
<p>7. <a href="http://filezilla-project.org/" target="_blank">Filezilla</a> - Free FTP Client that does everything the expensive ones do.</p>
<p>8.<a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank"> Notepad++</a> - This is (IMO) the best text editor with Syntax Highlighting, Macro's, and about 25,000 other features. I've used a lot of them but I always come back to Notepad++.</p>
<p>9. <a href="http://www.dvdflick.net/" target="_blank">DVD Flick</a> - If you've never been able to burn DVD's now you can for free, this software will convert it too.</p>
<p>10. <a href="http://www.getpaint.net/" target="_blank">Paint.NET</a> - Quite similar to photoshop but not as large Paint.NET is the best free replacement and the next best thing compared to Adobe Photoshop</p>
<p>11. <a href="http://www.launchy.net" target="_blank">Launchy</a> - With this application you could greatly reduce the need for a start menu by just typing in a few letters and it searches your hard drive for applications or files you frequent. It's getting popular lately.</p>
<p>12. <a href="http://www.ccleaner.com" target="_blank">CCleaner</a> - I've used CCleaner for 2 years now and it cleans up tons of garbage that is slowing your computer down.</p>
<p>13. <a href="http://www.pspad.com" target="_blank">PSPad</a> - Another great editor, I place it one step behind Notepad++ but it's up to you to decide.</p>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/10-cool-windows-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NEWS: YoVille Kills Pigs!</title>
		<link>http://html-website.com/news-yoville-kills-pigs/</link>
		<comments>http://html-website.com/news-yoville-kills-pigs/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 03:01:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Yoville]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=179</guid>
		<description><![CDATA[This just in; YoVille has claimed the life of a poor piggly wiggly  . The little guy was wondering around a back yard and the young man who was playing that evil YoVille game saw the pig and thought he had to eat it!

Since there is no food on YoVille and the toons never [...]]]></description>
			<content:encoded><![CDATA[<p>This just in; YoVille has claimed the life of a poor piggly wiggly <img src='http://html-website.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> . The little guy was wondering around a back yard and the young man who was playing that evil YoVille game saw the pig and thought he had to eat it!</p>
<p><img class="aligncenter size-medium wp-image-180" title="pig1" src="http://html-website.com/wp-content/uploads/2009/02/pig1-300x197.jpg" alt="pig1" width="300" height="197" /></p>
<p>Since there is no food on YoVille and the toons never eat, this young man believed he was his YoVille toon and had to eat something. He tried to buy food earlier at the store but they don't accept YoVille coins in real life, what was he thinking!?</p>
<p>Some people are getting their realities confused from this YoVille game! Anyways before you knew it, the pig became bacon and he emailed all the people on YoVille some bacon too <img src='http://html-website.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Its a sad day, I hope pigs will be protected more.</p>
<p><img class="aligncenter size-medium wp-image-181" title="crispy_bacon_1" src="http://html-website.com/wp-content/uploads/2009/02/crispy_bacon_1-300x225.jpg" alt="crispy_bacon_1" width="300" height="225" /></p>
<p>While the boy ate the bacon he just played tic tac toe earning 10 coins a game and didn't care about the piggly wiggly who had freedom. YoVille Kills again <img src='http://html-website.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/news-yoville-kills-pigs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YoVille Hack, Well Not Really</title>
		<link>http://html-website.com/yoville-hack-well-not-really/</link>
		<comments>http://html-website.com/yoville-hack-well-not-really/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 05:01:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Yoville]]></category>

		<guid isPermaLink="false">http://html-website.com/?p=175</guid>
		<description><![CDATA[If you want to automate some of your processes on YoVille you could get a macro application. If you are tired of clicking through everything you can record a mouse pattern and have it do it automatically while you go get a drink of coca-cola to fill your big tummy to play the game. LOL.
You [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to automate some of your processes on YoVille you could get a <a href="http://www.autohotkey.com/download/">macro application</a>. If you are tired of clicking through everything you can record a mouse pattern and have it do it automatically while you go get a drink of coca-cola to fill your big tummy to play the game. LOL.</p>
<p>You can also record tic tac toe and go watch tv while it automaticcaly plays the game to earn 10 going a game -- You will need two computers to do the macro.</p>
<p>Make sure you give your Mouse Timer a little extra time for any possible delays of the YoVille screen taking longer to load.</p>
<p>Enjoy <img src='http://html-website.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://html-website.com/yoville-hack-well-not-really/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
