Front End DevelopmentNode.jsSoftware development

TypeScript – A Primer

The evolution of JavaScript from merely a scripting language to a general purpose programming  language is indicative of the Atwood Law. JavaScript is a multi-paradigm object based language with roots in C, Java, Self and Scheme. It was designed to be relaxed i.e. without a static type system. This in my opinion is a perfect rationale for a […]

Experience DesignFront End Development

Collaborative Design thinking – A unified discipline & framework for innovation

Customer expectations have evolved manifolds over the last few years and so have the brands. Brands are becoming more conscious about their visual designs and whether these designs will better the customer experience and provide instant gratification to end users. As most brands want to MVP fast, limiting the iterations in design is very crucial. […]

Ankit Gupta
Ankit Gupta
Read

Technology

Usability and User Experience – the Cornerstones of UI Design

User Interface Design or Engineering, also known as Front End Development, is all about designing attractive user interfaces for different machines, software, mobile devices, or other products with the aim of enhancing user experience. UI design is extremely powerful as it leads to enhanced user engagement leading to greater success of the application. A good […]

Technology

JavaScript Profiling through Firebug’s Console API.

Sometimes we want to know which line of codes or methods in the JavaScript is taking time which slows up the page load. Many times our browser gets hanged due to the execution of JavaScript. Firebug allows us to profile the JavaScript. Following are the two methods that are used for profiling JavaScript: console.profile() console.profileEnd() […]