EDDYMENS

Eddymens (List page)


Last updated 2022-07-04 19:35:51

How To Build Your Own Static Site Generator

Static site generators have quickly grown to become the preferred way to create documentation and simple websites. Unlike dynamic websites, static sites do not require any server-side programming and come with minimal server-side maintenance. Also, static site hosting services such as ...

Last updated 2022-07-01 13:29:55

How To Remove New (untracked) Files From A Git Repo

Sometimes whiles working on a project you end up with files and or folders that you don't need. This usually happens when you run scaffolders or generators. Git allows you to delete such files and folders. They are known as untracked folders or files as they have never been committed ad tr...

Last updated 2022-06-25 06:29:11

Markdown Hacks For Technical Writers

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

Last updated 2022-06-05 19:08:37

Deploying A Static Website To AWS S3

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

Last updated 2022-05-31 02:41:36

How To Make Your Infographics More Accessible

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

Last updated 2022-05-24 06:13:07

Javascript Assignment Deconstruction - A Good Use Case

The Javascript assignment deconstruction syntax simplifies taking values in an array or object and storing each item ...