Mobile App Patenting
Mobile Apps are the ‘In’ thing and have been for young developers. College kids, and even some school kids these days are trying their hand at developing mobile apps, and they’re doing a great job too! Another reason for this flurry of mobile applications is because they are so great for business! So, if you […]
Tech Wars – Apple vs Qualcomm
What happens when tow giants decide to sue and countersue each other? Well, they generate a lot of news, and lose a lot of money, and give stuff to talk about for everyone! The two giants in question here are none other than Qualcomm and Apple. Yes, we’re excited too, and yes, it’s going to […]
Debounce And Throttle in Javascript
The greatest concern faced by UI developers is the performance issues in situations where functions are being executed excessively and in some cases unnecessarily There are two ways in order to control the execution of functions using Debounce and Throttle, which come in handy when on handling events such as mouse scroll or window resizing. […]
Android 8- Oreo!
Oreo – Not just for your Taste buds anymore! There has been a lot of hoopla for iOS 11 and the launch of iPhone 8 and iPhone X, and amidst all that, it almost feels like Oreo has drowned in a glass of milk! (Pun Intended). Well, we shall revive that for you in this […]
Swift and Objective C
Swift has swiftly taken over our lives (Pun intended!). The fact that one does not have to go through the ordeal that is Objective C has got many people rejoicing. So much so, that according to a Stack Overflow survey, “77.6% developers around the globe preferred Swift over Objective C for iOS app development”. With […]
Performance: Hybrid Apps Vs Native Apps
“While 79 percent of consumers would retry a mobile app only once or twice if it failed to work the first time, only 16 percent would give it more than two attempts. Poor mobile app experience is likely to discourage users from using an app again.” – Source This is obviously true, mainly because it […]
AngularJs SEO with Prerender.io
Built a beautiful, snappy, user-friendly website using AngularJS, and now you want more users to start browsing it. But, AngularJS which fully embraces the asynchronous model creates problems for Google’s crawlers and this is how the google indexes an angularJs sites: Obviously, this is not what you want your users to view. Now what do we […]
Overview of Amazon Lambda
Before we start with amazon lambda, what all things do we need to do in the production env to run our service. 1) We setup a machine ( say a VM), with certain configurations like os, ram, space etc. 2) You setup a server there. 3) You deploy your app. 4) You start the server. […]
What really is Javascript’s Event Loop
All of us know Javascript is a “single-threaded non-blocking asynchronous concurrent language, It has a call stack, an event loop, a callback queue, some other apis and stuffs” . We have also heard about V8 – Chrome’s Javascript runtime engine. Many of us have known already about Javascript’s Event loop, but for the newbies this must be […]
How to implement SwiperJs slides with IONIC 1.x
With the release of V1.2, ionic announced the support for SwiperJs with the new directive ion-slides. The older ion-slidebox will be deprecated over the new ion-slides. As there was very less documentation and a lot of developers confused on how to get an instance of the swiper in your controller, I decided to write this blog […]