Shivam Yadavcodecshivam.hashnode.dev·Feb 17, 2025Using PostgreSQL with Docker and pgAdminStep 1: Set Up Docker Create a docker-compose.yml file: version: '3.8' services: db: # service 1st image: postgres:latest container_name: postgres_db # if not provided docker will automatically assign one environment: # env variable...Docker
Amit Kumarenlightenwithamit.hashnode.dev·Feb 17, 2025Deploying Sitecore XM Cloud & JSS Apps to Vercel with Azure DevOps Pipeline: A Step-by-Step GuideDeploying Sitecore XM Cloud or JSS (headless) applications to Vercel using Azure DevOps Pipelines is an efficient way to streamline your continuous integration and deployment processes. By leveraging the Vercel Deployment Extension and Vercel CLI, yo...73 reads2025
Saad Asif Mujawaressentialsofdevops.hashnode.dev·Feb 16, 2025Jenkins Fundamentals - Part 1What is Jenkins ? You had often get to hear about Jenkins, specially if you are aspiring DevOps. Or maybe you are hearing first time ! Anyways, Jenkins is a server for CI/CD (i.e Continuous Integration and Continuous Delivery/Deployment) in DevOps. I...Jenkins
Amit Kumarenlightenwithamit.hashnode.dev·Feb 7, 2025Mastering Sitecore Search: How to Extract and Index Complex Metadata with the JavaScript Document ExtractorIn the fast-paced world of digital content, efficiently discovering and retrieving information is crucial for delivering exceptional user experiences. Sitecore Search excels in this area, offering robust capabilities to seamlessly extract, index, and...63 reads2025
Anjanesh Lekshminarayanananjanesh.dev·Feb 2, 2025How to setup Django with React using InertiaJSThe official Django Inertia adapter was released in December 2022 but there was 0 front-end documentation and only the Django part of documentation - even now (as of 2nd February 2025) it says "Django specific frontend docs coming soon." with referen...36 readsDjango
Himanshu NikhareforSideQuirk Blogssidequirk.com·Jan 28, 2025Supercharge Your Terminal: Mastering Zsh with Powerlevel10k and Essential PluginsIf you’re looking to supercharge your terminal, Zsh (Z shell) is one of the best tools you can use. Combined with Oh My Zsh, Powerlevel10k, and a suite of plugins, you can transform your terminal into a highly efficient, visually appealing, and power...zsh
Amit Kumarenlightenwithamit.hashnode.dev·Jan 27, 2025How to Avoid Sitecore XM Cloud Next.js Build Errors: A Comprehensive Guide🤔Introduction When working with Sitecore XM Cloud and NextJS, developers often encounter build errors due to messages like "Field declared but never used" and "Property 'value' does not exist on type." These errors can be a barrier to development. H...109 reads2025
LABORE KODJO AGBETSIASSIstarlabman.hashnode.dev·Jan 17, 2025Creating Your First Unique Digital Token: A Beginner’s Guide to NFTsHave you ever wondered how such a digital creation could become a multimillion-dollar phenomenon? Well, welcome to the enticing world of NFTs! Envision being the owner of a digital artwork that exists in only one piece, similar to the possession of a...4 likes·129 readsgreed-academy
Hashim HBitsmehashim.hashnode.dev·Jan 8, 2025Mastering Web Server Setup: Nginx, Apache, and Tomcat in One Guide✦ What is Web Server? Web server is a program which processes the network requests of the users and serves them with files that create web pages. This exchange takes place using Hypertext Transfer Protocol (HTTP). In Simple terms the client(User) r...apache
Abdul Ahmedformorsebitsmorsebits.hashnode.dev·Jan 7, 2025How to setup diesel ORMIf you're working with Rust and Diesel on Windows and have encountered the frustrating link libpq.lib error while installing diesel_cli, you're not alone. This guide provides a comprehensive walkthrough to resolve this issue step by step. Step 1: In...Rust