hanlinaung.devCookies vs. Sessions: When to Use Each for Web DevelopmentREST APIs are designed to be stateless. That means server does not save the user context between requests. To identifies the user, the client should includes credentials like token and api keys in each request to maintain the RESTful principle. There...Mar 22, 2025·2 min read
hanlinaung.devWhat is Cross Origin Resource Sharing (CORS) and How Does It Work?Have you ever encounter CORS errors while integrating api into your front end apps. You would be wondering “what did i do wrong?”. Relax it’s not your fault. It’s not even a client code error. CORS errors cannot be accessed or resolved programmatical...Feb 28, 2025·3 min read
hanlinaung.devExploring GitHub Actions: A Comprehensive How-ToWhat is Github Actions Github Actions is a CI/CD tool that allows you to automate your software development workflows. It is a powerful tool that allows you to automate a wide range of tasks, from building and testing your code to deploying your appl...Jan 3, 2025·13 min read