Skip to content

Instantly share code, notes, and snippets.

View BinaryBitBytes's full-sized avatar
🍍
Pineapple Express

BinaryBitBytes BinaryBitBytes

🍍
Pineapple Express
  • Atlanta, Georgia
View GitHub Profile
@BinaryBitBytes
BinaryBitBytes / C_Programming_Outline.md
Last active April 22, 2024 02:11
C Programming Language: Fundamentals

Author

BinaryBitBytes 04/21/2024

Use Cases for the C Programming Language

  • Applications
  • Operating Systems
  • Embedded Systems
  • Programming Languages

FWIW: I (@Rondy) am not the author of the content presented here, which is an outline from Edmond Lau's book. I've just copy-pasted it from somewhere and saved as a personal gist, before it got popular on newsnews.ycombinator.com. I don't remember where exactly the original source is from and neither could find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

@BinaryBitBytes
BinaryBitBytes / js-terms.md
Created August 16, 2022 19:34 — forked from AllThingsSmitty/js-terms.md
10 terms to help you better understand JavaScript

10 JavaScript Terms You Should Know

From currying to closures there are quite a number of special words used in JavaScript. These will not only help you increase your vocabulary but also better understand JavaScript. Special terms are normally found in documentation and technical articles. But some of them like closures are pretty standard things to know about. Knowing what the word itself means can help you know the concept it's named for better.

  1. Arity
  2. Anonymous
  3. Closure
  4. Currying
  5. Hoisting
  6. Mutation

Regex 101- Regular Expressions

Introductory


A Regex is known as a Regular expressions, or regex for short, are a series of special characters that define a search pattern. We will navigate a search pattern bases on literal characters that will produce a regex search pattern with a result by deliminating meta characters withing each of the data sets to redact the required results to each of the respected regex components. In this document I will go about describing each of the respected regular expressions in detail and provide a functional example for each regular expression to better help the reader understand how the regular expressions are written and what they are doing.

Summary


This document will introduce methods & solutions to provide the reader with the respected solutions that will supplement their understanding of regular expressions. Below in the table of contents I will address each of the topics in detail, provide supporting resources, and best explain and demonstrate

@BinaryBitBytes
BinaryBitBytes / My Regex 101 Tutorial - Regex Expressions.md
Last active April 22, 2024 02:12
Regular Expressions 101 Markdown Documentation

Regex 101- Regular Expressions

Introductory


A Regex is known as a Regular expressions, or regex for short, are a series of special characters that define a search pattern. We will navigate a search pattern bases on literal characters that will produce a regex search pattern with a result by deliminating meta characters withing each of the data sets to redact the required results to each of the respected regex components. In this document I will go about describing each of the respected regular expressions in detail and provide a functional example for each regular expression to better help the reader understand how the regular expressions are written and what they are doing.

Summary


This document will introduce methods & solutions to provide the reader with the respected solutions that will supplement their understanding of regular expressions. Below in the table of contents I will address each of the topics in detail, provide supporting resources, and best explain and demonstrate