Minimizing Google Fonts by Only Loading it for Certain Characters
February 20, 2022 — When it comes to using custom fonts on websites, the de-facto way to do currently is to use the Google Fonts.
A blog on PHP, JavaScript, and more
February 20, 2022 — When it comes to using custom fonts on websites, the de-facto way to do currently is to use the Google Fonts.
February 17, 2022 — If you have been working with TypeScript lately, you might have used relative paths to import modules or files. So, for instance, let’s say if I want to import a module that is two directories up from the current file location, I would need to import it like so.
February 16, 2022 — When you’re building a user-facing application, one of the most common scenarios is to let the user decide their respective time zone.
February 12, 2022 — Before Laravel 9, when you wanted to interact with strings you would either use the Illuminate\Support\Str
class like so.
February 11, 2022 — Ever since I entered into this world of user interfaces, the one thing that I always come across while working are these radio buttons.
February 10, 2022 — Numbers are tricky. Numbers are tricky because they have been used as a metric for a lot of things. Currency, scale, weather, science to name a few. And since numbers are associated with several different things, it’s important to represent them in a way humans can understand.
February 7, 2022 — More often than not, you would end up in a scenario where you created a new branch off from the base branch, you implemented the feature and once that is done, you raise a pull request for the same.
February 3, 2022 — The one feature of Laravel I truly admire is the Collections. Essentially, collections provide a fluent, convenient wrapper for working with arrays of data.
February 1, 2022 — Sometimes, you might stumble upon a situation where you have some keywords and you want to replace those with certain keywords in the string.
January 30, 2022 — Up until now, when you’re working with Laravel’s paginator and if you wanted to check whether the user is on the first page of the pagination in a Blade file, you would be using the onFirstPage()
method like so.