Useful keyboard shortcuts that work everywhere
July 22, 2023 — There are keyboard shortcuts that are application-specific and there are system-wide keyboard shortcuts.
A blog on PHP, JavaScript, and more
July 22, 2023 — There are keyboard shortcuts that are application-specific and there are system-wide keyboard shortcuts.
July 21, 2023 — Setting up hover on elements in devices where hover is not supported (like mobiles, tablets…) can be overkill. For instance, if you have a navigation menu that has a hover effect on a desktop browser, you might want to disable that hover effect on mobile devices because there’s no hover support on mobile devices.
July 19, 2023 — Laravel Pint is a handy little package that helps you fix PHP code style in a Laravel project. On top of fixing code style, you can also set some rules and simplify repetitive tasks using this package.
July 16, 2023 — I was just wondering if life must have been super boring pre-smartphone era. Especially when you go on vacation.
July 16, 2023 — Reading blogs is one of my favorite pastimes. As soon as I see an article from a blog that sparks interest in me, I’d instantly subscribe to it. And at this point, I have subscribed to more than 30 blogs and counting.
July 13, 2023 — So, imagine a scenario where you’re working on a project that has its front end (or a mobile app) ready to consume data from the backend. But, the backend is not ready yet. How would you test your front end in this case?
July 12, 2023 — I was working on this little app that lets you convert any text to a slug. And while working on it, I came across this problem where I had to replace accented characters with their plain English counterparts.
July 12, 2023 — Ever wondered how you can create a lightsaber border in CSS? If you’re not a fan of Star Wars, a lightsaber is a fictional energy sword featured in the Star Wars universe.
July 9, 2023 — The ability to switch between light and dark modes is one of the most requested features on the web. Most modern browsers come with a lot of features and APIs that can help you identify which color scheme the user is currently using.
July 7, 2023 — The rm is the most commonly used command in the Linux/Unix world. It’s used to delete files and directories. But the problem with the rm
command is that it deletes the files and directories permanently. There’s no way to recover them once they’re deleted.