Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Posted in Uncategorized | 1 Comment

5 Ways Download Facebook Videos

Lots of people upload videos on Facebook daily but you can only play those videos if you have flash player installed, you’re not allowed to download them. Sometimes, you probably wish to save some of these videos and watch later but there’s no download option on Facebok. There are several ways to download Facebook videos which ranges from using different browser addons to different online services that allows you to freely download Facebook videos. Out of the different methods, I came up with five which I consider the best.


1. Browser Addons

There are lots of browser addons for downloading facebook videos but some of them are out of date. The most popular one last year which is Facebook Video no longer works but I ran a search on Firefox Addon site and came up with two addons which I personally tested out of the many I saw.

i. NetVideoHunter Addon For Firefox

ii Download Flash and Video Browser Addon

After installing any or both of these addons, restart your browser, go to the video page and play. The addon icon is highlighted in blue and you can click on it to download the video. Both of them work in a similar manner.


These addons also allow you to download videos from YouTube, Dailymotion, Google Videos, Facebook, Metacafe, MySpace Video, Break.com, Blip.tv, MyVideo.de, Spike, vimeo.com, YourFileHost, zippyvideos.com, yikers.com, revver.com, kontraband.com, badjojo.com, collegehumor.com, blastro.com, dachix.com, redtube.com and all the other popular of flash videos sites.

2. GreaseMonkey Script

Whether you know what GreaseMonkey is or not, installing it on your browser lets you customize the way web pages behave with javascript instead of addons. With just a snippet of javascript, it can do exactly what a browser addon does.

After installing greasemonkey, install this user script:

Facebook Video Downloader (HD Support)

Simply go to the video page and refresh, you should now have a download link as shown below:

3. DownFacebook – an Online Service

DownFacebook is a website that allows you to download facebook videos freely by just writing the video url in the provided space. It automatically grabs the video gives the the download link. There’s absolutely no need to download or install anything and it’s perhaps the easiest way to get it done real fast.

4. Download Managers

Certain download managers comes with plugins that allows you to download flash videos from any site including youtube and facebook. Orbit downloader comes with a video grabber which is installed in your browser and you can just right click on the video while playing and see different download options. Speedbit Video downloader too performs the same function and you’re free to try out any of the two below:

i. Speedbit Video Downloader

ii. Orbit Downloader

5. Facebook Mobile

Facebook mobile users are presently not allowed to stream videos on facebook. Once you click on the video, whatcomes up is a download dialogue, at least, that’s what i always see on my Opera Mini browser each time i try to watch a video on facebook. If you’re on PC, just log on to m.facebook.com, facebook’s mobile version, and visit the post containing the video. Clicking on it should download it unless you have a browser plugin like Quicktime Player that plays online MP4 videos.

These are the easiest ways to download Facebook videos for now and I personally tried each of these on after the other. If you think this post is cool, sharing it on facebook isn’t such a bad idea.
:) Enjoy!

Posted in Facebook, Social Networking, Tips and Tricks | Leave a comment

Adding Link Tree / Breadcrumb Navigation Above Blog Posts

Just to increase pageviews, a blog must be designed in such a way to keep visitors busy, letting them explore parts of your site that might remain undiscovered without a design based on easy navigation. Just like the related post widget and numbered page navigation, adding breadcrumb navigation ( also called link tree) is just another way to keep your visitors engaged and stay longer on your blog. In case you don’t know what link tree means, it’s those links that shows where you are in a site and in blogger, it trails from the homepage down to label page and lastly, the post page you’re presently viewing. You can see it right at the top of this blog post and if you can’t, below is the screenshot of just how it should look.


To add this to your blog, follow these simpple steps:

1. Log in to your blogger account and click on Design ( hey, I’m still using the old interface )

2. Click on Edit HTML and check Expand Widget Template box

3. Press CTRL and F on your keyboard and search for this code:

