Jason Fried of 37 Signals talking about marketing by sharing.
Qualcomm has a competition using its SDK for augmented reality. With prizes on offer for the top AR apps.
AR apps allow a layer of information to be added on top of the real world when looked through a mobile phone for example. So maps and information points as well as games taking place in the real world are popular.
To learn more head over to the competition website.
This video is a great introduction to using social media to promote your blog.
After looking everywhere including jqueryetc for a way to do an image swap that fades, but using the background images, I figured out a rough way to do it.
This is not a fully tested and final way of doing background image fading sequence but thought I would put it out as a potential way to do it. Hopefully it helps somebody looking for it.
<!DOCTYPE html>
<html>
<head>
<style>
#test1, #test2, #test3 { height:200px; background-position:center; background-repeat:no-repeat;width:100%; position:absolute; }
#test1 {
background-image:url(‘img/img1.jpg’);
}
#test2 {
background-image:url(‘img/img2.jpg’);
display:none;
}
#test3 {
background-image:url(‘img/img3.jpg’);
display:none;
}
</style>
<script src=”http://code.jquery.com/jquery-latest.min.js”></script>
</head>
<body>
<script>
var $i = 1;
var auto_refresh = setInterval(
function ()
{
if($i==4) {
$(“#test3″).fadeOut(1000);
$(“#test2″).fadeOut(1000);
$i=1;
} else {
$(“#test”+$i).fadeIn(1000);
$i=$i+1;
}
}, 3000);
</script>
<div id=”test1″> </div>
<div id=”test2″> </div>
<div id=”test3″> </div>
</body>
</html>
The FWA website featured the new website for Doritos. Rather than just being an ordianry snack company Doritos are looking to position themselves as an entertainment brand. Check out the new website at:
Twitter’s EarlyBird deals. Watch the video about how Twitter is looking at making it’s savings and deal’s offering come alive.
If you are moving your website to a new host, but wondering about your SEO, then this video will give you an answer.
So it seems that there is nothing to worry about. As long as you are moving to a good host then the fact that you are changing your IP address should not make much difference for your ranking in search engines. If you are moving to a slower host however then that could make a difference.
The way to move hosts is the leave the old host up, while you change the dns to the new host that way the is limited interuption to the users.
I have just updated our pianos and keyboards website. It has a new theme and new things that can be done including social marketing buttons and more.
Have a look and let me know your thoughts.
According to techcrunch youtube has added a vuvuzela button to the video streaming site!
If you want to have a play around with the button then visit the post below and follow the links, else just look around on youtube at the moment and find one yourselft to make the bzzzz sound yourself.
http://techcrunch.com/2010/06/23/bzzzzzz-youtube-gets-a-vuvuzela-button-seriously/
PlayStation show off their new controller, PlayStation Move. It kind of is a clone of the Wii Controller but with a faster response times so we will have to see if its really that different when its released.


