Categories
World Wide Web

My tags

So you are not interested in my blogs on tech? But I just can't stop blogging about tech.

So here's the solution:

1. For general blog entries visit: General (Tag name – general). (Sorry, if some tech jargons creep in.)

2. For technical entries: Tech (Tag name – tech).

Sub-categories in tech:

Khoj (Tag name – khoj) – These are cool things that I find on the net.
Problem (Tag name – problem) – These are some problems that I face/ problems that I think are not yet solved.
Thoughts (Tag name – thoughts) – These are certain things that might need some thought and analysis.
Semantic Web (Tag name – sw) – You know what 🙂

Other tags:

College (Tag name – college) – About my college days and new things HAPPENING in college.
IBM (Tag name – ibm) – About my association with IBM.
LJ (Tag name – livejournal) – About new things that come up in LJ and anything concerned with LJ (like this blog entry).
Jobless (Tag name – jobless) – Those “Find your friends”, “Find when you die” etc utilities that work over LJ.

And in case your RSS reader supports filtering, you could use the tags
specified to filter my entries (All my tags are in lowercase).

And since I like XSLT here's the XSLT snippet to filter out my 'tech' blog entries and display the titles:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
    <xsl:for-each
select="document('http://www.livejournal.com/users/gauthampai/data/rss')/rss/channel/item">
     <xsl:for-each select="category">
       <xsl:variable name="temp" select="." />
       <xsl:if test="$temp = 'tech' " >
        <xsl:value-of select="../title" /><br />
       </xsl:if>
     </xsl:for-each>
    </xsl:for-each>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>