<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>LINICKX.com</title><link>https://www.linickx.com/</link><description></description><lastBuildDate>Sat, 16 Feb 2008 19:12:00 +0000</lastBuildDate><item><title>Twittering with Tools</title><link>https://www.linickx.com/twittering-with-tools</link><description>&lt;p&gt;LINICKX.com is evolving, I'm not sure how yet but I've started by
introducing &lt;a href="http://alexking.org/projects/wordpress/readme?project=twitter-tools"&gt;twitter
tools&lt;/a&gt;,
google has changed the face of websites, according to google analytics
my home page is not longer the top landing page, i.e. most people
visiting my site hit the content they want directly and don't need to
navigate through the site... with this in mind I'm thinking about
turning linickx.com into a &lt;a href="http://www.tumblr.com/"&gt;tumblr&lt;/a&gt; type
thing... twitter tools allows me to post short "thoughts" and "comments"
without having to go through the full WordPress write post thing.&lt;/p&gt;
&lt;p&gt;I started the idea along time ago when photomatt introduced asides, i.e.
I've always had categories and different front page presentation styles
for &lt;a href="https://www.linickx.com/archives/category/blog"&gt;blog posts&lt;/a&gt;,
&lt;a href="https://www.linickx.com/archives/category/firefox"&gt;firefox posts&lt;/a&gt;,
&lt;a href="https://www.linickx.com/archives/category/delicious"&gt;delicious posts&lt;/a&gt;
and then everything else... so I'm thinking about taking the idea
further by creating individual posts,feeds and styles for delicious
links and rss shared items (&lt;em&gt;from google reader&lt;/em&gt;).&lt;/p&gt;
&lt;p&gt;Since I want to keep my feed clean (&lt;em&gt;it's imported into many social
networks like mugshot &amp;amp; facebook&lt;/em&gt;) I've used &lt;a href="http://zeo.unic.net.my/notes/exclude-category-in-wordpress/"&gt;this
post&lt;/a&gt; to
filter out my new "sync" category... sync as in I'm synchronising my web
life with my website :) - Oh Yeah before I foget don't add the code to
functions.php as it creates a php warning, create a wordpress plugin.&lt;/p&gt;
&lt;p&gt;My web/work/social life is quite busy - who's isn't!... so I'm a little
worried about how to style the whole thing I found a nice way of &lt;a href="http://www.htmlsource.co.uk/using-css-and-blockquote/"&gt;quote
text with css&lt;/a&gt;,
so the tweets look good, but I'm worried that bookmarks and shared posts
could make the site look cluttered or confusing, I've already had to add
a "twitter reply" link to each post since the 1st thing people have
asked me is what's twitter.. doh must be a UK web-ignorance thing.&lt;/p&gt;
&lt;p&gt;I guess we'll just see how this pan's out, I've just renewed this
domain, so it'd be nice to finish for the domains birthday :D&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Sat, 16 Feb 2008 19:12:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2008-02-16:twittering-with-tools</guid><category>Blog</category><category>css</category><category>twitter</category><category>webdesign</category><category>WordPress</category></item><item><title>Converting HTML to xhtml, a couple of tips.</title><link>https://www.linickx.com/converting-html-to-xhtml-a-couple-of-tips</link><description>&lt;p&gt;As part of my &lt;a href="https://www.linickx.com/blog/?p=73"&gt;blogging re-vamp&lt;/a&gt; and
a continuation of making sure &lt;a href="https://www.linickx.com/blog/?p=65"&gt;my site was standards
compliant&lt;/a&gt; I've had to go through the
pain of converting my old &lt;a href="http://www.w3.org/TR/html4/"&gt;HTML&lt;/a&gt; to new
&lt;a href="http://www.w3.org/TR/xhtml1/"&gt;xhtml&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Why did this happen ? Well to be honest I made a bit of a mistake, I've
had some training on HTML, and have a book too ;-) , so obviously that's
what I started to code my site in, then I introduced
&lt;a href="http://www.wordpress.org"&gt;wordpress&lt;/a&gt;, and unwittingly started to code
my theme in HTML, only to find out that all the work I'd done was wrong
because wordpress uses xhtml :-(&lt;/p&gt;
&lt;p&gt;So what have I learned ? How painful was it ? Well that really depends
on your original html, you see my old HTML was mostly in lower case
(&lt;em&gt;because I'm lazy&lt;/em&gt;) this is contrary to some teaching materials, so if
you were really good at using uppercase tags, then migrating to xhtml
could be very painful for you.&lt;/p&gt;
&lt;p&gt;Basic lessons that got me by were:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;All code in xhtml MUST be in lower case, this even includes \&amp;lt;form
    action="POST" &amp;gt; statements, rather it should be \&amp;lt;form
    action="post" &amp;gt; :-)&lt;/li&gt;
&lt;li&gt;Short codes cannot be used, i.e. align=center or border=0 isn't
    valid anymore, they must be align="center" and border="0"&lt;/li&gt;
&lt;li&gt;Tags must be properly nested, so you can't do
    \&amp;lt;a&amp;gt;\&amp;lt;i&amp;gt;something\&amp;lt;/a&amp;gt;\&amp;lt;/i&amp;gt; it must be
    \&amp;lt;a&amp;gt;\&amp;lt;i&amp;gt;something\&amp;lt;/i&amp;gt;\&amp;lt;/a&amp;gt;&lt;/li&gt;
&lt;li&gt;All tags must be closed, i.e. \&amp;lt;/p&amp;gt; is now mandatory, and \&amp;lt;br&amp;gt;
    should look like \&amp;lt;br /&amp;gt; in fact the same goes for \&amp;lt;img&amp;gt; and
    \&amp;lt;input&amp;gt; tags too !&lt;/li&gt;
&lt;li&gt;Some Tags don't mix; I've found that you can't open a new \&amp;lt;div&amp;gt;
    without closing a \&amp;lt;p&amp;gt; first.&lt;/li&gt;
&lt;li&gt;And the most important lesson was use &lt;a href="http://validator.w3.org/"&gt;http://validator.w3.org/&lt;/a&gt; if
    you can't work out what the problem is,
    &lt;a href="http://www.google.co.uk"&gt;googling&lt;/a&gt; and changing the tag you're
    using worked for me.&lt;/li&gt;
&lt;/ul&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Tue, 01 Nov 2005 17:20:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2005-11-01:converting-html-to-xhtml-a-couple-of-tips</guid><category>Blog</category><category>webdesign</category><category>xhtml</category></item></channel></rss>