How To Get Started With iOS Development (2017)

How To Get Started With iOS Development (2017) “How To Get Started With iOS Development ?” – This is a question that has been asked to me many a times; So I finally decided to write an article for all the beginners just getting hands on iOS development.  First Off, The best programming language to…

Developers Are Adapting 3D-Touch At A Very Rapid Rate

Developers Are Adapting 3D-Touch At A Very Rapid Rate Seeing a lot of updates on the App Store nowadays? Well, It’s a good thing, If you have an iPhone 6S. For those of you who don’t know, Apple introduced it’s new 3D-Touch API to developers shortly after the launch in September. Apple wants all the…

Twitter: 140 to 10k

It may sound like Twitter is going for a 10,000m marathon or making a 10k HD TV but that is not true for this post at least. Twitter after 9 years of operations has at last completed the wish of 302 million people! Twitter has increased its character limit from ‘minor’ 140 to the ‘major’…

What are the tools that I need to start developing for android?

Well, lucky that you are starting to develop now because the tools that you need are very less , in some cases negligible. For android you only need an IDE (Integrated Development Environment) that is Android Studio that Google just announced in it’s yearly I/O this year. After years of complaining by android developers, Google…

Which is the best laptop for developers?

This is an easy question that my readers have been asking. So, Let me get this straight –> MacBooks are still the best in the market and the reason being simple enough – No Shit. While Windows is filled with crappy malware and stupid programs MacBooks provide what is essential for people and gets the Basics…

How to make rock paper scissor game using C++ ?

Rock / Paper / Scissors [Game] [C++] void main () { int a[3][3]; int b = 3, c; char play[8]; randomize(); a[0][0] = 0; a[0][1] = -1; a[0][2] = 1; a[1][0] = 1; a[1][1] = 0; a[1][2] = -1; a[2][0] = -1; a[2][1] = 1; a[2][2] = 0; b = randomize(b); cout<<“Rock / Paper /…