Submitted by timmillwood on Fri, 02/18/2011 - 08:29
The world of blogging hasn't really changed over the last few years, and web users are blogging just as much as they always have. One thing that seems to have changed is comments.
A few years ago Disqus was started, this spawned a little change in commenting. Disqus centralised all comments off the blog and allowed visitors to log in to comment using services such as facebook and twitter.
Submitted by timmillwood on Tue, 09/21/2010 - 12:46
Submitted by timmillwood on Tue, 08/17/2010 - 22:48
Back in April I started work on a small site I called Drippic.
Submitted by timmillwood on Thu, 04/15/2010 - 14:48
Yesterday Twitter announced their Anywhere API (http://dev.twitter.com/anywhere/begin). So I quickly added it to a custom module.
Here's how...
function module_name_init(){
drupal_set_html_head('');
$js = "twttr.anywhere(function(twitter) {";
$js .= "twitter.hovercards();";
$js .= "twitter.linkifyUsers();";
$js .= "});";
drupal_add_js($js, 'inline');
}
Submitted by timmillwood on Mon, 04/12/2010 - 18:13
Last week I had the crazy idea that I could build my own version of Twitpic with Drupal. It turns out that I can.
In under 300 lines of code I wrote the Drippic module that allows posting of photos from Tweetie for iPhone.
Here’s what is does:-
Allow posting of photos (and a tweet) via a post request.
Photos saved as an ImageField and tweets saved as the title of a node.
Allow commenting on photos, posting the comment back to Twitter.
User generated, and verified with Twitter when posting a photo or comment.
Short URLs created using the Shorten module.
Submitted by timmillwood on Sun, 07/13/2008 - 22:55
I was bored for a couple of hours this weekend and started to wonder if a microblogging site in Drupal.
There are now quite a few microblogging sites online such as Twitter, Jaiku, Pownce and Plurk. I am a heavy user of Twitter as you can see from the right hand column of this site, but with all the network problems and downtime it is having can I make the follow up.
Can I do to Twitter what Facebook did to Myspace?
Submitted by timmillwood on Wed, 07/02/2008 - 18:19
Today I have been playing with the Twitter API. If you see all the images in the block on the right, that is all my Twitter friends feed live via the API. If you can't see the images in the block on the right, it means either Twitter is down or I have made to many request this hour.