30 April 2010
There has been a lot of press regarding how many Drupal jobs are currently available. Many people have been commenting on the lack of experienced Drupal developers. Well, I am here to help. As many people maybe aware I work full time for Mark Boulton Design, as a key member
comments
15 April 2010
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'); } All you need to do is change 'module_name' to
comments
12 April 2010
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
comments