Monday, 26 April 2010

Facebook status updates to Blogger posts

So after hunting for an online application that would update Blogger with Facebook (found lots for the other way round) I decided to write this little PHP script. It works well, except...
  • While testing I discovered there was a limit to the number of emails that can be sent to the secret email address for Blogger
  • It could do with checking the bounced emails to see which Facebook status updates haven't gone through
You'll need to download simplepie and phpmailer if they aren't already on your host.
You'll also need to set up a cron job to schedule the running of the script. Most hosts have a cpanel with a cron option. Once an hour would be "0 * * * *" and the command would be "/usr/local/bin/php -q /home/yourdirectory/public_html/atomtoemail.php"

I would also highly recommend using a separate file (dbu.php in this case) that contains your email and password - this avoids showing the world your password if the script fails.

You could use a MySQL table for storing the id's but as its only going to be a small file I've kept the flat file.

You can find the Facebook status feed in your browser - look for the RSS icon in the address bar, if there isn't one, then your status updates aren't public.

In theory, this will work with any RSS/ATOM feed.

Heres the code

atomtoemail.php

<?php

/*
    Original flatfile DB Author: Michael Shipley (http://www.michaelpshipley.com/)

     Amended by Russell England to email new items (http://www.russellengland.com)
*/

// Location of simplepie - I've renamed the extension from .inc to .php
// Download from http://www.simplepie.org
require_once( '/home/yourdirectory/public_html/includes/simplepie.php');

// db holder
$savedItems = array();

// db file name
$savedItemsFilename = 'saveditems.php';

// max days to keep items in db
$numberOfDays = 14;

$numberOfDaysInSeconds = ($numberOfDays*24*60*60);
$expireDate = time() - $numberOfDaysInSeconds;

// Separate urls with commas for multiple feeds
$urls = array('http://www.facebook.com/feeds/page.php?format=atom10&id=youratomfeedid');
$feed = new SimplePie();
$feed->set_feed_url($urls);
$feed->set_cache_duration(100);
$feed->init();



// Set up emailer for Google mail
// Might already be in your includes directory or download from http://phpmailer.worxware.com/
include "/home/yourdirectory/public_html/includes/phpmailer/class.phpmailer.php"; 




// dbu.php includes the passwords, usernames and emails
include "dbu.php";
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "ssl://smtp.gmail.com"; // specify main and backup server
$mail->Port = 465; // set the port to use
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = $mailUsername; // your SMTP username or your gmail username
$mail->Password = $mailPassword; // your SMTP password or your gmail password
$mail->From = $mailFrom;
$mail->FromName = $mailFromName; // Name to indicate where the email came from when the recepient received
$mail->AddAddress($bloggersecretemail,"blogger");
$mail->IsHTML(true); // send as HTML


/*
        load flat file db into array
*/
if(file_exists($savedItemsFilename))
{
        $savedItems = unserialize(file_get_contents($savedItemsFilename));
        if(!$savedItems)
        {
                $savedItems = array();
        }
}


/*
        Loop through items to find new ones and insert them into db
*/
foreach($feed->get_items() as $item)
{

        // if item is too old dont even look at it
        if($item->get_date('U') < $expireDate)
                continue;


        // make id
        $id = md5($item->get_id());


        // if item is already in db, skip it
        if(isset($savedItems[$id]))
        {
                continue;
        }


        // Found new item, display on the page for reference and send it off in an email
        echo "<h2>" . $item->get_title() . "</h2>";
        echo "<p>" . $item->get_description() . "</p>";

        $mail->Subject = $item->get_title() ;
        $mail->Body = $item->get_description(); //HTML Body
        $mail->AltBody = $item->get_content(); //Text Body
        if(!$mail->Send())
        {
            echo "Mailer Error: " . $mail->ErrorInfo . "</br>";
        }
        else
        {
            echo "Message has been sent</br>";
        }
           
        // found new item, add it to db
        $i = array();
        $i['date'] = $item->get_date('U');
        $savedItems[$id] = $i;
}


