DrupalFront End DevelopmentReact.js

Mastering Modern JavaScript: A Guide to ES6 and Beyond

Introduction JavaScript, the language that powers the web, has undergone a significant transformation with the introduction of ECMAScript 6 (ES6) and subsequent versions. These updates brought many new features and enhancements, making JavaScript more expressive, readable, and powerful. In this article, we’ll delve into ES6 and beyond, exploring key features and demonstrating how they can […]

Eram Fatima
Eram Fatima
Read

SEOSoftware developmentTechnology

SEO-Powered Flutter Web Development

Overview Flutter is an open-source UI (User Interface) framework created by Google. Primarily, it has only mobile support, but later on, it expanded its support for the web as well. Flutter web is stable and provides a comprehensive set of features, including cross-platform compatibility, a rich library of customizable widgets for creating engaging user interfaces, […]

Software development

Mocking VS Monkey Patching in Python

What is Monkey Patching? Monkey patching is a concept python where in we can change the behavior or work of code, module, or class at run time without changing the whole code base. For example in big projects, we have some third-party modules which may or may not be working while you are developing. In […]

Gautam Rishi
Gautam Rishi
Read

Front End DevelopmentMobilitySoftware development

Is Flutter a good option to consider for your next cross platform app development?

Today, we’re talking about Flutter, a relatively new player in the market that has attracted attention from the development community. The field of cross-platform application development is always evolving because of new frameworks and technologies like Flutter, which enable programmers to make more reliable and effective apps for a variety of platforms. According to a […]

Piyush Gupta
Piyush Gupta
Read

Front End DevelopmentSoftware developmentTechnology

Enhancing Accessibility in Web Development: Addressing Common Challenges

With the constantly evolving digital landscape, creating experiences that cater to diverse user needs is both a challenge and a necessity. One of the most significant shifts in recent years has been the growing importance of web accessibility. Ensuring that web applications and websites are accessible to individuals with disabilities has become not only a […]

Himanshi Gera
Himanshi Gera
Read

Software development

PyDelhi Conf 2023: A Journey of Inspiration and Learning

Technology conferences have always been a wellspring of inspiration and knowledge, and the PyDelhi Conference held at the University of Delhi campus on August 19th – 20th, 2023, was no exception. A couple of us from the Python competency team of TO THE NEW had the privilege of attending this remarkable event. The event comprises […]

Big DataData & AnalyticsSoftware development

How to Setup Astro CLI and deploy to Astro (Windows)

Setup: Download the optimal version of Astro for your Windows system from link. Rename the downloaded file to “astro.exe” and save it. Add the file path to environment variables. To check if Astro has been configured correctly, run “astro” command On cmd. After the successful configuration of Astro CLI, you should get a response like […]

Mayank Gupta
Mayank Gupta
Read

Java/JVMSoftware development

Hibernate Filter in Java

Introduction Hibernate is a widely used Java-based Object-Relational Mapping (ORM) framework that simplifies database operations in Java applications. One of Hibernate’s most powerful features is its support for filters, which allow you to apply dynamic, context-based constraints to retrieve data from a database. In this blog post, we’ll explore Hibernate filters, their usefulness, and how […]

Mansi Garg
Mansi Garg
Read

AndroidData & AnalyticsManual Testing

ANR for TV

Description When the UI thread of an Android app is blocked for too long, an “Application Not Responding” (ANR) error is triggered. If the app is in the foreground, the system displays a dialog to the user, as shown in the figure below. ANRs are a problem because the app’s main thread, which is responsible […]