EDDYMENS

Published 2 months ago

Readme.io Documentation Platform: A Review

Readme.io is a platform for hosting developer documentation, including guides and OpenAPI sp...

Published 3 months ago

A Comprehensive Guide To API Pagination Standards And Techniques

Pagination 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 3 months 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 3 months ago

Math Symbols Cheatsheet For Markdown & HTML

If 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 3 months ago

How To Run Laravel Queues On Shared Hosting

PHP 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 3 months ago

How To Use Fractional (Vinculum) Notations In Markdown

Markdown 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 ...