<b:include data=’top’ name=’status-message’/>

4. Right below that, paste this:

<b:include data=’posts’ name=’breadcrumb’/>

There may be two occurrences of <b:include data=’top’ name=’status-message’> in your template, you should do the same thing if there’s a second one.

5. Now search for this code:

<b:includable id=’main’ var=’top’>

6. Just above it, paste this code:

<b:includable id=’breadcrumb’ var=’posts’>
<b:if cond=’data:blog.homepageUrl == data:blog.url’>
<!– No breadcrumb on home page –>
<b:else/>
<b:if cond=’data:blog.pageType == “item”‘>
<!– breadcrumb for the post page –>
<p class=’breadcrumbs’>
<span class=’post-labels’>
<a expr:href=’data:blog.homepageUrl’ rel=’tag’>Home</a>
<b:loop values=’data:posts’ var=’post’>
<b:if cond=’data:post.labels’>
<b:loop values=’data:post.labels’ var=’label’>
<b:if cond=’data:label.isLast == “true”‘> »
<a expr:href=‘data:label.url’ rel=’tag’><data:label.name/></a>
</b:if>
</b:loop>
<b:else/>
»Unlabelled
</b:if>
» <span><data:post.title/></span>
</b:loop>
</span>
</p>
<b:else/>
<b:if cond=’data:blog.pageType == “archive”‘>
<!– breadcrumb for the label archive page and search pages.. –>
<p class=’breadcrumbs’>
<span class=’post-labels’>
<a expr:href=’data:blog.homepageUrl’>Home</a> » Archives for <data:blog.pageName/>
</span>
</p>
<b:else/>
<b:if cond=’data:blog.pageType == “index”‘>
<p class=’breadcrumbs’>
<span class=’post-labels’>
<b:if cond=’data:blog.pageName == “”‘>
<a expr:href=’data:blog.homepageUrl’>Home</a> » All posts
<b:else/>
<a expr:href=’data:blog.homepageUrl’>Home</a> » Posts filed under <data:blog.pageName/>
</b:if>
</span>
</p>
</b:if>
</b:if>
</b:if>
</b:if>
</b:includable>

7. Now here comes the last part where you have to apply some skinning to the link tree. You can use the default one below or change it if you know a bit of css.

Search for this code:

]]></b:skin>

In the line immediately above it, paste this:

.breadcrumbs {
padding:5px 5px 5px 0px;
margin: 0px 0px 15px 0px;
font-size:90%;
line-height: 1.4em;
border-bottom:3px double #e6e4e3;
font-weight:bold;
}

Now save your template, view a blog post and you should see the breadcrumb navigation links right above your blog posts.

Further Explanation

On step 6, you need to do some editing if you’re using numbered page navigation. It’s not important though but I guess you might not want to see that label page get rather too long with up to 20 posts showing up. I repeat, this is only useful if you’ve done the numbered page navigation tweak.

Simply change ‘data:label.url’ to ‘data:label.url + “?&amp;max-results=5“‘

You should change 5 to the number of posts you set to display on a page.

Posted in Blog Hacks, Blogger, Blogspot | Leave a comment

How To Stop Unwanted Facebook Notifications From Close Friends

It first looked cool and useful when it started out but when it got extremely out of hands, I had to do something. When Facebook introduced smart list, they made it very easy to group your friends according to their importance to you. It also makes it easier to keep track of their facebook activities as you get notified when they post an update or upload a new picture. The downside of the smart list is that you get tons of notifications that’s of no use to you. Even without commenting or liking the post, you get notified about it. Sometimes, you have to scroll through all these unwanted notifications just to get stuffs that are important to you and at other times, what you need just get drowned in the pool of these crazy notifications.

Stopping Notifications From Close Friends

-Log in to your facebook account and on the homepage, check the left column

-Scroll down till you see your lists

-Select Close Friends

-On the next page, check the top right corner and click on notifications


