I´ve already explained how to use “Heroku” in my Article “Heroku – Gratis SSL für Facebook Apps“, but Heroku offers a lot more with the Add-Ons. For example, “PostgreSQL” for – surprise, surprise – PostgreSQL databases. A wonderful alternative to MySQL, to store User data in a Facebook App (for example). Here´s a mini-tutorial:
Andreas Teufel
Robocopy – Backup in Windows
Searching for a Backup-Solution? “Robocopy” is all you need, at least if you are a Windows User. Since Windows Vista it´s already included and there is even a GUI (Graphical User Interface) called “Robocopy GUI“. For the daily/weekly Backup it´s easier to create a Batch file that you can call from the Desktop whenever you feel like it.
QNAP NAS – USB Webcam with Motion Detection
A NAS is not only good for storing data and media, you can also use consumer-webcams per USB. And that´s all you need for video monitoring with motion detection. The tutorial is based on the QNAP TS-212 (the best there is), but it should be the same for all QNAP devices. In fact, it should work on pretty much every linux distribution.
Heroku – Free SSL for Facebook Apps
For Facebook Canvas Apps and Page/Tab Apps, you need a server with SSL. You can either buy a server with a certificate, or you can use the “Heroku Cloud Application Platform“. Up to 5MB space are for free, should be enough for smaller Apps. Just be warned, Heroku is pretty slow, it can take a few seconds until the Page responds.
Facebook API – User Events
This a follow-up of my recent article about reading the guest list of a Facebook Event created through Facebook Pages. If you want to get the Events (and the attendees) of a User, it´s a bit more work. You need to authorize the User with the permission “user_events”, and you will still just get the Events the user is attending too with the “/events” connection. I spare you the details of creating an app, this is just the authorization code for the PHP SDK:
$facebook->getLoginUrl(array('scope' => 'user_events'))
Facebook API – Guest List of Facebook Events
There is no easy and integrated way to get the guest list of a Facebook Event anymore. You can view the list of “attendees”, but you just get a small box with no possibility to export it without additional tools. Especially with hundreds of people attending, the list that Facebook offers does not help you at all to get an overview:
Facebook API – Albums Of Facebook Pages
In this article, i will show you how to get Albums/Photos with the Graph API. For User Albums you will need an Access Token, for Pages it´s pretty easy and you don´t even need an App.