Scaled Agile Framework (SAFe) by Sudip Banerjee on September 22, 2020 1,149 views

Scaled Agile Framework (SAFe) is a framework that allows you to apply agile practices at an enterprise level. The 5 minutes video below will give a brief idea of the same. https://www.youtube.com/watch?v=aW2m-BtCJyE But before we dive into SAFe, let’s take a look into Agile, the building block of SAFe. Agile scrum methodology is a project management system that relies on incremental development. Each iteration consists of two to four-week sprints, where each sprint's goal is…
Tips to make Programming Enjoyable! by N. Mahadevan on September 3, 2020 1,317 views

Let’s face it; Although coding is usually fun, sometimes it gets monotonous. We just hit the wall, forget the actual purpose, and eventually burn out. Sharing a developer’s experience, we spend more days analysing the task and finding the right way ahead. But in this flow we often get lost and confused. Eventually we spend long weekends brainstorming and become irritable, losing our focus and leading to loss of interest in programming.So, now the question…
Crank up the UI development by Maulik Desai on August 12, 2020 2,229 views

Nowadays, UI holds a great power; thanks to Javascript and other UI frameworks. We now have better control over the UI and can develop the UI with complex functionalities effectively. But, there are many factors that can affect the agility of UI development like Code structureCode complexityCode readability and qualityBlah blah blah... But wait.... in that blah blah blah one thing is "a LOT of manual and monotonous work" and we're going to discuss that…
Lambda Expressions in Java and its implementation by Kush Patel on July 28, 2020 1,511 views

Java is one of the most widely used programming languages. Despite origins dating back in 1995, it has consistently advanced over the years. One of the significant upgrades in Java after generics, was the introduction of lambda expression. Lambda expression is a function that can be passed around as if it was an object and invoked on demand. Lambda expressions combined with the Streams API allows programmers to write complex collection processing algorithms, focusing on…
Improve Machine Learning Binary Classification using Boosting by Maulik Dave on July 13, 2020 1,329 views

The theorists have come out and done something very remarkable, in the end, you have to say, wow, these are such powerful ideas. The idea we are looking into is easy to implement, and it’s extremely powerful in what it does, and it’s the essential item in anybody’s repertoire of learning “the machine-learning” and it’s algorithms. So it’s about letting multiple methods work on your behalf. Now we are looking for a herd that can…
Software Sleuthing – The Act of Being a Detective! by Prabhat Mishra on June 17, 2020 1,298 views

Software sleuthing or debugging is a process of investigating a problem within a computer program. Since it's an investigation, it always starts when someone notices or reports the problem. The problem could be an error or performance issue or it could be a functional anomaly. For example: Problem #1 - A user is getting HTTP 403 Forbidden error even after providing required access permissions. Problem #2 - A search operation at times takes more than…
Postgresql Incremental Backup by Charmi Chavda on May 28, 2020 1,114 views

Taking backups is essential nowadays. PostgreSQL provides three methods [SQL dump, File System Level Backup, Continuous Archiving(Incremental)] of providing backup. One can use any of these methods as per the need. In this article, we will learn to take Incremental backup on PostgreSQL. To understand Incremental Backup we first need to understand some basic terms related to it that is explained below: What is WAL(Write Ahead Logging) file? It is a file that stores operations…
CORS and CSRF – Everything there is to know! by Gautam Kumar Samal on April 28, 2020 1,277 views

What is CORS? Cross-Origin Resource Sharing (CORS) is a mechanism that uses additional HTTP headers to tell browsers to give a web application running at one origin, access to selected resources from a different origin. A web application executes a cross-origin HTTP request when it requests a resource that has a different origin (domain, protocol, or port) from its own. As we can clearly see, it’s a browser thing. Most browsers enforce a certain standard…
Planning to migrate from Angularjs to Vue? by Shailee Mehta on April 9, 2020 1,342 views

It is an essential part of a software development cycle to keep the tech stack updated, and with so many frameworks a movie buff like me would say it is a real Sophie’s choice… This blogpost is for product owners or developers working on Angularjs, looking for answers to which technology to upgrade to. Whether to stick to Angular and move a version up or pick a new framework. The following blog post says why…
Best practices for structuring SCSS/SASS by Chirag Unadkat on March 6, 2020 1,505 views

Every site in current time is not only focused on functionality but also focused on user interface and that too a responsive web or mobile first web. The way we structure our stylesheet has direct relation to the complexity of the project and also affect the post compilation maintenance and enhancements. Basically there is nothing good or bad about structuring the stylesheet for the web. It varies according to requirement and size of the project.…