- Just select Off and those crazy, unwanted notifications stop.

How To Stop Getting Notifications From A Certain Friend

There are times when you just want to stop getting notifications from a certain close friend. Let’s assume you have someone as a close friend but updates his/her status with boring stuffs every two seconds, and you want to stop getting notified about it without totally removing the person from close friends list or blocking updates from all close friends, here’s just what to do.

-You need to visit that particular friend’s profile

-At the top right, click on Subscribed


-Select Unsubscribe and you won’t get anymore updates from that particular friend.

If you find this post helpful, it takes just five seconds to share on facebook. Thank you!

Posted in Facebook, Social Networking | 2 Comments

FindTheBest Solves The Internet Problem

If I am planning to spend a few hundred dollars on a tablet, laptop or smartphone, I want to be REALLY sure that’s it’s the best my money can buy. Thus, when I set out to buy one of these electronics, I do my homework with frustrated vigilance.

I consult many of my friends and multiple websites, surf Google’s mess of search results and read tons of consumer reviews. It’s tedious and time consuming.

I call this: The ‘Internet Problem’. And, it’s an issue I constantly face when I endeavor to purchase an expensive gadget.

Recently, however, I found a site that solved my painstaking problem: FindTheBest, an unbiased data-drive comparison engine.

It’s a new tool that helps consumers find products and services based on their preferences, without the wearisome research. I can sort and filter products, and then consult FindTheBest’s ranking system, so I know which products and services are the best for me.

I’ll give you an example:

Recently I shattered my iPhone. I dropped the poor, unprotected, device facedown on a concrete sidewalk. Needless to say, I was in need of a new phone. Since I wasn’t set on getting yet another iPhone, I went to FindTheBest’s smartphone comparison.

I knew I wanted my smartphone to have 4G capabilities, scratch resistant glass (I cannot be trusted), and LED Flash. FindTheBest had a filter for each one of my requirements. Once I filtered down my options, I compared my top three picks side-by-side.

After I narrowed down my options, I consulted their ‘expert blog’ to see what the industry experts had to say about my choices.

I felt comfortable using FindTheBest to make my final decision because they aggregate all the sources I would have had to search individually, in one spot. They compile their data from a variety of sources; government and institutional databases, research from a team of analysts, sophisticated algorithms and user-generated data is all verified before publication.

All in all, I was relieved to eliminate the flipping between multiple webpages to compare specs. It was one, simple search, that helped me pick the best smartphone for me. But more than that, it solved my ‘Internet Problem.”

Posted in Uncategorized | Leave a comment

Using Google Plus Profile For Blogger

You’ve definitely run some google searches and seen some blog author’s google plus profile picture right beside search results, right? In a bid to make this work for my blog, I tried lots of stuffs out of which none of them worked. Just today, I logged in to blogger in draft just to see the upcoming blogger features and saw this option at the top right of the screen asking me to switch my blogger profile to google plus. It sounded good and I continued, reading the benefits and everything about it.

One of the key benefit that made me proceed with the switch was the fact that my google plus profile will be associated with site on search result pages. Also, whenever I comment on my blog or any other blog supporting comments with google account, my google plus profile will be linked instead of that boring blogger profile. It’s a good one coming from google though because I never like blogger profile layout, the color scheme and all.

How Do I Link My Blog To Google Plus

This feature isn’t yet published officially because it’s only still available in Blogger in draft where blogger’s upcoming features are first tested out. To switch your blogger profile to google plus profile and associate it with your blog:

-  You need to log in to draft.blogger.com

- You should see a pop up at the top right corner asking you to make the switch.

- If you can’t find this, then follow this link

- Just follow the next couple of steps and enter your google account password when prompted.

- Mark the check box at the last stage and complete the profile switch.

What Are The Benefits Of Linking Your Google Plus Profile To Blogger?

Switching your blogger profile to google plus has lots of benefits and one of the one I like most is that you have one less online profile to worry about.

