8000
Skip to content

Instantly share code, notes, and snippets.

View CBID2's full-sized avatar
😄
I’m Back

Christine Belzie CBID2

😄
I’m Back
View GitHub Profile
@CBID2
CBID2 / Open Source Maintainer-roadmap.md
Last active December 31, 2023 06:05 — forked from kamranahmedse/javascript-roadmap.md
Roadmap for Open Source Maintainers(Text)

Textual version of the Open Source Maintainer roadmap roadmap.sh/open source maintainer

Open Source Maintainer

Stage 1: Contribute to Open Source Projects

  • Learn Git
  • Master GitHub
  • Find Projects That Interest You
  • Start Contributing

Stage 2: Gain Maintainership Experience

Top 4 Ways YAML Takes Your Project Beyond JSON's Reach

Quick Summary

JSON and YAML are considered the go-to languages to structure data for most frontend developers. However, these two languages are often used interchangeably due to YAML being the subset of JSON. In this article, Christine will discuss instances where YAML is best suited over JSON.

When it comes to structuring data, JSON (JavaScript Object Notation) and its subset YAML (YAML Ain't Markup Language) are the languages developers often use to fulfill this purpose because they help make data easier for people to read. As a result, YAML and JSON are often used interchangeably, causing developers to use the former ineffectively in their projects. In this article, we will learn which and when certain features in YAML suit your project as opposed to JSON.

Comments

Top 4 Ways YAML Takes Your Open Source Project Beyond JSON's Reach

Quick Summary

Article Content

Add your article here. Don’t forget to write an introduction that explains what you will be covering, and a conclusion that gives some additional resources or sums up the things learned. See our Style Guide for more: https://www.smashingmagazine.com/style-guide/

Authors Guide: Article Template

Please submit your article including all of the information below. You can include this as a seperate file if you like - but please complete each section. Please use an online service to write your article, for example Dropbox Paper, Draft.in, Google Docs. For more help, see the editorial guide

Article Title

Ideally under 67 characters, what problem does this article solve?

Quick Summary

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<title>Weather API</title>
<style>

Clubhouse: #ADD LINK TO CLUBHOUSE STORY

Feature description

Clearly and concisely describe the feature.

Analysis and Design

Analyze and attach design documentation.

@CBID2
CBID2 / ReadMeTemplate
Created August 31, 2022 20:09 — forked from dpkreativ/ReadMeTemplate
A simple template for writing better README.md files that properly document my work. Adapted from Frontend Mentor (frontendmentor.io)
# Name of Project
**Project description
This is a ...
## Table of contents
- [Overview](#overview)
- [The challenge](#the-challenge)
- [Screenshot](#screenshot)
0