Erstwhile, anyone with a ground understanding of testing concepts can start testing an application. With fast-paced software industry evolution, demand for technical expertise coupled with domain familiarity is gradually increasing. Quoting an example for better context, suppose a renowned chef well versed in culinary arts working with a new ingredient. Before start cooking with it, […]
Automation TestingJava/JVMTechnology
Cucumber is an automation tool based on Behavior Driven Development (BDD) framework which is used to write tests for a web application. It allows users such as Business Analysts, Developers, Testers, etc. to automate the functionality in an easily readable and understandable format (like plain English). Let us explore more about this automation tool. Requirement […]
AndroidExperience DesignFront End Development
A design pattern is a formal way of documenting a solution to a common design problem. The idea was introduced by an architect Christopher Alexander for use in urban planning and building architecture. This has been adapted for various other disciplines, including teaching and pedagogy, development organization and process, as well as for software architecture […]
Type Inference means that the data type of any expression (e.g. method return type or parameter type) can be deduced automatically by the compiler. Groovy language is a good example of programming languages supporting Type Inference. Similarly, Java 8 Lambda expressions also support Type inference. Let’s understand how it works with a few examples. Suppose […]
Java/JVMSoftware developmentTechnology
Lambda expressions come with a standard rule that they can only be assigned to a reference variable which is a Functional Interface i.e. an interface having one and only one abstract method. Besides, a Lambda expression does not care about the name of a function and/ or any access specifier as it tries to infer […]
Application SecurityTechnology
Do you think your web application is sheltered and safe? Think again! 2016 was a year which saw a portion of the most exceedingly awful digital assaults whether it be the 32 lakh Indian bank debit/credit cards data traded off or Mark Zuckerberg himself getting his Twitter and Pinterest accounts hacked. Cyber Attacks are continuously […]
Problem We had a use case where we needed to use machine learning to make predictions in real time. To give an estimate of what we consider real time – latency less than 10 milliseconds for our predictions. In this blog, we would discuss what is needed to have the kind of latency for machine […]
AngularJSExperience DesignFront End Development
I am assuming that you’ve seen websites developed on AngularJS. If not, here are a few sites using AngularJS you would be familiar with: Youtube Netflix Weather IStockPhoto AngularJS is taking over the robust development around the world. There’s a good reason for that React-style framework that makes better developer and user experience on a website. […]
Automation TestingExperience DesignSoftware development
Consumer habits keep on changing. This change in their behaviour has compelled brands to leverage digital technologies and provide a superior user experience. A recent survey by eMarketer shows that Mobile App usage accounts for approximately 85% of total time spent on mobile Internet. Companies need to ensure that their applications perform seamlessly across multiple […]
AgileDevOpsProduct Engineering
Companies want to bid farewell to legacy architecture and digitize their business models, products and infrastructure. While some advanced companies are leveraging two-speed IT, DevOps and Cloud, some others are still trying to figure out a way to build disruptive web and mobile products faster. Moreover, growing consumer demands have increased the need to build […]
AgileProduct EngineeringSoftware development
Understanding product features play a paramount role in software product development. Ultimately, delivering these features according to the expectations create a superior recall and experience. With more and more product companies now practicing Agile, it is important for them to understand requirements clearly from all the concerned stakeholders. A user story is a primary artifact […]
Java/JVMSoftware developmentTechnology
As we already know that Lambda Expressions are used to support functional programming in Java. The default behaviour of Lambda expressions is to accept only those interfaces as reference variables which have only one abstract method. We call such interfaces Functional Interfaces. You could also name them as SAM, i.e., Single Abstract Method interfaces. Java […]