-You get access to upcoming Google+ features on Blogger

-Your posts gets highlighted in Google search results for your social connections

-Maintaining one identity instead of duplicate ones

Information on your blogger profile won’t automatically transferred to your google plus profile, you have to select those information you want to display on your new profile including your displayed blogs. Also, this switch will make the blogger widget on your profile display your google plus profile instead and all existing comments made with with blogger profile will automatically redirect to your google plus profile when clicked.

Though it is said that my posts gets highlighted in Google search results for social connections, I haven’t been able to see this since I made google plus my default blogger profile. I made the change just a few hours ago, just hoping it’s really gonna have any effect in search results.

Even if it doesn’t, I still feel convenient with that ugly looking blogger profile gone. :D

Posted in Blogger, Blogging Tips, Blogspot, Google Plus, Social Networking | 3 Comments

Adding A Chat Box / Shout Box To Blogger

Adding a chat box or shout box to your blog is just another way to make your blog more social. It makes you connect with your visitors even more and makes your blog engaging. A simple chatbox might make your blog visitor stay longer than normal. A chatbox / shoutbox can also serve as a guestbook where visitors can leave comments and suggestions easily without the need to create a separate page for that. If you have an entertainment blog, then you definitely must have this. Adding a chatbox to blogger is quite easy and you don’t need to know much HTML, just a little copy and paste procedure and you’re done with it.

There are lots of sites around where you can create a chatbox / shoutbox widget from your blog but I found three that are actually the best of all.

1. ShoutMix

This widget is quite one of the very best because it’s got some features that’s simply unique. You can log in to the chat system with facebook and twitter as long as you authenticate the ShoutMix app. You can also customize the look and feel of the shoutbox to match your blog’s template. You need to first create an account and verify your email after which you’re asked to create a shoutbox. Below is a preview of what the shoutbox looks like:


After creating the shoutbox and customizing it, click on the Embed link on the left to copy out the code which will be added to your blog. This will be explained later in the post.

2. Cbox

Cbox is one of the oldest chatbox around and I also recommend it because of its simplicity. It’s easy to create and you can choose from any of the ready made themes and it’s possible customize the chatbox to match your blog’s template too. Cbox allows your visitors to comment using their name and website address or email as they do not offer facebook integration like ShoutMix. Below is a preview of the chatbox i created there:

After customizing the look and feel of your chat box, go to Publish to copy out the code which will be added to your blog.

3. FreeShoutBox

FreeShoutBox also gives you offers the service of giving your blog or website a chatbox / shoutbox all for free. You also need to create an acount in order to create a customized shoutbox and you can choose from any of the ready made themes or use your own custom CSS layout. Below is a preview of the shoutbox I created:


How To Add The ChatBox Code To Blogger

It’s a matter of preference, you can use any of the sites listed above but I prefer the first one as it offers more features than the rest. You can use any of them though, it’s a matter of choice. I believe you’ve copied out the code, right? Now let’s add that chatbox to your blog!

1. Login to your blogger account and click on Design

2. Depending on where you want the shout ox or chatbox to appear, click on Add a Widget. ( The sidebar is the best position if you ask me :) )


3. Select HTML / JavaScript

4. Paste the shoutbox code and save.

Now, preview your template and watch the chatbox appear on your blog!

Posted in Blogger, Blogger Widgets, Blogging Tips, Blogspot | Leave a comment

New Social Media Buttons For Blogger

Social networking is an important part of getting traffic that just can’t be ignored and making it easier for your visitors to find you on their favorite social networks isn’t such a bad idea. Apart from using nice share buttons, bookmarking your site on different social networks also serves as a way to alert your visitors each time you post an update. The icons here are of different sets and you can place them anywhere on your blog, linking them to your facebook, twitter and google plus profile or fan pages. The sets also contain RSS and email icons. You can link the email icon to your contact page or feedburner email subscription link. I only used the most popular social media icons which include facebook, twitter and google plus. I hope you like them, they are all ready to use and all you need to do is paste the code to your blog and watch the icons show up.

