DrupalFront End DevelopmentSoftware development

Introduction To Atomic Design in CSS

Atomic Design is a powerful methodology for optimizing large-scale web projects with multiple contributors, providing a common foundation for the theme folder. With the rapid pace of technological innovation and the increasing demand for high-quality web pages, staying up-to-date with the latest techniques and tools is essential. Atomic CSS is one such technique that makes […]

Drupal

Configuration entity vs Content entity in Drupal

What is Entity? Entities are usually recognizable concepts. For ex-employee of an organization such as persons, places, things, or events that have relevance to the database. Entities in Drupal provide a structured way of storing and managing data. Several types of entities included in Drupal core makeup both the configuration and content of a default […]

Java/JVM

Say No to H2, Yes to Test-Container

Developers get confused over the priority of unit test cases and integration test cases. Though both are important, when we are building services for clients, we are on a tight schedule, so completing the development is itself a challenge, let alone writing test cases. I always strive to write test cases, irrespective of the time […]

Big DataData & AnalyticsIndustry Buzz

Our experience through Data Engineering Summit 2023 in Bengaluru

AI is everywhere, but there’s less attention to the engine running behind it. Data Engineering is what makes the right data available at the right time for all these AI use cases. Happy that someone thought about it and organized this 2-day event DES2023, focused on Data Engineering in Bengaluru, where we got to hear […]

DrupalFront End DevelopmentSoftware development

A Complete Guide to CSS Grid Layout

CSS Grid is a two-dimensional layout that you can use to create responsive web items. The Grid items are arranged in columns, and you can easily position rows without messing with the HTML code. Benefits of CSS Grid: CSS Grid is very flexible and responsive. It makes it easy to create two-dimensional layouts. CSS Grid […]

DrupaliOS

Docker Installation For Linux And MAC

FOR LINUX: You can install Docker Engine in different ways. Before you install Docker Engine for the first time on a new host machine, you need to set up the Docker repository. Afterward, you can install and update Docker from the repository. Below are the steps to install docker on your machine. sudo apt-get update […]

Android

Pagination with Paging3

During the development journey, we may require to show unlimited data as no of users of a particular mobile application grows, so does the data associated with that application. Consider the image application, the user scrolls to the bottom of the screen and wants to be able to fetch more data from the server to […]