How to get the URL or Link of a Facebook post or status

Sometimes you may need to provide the URL/link of a Facebook post or status for eg. in case you are trying to win a contest or trying to attract more people to a Facebook post. Though Facebook has recently added a “Share” option for all the Facebook post but it still doesn’t serve the purpose in the case you need the to share the Post in a comment or outside Facebook environment. In this post I’ll show you how to get the URL of a Facebook post.

All you have to do is to go to post and click on the “Date-Time” of the post. Something like this:

Clicking on this “Date-Time” element will take you to the post in a new tab. And from there you can simply copy past the URL of the post. Something like this:

Now you can share the post anywhere with the help of the URL. By the way the same method can be used in Google Plus as well.

Questions and suggestions are welcomed.

How to upgrade to Ubuntu 11.10 Beta from Ubuntu 11.04

Pic Courtsey: uniquetipsonline.com

Ubuntu released the second beta version of Ubuntu 11.10 OneiricOcelot last week. Final version is scheduled to release on 13 October 2011. 11.10 has some compelling improvements over its predecessors 11.04. If you want to be one of the early followers and want to upgrade it, follow the instructions below:

  • Press Alt+F2 to open the command box
  • Type “update-manager -d” (without the quotes)
  • Please mind the space between manger and -d
  • Update Manager should open up and tell you: New distribution release ‘11.10’ is available.
  • Click Upgrade and follow the on-screen instructions.

Enjoy Ubuntu 11.10.

Sources: https://wiki.ubuntu.com/OneiricOcelot/TechnicalOverview/

How to get the New Facebook Profile: Timeline

has been toeing the Google Plus line for past few weeks and it launched a number of new features today (22 Sep 2011) at . One of the those new feature is called Timeline which gives your profile a totally new look (which resembles a bit to WAYN profile).

Salient features of the Timeline Profile:

  • A large photo on the top of the profile
  • Below is the general information, status update box and the latest activities on Facebook
  • Your friends will also be able to see your past activities (this is why the name is Timeline)

This video gives a better understanding of the Timeline profile:

How to get the New Timeline Profile:

The Timeline profile is still in beta but users can sign-up for it. So if you want to enjoy this new feature before most of the other users visit this page: Make sure that you have logged into your Facebook account. Click on Sign Me Up button on the bottom right of the screen.

The Facebook timeline is live now. Here is how to get it:

Go to

And there click on Get Timeline at the bottom of the page.

Enjoy the Timeline. :)

How to solve: Dell AC Power Adapter Type Not Recognized

My AC power adapter charger for Dell Inspiron N4010 went into smokes two days back and I went to shop for a good (read cheap) alternate of it. After fiddling around a bit I settled for a “itworks” Universal Power Adapter (for 60 Euro sigh!). It comes with 12 plugs to use it with all the major laptop manufacturers and two type of power cords one for each North America and Europe. The below photograph is a not of my universal power adapter 😛

I went back and happily plugged the adapter into my laptop and switched it on. To my dismay, at boot time, it gave a warning message something like “AC Power Adapter type not recognized”. When I chose to ignore the warning and booted into the operating system, I saw the strange things with the battery icon. Despite of the adapter plugged in it was showing only 5% of battery left.

It took me some minutes to recognize my mistake, a blooper actually. This happens when you think you are too smart to ignore small details and turns out to be a fool.

As I said the Universal Power Adapter had a number of plugs for different manufacturers and it was numbered accordingly. In most foolish way I was using a plug meant for HP which somehow got fit into the socket. When I saw that and change it to the correct one the problem was solved.

Are you using the correct plug? Check it.

How to change the default boot order in Grub 2 in Ubuntu 10.04, 10.10 and 11.04

In this tutorial we will see how to change the default boot order in the Grub 2. Grub 2 is the default boot loader in Ubuntu 9.10, 10.04, 10.10 and 11.04. As the computer starts, GRUB 2 either presents a menu and awaits user input or automatically transfers control to an operating system kernel.

There are two ways to do it. Experienced user can do it by editing the Grub file (located in /etc/default/grub) while I will recommend the beginners to use a GUI tool (Startup Manager) which lets the user select the default operating system or kernel. The tutorial on the Startup Manager can be found here.

Step 1:

Take a look at the boot order in the Grub (when the computer start). Note down the order. Let us assume this is how the boot order arranged:

Linux Kernel 3.0                                                       ——— 0
Linux Kernel 3.0 Recovery Mode                         ——— 1
Previous Kernel Versions                                        ———- 2
Previous Kernel Versions Recovery Mode          ———- 3
Memory Test                                                             ———- 4
Memory Test Recovery                                           ———- 5
Windows 7                                                                 ———- 6

Notice the numbers we assigned to the orders. The numbers represent the position of the particular os/kernel (starting from 0).

Note:

What if you want to make a previous Linux version as your default. The previous Linux Version may consists of all the previous Linux Kernels. Grub 2 provides a nested style sub menu. The previous Linux Versions may seem like this:

Linux Kernel 2.6.39                                                       ——— 0
Linux Kernel 2.6.39 Recovery Mode                         ——— 1
Linux Kernel 2.6.38                                                       ——— 2
Linux Kernel 2.6.38 Recovery Mode                         ——— 3
Linux Kernel 2.6.37                                                       ——— 4
Linux Kernel 2.6.37 Recovery Mode                         ——— 5

Step 2:

Now open the terminal and type the following command:

sudo gedit /etc/default/grub &

The content of the this file looks something like this:

# If you change this file, run ‘update-grub’ afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n ‘Simple configuration’

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash pcie_aspm=force”
GRUB_CMDLINE_LINUX=””

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD …)
#GRUB_BADRAM=”0x01234567,0xfefefefe,0x89abcdef,0xefefefef”

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo’
#GRUB_GFXMODE=640×480

# Uncomment if you don’t want GRUB to pass “root=UUID=xxx” parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY=”true”

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE=”480 440 1″

Step 3:

In the previous file notice the line: GRUB_DEFAULT=0

This line can be interpreted as “the default kernel/os is at order number 0″ which in this case is Kernel 3.0. All we need to do is to change the line from GRUB_DEFAULT=0 to GRUB_DEFAULT=new_order_number.

For example if we want to make Windows as our default OS, the line will be GRUB_DEFAULT=6. If you want to change the default timeout (wait time before it boots into an OS) of 10 sec you can do that by editing the line GRUB_TIMEOUT=10 to GRUB_TIMEOUT=your_time.

Note:

Remember the previous Linux versions? Talking about the example given in Step 1, if we want Linux Kernel 2.6.37 to be our default we need to change GRUB_DEFAULT=0 to GRUB_DEFAULT=2>4.

Here the previous Linux version is at position 2 and Linux Kernel 2.6.37 is at position 4 inside it.

Step 4:

After changing the grub file, save and close it. Now run the following command:

sudo update-grub

Afterwards, reboot the computer. Enjoy :)

Intel AppUp(SM) Center: An App Store for Windows from Intel

App-Store:

Seems like App stores are the next big market. These app-stores are a good place for a user to look for exciting new application, games and accessories for his/her device. An app-store actually constitute significantly to the success of device/os, with Apple being the best example. Users can select from a wide range of variety of application which also includes free and demo versions apart from the paid ones. App-stores provides new and budding start-ups and individuals opportunity to make money by selling their applications.

First it was Apple who came up with its app store followed by Android. Nokia entered late into the market with Ovi Store. Ubuntu also has its own app-store: Ubuntu Software Center.

Intel AppUP:

Intel has launched a Windows based app-store named: Intel AppUp(SM) Center. You need to install the application on your PC and need an internet connection to use the app-store. Here you can find lots of applications for Windows based Operating System. There are several categories of application like Games, Educational, Finance, Health, Business etc. The interface looks quite elegant:

Features:

  • Applications purchased through your account can be used on up to five (5) PC devices. Simply install the Intel AppUp(SM) center client on your favorite device, sign in, and go to My Apps and download apps onto your PC device.
  • Applications are screened and filtered, showing you only those apps that will work on your device or the operating system installed on that device.
  • All paid applications are free to try for 24 hours. If you do not like an app, you can cancel the purchase within the first 24 hours. All application purchases can be cancelled only one (1) time.
  • All apps you purchase or download are easily accessible from the My Apps section.
  • If you provided your credit card information during the registration process, you can purchase new apps with as little as one click.
  • To edit your user preferences–including languages–click on your name located near the top of the client home page.

