EDDYMENS

Published a month 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 month 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...

Published a month 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 2 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 ...

Published 2 months ago

How To Include Square Root Notations In Markdown

Let'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 ...

Published 2 months ago

How To Add A Caption To An Image In Markdown

This is an image caption Markdown unfortunately doesn't provide syntax for adding captions to images, however since HTML is a superset of Markdown we can use HTML to achieve this. Some markdown parsers allow you to display the alt text of...