/*
        remove expired items from db
*/
$keys = array_keys($savedItems);
foreach($keys as $key)
{
        if($savedItems[$key]['date'] < $expireDate)
        {
                unset($savedItems[$key]);
        }
}


/*
        sort items in reverse chronological order
*/
function customSort($a,$b)
{
        return $a['date'] <= $b['date'];
}
uasort($savedItems,'customSort');



/*
        save db
*/
if(!file_put_contents($savedItemsFilename,serialize($savedItems)))
{
        echo ("<strong>Error: Can't save items.</strong><br>");
}



?>

Saturday, 24 April 2010

Wolfram Alpha

Rather than googling for the answer, this website will try to work out the answer for you - try it and see


what is the meaning of life - Wolfram|Alpha
www.wolframalpha.com
Computational Knowledge Engine

ZBrush

Some software is so gobsmackingly amazing its needs a mention - zbrush is used to design visuals for computer games and cgi


Pixologic :: ZBrush :: Gallery
www.pixologic.com
Zbrush gallery that contains examples of artist's artwork and sculpts created using ZBrush.

Got a Giraffe?

Got a Giraffe?


One Million Giraffes
www.onemilliongiraffes.com
This is an online project where the goal is to collect one million hand made giraffes by 2011. Join in on the fun!

AirPod

AirPod - 2 minutes to fill up, 125 mile range, 30 mph, 1p per 2 miles, eco friendly


OneFlowAIR, MiniFlowAIR, CityFlowAIR, MultiFlowAIR, MDI Enterprises S.A. air compressed cars - susta
www.mdi.lu
MDI Enterprises S.A. air compressed cars - sustainable and environmentally friendly cars.

Europes leading eco-centre

Europes leading eco-centre, well worth a visit for adults and kids, its near Machynlleth in Wales.


Centre for Alternative Technology Home Page
www.cat.org.uk
CAT aims to 'inspire, inform, and enable' people to live more sustainably. A solutions driven organisation, offering practical solutions to environmental problems, our key areas of work are renewable energy, environmental building, energy efficiency, organic growing and alternative sewage systems. W...

Augmented reality?!?

Augmented reality?!? Point your latest GPS camera smartphone at a building or
landmark or inside a museum and it overlays text and images telling you
everything about what you are looking at... I can't keep up... Layar is
for Google Android phones, there are apps for the iphone and Nokia
Symbian too


Augmented Reality Browser: Layar
layar.eu
It’s official and we’re so proud of it. JK Shin, president and head of Samsung Electronics’ Mobile Communication Business just introduced the Galaxy S and Layar is on it. The Samsung Galaxy S will be available in Europe, North America, Latin America, Australia, and Asia soon.Read more…

Great idea if you haven't got a printer and need to send letters

Great idea if you haven't got a printer or need to send lots of letters


viapost - ViaPost: Save money on post by sending physical post direct from your computer
www.viapost.com
ViaPost allows you to send physical post direct from your PC using a free, downloadable printer driver. We print at our regional print hubs, where we barcode and sort the mail automatically, ready for the Royal Mail to deliver the final few miles.

Really cool software for data scraping

Really cool software for data scraping


Pipes: Rewire the web
pipes.yahoo.com

Happy Pills... ;)

Happy Pills... ;)


itsy bitsy pills - p2 by *nocturnalMoTH on deviantART
nocturnalmoth.deviantart.com
Art - community of artists and those devoted to art. Digital art, skin art, themes, wallpaper art, traditional art, photography, poetry / prose. Art prints.

In case you missed it the first time round

In case you missed it the first time round


Sock and Awe!
www.sockandawe.com
Throw the shoe at George Bush - see how many times you can hit him!

Online photo editing

Online photo editing


Photo editor online pixlr free edit image direct in your browser
www.pixlr.com

Amazing photos from the Hubble telescope

Amazing photos from the Hubble telescope


HubbleSite - Picture Album: Star-Birth Clouds in M16: Stellar "Eggs" Emerge from Molecular Cloud
hubblesite.org

If you like cats, you'll love this

If you like cats, you'll love this


The Official Simon's Cat Website | Films
www.simonscat.com
The latest films from Simon's Cat.

