EDDYMENS

Published 2 years ago

A Guide To Creating Headings In Markdown

A heading in any document seeks to provide a brief explanation of what the subsequent text is about. Generally, there are about six types of headings, and each comes with a different font size. Markdown provides a syntax for all six heading types as seen in the examples bel...

Published 2 years ago

How To Build A Serverless Contact Form With Digital Ocean Functions

This tutorial walks you through creating a serverless contact form handler for your static site using Digital Ocean functions . As part of the setup, we will be st...

Published 5 years ago

What The Heck Is GraphQL

Definition GraphQL in itself is a specification describing a new way an app or web frontend asks for data from the server. This specification is built into libraries we end up implementing on our server-side as well as the client-side of our apps. Meaning if you are building...

Published 2 days ago

What Is A Daemon?

A daemon (pronounced "dee-mon") is a computer program that runs in the background, rather than being directly controlled by the user. It usually starts when the system boots up and continues running to perform tasks quietly in the background. Daemons are important because they han...

Published 3 weeks ago

What Is RAG?

RAG stands for Retrieval-Augmented Generation. It is a method that helps AI give better and more accurate answers by finding the information it needs before generating a response. RAG is a process that combines two things: retrieval and generation. ...

Published 3 weeks ago

What Is ESNext?

ESNext refers to the latest version of JavaScript, or ECMAScript, that is yet to be officially released. ECMAScript (ES) is the scripting language specification on which JavaScript is based. You can learn more about ECMAScript from the official ...