So I dug a little what kind of feed the Blogspot Atom feed really is. I found out its pretty simple one, if you just wanna regex through it fast and simple. So here is how it works:
1) Grab the feed with LWP::Simple
2) Run two regexes globally:
$feed =~ m%<published>(\d{4,4}\-\d{2,2}\-\d{2,2}).+?</published><updated>.+?</updated>%g;
$feed =~ m%<title type='text'>(.+?)</title><summary type='text'>(.+?)</summary><link rel='alternate' type='text/html' href='(.+?)' title='.+?'/><link rel='replies' type='text/html' href='.+?postID=([0-9]+)' title='(\d+) Comments'/>%g;
3) ???
4) Profit!!
Not sure if this is any help to anyone, but works great for me! KISSes to everyone!