Wanna be in the movies? http://www.yoostar.com/howItWorks.html

Wanna be in the movies? http://www.yoostar.com/howItWorks.html


Yoostar. Be Scene™
www.yoostar.com
Shoot. Star. Share. Yoostar™ makes YOO the star of famous movie and TV scenes and lets you share your performances with the world. The Yoostar system includes a studio-grade web cam, portable green screen and stand, remote control, 12 movie scenes and 2 bonus scenes. Purchase and download a wide var...

Woohoo!! Microsoft (and Yahoo) have finally allowed Google to access their hotmail accounts

Woohoo!! Microsoft (and Yahoo) have finally allowed Google to access their hotmail accounts


Michael on Tech: Check Hotmail in Gmail
www.michaelontech.com
A few people who have migrated from Gmail to hotmail have wondered if it was possible to have their old hotmail email's forwarded to their gmail account. Unfortunately hotmail can only forward email to ...

Great ONLINE accounting software for small businesses - so good, they turned down a £million from Sage

Great ONLINE accounting software for small businesses - so good, they turned down a £million from Sage


Small Business Accounting Software - Mac and Windows
www.kashflow.co.uk
Bookeeping is easy with KashFlow, the accounting software of choice for small business. Accountancy made simple for Mac & Windows. 2 Month FREE TRIAL available now

If you've got a website and offer advertising, then you can let people know with Google adplanner

If you've got a website and offer advertising, then you can let people know with Google adplanner


DoubleClick Ad Planner | Google
www.google.com
Define your audience with multiple criteria, including keywords they're likely to search for and sites they're likely to visit.

3d camera... I want one...

3d camera... I want one...


FinePix REAL 3D W1 | Fujifilm Global
www.fujifilm.com
Shooting 3D images with an unprecedented "real feel" is simple and automatic with the built-in 3D Auto function of the FinePix REAL 3D W1 digital camera.

