Most awesome Iphone "app" ?

Posted January 15th 2010 by Dan

Want some electronic fjord music?

Posted January 14th 2010 by Dan

Innotune

It’s quite simple. Electronic music needs more juice. More stories. More entertainment. More of that viking touch. That’s what you’ll find at Innotune.net.

Innotune is a podcast and blog collective playing and writing about electronic music from all over the globe. It’s a team of well known Scandinavian djs and producers as well as some you won’t be able to miss out on in the future. And they are all on a mission: Bringing you the best up to date electronic music, the best stories from the industry and breaking news.

Here’s the guys that has got you covered from all corners of EDM:

Marcus Schössow – EDM’s new wonderboy and a social media viking from Sweden.

Ville Lope – Aspiring prog trance producer and DJ from Finland with lots of label connections.

Thomas Sagstad – Global Underground’s new favorite pet from Norway.

Håkon Lofthus – Also known as Hawk. Melodic EDM junkie and online marketing professional from Norway. The website editor.

Øyvind Strand Endal – Funky house and chillout addict and
professional journalist from Norway. The podcast editor.

The podcast has also had super producers Way Out West and Toolroom honcho Mark Knight stopping by, and more top notch guest DJ’s are scheduled.

So subscribe to the monthly podcast and visit innotune.net to get your injection of EDM news, reviews, tips & tricks and more!

It’s electronic fjord music!

Netsky - Come Back Home (VIP Mix)

Posted December 13th 2009 by Dan

Tags: music , dnb

Unit Zero - Two spirits

Posted December 13th 2009 by Dan

Tags: music , dnb , liquid funk

Memro - Trick of the Tail

Posted December 13th 2009 by Dan

Found out that i had to keep track of all the songs mr M gave me, and what better way than sharing it with all of you at the same time.

Tags: music , dnb

For all the Mac users out there!

Posted December 13th 2009 by Dan

Mac

Tags: mac , fun

Gravatar for phpBB3

Posted December 12th 2009 by Dan

Forgot the PM's, so i've updated the article!

Since there are so many web apps that use Gravatars, i.e. wordpress, I thought why not use it in forums too.
So in this tutorial I will show you how to mod phpBB3 so you can let your users choose if they want to upload an avatar to the forum or just use Gravatar if they have it.

In this tutorial we'll be editing these files:

  • includes/functions.php
  • viewtopic.php
  • memberlist.php
  • includes/ucp/ucp_pm_viewmessage.php


Open
includes/functions.php

Find
?>

Before, add
function get_gravatar($mail){
     
     global $user, $config, $phpbb_root_path, $phpEx;
     
     return '<img src="http://www.gravatar.com/avatar.php?gravatar_id='.md5(strtolower($mail)).'&rating=PG&size=90&default=ADD-YOUR-DEFAULT-PICTURE-URL-HERE&size=90" alt="' . ((!empty($user->lang[$alt])) ? $user->lang[$alt] : $alt) . '"';
     
}


Open
viewtopic.php

Find
'avatar' => ($user->optionget('viewavatars')) ? get_user_avatar($row['user_avatar'], $row['user_avatar_type'], $row['user_avatar_width'], $row['user_avatar_height']) : '',

Replace with
'avatar' => !empty($row['user_avatar']) ? get_user_avatar($row['user_avatar'], $row['user_avatar_type'], $row['user_avatar_width'], $row['user_avatar_height']) : get_gravatar($row['user_email']),

Open
memberlist.php

Find
$poster_avatar = get_user_avatar($member['user_avatar'], $member['user_avatar_type'], $member['user_avatar_width'], $member['user_avatar_height']);

Replace with
$poster_avatar = !empty($member['user_avatar']) ? get_user_avatar($member['user_avatar'], $member['user_avatar_type'], $member['user_avatar_width'], $member['user_avatar_height']) : get_gravatar($member['user_email']);

Open
includes/ucp/ucp_pm_viewmessage.php

Find
'AUTHOR_AVATAR'=>
(isset($user_info['avatar'])) ? $user_info['avatar'] : '',


Replace with
'AUTHOR_AVATAR'=>
(!empty($user_info['avatar'])) ? $user_info['avatar'] :
get_gravatar($user_info['user_email']),



Save and close all files!

For the users Gravatar to be shown they must delete their avatar in the UCP, if they have choosen or uploaded one.

Tags: gravatar , phpbb3 , forum