User Experience:

As I said before the interface is very elegant with no visible borders. This is why it does not blend into Windows environment. The interface and the looks resembles Mac applications. The biggest flaw (as of now) is that you have to use the minimize button to minimize the app window, it does not minimize the window itself when you click again when you click on it in the task-bar.

How to use it:

  • Go here to Download the Intel AppUp application: http://www.appup.com/applications/index
  • Install it
  • Register on the website
  • Use it

Free Britannica Kids Back To School Bundle Offer:

If you register now for the Intel AppUp, you can download Britannica Kids Encyclopedia Dinosaur and Solar System worth $4.99 free.

Hope you enjoyed this post. I would like to know the feedback on this post, quality, content, usefulness etc. Please do provide me with a feedback. Enjoy :)

Review: MyCube: A new Social Networking Platform that lets you make Money

For those early adopters, here is a new social networking platform to try: MyCube. Started by a Singapore based and led by a strong team consisting of serial entrepreneurs and seasoned operational managers with experience from Netscape, RealNetworks, Yahoo, eBay, Let’s Buy It and Icon Medialab, MyCube claims to be word’s first Social Exchange site. What it means is that it lets user own the digital content and share it (either with friends of common or with public with common interest).

It is very focused on user’s privacy and doesn’t share the information in public without user’s consent. User connects with people who are most relevant to him. It has Interests feature (similar to Sparks in Google Plus, actually Google copied the idea from MyCube) where user can select the area of interests and feeds from sponsored agency (like a news magazine) or from other users (if they share it publicly) can be viewed on its home page thus bringing the most relevant information. Here is how my profile looks like:

The idea of social exchange is focused on giving user the control of his/her digital life i.e. it lets user own the data he shares. Unknown to most, the majority of social networks own the content you upload to them, and thus own the right to monetize it. According to a study in a year 360 Billion User Generated Content (Pictures, Videos, Links etc) are uploaded on Facebook in a year and Facebook makes $1.86 Billion out of it. So, Facebook makes money out of users’ content.

In MyCube, user owns the information it updates and shares. MyCube has its own virtual currency called Cubes (1 cube = 0.0.1 Singapore Dollars) which can be used in trading the information. It is ideal for people who have expertise in some field. They can share their work with others (MyCube lets you allow to whom you want to share the information with and in which category).

In a nut shell, MyCube has the following features:

  • Focuses on giving user the control and privacy
  • Lets users interact with people with common interest
  • Provide the ability to monetize the digital life (The best thing)

If you want to join MyCube you can request an invite by entering your email id or by using the invite code “friend” or “tk500” in http://beta.mycube.com/. First 50,000 users will get 1000 cubes. So, what are you waiting for? Hurry Up!

Questions, suggestions and feedback are most welcomed.

How to get Google Music Beta Invite from outside US

I was craving to try for Google Music Beta since it’s launch but as it is only available for people of USA (why only USA?), all the time it irritated me with We’re sorry. Music Beta is currently only available in the United States. But then as you know “there is a will there is a way”, I managed to get an invite. All I did was to use the a US Proxy to request an invitation. I got my Google Music Beta invite in 3 days. Apparently once you get the invite, Google doesn’t bother from where your accessing it i.e. all you need to do is to use a US proxy and then once you get the invitation, it is yours to use it. To simplify the process in steps:

  • Use a Google proxy site. I used http://www.ultrafastproxy.com/
  • In this site, scroll down a bit to find a field with a Browse tag on it, enter music.google.com
  • It will open Google Music page under the proxy
  • If you have security features enable in the Google account, you might have to answer the security question to verify that this a legitimate login
  • Now here you request for an invitation for an invite
  • Wait for 3-4 day to process the invite request
  • Once you get it you can access it from anywhere across the globe

You can also download the Google Music Manager, which is available for Windows, Mac and recently for Linux, to upload your own music to its cloud storage. You can upload upto 20,000 songs. But make sure that the music which your are uploading is legal. Uploading illegally downloaded music files will be deleted from the storage. One more thing once you get the invite, you can also send two invites to your friend.

Other Proxy Sites:

If the proxy site suggested earlier doesn’t work, you may want to try one of these:

Question, suggestions and feed back are welcome. Enjoy your music :)