<div align=”center”><a href=”http://facebook.com/capriotips” target=”_blank” title=”Get updates on your facebook news feed” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://3.bp.blogspot.com/-J_bfPwFnHXo/Tso0-M6KMDI/AAAAAAAAB0k/GZR1yPpx87o/s400/facebook.png” border=”0″ /></a><a href=”http://twitter.com/doncaprio” target=”_blank” title=”Follow us to get our twitter updates” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://4.bp.blogspot.com/-uS7gaAPU2uo/Tso0-eR6lHI/AAAAAAAAB0w/ii6hkHdGTqM/s400/twitter.png” border=”0″ /></a><a href=”https://plus.google.com/104745456339871522709/plusones” target=”_blank” title=”Add us to your circles on google plus” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://1.bp.blogspot.com/-XGYjx-2zJNk/Tso0-pre2TI/AAAAAAAAB04/2sCA_jL1geQ/s400/gplus.png” border=”0″ /></a><a href=”http://feeds.feedburner.com/doncaprio” target=”_blank” title=”Subscribe to our RSS feed” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://2.bp.blogspot.com/-BbAHBGPKWMA/Tso0-vznsvI/AAAAAAAAB1I/QLgYCiuX0xA/s400/rss.png” border=”0″ /></a><a href=”http://feedburner.google.com/fb/a/mailverify?uri=doncaprio&amp;loc=en_US” target=”_blank” title=”Get updates right in your inbox” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://3.bp.blogspot.com/-HF85KnjDibo/Tso0_KJul6I/AAAAAAAAB1Y/x3zQvXtb0ho/s400/email.png” border=”0″ /></a></div>
<div align=”center”><a href=”http://facebook.com/capriotips” target=”_blank” title=”Get updates on your facebook news feed” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://3.bp.blogspot.com/-paHBTMz8iLg/Tsozb5W7ljI/AAAAAAAABzo/19jxkmQsKTo/s400/facebook.png” border=”0″ /></a><a href=”http://twitter.com/doncaprio” target=”_blank” title=”Follow us to get our twitter updates” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://3.bp.blogspot.com/-Hfl5iowJtxI/TsozczqPraI/AAAAAAAAB0Y/sP9tIJri7wQ/s400/twitter.png” border=”0″ /></a><a href=”https://plus.google.com/104745456339871522709/plusones” target=”_blank” title=”Add us to your circles on google plus” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://2.bp.blogspot.com/-L7ev-nE3X-Y/TsozcZqowEI/AAAAAAAABz8/tZ2ASSoBVvg/s400/gplus.png” border=”0″ /></a><a href=”http://feeds.feedburner.com/doncaprio” target=”_blank” title=”Subscribe to our RSS feed” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://4.bp.blogspot.com/—cU5xI8Rgw/TsozcSIuRmI/AAAAAAAAB0Q/l_eCHq3Y6hw/s400/rss.png” border=”0″ /></a><a href=”http://feedburner.google.com/fb/a/mailverify?uri=doncaprio&amp;loc=en_US” target=”_blank” title=”Get updates right in your inbox” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://1.bp.blogspot.com/-Oc3wJu21NH0/TsozcBsMvII/AAAAAAAABz0/usyKubZsALg/s400/email.png” border=”0″ /></a></div>
<div align=”center”><a href=”http://facebook.com/capriotips” target=”_blank” title=”Get updates on your facebook news feed” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://2.bp.blogspot.com/-lcwXcgZJSJ0/TsoxKDUdI1I/AAAAAAAABys/h91ia_ldyUY/s400/Facebook.png” border=”0″ /></a><a href=”http://twitter.com/doncaprio” target=”_blank” title=”Follow us to get our twitter updates” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://1.bp.blogspot.com/-prFyF-XjTpg/TsoxLMsYnmI/AAAAAAAABzY/2KTNzIfE2R0/s400/Twitter%2B02.png” border=”0″ /></a><a href=”https://plus.google.com/104745456339871522709/plusones” target=”_blank” title=”Add us to your circles on google plus” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://4.bp.blogspot.com/-3p70fW9C83A/TsoxKdgWRnI/AAAAAAAABzE/x8jtCKInJk4/s400/Google.png” border=”0″ /></a><a href=”http://feeds.feedburner.com/doncaprio” target=”_blank” title=”Subscribe to our RSS feed” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://1.bp.blogspot.com/-Sd0t23xy3B0/TsoxK_3N_-I/AAAAAAAABzQ/4_z08t3WcOM/s400/Rss.png” border=”0″ /></a><a href=”http://feedburner.google.com/fb/a/mailverify?uri=doncaprio&amp;loc=en_US” target=”_blank” title=”Get updates right in your inbox” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://2.bp.blogspot.com/-HpwOLk9L6DA/TsoxKeCY62I/AAAAAAAABy0/f2pRLYaJ1yo/s400/Gmail.png” border=”0″ /></a></div>
<div align=”center”>
<a href=”http://facebook.com/capriotips” target=”_blank” title=”Get updates on your facebook news feed” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://1.bp.blogspot.com/-sT9lHle5N54/TqgOWhi-amI/AAAAAAAAFCU/MwoQL3ZhEy4/s1600/facebook-30×43.png” border=”0″ /></a><a href=”http://twitter.com/doncaprio” target=”_blank” title=”Follow us to get our twitter updates” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://2.bp.blogspot.com/-eVZSNf1mj_E/TqgOX_ldq1I/AAAAAAAAFCk/2wDDaA8esG8/s1600/twitter-30×43.png” border=”0″ /></a><a href=”https://plus.google.com/104745456339871522709/plusones” target=”_blank” title=”Add us to your circles on google plus” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://3.bp.blogspot.com/-icT9kVFhtOs/TqgOXLJCbBI/AAAAAAAAFCY/pU4wo8HyHNI/s1600/googleplus-30×43.png” border=”0″ /></a><a href=”http://feeds.feedburner.com/doncaprio” target=”_blank” title=”Subscribe to our RSS feed” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://3.bp.blogspot.com/-ShqPVqX-vhs/TqgOXX5m9WI/AAAAAAAAFCg/WFRLxQ4yjuM/s1600/rss-30×43.png” border=”0″ /></a><a href=”http://feedburner.google.com/fb/a/mailverify?uri=doncaprio&amp;loc=en_US” target=”_blank” title=”Get updates right in your inbox” imageanchor=”1″ style=”margin-left: 1em; margin-right: 1em;”><img src=”http://2.bp.blogspot.com/-5PGHBr3D5wQ/TsTs3LTveQI/AAAAAAAABvY/rppRrieBmeo/s400/email-icon-smaall.png” border=”0″ /></a></div>

