Skip to main content

R.I.P Orkut!

Does anyone remember the social networking giant of a time "Orkut"? Perhaps not many.. Though it was the most visited site in India and Brazil at a point of time in history but gradually it lost its shine to other competitive sites and web applications offering much newer and advanced features like our very own facebook.com, twitter.com etc.

Bad news for its fans and those few who still use it to send and receive scraps.. that Google - the owner of orkut.com has today announced that it will be shutting the service down.

Google Engineering Director Paulo Golgher wrote in a post on the Orkut blog. "Because the growth of these communities has outpaced Orkut's growth, we've decided to bid Orkut farewell (or, tchau). We'll be focusing our energy and resources on making these other social platforms as amazing as possible for everyone who uses them."
Beginning today, it will no longer be possible to create a new Orkut account. Current Orkut users will be able to log in, play games, and use their account like normal until Sept. 30. You have until September 2016 to export your profile data, community posts, and photos using Google Takeout.
Google will be preserving an archive of all public communities, which will be available online starting on Sept. 30. If you don't want your posts or name to be included in the archive, you'll need to permanently remove Orkut from your Google account.
Truly, 10 years of remarkable service and my first social network experience ( I was personally very happy when i completed my first 100 scraps :P )... We'll miss you orkut... 
Maybe not that much!! :P

Comments

Popular posts from this blog

Testing React loader with React Testing Library

 I have came across this situation so many times where I need to write a unit test for a component pattern I have developed so many times that I can write the code with my eyes closed. BUT what about unit testing! That's something my mind thought is the best candidate to get rid of in order to store more cat memes. Even when these patterns are used almost everywhere and we write the tests for each one of them (I hope you do) but still we (it can't be just me) tend to forget them and get even more confused with those pesky `act` warnings. So I decided to curate a recipe book for some common unit tests which I come across and might be useful for future me. Happy to share the github repo and also would love to see if anyone has more such common unit testing patterns which they can add or suggest. https://github.com/Charchit26/react-testing-library-recipes Now, let's talk about the one I have coded a dozen times and still take half an hour to struggle with its unit tests - Load...

Connect 2 Computers using USB to USB cable

A very easy way to connect two PCs is to use a USB-USB cable. By connecting two PCs with a cable like this, you can transfer files from one PC to another, and even build a small network and share your Internet connection with a second PC. The first thing you should be aware of is that there are several different kinds of USB-USB cables on the market. The one used to connect two PCs is called “bridged” (or “USB networking cable”), because it has a small electronic circuit in the middle allowing the two PCs to talk to each other. Cable without a bridge connector are called A/A USB cables and cannot be used to connect two PCs. In fact, if you use an A/A USB cable, you can burn the USB ports of your computers or even their power supplies . So, these A/A USB cables are completely useless. A/B USB cables are used to connect your computer to peripherals such as printers and scanners, so they also won’t meet your needs. As for speed, the bridge chip can be USB 2.0 (480 Mbps). The stand...

Pair Programming - Is it really effective??

So, I have been working in a "strict" pair programming environment for about 5 months now and this is the first project of my career in which I have been subjected to sit with another person for the whole 8-9 hours of the day while I (or he) codes. Also I have been pairing remotely for half of those days (half of our team is at onshore). I learnt these practices and principles while working with another vendor for the same client in Sydney, Australia. Hence, I thought it will be a good idea to share my thoughts and experiences as well as point down the things which otherwise I have to re-iterate over and over for every person looking for advice from me before starting with this practice. Note: All the points that will be mentioned here going forward are from my own personal experience and specific to the project I worked in. Though I think most of the dev community who has worked in this setup would second my opinion. What is "pair programming"? Yo...