bookmark_borderRSS Feeds for those who don’t know RSS Feeds

RSS FEEDMany times I face myself explaining to people what a RSS Feed is. Even though, I think most of you already know what’s a RSS Feed is, but for those who don’t, I’ll try to create a very simple yet explicative tutorial showing why you should be using it for a while now. Statistics can’t be ignored, most Internet users still don’t know what it is. So, recommend this post, and help spread RSS.
Continue reading “RSS Feeds for those who don’t know RSS Feeds”

bookmark_borderNew theme!

Long time since I wanted to change the old theme from my blog. I’ve made several theme layouts but none of them I really liked, so I came with this one, wich is almost ready. Based on K2 I’ll still make many optimizations and modifications, hope you enjoy. 🙂
What do you say?

bookmark_borderShowing your last “twit” using php

While editing my blog theme, I decided to add my last thoughts in twitter to the website. Came with a very simple php code that will get the information from the last twitter post and show it as a text line, so you can add in anywhere you want.

This is the code:

< ?php
preg_match('#(.*)#',file_get_contents('http://twitter.com/statuses/user_timeline/username.xml?count=1'), $matches);
echo $matches[0]
?>

Of course, remember to change username for your own.