Category: faq

How to use localstorage in Javascript

Last updated on August 29th, 2024 at 11:49 amClient side data storage is a trend now days. window.localStorage or localStorage api can be used to save and get data from browser storage. This API assist developers in saving data to the browser and retrieve it instead of using cookies or may be session(depending on use-cases). […]

How to Create a Self-Signed Certificate Using Java Keytool

Last updated on June 24th, 2025 at 07:52 amIf you’re working on a local Java application and need to enable HTTPS, one of the quickest ways to do it is by generating a self-signed SSL certificate using Java Keytool. While these certificates aren’t trusted by browsers for public sites, they’re perfectly fine for development and […]