Skip to content

Instantly share code, notes, and snippets.

@Thenlie
Thenlie / getting-started.md
Created November 3, 2023 05:47
Streamability getting started

Project Set Up 🏗️

The steps below contain everything a first time developer needs to get the Streamability project running locally.

Pre-requisites

  • Docker Desktop
  • Node v18
  • Git
@Thenlie
Thenlie / GitCollaboration.md
Last active December 27, 2022 21:12
Created to help members of the JavaScipt Mastery Discord community contribute to the community project

Contribution Guidelines 👥

This project is very open to contributions! If you have a feature request, or bug report, please open an issue with the applicable tag. If you would like to simply create a feature, fork the repository and add in your changes. Then submit a pull request which will be reviewed and eventually merged if it meets all contribution requirements.

Table of Contents

  1. Project Set Up
  2. Git Workflow
  3. Branching Strategies
  4. Pull Requests
@Thenlie
Thenlie / RegexTutorial.md
Last active February 3, 2022 19:58
A tutorial for Regular Expressions

Regular Expression Tutorial

Regular expressions are a powerful tool in coding that can be used to find patterns in strings of text without needing much more than a single line of code. While the syntax may seem foreign at first, after some practice regular expressions will be an indispensible tool for every coder. In this tutorial I will explain how regular expressions work using a simple example.

Summary

For this tutorial we will be using the regular expression below that will match with any valid email address.

/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/