Laravel Custom Helper Functions (How-to)
In this post, we’re gonna be looking at how to create custom helper functions that can be globally used, meaning they can be called on… Read More »Laravel Custom Helper Functions (How-to)
Second most tallest chap in the neighbourhood. Sometimes my sense of humor causes abdominal pain. I am not yet famous for something.
In this post, we’re gonna be looking at how to create custom helper functions that can be globally used, meaning they can be called on… Read More »Laravel Custom Helper Functions (How-to)
If you’re working with a lot of nested code, sometimes it’s hard to identify matching brackets, braces, or parentheses. The good news is that VS… Read More »VS Code Colored Bracket Pair Guides
In this post, we’re going to talk about ‘security.txt’: what is it what are the benefits the downsides how you can easily create your own… Read More »Security.txt: Pros, Cons & Ethical Hacking
Update: As of April 2022 (v1.67) bracket pair colorization is enabled by default. By default, VS Code comes with plain light-colored brackets which can be… Read More »VS Code Native Bracket Pair Colorization
If you’ve been going through developer blogs reading technical articles, you’ve most probably seen little windows that look just like this one: This is a… Read More »GitHub Gist — Crash Course
If you’re working with a lot of editor tabs open, you already know how unpleasant it is to scroll through tabs to find the file… Read More »VS Code Wrap Tabs to Multi-Line / Stack Tabs
In this post, we’re gonna be looking at how to process large amounts of database records with Laravel without running into memory or locking issues.… Read More »Laravel Chunk Database Records – But Beware!
I’m gonna be showing you how to download files from an API with Laravel without having to write the contents of the files to disk.… Read More »Download Files From API Without Writing to Disk – Laravel