Published 3 years ago
Markdown Hacks For Technical WritersThe beauty of markdown lies in its simple yet powerful syntax. This simplicity comes at a cost though. It lacks some useful formatting features. Most of these shortcomings can be easily fixed with HTML, that is because markdown is considered a subset of HTML. This means we can write pure ...
Published 3 years ago
Deploying A Static Website To AWS S3AWS S3 is a cloud storage service that caters to the storage needs of modern software applications. S3 buckets can be used to host static sites. Any website made up of HTML, CSS, and Javascript can be hosted and made publicly available using S3. Once you have your AWS account all s...
Published 3 years ago
How To Make Your Infographics More AccessibleWhenever we put out information on the web we have the goal of reaching as many people as possible. This also involves making our content accessible to people with disabilities. For visual-heavy content, it's important to make sure they are accessible to people who depend on screen readers...
Published 3 years ago
Javascript Assignment Deconstruction - A Good Use CaseThe Javascript assignment deconstruction syntax simplifies taking values in an array or object and storing each item ...
Published 3 years ago
Heroku Cron Jobs Made Easy And FreeHeroku recommends using the scheduler add-on to create and run cronjobs should you need one. But also points out the ...
Published 3 years ago
OpenAPI Specifications: How To Make ThemThe OpenAPI Specification is a specification that describes a well-laid-out approach to defining the structure of a RESTful API. There are many ways you can describe the APIs you create. The OpenAPI specification makes it easy by defining a set of rules and providing guidelines that ...