sri parthusriparthu1014.hashnode.dev·14 hours agoBasics of HTMLWhat is HTML? HTML stands for Hyper Text Markup Language, used to create and describe the structure of a webpage. It consists of a series of elements that tell the browser how to display the content, such as <h1>, <p>, <img>, etc. What is an HTML h...DiscussHTML5
Just Another Devjustanotherdev.hashnode.dev·Dec 2, 2024The backend engineer roadmapWhat does a senior backend engineer need to know? I would argue that a good backend engineer needs to know… everything? I started the sentence thinking that I would write “a lot” but ended up writing “everything” because it’s true. You need to know p...Discussbackend roadmap
sri parthusriparthu1014.hashnode.dev·Dec 2, 2024Full Stack Web Development IntroTopics Frontend:- HTML: HTML stands for Hyper Text Markup Language, used to create the structure of a web page, like a blueprint of a web application. CSS: CSS stands for Cascading Style Sheets. It is used to apply styles to an HTML page or web pag...DiscussHTML5
Bogdan N.bognov.tech·Dec 1, 2024Communicating Sequential Processes in GolangThis blog post comes from a tech talk I gave internally at IKEA.I will introduce some key concepts to build a mental model to with with concurrency and then dive into Go with examples that you can find in this repo. The goal of this blog post is to r...Discuss·1 like·52 readsgolang
Shreyas Pshreyas0924.hashnode.dev·Nov 30, 2024Stateful and Stateless BackendsUnderstanding Stateful and Stateless Backends In software architecture, stateful and stateless terms describe how applications manage user sessions and data across multiple requests. Each approach has its unique characteristics, advantages, and use c...Discuss·1 likeSystem Design
Tuanh.nettuanhnet.hashnode.dev·Nov 30, 2024Tips for Writing Effective Cron Job Time Patterns and Managing Time ZonesSource: Tips for Writing Effective Cron Job Time Patterns and Managing Time Zones 1. Introduction to Cron Job Time Patterns Cron jobs operate on predefined schedules, known as Cron time patterns. These patterns consist of five fields rep...DiscussJava
babaixdevbabaixdev.hashnode.dev·Nov 30, 2024Mastering JavaScript OOP: A Comprehensive Guide to Object-Oriented ProgrammingDescription:Learn the fundamentals of JavaScript Object-Oriented Programming (OOP). Explore key concepts like classes, inheritance, encapsulation, and polymorphism with practical examples to enhance your coding skills.DiscussOOPS
Rohit Rajputdjango-learning.hashnode.dev·Nov 29, 2024How to Use Django Admin and Models: A Beginner's GuidePrevious Related Blog : Getting Started with Django: Basic Setup and Overview What is Django Admin ? Django Admin is a powerful panel which has built-in interface for managing Django Models. It allows us to quickly perform CRUD (Create, Read, Update...Discuss·12 likes·96 readsDjangoPython
Abdul Rahman Moinrefresh-token-vs-access-token.hashnode.dev·Nov 29, 2024Refresh Token vs Access TokenWhat is an Access Token? An access token, typically JWT, is an encrypted thing that saves the time of the user and the server cost the website owner. But what actually is it? It is an encrypted token or string that is equal (when it got decrypted) to...Discussrefresh-token
Maneeshwar Karnekarne.hashnode.dev·Nov 29, 2024What is npx???😭😭😭Ah, npx—the Swiss Army knife of the Node.js world. It’s like that one friend who always seems to have exactly what you need at the exact moment you need it. Included with npm starting from version 5.2.0, npx lets you run Node.js tools like Jest, Moch...DiscussNode.js