<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Traversing the Phantasmagoria</title>
	<atom:link href="http://condons.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://condons.wordpress.com</link>
	<description>Explore the odd, depressing, enlightning, joyous parts of humanity.</description>
	<lastBuildDate>Thu, 12 Nov 2009 00:02:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='condons.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Traversing the Phantasmagoria</title>
		<link>http://condons.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://condons.wordpress.com/osd.xml" title="Traversing the Phantasmagoria" />
	<atom:link rel='hub' href='http://condons.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Making A More Secure Login</title>
		<link>http://condons.wordpress.com/2008/10/01/making-a-more-secure-login/</link>
		<comments>http://condons.wordpress.com/2008/10/01/making-a-more-secure-login/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 19:48:43 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Making login Safe]]></category>
		<category><![CDATA[Malicious]]></category>
		<category><![CDATA[Malicious Attacks]]></category>
		<category><![CDATA[PHP Functions]]></category>
		<category><![CDATA[PHP Login]]></category>
		<category><![CDATA[Simple PHP Login]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/?p=109</guid>
		<description><![CDATA[This article is a continuation of my previous article Writing A Simple Login. I came to the realization that our login that we created earlier was not at all secure, so I decided it was time that we tackle the most basic security measures. So starting off where our last example left off, we&#8217;ve had [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=109&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This article is a continuation of my previous article <a href="http://condons.wordpress.com/2008/09/26/writting-a-simple-login/" target="_blank">Writing A Simple Login</a>. I came to the realization that our login that we created earlier was not at all secure, so I decided it was time that we tackle the most basic security measures.</p>
<p>So starting off where our last example left off, we&#8217;ve had the users enter their username and password and passed it on to our processlogin.php file. After we&#8217;ve declared the database connections we&#8217;ll want to make a simple function that will check the variables passed through via the post. The function will look something like this.</p>
<p><code>function make_safe($variable) {</code> <code><br />
$variable = mysql_real_escape_string(trim($variable));</code> <code><br />
return $variable;</code> <code><br />
}</code></p>
<p>What this function ensures us is that anything malicious the user will try to pass through to our processing page will simply be parsed up and run through the database like normal, thus preventing the user from entering anything malicious into our input fields.</p>
<p>In order to use this function we should call it like so.</p>
<p><code>$username = make_safe($_POST['username']);</code><code><br />
$password = make_safe($_POST['password']);</code></p>
<p>Thus protecting us from a malicious attack. Hopefully this has helped you out in making your login page more secure with some simple php.</p>
<ol class="codeblock"></ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=109&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/10/01/making-a-more-secure-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>
	</item>
		<item>
		<title>Writting A Simple Login</title>
		<link>http://condons.wordpress.com/2008/09/26/writting-a-simple-login/</link>
		<comments>http://condons.wordpress.com/2008/09/26/writting-a-simple-login/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 23:57:24 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Login]]></category>
		<category><![CDATA[Login Form]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[MYSQL DATABASE]]></category>
		<category><![CDATA[PHP Code]]></category>
		<category><![CDATA[PHP Functions]]></category>
		<category><![CDATA[PHP Login]]></category>
		<category><![CDATA[PHP5]]></category>
		<category><![CDATA[Simple PHP Login]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/?p=102</guid>
		<description><![CDATA[One of the things that I marvel at is how many first time php users clamor for a login function on their pages. What are they going to do once they get users? How are they going to keep them interested in their sites? Well regardless if you&#8217;re interested in developing a login function for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=102&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the things that I marvel at is how many first time php users clamor for a login function on their pages. What are they going to do once they get users? How are they going to keep them interested in their sites? Well regardless if you&#8217;re interested in developing a login function for your site, I can certainly help out with that.<br />
So the first thing we&#8217;re going to want to do is create a form. You can put this form on your website or on a separate login page. This is what the html will look like.<br />
<code><br />
&lt;form name="form1" method="post" action="processlogin.php"&gt;<br />
&lt;label&gt;<br />
Username:<br />
&lt;input type="text" name="username" id="username"&gt;<br />
&lt;/label&gt;<br />
&lt;label&gt;<br />
Password<br />
&lt;input type="text" name="password" id="password"&gt;<br />
&lt;/label&gt;<br />
&lt;label&gt;<br />
&lt;input type="submit" name="submit" id="submit" value="Submit"&gt;<br />
&lt;/label&gt;<br />
&lt;/form&gt;</code></p>
<p>So in order for the form to do anything we need to make a php page called processlogin.php. We also need to have a database already set up with a user in it, I&#8217;m going to leave that up to you for now.</p>
<p>As always we want to open up a php page:</p>
<p><code>&lt;?</code></p>
<p>Next we need to define our database:</p>
<p><code>mysql_connect("localhost", "root", "password") or die(mysql_error());<br />
mysql_select_db("mydb") or die(mysql_error());</code></p>
<p>Now we can start working. We&#8217;re going to check and see if the  user put in any information into username, if so we&#8217;ll take the information they gave us in the form and assign in to variables.</p>
<p><code>if($_POST['username'] != NULL){</code></p>
<p>$username = $_POST['username'];<br />
$password = $_POST['password'];</p>
<p>Now we&#8217;re going to run a query checking the database for an entry that matches our username and password.</p>
<p><code>$result = mysql_query("SELECT * FROM users WHERE username = '".$username."' AND password = '".$password."'");</code></p>
<p>Next we check to see if anything is returned, if there isn&#8217;t we display an error.</p>
<p><code>if($row['username'] == NULL){<br />
echo "Your Username or Password is Incorrect!";<br />
}else{<br />
$_SESSION['name'] = $username;<br />
header('location:/index.php');<br />
}</code></p>
<p>We are now left with our final else statement that will only display if the user hasn&#8217;t entered anything into the form. This of course is a normal safety measure that would be done using javascript, but in this case we&#8217;ll add it in for our basic login.</p>
<p><code>}else{<br />
echo "You must fillout the login form.";<br />
}</code></p>
<p>And now we close the php document.</p>
<p><code>?&gt;</code></p>
<p>And that is all there is to it. As I said this login is very flawed, there should be a lot of checking going on before the form is submitted, usually done with javascript, we also should be parsing out the user entered values to ensure that we won&#8217;t be victim to an SQL Injection,  but alas this is but a simple login form. So now that you have that under your belt you can continue working on your social networking site.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=102&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/09/26/writting-a-simple-login/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Use PHP Functions To Execute Your MYSQL Queries.</title>
		<link>http://condons.wordpress.com/2008/09/24/how-to-use-php-functions-to-execute-your-mysql-queries/</link>
		<comments>http://condons.wordpress.com/2008/09/24/how-to-use-php-functions-to-execute-your-mysql-queries/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 22:32:43 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Mysql Queries]]></category>
		<category><![CDATA[PHP 5]]></category>
		<category><![CDATA[PHP Code]]></category>
		<category><![CDATA[PHP Functions]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/?p=95</guid>
		<description><![CDATA[Welcome to my first PHP tutorial. In this one I&#8217;ll be going over an easy way to streamline your PHP code. The set of PHP functions I&#8217;m going to show you is really useful to keep your PHP code clean. In my day to programming I tend to write a TON of Mysql queries for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=95&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to my first PHP tutorial. In this one I&#8217;ll be going over an easy way to streamline your PHP code. The set of PHP functions I&#8217;m going to show you is really  useful to keep your PHP code clean. In my day to programming I tend to write a TON of Mysql queries for my PHP. Well this tutorial strives to give you an easy way to execute a series of Mysql commands without having a ton of $sql variables.</p>
<p>So starting things out we have our opening PHP command.<br />
<code><br />
&lt;?php<br />
</code></p>
<p>We then establish our connection to our database, this is only useful if you&#8217;re going to be connected to one database for the run of this page.</p>
<p><code><br />
mysql_connect("localhost", "root", "") or die(mysql_error());<br />
mysql_select_db("trial") or die(mysql_error());<br />
</code></p>
<p>Then we&#8217;re going to write our first PHP function, this is just a simple Mysql query.<br />
<code><br />
function simple($table) {<br />
$sql = "SELECT * FROM ".$table;<br />
$result = mysql_query($sql);<br />
return $result;<br />
}<br />
</code><br />
We&#8217;ll be taking in a variable called table, which identifies which table we should look into. Then we make an $sql variable to take the Mysql command, run the Mysql query, and then return the results of the query via the return function built into PHP.</p>
<p>Now if we just want to be running simple queries all day we can use this. In order to use it we need to write some more PHP.<br />
First we should make a variable with the Mysql table name in it.<br />
<code><br />
$table = 'userdata';<br />
</code><br />
Then run the function. We&#8217;re setting $result to catch what ever the function sends back out with the return.<br />
<code><br />
$result = simple($table);<br />
</code><br />
Then we create an array with the Mysql data.<br />
<code><br />
$row = mysql_fetch_array($result);<br />
</code><br />
And use the data with our PHP code. In this case we&#8217;re simpling echoing user&#8217;s names.</p>
<p><code><br />
echo $row['username'];<br />
</code><br />
Now then, at the beginning of the page we can assign a few other PHP functions. These are 2 PHP functions that I use and thought you might find helpful</p>
<p>This first function will look at what ever Mysql table you give it and will randomize the results.<br />
<code><br />
function random($table) {<br />
$sql = "SELECT * FROM ".$table." ORDER BY RAND( )";<br />
$result = mysql_query($sql);<br />
return $result;<br />
}<br />
</code><br />
This function is taking in 2 terms, and demonstrates how you can look for a specific row within a Mysql table.<br />
<code><br />
function double($table, $term) {<br />
$sql = "SELECT ".$term." FROM ".$table;<br />
$result = mysql_query($sql);<br />
return $result;<br />
}<br />
</code><br />
And here&#8217;s the entire PHP page.<br />
<code><br />
&lt;?php<br />
mysql_connect("localhost", "root", "") or die(mysql_error());<br />
mysql_select_db("trial") or die(mysql_error());</p>
<p>function simple($table) {<br />
$sql = "SELECT * FROM ".$table;<br />
$result = mysql_query($sql);<br />
return $result;<br />
}</p>
<p>function random($table) {<br />
$sql = "SELECT * FROM ".$table." ORDER BY RAND( )";<br />
$result = mysql_query($sql);<br />
return $result;<br />
}</p>
<p>function double($table, $term) {<br />
$sql = "SELECT ".$term." FROM ".$table;<br />
$result = mysql_query($sql);<br />
return $result;<br />
}</p>
<p>$table = 'userdata';<br />
$result = simple($table);<br />
$row = mysql_fetch_array($result);<br />
echo $row['username'];<br />
?&gt;<br />
</code><br />
Hopefully this has proven useful for you, if you have any questions be sure to leave them in the comments!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=95&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/09/24/how-to-use-php-functions-to-execute-your-mysql-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Eye Candy: Desktop Effects</title>
		<link>http://condons.wordpress.com/2008/08/23/ubuntu-eye-candy-desktop-effects/</link>
		<comments>http://condons.wordpress.com/2008/08/23/ubuntu-eye-candy-desktop-effects/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 23:52:36 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Desktop Effects]]></category>
		<category><![CDATA[Expose on Ubuntu]]></category>
		<category><![CDATA[How To Add Visual Effects To Ubuntu]]></category>
		<category><![CDATA[Mac OSX Effects]]></category>
		<category><![CDATA[Ubuntu Cube]]></category>
		<category><![CDATA[Ubuntu Desk Top Effects]]></category>
		<category><![CDATA[Ubuntu Eye Canday]]></category>
		<category><![CDATA[Ubuntu Eye Candy: Desktop Effects]]></category>
		<category><![CDATA[Ubuntu Visual Effects]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/?p=81</guid>
		<description><![CDATA[So this is a tutorial about how to install some nifty desktop effects in ubuntu. Now under Preferences on the Menu there&#8217;s a tab for Advanced Desktop Effects Settings. In order to get this you need to install Compiz Manager. So open up a terminal window, and enter the following: sudo apt-get install compizconfig-settings-manager Once [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=81&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So this is a tutorial about how to install some nifty desktop effects in ubuntu. Now under Preferences on the Menu there&#8217;s a tab for Advanced Desktop Effects Settings. In order to get this you need to install Compiz Manager. So open up a terminal window, and enter the following:</p>
<pre>sudo apt-get install compizconfig-settings-manager</pre>
<p>Once that&#8217;s been installed you can access the CompizConfig Settings Manager. You can go through and check off a bunch of different ones to give you some nifty eye candy.</p>
<div id="attachment_82" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-82" src="http://condons.files.wordpress.com/2008/08/compiz_setting_1.jpg?w=300&#038;h=200" alt="Ubuntu Settings" width="300" height="200" /><p class="wp-caption-text">Ubuntu Settings</p></div>
<p>When you go into one of the settings there will be a plethora of tabs for you to tweek the effects to the millimeter of how you want them to behave.</p>
<div id="attachment_83" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-83" src="http://condons.files.wordpress.com/2008/08/compiz_setting_2.jpg?w=300&#038;h=198" alt="Effects Settings" width="300" height="198" /><p class="wp-caption-text">Effects Settings</p></div>
<p>CompizConfig Settings are an easy and quick way to install the Desktop Cube, Desktop wall, and the Expo which is identical to the Expo in Mac OS X.</p>
<div id="attachment_84" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-84" src="http://condons.files.wordpress.com/2008/08/compiz_setting_3.jpg?w=300&#038;h=173" alt="Expo" width="300" height="173" /><p class="wp-caption-text">Expo</p></div>
<p>There are also a plethora of effects for you to install.</p>
<div id="attachment_85" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-85" src="http://condons.files.wordpress.com/2008/08/compiz_setting_4.jpg?w=300&#038;h=166" alt="Visual Effects" width="300" height="166" /><p class="wp-caption-text">Visual Effects</p></div>
<p>Hopefully this post is fairly helpful, it&#8217;s more indepth than most of the videos that I throw up on here, and I hope that everyone enjoys it.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/condons.wordpress.com/81/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/condons.wordpress.com/81/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=81&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/08/23/ubuntu-eye-candy-desktop-effects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>

		<media:content url="http://condons.files.wordpress.com/2008/08/compiz_setting_1.jpg?w=300" medium="image">
			<media:title type="html">Ubuntu Settings</media:title>
		</media:content>

		<media:content url="http://condons.files.wordpress.com/2008/08/compiz_setting_2.jpg?w=300" medium="image">
			<media:title type="html">Effects Settings</media:title>
		</media:content>

		<media:content url="http://condons.files.wordpress.com/2008/08/compiz_setting_3.jpg?w=300" medium="image">
			<media:title type="html">Expo</media:title>
		</media:content>

		<media:content url="http://condons.files.wordpress.com/2008/08/compiz_setting_4.jpg?w=300" medium="image">
			<media:title type="html">Visual Effects</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Cube On Mac OS X</title>
		<link>http://condons.wordpress.com/2008/08/18/ubuntu-cube-on-mac-os-x/</link>
		<comments>http://condons.wordpress.com/2008/08/18/ubuntu-cube-on-mac-os-x/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 22:40:14 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[How To Install Cube on Mac OS X]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Visual Effects]]></category>
		<category><![CDATA[Mac OS X Visual Efffects]]></category>
		<category><![CDATA[Ubuntu Visual Effects]]></category>
		<category><![CDATA[Visual Effects]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/?p=74</guid>
		<description><![CDATA[Lately it seems like a ton of my OS X running friends have been content with the new spaces visual effect that Leopard supplies. This is until I show them what a properly set up Ubuntu machine (and most other linux distros) can really do. Now I know that this isn&#8217;t a complete fix and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=74&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lately it seems like a ton of my OS X running friends have been content with the new spaces visual effect that Leopard supplies. This is until I show them what a properly set up Ubuntu machine (and most other linux distros) can really do. Now I know that this isn&#8217;t a complete fix and it certainly isn&#8217;t as extensible as the visual effects that you can have installed on your linux box, but this is a quick fix for you OS X machine. The Service is called VirtueDesktops. <a href="http://virtuedesktops.info/downloads/" target="_blank">Virtue Desktops</a> is a free service that installs more visual effects on your machine. As seen in this video one of them is something very similar to the linux cubes.</p>
<span class='embed-youtube' style='text-align:center; display:block;'><object width='418' height='266'><param name='movie' value='http://www.youtube.com/v/yF0BQJGMEY8?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' /> <param name='allowfullscreen' value='true' /> <param name='wmode' value='opaque' /> <embed src='http://www.youtube.com/v/yF0BQJGMEY8?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' type='application/x-shockwave-flash' allowfullscreen='true' width='418' height='266' wmode='opaque'></embed> </object></span>
<p>I&#8217;ll try to upload a better video when I get home.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/condons.wordpress.com/74/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/condons.wordpress.com/74/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=74&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/08/18/ubuntu-cube-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Install Ubuntu Cube</title>
		<link>http://condons.wordpress.com/2008/08/14/how-to-install-ubuntu-cube/</link>
		<comments>http://condons.wordpress.com/2008/08/14/how-to-install-ubuntu-cube/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 19:43:56 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[How To Add Visual Effects To Ubuntu]]></category>
		<category><![CDATA[Ubuntu Cube]]></category>
		<category><![CDATA[Ubuntu Visual Effects]]></category>
		<category><![CDATA[Visual Effects]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/?p=71</guid>
		<description><![CDATA[In the vein of ultimate things that Ubuntu can do I&#8217;ve decided to show you these 2 videos, the first is more Eye Candy showing off the ultimate power of Ubuntu, the second is a short video about how to get a cube desktop working on your own Ubuntu Machine.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=71&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span class='embed-youtube' style='text-align:center; display:block;'><object width='418' height='266'><param name='movie' value='http://www.youtube.com/v/S_574ZptaGI?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' /> <param name='allowfullscreen' value='true' /> <param name='wmode' value='opaque' /> <embed src='http://www.youtube.com/v/S_574ZptaGI?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' type='application/x-shockwave-flash' allowfullscreen='true' width='418' height='266' wmode='opaque'></embed> </object></span>
<p>In the vein of ultimate things that Ubuntu can do I&#8217;ve decided to show you these 2 videos, the first is  more Eye Candy showing off the ultimate power of Ubuntu, the second is a short video about how to get a cube desktop working on your own Ubuntu Machine.</p>
<span class='embed-youtube' style='text-align:center; display:block;'><object width='418' height='266'><param name='movie' value='http://www.youtube.com/v/YKEcz_OTTBk?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' /> <param name='allowfullscreen' value='true' /> <param name='wmode' value='opaque' /> <embed src='http://www.youtube.com/v/YKEcz_OTTBk?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' type='application/x-shockwave-flash' allowfullscreen='true' width='418' height='266' wmode='opaque'></embed> </object></span>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/condons.wordpress.com/71/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/condons.wordpress.com/71/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=71&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/08/14/how-to-install-ubuntu-cube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>
	</item>
		<item>
		<title>Aurora and the Future of Paleo Future</title>
		<link>http://condons.wordpress.com/2008/08/05/aurora-and-the-future-of-paleo-future/</link>
		<comments>http://condons.wordpress.com/2008/08/05/aurora-and-the-future-of-paleo-future/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 03:32:24 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[Paleo Future]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Aurora]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Tomrrow]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/?p=55</guid>
		<description><![CDATA[The video is very interesting showing us briefly a glimpse at what tomorrow may be bringing us in terms of technology of tomorrow. Of course the key phrase there is "may be bringing"<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=55&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I took a moment today during my night class to take a peak at Adaptive Path &amp; Mozilla&#8217;s video about their browser of the future called Aurora. The video is very interesting showing us briefly a glimpse at what tomorrow may be bringing us in terms of technology of tomorrow. Of course the key phrase there is &#8220;may be bringing&#8221;, now don&#8217;t get me wrong this video isn&#8217;t just fodder for an angry me in 10 years demanding the world that the video presented us, instead I&#8217;m an active acceptor of ideas of what the world will be in the future. The home of tomorrow at Disneyland is one of my favorite things as well as the blog <a title="Paleo Future" href="http://www.paleo-future.com" target="_blank">Paleo Future</a> is one of my favorite blogs to read. Anyways, this video seems to be something that we&#8217;ll be fondly looking at in the future. Case in point this example of <a title="Apple's Time Capsule" href="http://www.youtube.com/watch?v=MV5lzMclx7Y" target="_blank">Apple&#8217;s Time Capsule shot in 1997</a>, but that&#8217;s just one example, there&#8217;s a plethora of others out there floating around in the paleo future world, some that are multi staged productions much like the Aurora videos.</p>
<p>Taking a more critical look at the Aurora there are certain things that will not doubt age the video as time goes on. One thing is the small frame from a South Park episode that can be seen on the screen repeatedly, no doubt in 10 years people will still be watching South Park but I seem to think that will begin to show the videos age as time goes on. Another thing is the &#8220;mouse&#8221; that the character uses to navigate this extremely complex computer system, indeed it&#8217;s not a mouse at all or at least in our conventional terms, it really isn&#8217;t the subject of the video so they don&#8217;t give it much screen time but it both confuses and fascinates me. the idea of a more physical navigation through a terminal seems very interesting but the inclusion of a standard keyboard I&#8217;m confused as to why a more practical led style key board seen in Iron Man isn&#8217;t shown in the video. The third object which is probably the most unrealistic, at least looking at where technology is today and where it is going, is the small credit card style video player, this is most obviously a conceptualization of the next iphone/ipod or at least the next one down the line. What makes me skeptical is this idea of the Internet being at the palm of your hands at all times. This may be the only thing that I&#8217;m cynical about, case in point I&#8217;ve been living in San Francisco for a while now and we had been promised city wide wifi for a long time&#8230; Of course nothing ever happened. Google, who was in cohorts with Earth Link to set this up has managed to get rid of plastic bags, and give the homeless a voice mail  account but have failed to spear head a city wide wifi. Now in the future Wi Max may be readily available or a 3G network that is much broader than the current one, but at the rate we&#8217;re going we will have personal devices that are capable of doing things far greater than what our Internet will allow them to do.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/condons.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/condons.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=55&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/08/05/aurora-and-the-future-of-paleo-future/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>
	</item>
		<item>
		<title>Mark Condon&#8217;s Personal Rules For Webdesign</title>
		<link>http://condons.wordpress.com/2008/03/09/mark-condons-personal-rules-for-webdesign/</link>
		<comments>http://condons.wordpress.com/2008/03/09/mark-condons-personal-rules-for-webdesign/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 23:46:43 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[designing]]></category>
		<category><![CDATA[Personal Rules for Webdesign]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/?p=44</guid>
		<description><![CDATA[If you were to take a poll of all of the jobs possible to mankind, and I mean ALL of them, certain jobs are going to be up there on the difficulty scale, like being a trapeze artist, or one of those guys who rides the motorcycle in the ball at the circus, or one [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=44&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you were to take a poll of all of the jobs possible to mankind, and I mean ALL of them, certain jobs are going to be up there on the difficulty scale, like being a trapeze artist, or one of those guys who rides the motorcycle in the ball at the circus, or one of those people who assemble sky scrapers. Those are difficult jobs. Web designer isn&#8217;t really that difficult of a job. And yet for not being that difficult there certainly are a lot of ways to screw it up. Now I have to say right off the bat, my stuff isn&#8217;t that great. I&#8217;ve made a lot of these mistakes myself, but it&#8217;s only from making those mistakes that I learned. And trust me I&#8217;ve been doing this for a long time so there have been a lot of mistakes. I&#8217;ll limit this to 5 rules though.1) in your domain Content may or may not be king, but on the web style is god.<br />
So I usually don&#8217;t like to think about this, because most of the time I don&#8217;t think about my design until afterwards, which of course leads to some problems. Most people who will come across your site aren&#8217;t going to be web designers; instead they&#8217;re going to be the lay people that spend most of their time myspacing, buying things, and well getting lost on the internet&#8230; Or whatever people who wander the internet do. When they come across a website that looks like it was made in 1999, they&#8217;re going to shudder for a second or two and click somewhere else; at least having a semi interesting style to your website is going to keep traffic on your site longer than having plain black text on a white screen. Take a look at a couple myspace pages, if that&#8217;s what people think is a good design for their own &#8220;page&#8221;, then at least having a little bit of color that goes together, which a few rollovers is going to keep anyone’s attention. Then when you know that they&#8217;re going to stick around, keep them there with some gripping content. Let&#8217;s be honest about this, as interesting as the things you have on your website are, I&#8217;m probably not going to take the time to look at them if you&#8217;re site is using a neon green text on a black background.</p>
<p>2) Useless Social Network Clutter<br />
Alright, so I don&#8217;t want to be sending the wrong message, I like certain aspects of the web 2.0 craze, I like Digg, I like Flickr, I like Delicious and all the rest. What I don&#8217;t like is when everyone thinks that their articles are automatically Digg worthy because more than 5 people look at them, sure I will submit a blog page or two to something like Stumbleupon to drive a little bit of traffic my way, but it&#8217;s not ever post I make and I don&#8217;t ask my users to submit my pages to those type of services. Case in point, one of my favorite web comic websites has this on every blog post the person who runs the site makes.</p>
<p><a href="http://condons.files.wordpress.com/2008/03/useless.gif" title="useless"><span style="color:blue;text-decoration:none;"><!--[if gte vml 1]&gt;                                                  &lt;![endif]--><!--[if !vml]--><span><img src="http://condons.files.wordpress.com/2008/03/useless.gif?w=351&#038;h=254" alt="useless" border="0" height="254" width="351" /></span><!--[endif]--></span></a><br />
|I really can only hope that other people find these things as annoying as I do. It&#8217;s pointless, half of these services I&#8217;ve never heard of!</p>
<p>3) Building sites for 1024 or larger<br />
So I don&#8217;t see this that often but when I do it&#8217;s a little enraging. My macbook at home has a max resolution at something like 1024, or 1280 I can&#8217;t really remember off the top of my head. But when I find a website that exceeds these dimensions makes me a little angry, mainly because they don&#8217;t have the courtesy to be designing to me, they&#8217;re potential user. I always stay within the 800 x 600 dimensions if I think that anyone out there will be viewing my website with an older computer, even if there&#8217;s only a slight chance I generally do this, just so that they&#8217;re not being excluded because they have an older machine, or are running a specific type of smaller system, like the Asus Ee Pc or the OLPC.</p>
<p>4) Javascript, Ajax, Flash, oh my!<br />
So if you&#8217;ve ever seen my website, it usually incorporates some sort of technology that not everyone has access to. Some people who are running Internet Explorer can&#8217;t view certain scripts I&#8217;ve written with javascript, some people don&#8217;t have the speeds to wait for a huge flash file to load. And because of that we shouldn&#8217;t make all of our content only available through these mediums, there always should be the low tech work around. Denying users content solely based on what they have is foolish, although it all too often happens.</p>
<p>5) Hidden Google Ads<br />
I&#8217;m not really sure who came up with this first, but I must admit despite my hatred, and anger who ever the first person who thought to hide his Google ads into his normal navigation and content is a little bit of a creative genius, I just wish that he or she would have spent their time developing something good, as opposed to making something good. This is just one of those things that shouldn&#8217;t be allowed on the internet, like tables with no background, or animated gifs that sparkle. If you&#8217;ve ever considered doing this. You just shouldn&#8217;t, there&#8217;s never a reason to do it.</p>
<p>Hope this has been interesting and helpful!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/condons.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/condons.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=44&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/03/09/mark-condons-personal-rules-for-webdesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>

		<media:content url="http://condons.files.wordpress.com/2008/03/useless.gif" medium="image">
			<media:title type="html">useless</media:title>
		</media:content>
	</item>
		<item>
		<title>Flock anyone?</title>
		<link>http://condons.wordpress.com/2008/02/10/flock-anyone/</link>
		<comments>http://condons.wordpress.com/2008/02/10/flock-anyone/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 19:54:18 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/2008/02/10/flock-anyone/</guid>
		<description><![CDATA[Alright so at Macworld I got a chance to talk with the Flock guys, not having used the browser before I was fairly interested in it after seeing a piece on it on Mahalo Daily. Despite these two events taking place I decided to drag my feet on downloading the browser, but one lonely late [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=38&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Alright so at Macworld I got a chance to talk with the <a href="http://flock.com/">Flock</a> guys,<br />
not having used the browser before I was fairly interested in it after<br />
seeing a piece on it on <a title="Mahalo Daily" target="_blank" href="http://daily.mahalo.com/2007/12/19/md026-flock/">Mahalo Daily</a>.<br />
Despite these two events taking place I decided to drag my feet on<br />
downloading the browser, but one lonely late night I took the plunge.</p>
<p>So here&#8217;s some things you should know ahead of time about <a href="http://flock.com/">Flock</a>.
</p>
<ul>
<li>It&#8217;s built completely off of Firefox</li>
<li>It has it&#8217;s own set of add-ons</li>
<li>It gives you quick access to your social networks</li>
<li>It allows you to manage more things that you may have</li>
</ul>
<p>Alright so what&#8217;s the big deal about <a href="http://flock.com/">Flock</a>? Well there&#8217;s a couple of things, they give you a &#8220;myworld&#8221; page that allows you to manage all of your RSS feeds in one place a lot like <a href="http://www.netvibes.com">Netvibes</a> does, and it&#8217;s always open whenever you start the browser.</p>
<p><a title="Flock - My World" href="http://www.flickr.com/photos/22126422@N05/2255764882/"><img src="http://static.flickr.com/2218/2255764882_c52bfb0a23_m.jpg" border="0" /></a></p>
<p><a href="http://flock.com/">Flock</a> allows you to be connected in a way that previously had been impossible. </p>
<p><a title="Flock - My People" href="http://www.flickr.com/photos/22126422@N05/2255012373/"><img src="http://static.flickr.com/2405/2255012373_61526265e7_m.jpg" border="0" /><br />
</a><br />
The Image above is an example of your people, with a click of the mouse you can have access to all of your friends on any number of websites, in this case I&#8217;m viewing my friends accounts on Youtube. </p>
<p>But be warned this is not for the faint of mind, it&#8217;s very easy to get lost into <a href="http://flock.com/">Flock</a>, and it&#8217;s even easier to kill an hour and a half just looking through youtube videos on your top media bar.</p>
<p><a href="http://www.flickr.com/photos/22126422@N05/2255012217/"><img src="http://static.flickr.com/2242/2255012217_cfd3fc471d_m.jpg" border="0" /></a></p>
<p>Switching out what the media bar is showing is super simple you just click on the Media Stream button and you have access to a wide variety of different things.</p>
<p><a title="Flock - Media Bar Settings" href="http://www.flickr.com/photos/22126422@N05/2255012297/"><img src="http://static.flickr.com/2226/2255012297_d7b3fcdfdb_m.jpg" border="0" /></a></p>
<p>One of the best elements about <a href="http://flock.com/">Flock</a> (besides the built in blog editor which I&#8217;m using to make this post). </p>
<p>(if you&#8217;re curious all of these pictures have been placed here from the web clipboard which allows me to drag my pics from the Media bar to the square and then just put the pics into this blog)<br />
&nbsp;<a title="Flock - Blog Editor" href="http://www.flickr.com/photos/22126422@N05/2255045699/"><img src="http://static.flickr.com/2043/2255045699_c9e3a4df2f_m.jpg" border="0" /></a></p>
<p>Is by far the picture uploader which allows you to choose a number of different places to put your photos, like your Facebook, Photobucket, or Flickr, just to name a few, and the interface is as easy as the Flickr uploader if not easier. </p>
<p><a title="Flock - Built in Flock Uploader" href="http://www.flickr.com/photos/22126422@N05/2255012127/"><img src="http://static.flickr.com/2326/2255012127_45353ce943_m.jpg" border="0" /></a></p>
<p>So who should use <a href="http://flock.com/">Flock</a>? Well that&#8217;s a difficult thing to say, since it&#8217;s built off of Firefox it is just as stable, and it has a huge selection of things for you to do, even if all that you do is blog and cruise Youtube there&#8217;s a ton of things for you to explore. <a href="http://flock.com/">Flock&#8217;s</a> interface can be a little daunting at first like but once you sit down with it, and start to do some work you find that it&#8217;s an essential part of your life, I look forward to seeing where the <a href="http://flock.com/">Flock</a> Development Team takes this browser in the following months, especially with the release of the Firefox betas. Anyways I&#8217;ve chosen to end this post with a break down of the <a href="http://flock.com/">Flock </a>Toolbar.<br />
&nbsp;<a title="Flock - Toolbar" href="http://www.flickr.com/photos/22126422@N05/2255810980/"><img src="http://static.flickr.com/2157/2255810980_66853cc319_m.jpg" border="0" /></a></p>
<p>From Left to Right: My World, My People, My Media Bar, Open Feeds, Open Favorites (bookmarks), Open Accounts Manager, Open Web Clipboard, Open Blog Editor, Open Picture Uploader </p>
<p style="text-align:right;font-size:8px;">Blogged with <a href="http://www.flock.com/blogged-with-flock" title="Flock" target="_new">Flock</a></p>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/Flock" rel="tag">Flock</a>, <a href="http://technorati.com/tag/Firefox" rel="tag">Firefox</a>, <a href="http://technorati.com/tag/%20Youtube" rel="tag"> Youtube</a>, <a href="http://technorati.com/tag/%20Facebook" rel="tag"> Facebook</a>, <a href="http://technorati.com/tag/%20Photobucket" rel="tag"> Photobucket</a>, <a href="http://technorati.com/tag/%20Flickr" rel="tag"> Flickr</a>, <a href="http://technorati.com/tag/%20Linking%20into%20your%20social%20networks" rel="tag"> Linking into your social networks</a>, <a href="http://technorati.com/tag/%20Mahalo%20Daily" rel="tag"> Mahalo Daily</a></p>
<p><!-- technorati tags end --></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/condons.wordpress.com/38/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/condons.wordpress.com/38/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=38&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/02/10/flock-anyone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>

		<media:content url="http://static.flickr.com/2218/2255764882_c52bfb0a23_m.jpg" medium="image" />

		<media:content url="http://static.flickr.com/2405/2255012373_61526265e7_m.jpg" medium="image" />

		<media:content url="http://static.flickr.com/2242/2255012217_cfd3fc471d_m.jpg" medium="image" />

		<media:content url="http://static.flickr.com/2226/2255012297_d7b3fcdfdb_m.jpg" medium="image" />

		<media:content url="http://static.flickr.com/2043/2255045699_c9e3a4df2f_m.jpg" medium="image" />

		<media:content url="http://static.flickr.com/2326/2255012127_45353ce943_m.jpg" medium="image" />

		<media:content url="http://static.flickr.com/2157/2255810980_66853cc319_m.jpg" medium="image" />
	</item>
		<item>
		<title>Dollar Theatres &#8211; A Cultural Mystery</title>
		<link>http://condons.wordpress.com/2008/02/04/dollar-theatres-a-cultural-mystery/</link>
		<comments>http://condons.wordpress.com/2008/02/04/dollar-theatres-a-cultural-mystery/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 08:00:19 +0000</pubDate>
		<dc:creator>condonm</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Cheap Movies]]></category>
		<category><![CDATA[Cheap Seats]]></category>
		<category><![CDATA[Cheap Theatre]]></category>
		<category><![CDATA[Dollar Theaters]]></category>
		<category><![CDATA[Going to the movies]]></category>
		<category><![CDATA[St Cloud]]></category>
		<category><![CDATA[St Cloud Minnesota]]></category>

		<guid isPermaLink="false">http://condons.wordpress.com/?p=35</guid>
		<description><![CDATA[I had no idea these were in other parts of the country! It often felt like Dollar Theatres were just part of the small town, lower income St. Cloud Minnesota story. But apparently they&#8217;re across the country. Suddenly the world seems a little bit smaller. If you didn&#8217;t grow up with a dollar theatre, then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=35&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had no idea these were in other parts of the country! It often felt like Dollar Theatres were just part of the small town, lower income St. Cloud Minnesota story. But apparently they&#8217;re across the country. Suddenly the world seems a little bit smaller. If you didn&#8217;t grow up with a dollar theatre, then you certainly have missed out.</p>
<p>Here&#8217;s the <a href="http://en.wikipedia.org/wiki/Dollar_theaters">wikipedia link </a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/condons.wordpress.com/35/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/condons.wordpress.com/35/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/condons.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/condons.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/condons.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/condons.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/condons.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/condons.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/condons.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/condons.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/condons.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/condons.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/condons.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/condons.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/condons.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/condons.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=condons.wordpress.com&amp;blog=2475358&amp;post=35&amp;subd=condons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://condons.wordpress.com/2008/02/04/dollar-theatres-a-cultural-mystery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ec69376809c2e098325dcf022cd2aca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">condonm</media:title>
		</media:content>
	</item>
	</channel>
</rss>
