<?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>Ogremindes.net &#187; Web Design</title>
	<atom:link href="http://ogremindes.net/archive/blog/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://ogremindes.net</link>
	<description></description>
	<lastBuildDate>Thu, 18 Feb 2010 21:41:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New site layout</title>
		<link>http://ogremindes.net/blog/new-site-layout/</link>
		<comments>http://ogremindes.net/blog/new-site-layout/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 10:28:31 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[new_layout]]></category>

		<guid isPermaLink="false">http://ogremindes.net/blog/new-site-layout/</guid>
		<description><![CDATA[This is my brand-new layout. Dubbed &#8216;Technological Fantasy&#8217;, it replaces the &#8216;Ogremindes.net Ultraclean&#8217; theme that preceded it...]]></description>
			<content:encoded><![CDATA[<p>This is my brand-new layout. Dubbed &#8216;Technological Fantasy&#8217;, it replaces the &#8216;Ogremindes.net Ultraclean&#8217; theme that preceded it.</p>
<p>Technological Fantasy is designed to address a number of shortcomings in the older theme. The most important and obvious change is the switch from a white background to an olive green one. The site has become more of an image gallery than a blog, and the glaringly white backdrop was a rather distracting choice (not to mention the big, full colour image on every page). That&#8217;s to say that the textual aspects of the site are unimportant. Indeed, the text colour has been carefully chosen to provide ample contrast in line with WC3 accessibility guidelines.</p>
<p>The second problem with the old site was hard coding. In order to achieve it&#8217;s unusual site structure required a lot of exceptions that made adding new categories a pain. By going back to a more conventional blog structure the site can be easily expanded whenever I need or want it to.
<p>Finally data I received showed that most users visiting the site would only read one page and leave, without looking around the site for other related pages. With the &#8216;related posts&#8217; section in the sidebar of single posts added, I hope more users will take the time to explore further.</p>
<p>Because of it&#8217;s construction, I won&#8217;t provide Utraclean as an alternate theme, although I may use it&#8217;s predecessor, &#8216;Adam&#8217;s Blog&#8217;, in that role.</p>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/new-site-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Database Options</title>
		<link>http://ogremindes.net/blog/internet-database-options/</link>
		<comments>http://ogremindes.net/blog/internet-database-options/#comments</comments>
		<pubDate>Mon, 30 Apr 2007 05:05:52 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://ogremindes.net/blog/internet-database-options/</guid>
		<description><![CDATA[There are a number of database management systems (DBMS) suitable for web applications...]]></description>
			<content:encoded><![CDATA[<h3>Database technologies</h3>
<p>There are a number of database management systems (DBMS) suitable for web applications. MySQL is possibly the most ubiquitous, but other DBMS may be better suited for specific applications</p>
<p>MySQL is, as mentioned above, extremely common. It is suitable for most applications because it provides many different ways of storing information. One format may be faster, another may allow for more users at once.</p>
<p>An alternative DBMS is PostgreSQL. PostgreSQL offers more flexibility, and as such has significantly more complexity. It can recognize several different languages for retrieving data, rather than just SQL, and has many object orientated features, such as tables being able to inherit properties of &#8216;parent&#8217; tables.</p>
<p>I, personally, am only familiar with MySQL, and in the rest of this article I&#8217;ll discuss how MySQL works with PHP.</p>
<h3>Connecting to and accessing a database</h3>
<p>In PHP, there are five steps to accessing a database. The first is actually connecting to the host where the database is found. For MySQL the method of connecting follows the form <code>mysql_connect(DB_HOST, DB_USER, DB_PASSWORD)</code>.  DB_HOST being the address where the database is found, DB_USER and DB_PASSWORD being the username and password used in MySQL.</p>
<p>The second part is selecting the database to be used. A particular copy of MySQL can, and probably will be hosting several databases. <code>mysql_select_db(DB_NAME)</code> is how to choose a particular MySQL database, where DB_NAME is the name of the database in question.</p>
<p>The third part is to create a SQL query. SQL, or Structured Query Language is an almost universal way of accessing data from databases. Most types of database use this language, including MySQL, Microsoft Access and many others. The results of the query are usually stored in a variable for later access. <code>$linkresult = mysql_query("SELECT * FROM `links` WHERE `category` = 'games'");</code> is an example of a SQL query being used to access a MySQL database in PHP.</p>
<p>The fourth stage is reading and displaying the results from the query. The following snippet reads off the results and displays them as an HTML list of links with images:</p>
<p><code>            if (mysql_num_rows($linkresult) &amp;gt; 0) {<br />
            while($row = mysql_fetch_object($linkresult)){<br />
                echo "&amp;lt;li&amp;gt;&amp;lt;a href=\"".$row-&amp;gt;url."\"  title=\"".$row-&amp;gt;linkname."\" &amp;gt;&amp;lt;img src=\"img/".$row-&amp;gt;id.".gif\" alt=\"".$row-&amp;gt;linkname."\" /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;";<br />
            }<br />
            }</code></p>
<p>This is a fairly complicated example, but there are many different ways to display the query results.</p>
<p>Finally, after using the database&#8217;s data, one should clean up after oneself, to free up system resources, and to prevent clashes should you need to run other database queries in the same script. <code>mysql_free_result($linkresult);</code> empties the variable holding the query results.
<p>To summarize, the steps in connecting to and accessing a database are:</p>
<ol>
<li>Connecting to the database host</li>
<li>Selecting the database</li>
<li>Querying the database</li>
<li>Displaying query results</li>
<li>Cleaning up</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/internet-database-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link Cleanup</title>
		<link>http://ogremindes.net/blog/link-cleanup/</link>
		<comments>http://ogremindes.net/blog/link-cleanup/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 07:25:32 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[gabbly]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://ogremindes.net/link-cleanup/</guid>
		<description><![CDATA[I&#8217;m starting to get a mess of links on my desktop. They&#8217;re all interesting, so I&#8217;ll whack &#8216;em up here.

Five simple steps to better typography...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m starting to get a mess of links on my desktop. They&#8217;re all interesting, so I&#8217;ll whack &#8216;em up here.</p>
<ul>
<li><a href="http://www.markboulton.co.uk/journal/comments/five_simple_steps_to_better_typography/" onclick="javascript:urchinTracker ('/outbound/article/www.markboulton.co.uk');">Five simple steps to better typography</a>. Covers such things as line length and word spacing.</li>
<li><a href="http://www.dgx.cz/trine/item/how-to-avoid-activation-of-active-x-in-ie" onclick="javascript:urchinTracker ('/outbound/article/www.dgx.cz');">How to avoid activation of Active-X in IE</a>. Due to recent changes, flash (and other things) have to be clicked before they work in IE. This is a workaround.</li>
<li><a href="http://www.dgx.cz/trine/item/how-to-correctly-insert-a-flash-into-xhtml" onclick="javascript:urchinTracker ('/outbound/article/www.dgx.cz');">How to correctly insert a Flash into XHTML</a>. A functional, valid way of inserting flash into a web page.</li>
<li><a href="http://www.digital-web.com/articles/architecting_css/" onclick="javascript:urchinTracker ('/outbound/article/www.digital-web.com');">Architecting CSS</a>. Techniques for organising CSS.</li>
<li><a href="http://home.gabbly.com/" onclick="javascript:urchinTracker ('/outbound/article/home.gabbly.com');">Gabbly</a>. An interesting way to get chat on a website.</li>
</ul>
<p>And a <a href="http://www.gocomics.com/foxtrot/2006/09/19/" onclick="javascript:urchinTracker ('/outbound/article/www.gocomics.com');">comic</a>, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/link-cleanup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A is for Accessibility&#8230;</title>
		<link>http://ogremindes.net/blog/a-is-for-accessibility/</link>
		<comments>http://ogremindes.net/blog/a-is-for-accessibility/#comments</comments>
		<pubDate>Tue, 12 Sep 2006 05:58:25 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[standardista]]></category>
		<category><![CDATA[standards]]></category>

		<guid isPermaLink="false">http://ogremindes.net/a-is-for-accessibility/</guid>
		<description><![CDATA[I is for Internet Explorer
Internet Explorer is the web browser used by the vast majority of internet users...]]></description>
			<content:encoded><![CDATA[<blockquote><dl>
<dt>I is for Internet Explorer</dt>
<dd>Internet Explorer is the web browser used by the vast majority of internet users. It does not support web standards as well as the latest versions of Mozilla Firefox and Opera, and has a whole raft of CSS hacks written to try to allow you to get the damn thing to do what you want. Of course, the Greater Standardista would frown at the use of something as inelegant as a hack, and simply assert that if Internet Explorer doesnâ€™t render according to specification, thatâ€™s hardly their fault. The latest version, IE7, is believed to be a significant improvement.</dd>
</dl>
</blockquote>
<p><a href="http://www.alistapart.com/articles/alphabet" onclick="javascript:urchinTracker ('/outbound/article/www.alistapart.com');">A Standardista&#8217;s Alphabet</a> is a light-hearted look at Web Standards Evangelism. It&#8217;s part of the September issue of <a href="http://www.alistapart.com/" onclick="javascript:urchinTracker ('/outbound/article/www.alistapart.com');">A List Apart</a>, and well worth a read.</p>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/a-is-for-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emerging Technologies Research Activity: Gary&#8217;s Email</title>
		<link>http://ogremindes.net/blog/emerging-technologies-research-activity-garys-email/</link>
		<comments>http://ogremindes.net/blog/emerging-technologies-research-activity-garys-email/#comments</comments>
		<pubDate>Thu, 07 Sep 2006 04:52:34 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://ogremindes.net/emerging-technologies-research-activity-garys-email/</guid>
		<description><![CDATA[G&#8217;day
Look, I know you people in the IT department don&#8217;t like to be disturbed  , but the MD seems to think that you&#8217;re pretty well-informed...]]></description>
			<content:encoded><![CDATA[<blockquote><p>G&#8217;day</p>
<p>Look, I know you people in the IT department don&#8217;t like to be disturbed <img src='http://ogremindes.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> , but the MD seems to think that you&#8217;re pretty well-informed. We&#8217;re going to need another web-developer in a months time for the Humanet 2.0 project, so I thought I&#8217;d pop this question your direction.</p>
<p>I&#8217;m quite familiar with HTML from my experience on the Humanet project, but oneof our web developers keeps insisting on us using XHTML rather than HTML. He&#8217;s new on the job and so I don&#8217;t want to make a big decision based on a new recruit&#8217;s insistence.</p>
<p>Is XHTML a new language? How does it relate to HTML and why should we use it? And what is the Document Object Model (DOM) that the newby keeps referring to? And finally, how do you keep up with your tech-information? I don&#8217;t have much time, but I want to be able to keep up with developments in the industry, especially new web-standards.</p>
<p>As I said, I do want to look into these things myself, but am quite busy at the moment. It would be extremely helpful if you could answer my questions and provides links so I can find out more over the weekend.</p>
<p>Thanks in advance,<br />
Gary<br />
Project Manager &#8211; Humanet<br />
KorTech Pty. Ltd.</p>
</blockquote>
<p>XHTML is not really a new language. It is basically a simplified version version of HTML that has been modified to follow XML conventions.</p>
<ul>
<li>Many tags that are now superfluous with the use of CSS have been removed in XHTML</li>
<li>XHTML has a more consistent syntax than HTML.
<ul>
<li>All tags must be closed, such as &lt;p&gt;&lt;/p&gt;. If a tag is empty (would have nothing between the opening and closing tags) such as an image tag, it has a closing slash, for example: &lt;img src=&#8221;example.jpg&#8221; /&gt;</li>
<li>Tag attributes always follow the attribute=&#8221;value&#8221; syntax. Some attributes that could be written in a shorthand fashion in HTML cannot in XHTML. For example, what used to be written as &lt;textarea disabled&gt; must be written as &lt;textarea disabled=&#8221;disabled&#8221;&gt; in XHTML.</li>
<li>Tags and their attributes must be written in lower-case in XHTML. HTML allows these to be written in whatever case you like.</li>
</ul>
</li>
<li>In theory, XHTML should be sent to the browser as an XML application. In practice this is almost never done.</li>
</ul>
<p>XHTML is a newer standard, it&#8217;s simpler to write and maintain than HTML and the code written for XHTML tends to be cleaner and lighter. Well written XHTML will be usable on a greater number of devices, as XHTML&#8217;s consist ant syntax means that it can interpreted by less powerful devices, such as mobile phones, which have difficulty getting HTML right.</p>
<p>That said, strict HTML is still a perfectly usable standard to write to, and some purists say it&#8217;s better to use HTML as XHTML should be treated as XML rather than text, and most users (read: those that use Internet Explorer) can&#8217;t use XML pages.</p>
<p>Using XHTML is widely regarded as the better option. Because it&#8217;s cleaner and more consistent it&#8217;s easier to write for and faster for computers to render. Because it&#8217;s based on XML it will be usable well into the future as, well, XML is in almost everything.</p>
<p>HTML vs XHTML Links</p>
<ul>
<li><a href="http://www.w3schools.com/xhtml/xhtml_html.asp" onclick="javascript:urchinTracker ('/outbound/article/www.w3schools.com');">Differences Between XHTML And HTML</a></li>
<li><a href="http://www.webstandards.org/learn/articles/askw3c/oct2003/" onclick="javascript:urchinTracker ('/outbound/article/www.webstandards.org');">HTML Versus XHTML</a></li>
<li><a href="http://www.456bereastreet.com/archive/200606/html_vs_xhtml_on_standards_compliant_websites/" onclick="javascript:urchinTracker ('/outbound/article/www.456bereastreet.com');">HTML vs. XHTML on standards compliant websites</a></li>
</ul>
<p>The DOM (Document Object Model) is a way of referring to any part of a document, such as a web page. &#8216;DOM Scripting&#8217; is basically using JavaScript, although some of the techniques have changed in recent years. It uses the &#8216;dot syntax&#8217;: to refer to the element with the ID &#8216;foo&#8217; I would use the code documet.getElementByID(&#8217;foo&#8217;), for example.</p>
<p>DOM Links</p>
<ul>
<li><a href="http://www.w3.org/DOM/" onclick="javascript:urchinTracker ('/outbound/article/www.w3.org');">Document Object Model</a></li>
<li><a href="http://www.clagnut.com/blog/286/" onclick="javascript:urchinTracker ('/outbound/article/www.clagnut.com');">Discovering DOM scripting</a></li>
</ul>
<p>To keep up with new developments in the industry I follow a wide range of blogs written by high-profile web professionals. Using an &#8216;aggregator&#8217; or RSS reader, ether a web-based one such as <a href="http://www.bloglines.com/" onclick="javascript:urchinTracker ('/outbound/article/www.bloglines.com');">Bloglines</a> or a small program on the computer, one can subscribe to a large number of these sites and see if there are any updates, or even read the posts without having to visit the sites individually.</p>
<p>Aggregator Links</p>
<ul>
<li><a href="http://www.bloglines.com/" onclick="javascript:urchinTracker ('/outbound/article/www.bloglines.com');">Bloglines</a></li>
<li><a href="http://www.solutionwatch.com/501/tracking-the-web-with-single-page-aggregators/" onclick="javascript:urchinTracker ('/outbound/article/www.solutionwatch.com');">Tracking the web with Single Page Aggregators</a></li>
</ul>
<p>Informative Web Design Sites</p>
<ul>
<li><a href="http://www.456bereastreet.com/" onclick="javascript:urchinTracker ('/outbound/article/www.456bereastreet.com');">456 Berea Street</a></li>
<li><a href="http://www.alistapart.com/" onclick="javascript:urchinTracker ('/outbound/article/www.alistapart.com');">A List Apart</a></li>
<li><a href="http://www.zeldman.com/" onclick="javascript:urchinTracker ('/outbound/article/www.zeldman.com');">Jeffrey Zeldman Presents</a></li>
<li><a href="http://www.maxdesign.com.au/" onclick="javascript:urchinTracker ('/outbound/article/www.maxdesign.com.au');">Max Design</a></li>
<li><a href="http://www.thinkvitamin.com/" onclick="javascript:urchinTracker ('/outbound/article/www.thinkvitamin.com');">Vitamin</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/emerging-technologies-research-activity-garys-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When to use &#8216;Bad Tags&#8217;</title>
		<link>http://ogremindes.net/blog/when-to-use-bad-tags/</link>
		<comments>http://ogremindes.net/blog/when-to-use-bad-tags/#comments</comments>
		<pubDate>Thu, 07 Sep 2006 00:15:52 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[bad_tags]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://ogremindes.net/when-to-use-bad-tags/</guid>
		<description><![CDATA[In XHTML there are a number of tags which have been dubbed &#8216;bad&#8217; for being purely presentational...]]></description>
			<content:encoded><![CDATA[<p><img src="http://ogremindes.net/wp-content/uploads/2006/05/gnome-mime-text-html.png" alt="HTML Icon" /></p>
<p>In XHTML there are a number of tags which have been dubbed &#8216;bad&#8217; for being purely presentational. For a person that&#8217;s only beginning to learn the right way of writing HTML it&#8217;s a useful simplification to call these tags out of bounds. However, in most cases these tags do have legitimate use.</p>
<h3>&lt;i&gt; and &lt;b&gt;</h3>
<p>The tags with the least legitimate use, bold and italic are used where convention dictates there should be bolded or italicised text, <strong>but only if there is not another tag that covers this instance</strong>. An example of where one might use &lt;i&gt; is when writing the name of a ship. The ship&#8217;s name would conventionally be italicised, such as the <i>HMS Hobart</i>, but there is no tag for it.</p>
<p>There <em>are</em> tags for strong text (&lt;strong&gt;), emphasised text (&lt;em&gt;), quotes (&lt;q&gt; and &lt;blockquote&gt;), citations (&lt;cite&gt;), editorial insertions (&lt;ins&gt;), abbreviations and acronyms (&lt;abbr&gt; and &lt;acronym&gt;), sample output (&lt;samp&gt;), definitions (&lt;def&gt;), variables (&lt;var&gt;), text to be typed in by the user (&lt;kbd&gt;) and addresses (&lt;address&gt;) and probably a few others beside.</p>
<p>There aren&#8217;t many situations where &lt;i&gt; or &lt;b&gt; should be used, and they should be only considered where you are sure there isn&#8217;t a better option.</p>
<h3>&lt;br/&gt;</h3>
<p>The line break tag should only be used when line breaks are part of the actual information being presented. Examples include command-line output, street addresses and poetry.</p>
<p>If a &#8216;goblin (hob) waylays you,&lt;br/&gt;<br />
Slice him up before he slays you.&lt;br/&gt;<br />
Nothing makes you look a slob&lt;br/&gt;<br />
Like running from a hob&#8217;lin (gob).&lt;br/&gt;</p>
<h3>&lt;hr/&gt;</h3>
<p>The &lt;hr/&gt; tag stands for &#8216;horizontal rule&#8217;, however, it&#8217;s meaning is a separator in text. If you&#8217;ve read a novel where the author switches between multiple story threads you&#8217;ve probably seen these. Maybe as a single star, maybe as a row thereof, maybe even as a horizontal rule. All of these would be &lt;hr/&gt;s in HTML.</p>
<p>The &lt;hr/&gt;&#8217;s use is to show where there is a clear change in the focus of the text. Such as where there is a change from the point-of-view from one person to another.</p>
<p>The name of the tag is a bad one, which is why in XHTML 2 it&#8217;s being changed to separator. Hell, if a page is being written in a top-to-bottom direction the &#8216;horizontal rule&#8217; tag will be a vertical separator.</p>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/when-to-use-bad-tags/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Interesting site design: Ronin MUD</title>
		<link>http://ogremindes.net/blog/interesting-site-design-ronin-mud/</link>
		<comments>http://ogremindes.net/blog/interesting-site-design-ronin-mud/#comments</comments>
		<pubDate>Wed, 30 Aug 2006 05:31:47 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[interesting_site]]></category>
		<category><![CDATA[ronin_MUD]]></category>

		<guid isPermaLink="false">http://ogremindes.net/interesting-site-design-ronin-mud/</guid>
		<description><![CDATA[This site is for the online game Ronin MUD, I haven't played the game, however I found the site to be very impressive. It has a very striking red and black colour scheme, using irregular lines and a large image to good effect. The text is <em>mostly</em> readable, the parts that overlap the main image are less so&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://ogremindes.net/wp-content/uploads/2006/08/roninmud.png" title="Ronin MUD screenshot" ><img src="http://ogremindes.net/wp-content/uploads/2006/08/roninmud.thumbnail.png" alt="Ronin MUD screenshot" /></a></p>
<ul>
<li>
<a href="http://www.roninmud.org/" onclick="javascript:urchinTracker ('/outbound/article/www.roninmud.org');">Ronin MUD</a>
</li>
</ul>
<p>This site is for the online game <a href="http://www.roninmud.org/" onclick="javascript:urchinTracker ('/outbound/article/www.roninmud.org');">Ronin MUD</a>, I haven&#8217;t played the game, however I found the site to be very impressive. It has a very striking red and black colour scheme, using irregular lines and a large image to good effect. The text is <em>mostly</em> readable, the parts that overlap the main image are less so. (<a href="http://meyerweb.com/eric/css/edge/complexspiral/glassy.html" onclick="javascript:urchinTracker ('/outbound/article/meyerweb.com');">With IE7 coming, I can think of at least one interesting way to keep this overlap but maintain readability</a>)</p>
<p>It is, unfortunately a table-based layout, but everything I saw on the pages could have been achieved with CSS, and using CSS could fix some of the rough spots of the design.</p>
<p>I&#8217;m interested to hear what other people think of this design. If you have an opinion about it, comment away.</p>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/interesting-site-design-ronin-mud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress tutorial video</title>
		<link>http://ogremindes.net/blog/wordpress-tutorial-video/</link>
		<comments>http://ogremindes.net/blog/wordpress-tutorial-video/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 12:58:00 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[video_tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ogremindes.net/wordpress-tutorial-video/</guid>
		<description><![CDATA[This video tutorial that came up on popular webdesign links can take you through the steps of installing wordpress, and covers the basic use of many of it&#8217;s features...]]></description>
			<content:encoded><![CDATA[<p><a href="http://ia311507.us.archive.org/0/items/RachelCunliffeWordpressTutorial1_0/Wordpress1.swf" onclick="javascript:urchinTracker ('/outbound/article/ia311507.us.archive.org');">This video tutorial</a> that came up on <a href="http://del.icio.us/popular/webdesign" onclick="javascript:urchinTracker ('/outbound/article/del.icio.us');">popular webdesign links</a> can take you through the steps of installing wordpress, and covers the basic use of many of it&#8217;s features.</p>
<ul>
<li>
<a href="http://ia311507.us.archive.org/0/items/RachelCunliffeWordpressTutorial1_0/Wordpress1.swf" onclick="javascript:urchinTracker ('/outbound/article/ia311507.us.archive.org');">Rachel Cunliffe Wordpress Tutorial</a>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/wordpress-tutorial-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAMP &#8212; Macintosh Apache, MySQL and PHP</title>
		<link>http://ogremindes.net/blog/mamp-macintosh-apache-mysql-and-php/</link>
		<comments>http://ogremindes.net/blog/mamp-macintosh-apache-mysql-and-php/#comments</comments>
		<pubDate>Thu, 10 Aug 2006 09:11:18 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mamp]]></category>
		<category><![CDATA[web_server]]></category>
		<category><![CDATA[xamp]]></category>

		<guid isPermaLink="false">http://ogremindes.net/mamp-macintosh-apache-mysql-and-php/</guid>
		<description><![CDATA[MAMP is the MacOSX equivalent of XAMPlite, the software some people in the class are using to ease PHP work somewhat by removing the need to upload the .php file after every change...]]></description>
			<content:encoded><![CDATA[<p><img src="http://ogremindes.net/wp-content/uploads/2006/08/mampicon.png" alt="MAMP Icon" /><a href="http://www.mamp.info/en/home/" onclick="javascript:urchinTracker ('/outbound/article/www.mamp.info');">MAMP</a> is the MacOSX equivalent of <a href="http://www.apachefriends.org/en/xampp-windows.html" onclick="javascript:urchinTracker ('/outbound/article/www.apachefriends.org');">XAMPlite</a>, the software some people in the class are using to ease PHP work somewhat by removing the need to upload the .php file after every change.</p>
<p>This is because both <a href="http://www.apachefriends.org/en/xampp-windows.html" onclick="javascript:urchinTracker ('/outbound/article/www.apachefriends.org');">XAMP</a> and <a href="http://www.mamp.info/en/home/" onclick="javascript:urchinTracker ('/outbound/article/www.mamp.info');">MAMP</a> put a temporary web server on your computer while, allowing you to run .php files from your computer. It also runs MySQL for the more advanced php/database work.</p>
<ul>
<li>
<a href="http://www.mamp.info/en/home/" onclick="javascript:urchinTracker ('/outbound/article/www.mamp.info');">MAMP</a>
</li>
<li>
<a href="http://www.apachefriends.org/en/xampp-windows.html" onclick="javascript:urchinTracker ('/outbound/article/www.apachefriends.org');">XAMP</a>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/mamp-macintosh-apache-mysql-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screen Resolution and Page Layout</title>
		<link>http://ogremindes.net/blog/screen-resolution-and-page-layout/</link>
		<comments>http://ogremindes.net/blog/screen-resolution-and-page-layout/#comments</comments>
		<pubDate>Mon, 31 Jul 2006 23:31:17 +0000</pubDate>
		<dc:creator>Ogremindes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[page_layout]]></category>

		<guid isPermaLink="false">http://ogremindes.net/screen-resolution-and-page-layout/</guid>
		<description><![CDATA[In his latest alertbox, usability guru Jacob Nielson recommends optimising web pages to be viewed on 1024&#215;768 resolution, but make sure they scale adiquitely in lower resolutions&#8230;]]></description>
			<content:encoded><![CDATA[<p>In his latest <a href="http://www.useit.com/alertbox/" onclick="javascript:urchinTracker ('/outbound/article/www.useit.com');">alertbox</a>, usability guru Jacob Nielson recommends optimising web pages to be viewed on 1024&#215;768 resolution, but make sure they scale adiquitely in lower resolutions.</p>
<ul>
<li><a href="http://www.useit.com/" onclick="javascript:urchinTracker ('/outbound/article/www.useit.com');">useit.com</a> : <a href="http://www.useit.com/alertbox/screen_resolution.html" onclick="javascript:urchinTracker ('/outbound/article/www.useit.com');">Screen Resolution and Page Layout</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ogremindes.net/blog/screen-resolution-and-page-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

