EDDYMENS

Published 11 months ago

What Is An SLA?

A Service Level Agreement (SLA) is a contract that outlines the expectations of a service provided to a customer, for example, the level of support available to them....

Published 11 months ago

How To Comment In Markdown

Commenting in Markdown uses the same syntax as HTML, thus the . Single line comme...

Published 11 months ago

What Is Pair Programming?

Pair programming is a software development technique where two but possibly more developers sit behind one computer and work together to write code. The developers tackle the same problem instead of splitting it amongst themselves (divide and conquer). The goal of this method is t...

Published 11 months ago

SyntaxError: Unexpected Token 'export'| Javascript Error

I am assuming you got this error message whiles working with NodeJS, because this is where mine came from :). I got this error because I typed out instead of which is what it should be if you are trying to expose some functions, and or variables in a NodeJS script. ...

Published 11 months ago

What Is Prerendering?

Whenever you request a webpage you will get one of two things: a. Everything you need to render the page b Some markup structure and Javascript to loa...

Published 11 months ago

What Is A Single Page Application (SPA)?

SPA or Single Page Application is a web application implemented in a way it gives the end-user an experience similar to using an installed app. Thus page transitions happen swiftly without the page reloading. SPAs start by loading up the initial page made up of HTML, CSS, Javascript then r...