Saloni NarangforKubesimplifykubesimplify.hashnode.net·Apr 27, 2022My Schedule for KubeCon + CloudNativeCon EU 2022KubeCon + CloudNativeCon is the best conference in the cloud native ecosystem. With the number of submissions that go in, the selection process and then the amazing schedule, everything is great! With KubeCon 2022 EU just around the corner, it's tim...BUSHRA NAZISH and 4 others are discussing this5 people are discussing thisDiscuss·91 likes·626 readsKubernetes
Deborah Emenidebbie.hashnode.net·Nov 2, 2020A simple explanation of Sessions in PHPWhat is a Session? Session is a way to establish a state for a user or for a request. When a request is made in the address bar to the web server to serve certain pages, the web server has no idea who you are and has no idea if you are logged in or i...Discuss·18 likes·371 readsPHP
Tomasz Giltomaszgil.hashnode.net·May 10, 2022Wordle in Remix: Part 3 - Loaders and SessionThis is the third article in a series where we create a Wordle clone in Remix! 💿 We go step by step, from setting up the application to creating pages and implementing game logic. In this article, we will cover storing the state of the game and shar...Discuss·16 likes·228 readsWordle in RemixWeb Development
Haneunhanlee.hashnode.net·Apr 17, 2023Creating a Login Authentication Website with APM (Apache2, PHP, MySQL)Purpose Create a website with APM (Apache2, Php, Mysql) authentication using PHP's built-in session feature. Implement login function Implement main page Only accessible after logging in Show who is currently logged in Implement logout functio...DiscussProgrammingWeb Development
Saptarshi Bhattacharyahighonbugs.hashnode.net·Mar 15, 2023Web Basics - Part 4What are Cookies, Local Storage, and Session Storage? Cookies, local storage, and session storage are all ways to store data in a user's browser while they are interacting with a website. Cookies are small text files that are stored on a user's compu...Discusscache
FlareXesfireflaredb.hashnode.net·Feb 7, 2023Session vs Signal: Something Better Then WhatsAppInstant messaging applications become a huge part of a digital lifestyle and can affect someone's personal life if somebody can get hold of it. Not just external threat actors but these days companies themselves are using software to track your behav...Discuss·1 like·492 readsPrivacy and Security by defaultprivacy
Joseph KimaniforOpen Replay's Technical Blogopenreplay.hashnode.net·Dec 7, 2022Understanding Sessions Management And Authentication With Node.JsHTTP requests are considered stateless protocols and are used to transmit data between the server and the browser. Stateless means they do not store any data. However, circumstances may force you to build a stateful server to save data between the cl...Discuss·5 likes·83 readsSession
Wen-liang Suwensu.hashnode.net·Dec 5, 2022Cookie and SessionHTTP stateless To talk this subject, we have to know what is the stateless protocol in HTTP. The stateless protocol means that when the computers communicate with each other, they don’t care their state and all the requests are independent. Their res...DiscussNode.js
Gurudatt Puranikgurudattpuranik.hashnode.net·Nov 30, 2022What is a JSON web token (JWT) & why do we use it?JSON Web Token (JWT) Are you also the one among many who think authentication and authorization are the same? It's a brand NO. Before going into JSON web tokens, let's first understand the difference between the two terms. Authentication & Authorizat...Discuss·44 readsweb tokens
mostafa aminemostafaamine.hashnode.net·Nov 1, 2022How to use Laravel SessionWhat is a Session? Sessions are used to store information about the user temporarily across the requests. How to configure your session file in laravel The session configuration file is stored in config/session.php, from this file you can change the ...Discuss·10 likes·197 readsLaravel
Terrence Wongwongte.hashnode.net·Oct 8, 2022How to avoid keeping stale user session in idle tabs after logoutMaintaining up-to-date user session is easy, you can save the session/token in a js variable, in cookie, or in localstorage. However, if a user opens multiple tabs/windows for the same website, some may contain updated data when idle. For example, a ...Discuss·10 likes·73 readsJavaScript
SuperTokensforSuperTokenssupertokens.hashnode.net·Sep 5, 2022How to use SuperTokens in a VueJS app with your own UIThis post will guide you on how to add authentication to a VueJS app with SuperTokens using your own UI. We will be building our own authentication forms and will be using supertokens-web-js to make those forms work. What is SuperTokens? SuperTokens...Discuss·1 like·30 readsVue.js
Aniket Moreaniketmore311.hashnode.net·Jun 16, 2022Node.js session authentication in one fileBelow is one file that shows how to do session authentication in node.js and express with a minimal example. The only dependencies on the project are express and dotenv index.js require("dotenv").config(); const express = require("express"); const s...Discuss·57 readsNode.js