Anshul Sharmaanshul-sharma.hashnode.dev·Feb 4, 2025The Cookie Chronicles : How Browsers Remember YouWelcome back to The Nerdy Nook, the place where tech meets a dash of quirky fun! Today, we’re unraveling the mysterious world of cookies —no, not the chocolate chip kind ( though we love those too ), but the small packets of data that browsers use to...7 likescookies
The Brown Boxthebrownbox.hashnode.dev·Feb 3, 2025Send Http Request with cookie using CookieJarSome services are checking the request with cookie to increase the security. So sometime you make a request successful with Postman, but got 403 (or similar error code) when try to request from your server (or a simple CURL request). That because Pos...cookies
Yash Sangwanbehind-the-scene-of-technology.hashnode.dev·Jan 18, 2025A Comprehensive Guide to How the Internet Really WorksHey there, fellow internet explorer! 🌐 Ever hit enter on your favorite website and wondered, "How the heck does this content get from some server in Silicon Valley to my screen in seconds? " Trust me, I asked myself the same question, and what I dis...2 likesWeb Development
Abhishek Singhabhishek-singh-kirola.hashnode.dev·Jan 12, 2025Hello To Tech Jargons. 👋Have you ever been in a situation where you're working in a team, and your friends or colleagues use technical terms you’ve never heard before? I’ve faced this situation a lot, so I decided to do some research. I discovered that these terms are calle...13 likes·81 readstech
AMITfuture-stack.hashnode.dev·Jan 12, 2025Understanding Common Internet Terms and JargonIn computer science fields there are a lot of technical terms, that look heavy and complicated to people who come from some other domain, and sometimes it is true even for computer science people. I am just trying to solve this issue by simplifying t...26 readsinternet jargons
Sagar Maheshwariweb-dev-tech-jargons.hashnode.dev·Jan 12, 2025From HTTP to HTTPS: A Web Development JourneyWeb development is an exciting field, constantly evolving, where creativity meets technical know-how. But before you dive into coding and building websites, it’s essential to understand the basic building blocks that make the Internet work. In this b...27 readsWeb Development
Indrajeet Giramcodewords.hashnode.dev·Jan 9, 2025Sessions and Cookies: What Sets Them Apart?One fundamental yet crucial concept that often comes up in web development is the difference between sessions and cookies. Understanding this distinction can help you design better systems for managing user state and enhancing user experience. Here's...JavaScriptcookies
Chakradhar Chinnicc-tech-bytes.hashnode.dev·Jan 8, 2025Do we need cookiesWeb browsing is a daily routine for us. The most common thing we notice after opening the website is a popup box asking us to accept cookies. We click Yes and move on. But, whats happening when we click Yes. Lets understand this Cookies are small da...Browsers
Brett Rowberrybrettrowberry.com·Dec 29, 2024Peanut Butter CookiesVerna Stott’s recipe, taken from an old Betty Crocker cookbook. Cream together in a stand mixer: 1 cup soft shortening 1 cup peanut butter 1 cup sugar 1 cup light brown sugar 2 eggs Stir in to the creamed mixture: 2 ½ cups sifted flour 1 tea...Recipescookies
Nowon Leeblog.nwlee.com·Dec 22, 2024Next.js 미들웨어에서 백엔드 API로부터 발급받은 쿠키를 활용하기쿠키 이슈 Next.js에서 서버 컴포넌트는 서버에서 실행되고 렌더링되는 컴포넌트이다. 다음과 같은 특징이 있다. 서버에서만 동작하기 때문에 데이터베이스, 파일 시스템에도 접근할 수 있다. 서버에서 미리 렌더링된 UI를 그대로 클라이언트로 전달하기 때문에 자바스크립트 번들 사이즈를 줄일 수 있다. 브라우저에서 실행되지 않기 때문에 useState, useEffect와 같은 리액트 API를 호출할 수 없다. 별도의 백엔드 API가 개발되...Next.js