Recently, I was thinking of giving my website a new look all together but I just didn’t want to spend my precious hours (being a full time mom and software developer makes you have limited time) in just doing some CSS. I wanted this process to be productive and I came up an idea of…
Category: Development
Typography Series (Part — 2) — Major challenges
Hola folks! This blog series about Typography has two parts Importance and basic terminology of typography that every frontend developer should know. Check it out here. Major challenges faced while getting typography right. If you haven’t already been through basic typography terminology, check it out here. In this blog post, we will be discussing the…
Typography Series (Part — 1) — Terminology every frontend developer should know
Hola folks! This blog series about Typography has two parts Importance and basic terminology of typography that every frontend developer should know. Major challenges faced while getting typography right. Check it out here. In this blog post, we will be discussing basic typography terminology that every frontend developer should know. So, let’s get started. In…
React Unit Testing Series (Part 1)
This blog is going to have two parts: Basics about unit testing, testing frameworks and DOM interaction libraries Bursting myths about Jest testing framework. (Yet to come) As your web application grows with increasing business requirements, in order to maintain the sanity of your front-end code, unit testing is a must. The way we have…
Adobe Flex 4: Mobile Apps: destructionPolicy and popView()
Adobe Flex 4 provides us a feature for handling the data while view transitions “destructionPolicy”. This feature is functional in case we are poping a view off the stack, that is, the current view is removed and the view just below it gets activated. When we navigate from 1st view to 2nd view using pushView(SecondView),…
HTML5 Mobile Apps: CORS issue
Most of Enterprise Mobile Applications need to display large enterprise data generally stored on SAP Systems. For HTML5 Apps, data is accessed by making an AJAX call to the Website and which goes through only if the domain on which the AJAX call is made and the domain to which AJAX call is made, are…