Archive for April, 2011

Think different campaign

This advertising campaign from Apple is always actual, and is still inspiring nowadays.
Think different!

Think different

No Comments

My first Google Chrome experiment – download YouTube videos with YouVid

I have just released my first Google Chrome extension, it’s called YouVid. It lets you download .flv files from YouTube, so that you can save and archive/convert those funny/interesting videos.
Further info here.

No Comments

Invite all Facebook friends bookmarklet

That was easy: after the JS code to invite all your friends to a Facebook event, page, group, etc. I have created a convenient bookmarklet to use it.

Just drag&drop this link to your browser bookmarks bar, and click it every time you need:

FB invite all friends

DISCLAIMER: I DO NOT ASSUME ANY RESPONSIBILITY WHATSOEVER FOR THE USAGE OF THIS CODE; IF YOU GET BANNED BY FACEBOOK, OR ANYTHING ELSE, YOU WILL BE CLAIMED THE SOLE RESPONSIBLE FOR SUCH ACTIONS.

9 Comments

How to invite all your Facebook friends to an event at once (code has changed)

In the last few days, Facebook has changed the “invite your friends” functionality, which powers suggestions and invitations to events, groups, pages, etc.

The result is that old Javascript codes that allowed you to invite ALL your Facebook friends to an event in a snap (such as this) are now broken.

To select all your new friends in the new interface you can use this code, tested under Safari 5.0.4, Chrome 10 and Firefox 4 (should work also under IE).
UPDATE: There are many reports of it working on newer versions in the comments below.

javascript:var x=document.getElementsByTagName("input");for(var i=0;i<x.length;i++) {if (x[i].type == 'checkbox') {x[i].click();}}; alert('Done, all your friends have been selected');

In order to use this code, copy and paste it in the address bar of your browser after you have opened the “invite your friends” dialog and AFTER YOU HAVE SCROLLED DOWN THE LIST.

Important note: as said, you HAVE to scroll down your friends list in order to invite all your friends: in fact the new interface only loads few friends via AJAX at a given time.

Facebook should definitely be a little more open regarding MY data, loaded on their systems… and this script opens it just a bit more.

DISCLAIMER: I DO NOT ASSUME ANY RESPONSIBILITY WHATSOEVER FOR THE USAGE OF THIS CODE; IF YOU GET BANNED BY FACEBOOK, OR ANYTHING ELSE, YOU WILL BE CLAIMED THE SOLE RESPONSIBLE FOR SUCH ACTIONS.

632 Comments