Wednesday, December 17, 2014

How to get your Facebook ID?

One day I had to know my Facebook ID, but I have changed it on an alias long time ago. Your ID doesn't show in your profile and this is a trouble. How to resolve it?

You can go on the link: "http://graph.facebook.com/<your nickname>" and you will see output in such format:

{
   "id": <your ID here>,
   "first_name": <your first name>,
   "gender": <clearly :)>,
   "last_name": <your last name>,
   "link": <link to your facebook profile>,
   "locale": <your language locale>,
   "name": <full name>,
   "username": <your username here>
}

Enjoy!

Thursday, July 10, 2014

Cherry-pick

Today I've learned about wonderful Git utility, which allows you to save a lot of time. The happy is "cherry-pick".

Wednesday, April 23, 2014

Welcome to Topface

Well, there were two difficult weeks of searching a new job, and, finally, I found place which suits me. Since 7th April I'm working at Topface team and I guess that will be ok.

GSoC - not in this year

Well... I have applied a proposal for participating in Google Summer of Code 2014. I prepared morally to work with guys from SFT CERN, but they have chosen another student. It's pity, but it's ok - there are many opportunities for participating to Open Source projects and to make oneself known - I will use them.

Saturday, March 15, 2014

Change usable version of Java

I always forget how to change usable version of Java in Ubuntu. Well, here's how:

user@userPC: sudo update-alternatives --config java
user@userPC: sudo update-alternatives --config javac
user@userPC: sudo update-alternatives --config javaws

Enjoy :)