How To Add These Social Media Icons To Blogger

1. Log in to your Blogger account and go to Design

2. Depending on where you want the icons to appear, click on Add a Gadget. I prefer the icons at the header or at the top of the right side bar.

3. Select HTML/JavaScript.

4. Paste the code and save.

Note that you must edit the links in red color or your blog would be linking to my own social network profiles. Share the post if you find it helpful.

Posted in Blogger, Blogger Widgets, Blogspot | Leave a comment

Using Custom Links In Facebook Status Updates And Wall Posts

The first time I saw a status update with a link underneath a custom text, I thought facebook was already supporting HTML in statusupdates and wall posts. I tried writing some stuff in basic HTML but was rendered as plain text and realized it’s all some sort of trick after all. Of course we all know you can tag people and mention pages in your status update or comment by typing @ before writing the name but it all gets even better if you can mask/hide that fan page or profile name with some sort of custom text. You can even write a whole status update or comment linking directly to your profile or facebook fan page. I bet you want to learn how, right?

Before you can do this, you have to first know your profile ID or that of the person or page you’re tagging.

How To Get The Profile ID Of A Facebook User Or Fan Page

For users who do not already have a facebook username, you can get the profile ID by just going to the profile, checking your address bar and copying out the last set numbers in the URL. For example, the ID for this profile is shown in red:

