How to export twitter favorites to a csv file

If you have numerous twitter favorites like me, then here is a handy script to export all your twitter favorites to a csv file. Handy if you want to import them to delicious or backup your favorites. Feel free to improvise upon it.

Note: This approach works only if your tweets are set to be public

Posted
 

How to fetch all the meta tags from a website and export to excel

Wrote this little ruby script to fetch all the meta tags from one of our clients' website and export it to excel. It could use some refactoring, but just wanted to get this done quickly. Feel free to modify and use.

Posted
 

Bulk add google calendar events using GoogleCL

Just wrote a quick ruby script a create a Birthday calendar for a list of contacts.

Note: To see your Google contacts' birthdays in Google Calendar, you can just use the "Contacts' birthdays and events" calendar gadget.

For this, I want to automate creation of google calendar events, based on information available in a csv file (row - name, birthday).

The above script reads a csv file and creates events using googlecl. For this to work, you need to have googlecl installed. We create events using the same way that we create events using Google Calendar 'Quick Add'.

Google_calendar
 

Posted