Published 2 years ago
Jumping To Any Section Of Your Markdown DocumentYou might want to add links in other parts of your markdown document so users can click and easily navigate to different sections. This can be done using Anchor tags. ...
Published 2 years ago
Prevent MacOS From Creating A .ds_store FileIf you work on macOS, you might have noticed whenever you add image files or some media file to your project, a hidden file is created automatically. This is how macOS stores metadata for media files. But you don't want this in your project. There are two ways you can prevent this...
Published 2 years ago
Becoming A Software Technical WriterUsing some products is very straightforward. Either because the product itself is not complicated or the task it's meant to complete does not require much knowledge. For example, figuring out how a toothbrush works. There are however certain products that have many moving parts or...
Published 2 years ago
Laravel PHP 8 Throws Error Too Few Arguments To Function | FixGenerally, when you get this error your controller is likely expecting more arguments than you are passing to it. However, if you got the above error after updating to PHP 8 then it's likely an issue with PHP 8s expected parameter arrangement. In PHP 8, all required parameters nee...
Published 2 years ago
Resize Image To Exact Dimensions | ImagemagicImageMagick provides a host of tools like the Convert command for modifying images. The Convert command can be used to resize images. You can resize your images in two ways....