www.facebook.com/profile.php?id=1234567890000

For users or pages with facebook usernames or vanity url such as http://www.facebook.com.com/username, enter http://graph.facebook.com/username in your browser.

Be sure to replace username with your own valid username, for example, http://graph.facebook.com/doncaprio . The page that displays should show you your profile ID.

For more on finding facebook profile ID, read this post.

Linking Your Updates To Facebook Profiles Or Fan Page With Custom Text

The trick is just a simple piece of code and you can create a really funny update with it. It’s as simple as the code written below:

@@[0:[165091976865893:0: YOUR TEXT HERE ]]

Profile ID – 165091976865893
Display Text – YOUR TEXT HERE

That’s all you’re gonna be needing. Be sure to replace profile ID and custom text with what you want to be displayed in place of the profile or fan page.

My last status update on facebook was written as this:

@@[0:[1167126869:0: Don ]] is now friends with @@[0:[185282101484120:0: Tupac Shakur ]], @@[0:[106458656056797:0: Ice Cube ]] and @@[0:[175576745802091:0: 9,564,856 other people ]].

@@[0:[175576745802091:0: Report Don to Facebook ]]

It appeared exactly as shown below:


It’s a really funny update and you can copy that into your status update, just be sure to edit the profile IDs and text that will be shown instead of the link. Remember, you can always get the profile ID of any profile by checking this post. You should, however, note that this trick doesn’t work for external links.

Sharing this post on facebook takes less than 5 seconds. It’s gonna help us :) .

Posted in Facebook, Social Networking, Tips and Tricks | 3 Comments

How To Find A Facebook User Or Page ID

These days, you’re sometimes asked to provide your facebook user ID when filling some forms online and some of us don’t even have a clue what this is. You might even need the profile ID of a page for certain reasons and this can be a real challenge especially if the profile in question already has a username. Since most facebook profiles now have vanity URLs, you can’t get the profile ID just looking at the address bar, all you’re gonna see is the username. So how do you get such profile ID for profiles with custom address?

Users Or Pages Without A Username

For pages or users who do not already have a facebook username, you can get the profile ID by just going to the profile, checking your address bar and copying out the last set numbers in the URL. For example, the ID for this profile is shown in red:

www.facebook.com/profile.php?id=1234567890000



Facebook Users Or Pages With Custom URL or Username

For profiles with vanity URL replacing the one with profile ID, there are so many ways to find the ID and there are even some facebook applications created just for this. There is, however, one method that’s the easiest of all.

To find the user ID of a named user, you must query the Open Graph. Every object within the Open Graph has a unique URL that can be inspected and will return information about that object. Users and pages are no exception.

For my facebook profile which is http://www.facebook.com/doncaprio

All you’re going to need is my facebook username which is doncaprio

Launch this in your browser http://graph.facebook.com/doncaprio

You should see something that looks like this:

{
“id”: “1167126869“,
“name”: “Don Caprio”,
“first_name”: “Don”,
“last_name”: “Caprio”,
“link”: “http://www.facebook.com/doncaprio”,
“username”: “doncaprio”,
“gender”: “male”,
“locale”: “en_US”
}

The user ID is specified in the id property. Simply copy this value (without the quotation marks). The same goes any user profile of facebook fan page. You only need to add the username after http://graph.facebook.com/ to get the ID.

Posted in Facebook, Social Networking, Tips and Tricks | Leave a comment