Skip to content

Instantly share code, notes, and snippets.

View Dcolonel6's full-sized avatar

Dennis M Njogu Dcolonel6

  • 13:33 (UTC +03:00)
View GitHub Profile
@NdagiStanley
NdagiStanley / README.md
Last active May 10, 2022 19:44
PyCon 2022
@parmentf
parmentf / GitCommitEmoji.md
Last active April 30, 2025 05:10
Git Commit message Emoji

Inspired by dannyfritz/commit-message-emoji

See also gitmoji.

Commit type Emoji
Initial commit πŸŽ‰ :tada:
Version tag πŸ”– :bookmark:
New feature ✨ :sparkles:
Bugfix πŸ› :bug:
@morrismukiri
morrismukiri / kenyanMobilePhoneRegEx.txt
Last active January 9, 2025 06:57
Kenyan phone number regular expression
/(0|+?254)7(\d){8}/
@staltz
staltz / introrx.md
Last active April 29, 2025 08:33
The introduction to Reactive Programming you've been missing
@joyrexus
joyrexus / README.md
Last active June 27, 2024 15:39
Node.js streams demystified

A quick overview of the node.js streams interface with basic examples.

This is based on @brycebaril's presentation, Node.js Streams2 Demystified

Overview

Streams are a first-class construct in Node.js for handling data.

Think of them as as lazy evaluation applied to data.