Create your own stick man - Windows only :(

Create your own stick man - Windows only :(


XPivot Animation Galaxy
pivotx.co.nr
XPivot is the regeneration of PivotX. Packed with more features than ever, you can expect less bugs, and quicker animation!Enter the galaxy!

Crasher squirrel - very cute!

Crasher squirrel - very cute!


"Crasher Squirrel": How cheeky rodent became star of couple's photos | Mail Online
www.dailymail.co.uk
In the isolated beauty of the Canadian lakes, this couple thought it was safe to take a holiday snap without a stranger wandering into shot.

Ubuntu One - sychronised online storage 2gb free - a bit like MobileMe

Ubuntu One - sychronised online storage 2gb free - a bit like MobileMe


Ubuntu One : Home
one.ubuntu.com
Ubuntu One is your personal cloud. You can use it to back up, store, sync and share your data with other Ubuntu One users.

Edit PDFs with OpenOffice

Edit PDFs with OpenOffice


Sun PDF Import Extension | OpenOffice.org repository for Extensions
extensions.services.openoffice.org
The PDF Import Extension allows you to import and modify PDF documents. Best results with 100% layout accuracy can be achieved with the "PDF/ODF hybrid file" format, which this extension also enables. A hybrid PDF/ODF file is a PDF file that contains an embedded ODF source file. ...

Very simple idea, get a unique code, stick it on your gadgets

Very simple idea, get a unique code, stick it on your gadgets


www.sendmehome.com
www.sendmehome.com

Cool gadget - wireless SD card for digital cameras and camcorders - no more faffing with usb cables

Cool gadget - wireless SD card for digital cameras and camcorders - no more faffing with usb cables


Eye-Fi memory cards: wireless photo & video uploads straight from your camera to your computer & the
www.eye.fi
Eye-Fi Wireless SD Cards - make your camera wireless. Upload photos and videos wirelessly to your computer and to the web. Works in over 1,000 camera models.

Draw a simple sketch and this software creates a photo for you - coming soon

Draw a simple sketch and this software creates a photo for you - coming soon


PhotoSketch
cg.cs.tsinghua.edu.cn
1TNList, Department of Computer Science and Technology, Tsinghua University 2National University of Singapore3The Interdisciplinary Center

Face recognition in Picasa 3.5 is ace (instructions for installing on Ubuntu http://www.omgubuntu.co.uk/2009/09/picasa-35-linux-install.html)

Face recognition in Picasa 3.5 is ace (instructions for installing on Ubuntu http://www.omgubuntu.co.uk/2009/09/picasa-35-linux-install.html
)


Picasa 3: Free download from Google
picasa.google.com
Picasa is a software download from Google that helps you organize, edit, and share your photos. It's free, and easy to use.

GigapanEpic - A really simple gadget that uses your digital camera to takehundreds of photos, then stitches them with some software to produceHUGE panoramic photos

Gigapan
Epic - A really simple gadget that uses your digital camera to take
hundreds of photos, then stitches them with some software to produce
HUGE panoramic photos


gigapan: search
www.gigapan.org
Government Plaza on April First Author: Tom Nelson (tnp651) Tags: urban, skyline, minneapolis, minnesota, april, fools Size: 0.84 gigapixels Added: April 1, 2010 Total Views: 6540 View in Google Earth 4.2+

Interesting,if you buy something over the internet, due to the UK Distance Sellingregulations you are entitled to return the goods for a full refundwithin seven working days of receipt - for whatever reason, includingif you just don't like the item

Interesting,
if you buy something over the internet, due to the UK Distance Selling
regulations you are entitled to return the goods for a full refund
within seven working days of receipt - for whatever reason, including
if you just don't like the item


BBC News - Thousands of shopping websites 'could be breaking law'
news.bbc.co.uk
Which? is warning firms to obey the law, or risk being reported to the Office of Fair Trading (OFT) and face the threat of prosecution.

Solve any of these mathmatical problems and win a $million

Solve any of these mathmatical problems and win a $million


Millennium Prize Problems
www.claymath.org
Seven one million dollar prizes to recognize the eventual solution of seven classic mathematical problems that have resisted solution. Announced May 24, 2004

Don't pay anyone for getting a job, its usually a scam...

Don't pay anyone for getting a job, its usually a scam...


BBC News - Net scams profit from desperate jobseekers
news.bbc.co.uk
The methods to defraud people online have been evolving since e-mail became the 21st Century's preferred method of communication.

Free remote support software via Windoze, Linux (Ubuntu), Mac or iPhone

Free remote support software via Windoze, Linux (Ubuntu), Mac or iPhone


TeamViewer - Free Remote Access and Remote Desktop Sharing over the Internet
www.teamviewer.com
Access any remote computer via Internet just like sitting in front of it - even through firewalls.

Useful map if you live in Worcestershire - maps of roadworks and accident spots

Useful map if you live in Worcestershire - maps of roadworks and accident spots


gis.worcestershire.gov.uk
gis.worcestershire.gov.uk

Great concept

Great concept


Kiva - Loans that change lives
www.kiva.org
Make a loan to an entrepreneur across the globe for as little as $25. Kiva is the world's first online lending platform connecting online lenders to entrepreneurs across the globe.

Help map the galaxy

Help map the galaxy


www.galaxyzoo.org
www.galaxyzoo.org

Hate to admit it but... This is a cool bit of software from Microsoft - shame it only works on Windows

Hate to admit it but... This is a cool bit of software from Microsoft - shame it only works on Windows


Microsoft Research Image Composite Editor (ICE)
research.microsoft.com
Microsoft Image Composite Editor is an advanced panoramic image stitcher. Given a set of overlapping photographs of a scene shot from a single camera location, the application creates a high-resolution panorama that seamlessly combines the original images. ...

Neat piece of software for Nokias with GPS - Keeps track of your walking/running/cycling workouts

Neat piece of software for Nokias with GPS - Keeps track of your walking/running/cycling workouts


Nokia Sports Tracker Beta
sportstracker.nokia.com
Nokia Sports Tracker is a GPS-based activity tracker that runs on compatible Nokia mobile devices. Information such as speed, distance, and time are automatically stored in your training diary. On this site you can store and share your workouts and routes.

Web cam for your mobile phone

Web cam for your mobile phone


Qik | Record and share video live from your mobile phone
qik.com
Qik, the leading mobile video sharing service, lets you record and share the experience with your friends, family and your favorite social networks (Facebook, Twitter, YouTube) - right from your mobile phone.

Amazing gadget that turns your mobile phone into a cinema - who needs LCD?!?

Amazing gadget that turns your mobile phone into a cinema - who needs LCD?!?


Optoma DLP Pico Pocket Projector PK102
www.optoma.co.uk
Built-in media player and 4GB of memory: Business presentations from PowerPoint ®, photo slide shows & watching movies and video clips

Love music? You'll love this

Love music? You'll love this


Last.fm - Listen to free music with internet radio and the largest music catalogue online
www.last.fm
The world's largest online music catalogue, powered by your scrobbles. Free internet radio, videos, photos, stats, charts, biographies and concerts.

Nerdalert: I was corrected about my pronunciation of Linux the other day...So, being a fellow Nerd, I looked it up and he's wrong, so knickers!

Nerd
alert: I was corrected about my pronunciation of Linux the other day...
So, being a fellow Nerd, I looked it up and he's wrong, so knickers!


How to Pronounce Linux
mostlylinux.ca
Ever wonder how to pronounce Linux? Ever wonder why so many people pronounce it differently? Well, you can stop wondering.

How cool! Upload a bunch of pictures, choose some music and it creates a video - great for marketing your business or products

How cool! Upload a bunch of pictures, choose some music and it creates a video - great for marketing your business or products


animoto - the end of slideshows
animoto.com
Animoto videos - music videos for your images, video clips and pictures. With high production value motion graphics synchronized to every beat of your music, Animoto videos blow the doors off traditional slideshows; it is time to move past the slideshow and embrace Animoto -free, easy, beautiful.

Awww... Used to love this game, addictive and frustrating! All the way from 1991

Awww... Used to love this game, addictive and frustrating! All the way from 1991


DHTML Lemmings! - by crisp
www.elizium.nu
DHTML Lemmings by crisp

Mobbler - Last.fm radio for your Nokia mobile

Mobbler - Last.fm radio for your Nokia mobile


mobbler - Project Hosting on Google Code
code.google.com
Mobbler is a Last.fm radio player and scrobbler for Symbian smartphones. It allows you to listen to your Last.fm radio stations and to scrobble tracks played using the standard music player.

Useful tips for Facebook privacy

Useful tips for Facebook privacy


BBC NEWS | Programmes | Click | Who's peeking at your Facebook?
news.bbc.co.uk

Rather than googling for the answer, this website will try to work out the answer for you - try it and see

Rather than googling for the answer, this website will try to work out the answer for you - try it and see


what is the meaning of life - Wolfram|Alpha
www.wolframalpha.com
Computational Knowledge Engine

Some software is so gobsmackingly amazing its needs a mention - zbrush is used to design visuals for computer games and cgi

Some software is so gobsmackingly amazing its needs a mention - zbrush is used to design visuals for computer games and cgi


Pixologic :: ZBrush :: Gallery
www.pixologic.com
Zbrush gallery that contains examples of artist's artwork and sculpts created using ZBrush.

Got a Giraffe?

Got a Giraffe?


One Million Giraffes
www.onemilliongiraffes.com
This is an online project where the goal is to collect one million hand made giraffes by 2011. Join in on the fun!

Amazing Asimo - a running robot

Amazing Asimo - a running robot


new version amazing robot asimo
www.youtube.com
www.makerwiki.com www.sinlospies.com

"Lloyds Is Pants" not acceptable as a password apparently!! Nor is "Barclays is Better"....

"Lloyds Is Pants" not acceptable as a password apparently!! Nor is "Barclays is Better"....


BBC NEWS | UK | England | Shropshire | Man's 'pants' password is changed
news.bbc.co.uk
A man who chose "Lloyds is pants" as his telephone banking password said he found it had been changed by a member of staff to "no it's not".

Online MindMaps

Online MindMaps


Online Mind Mapping and Brainstorming - MindMeister
www.mindmeister.com
Online Mind Mapping: MindMeister - free web-based collaborative mind mapping tool for brainstorming and project management