Published a year ago
A Comprehensive Guide To API Pagination Standards And TechniquesPagination just like authentication, is something you need to think about early when building or using APIs (Application Programming Interfaces) . In this blog post, I will explain different some ...
Published a year ago
Enhancing Technical Content With Varied Sentence Structures (Part 1)What is Sentence Variation? Sentence variation means using different ways to write sentences to make your writing more interesting and easier to read. This is especially helpful when writing technical content, which can often be dry and boring. In writing, sentence variation invol...
Published a year ago
Math Symbols Cheatsheet For Markdown & HTMLIf you want to add math symbols to your website or markdown document, you can use HTML entities. This cheat sheet makes it easy to find the right code. Just look at the table below to see the symbol, its HTML entity, and the Unicode value. Use these codes to display math symbols in your t...
Updated a year ago
How To Run Laravel Queues On Shared HostingPHP out of the box runs each line of code in a sequential order (from top to bottom). This means until the first operation is done executing the next one will have to wait. Generally, this is not a problem since most tasks don't take that long to complete, but other operations lik...
Published a year ago
How To Use Fractional (Vinculum) Notations In MarkdownMarkdown doesn't have built-in support for math notations. However, since HTML is a superset of Markdown, we can use it to add math notations. But even with ...
Published a year ago
How To Include Square Root Notations In MarkdownLet's be clear: Markdown alone can't handle complex mathematical notations. Markdown is designed for basic text formatting and has a limited set of features. Markdown's main goal ...