This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* General */ | |
/*-------------------------*/ | |
:root { | |
--red: #dd082f; | |
--dark-red: #3b020d; | |
--green: #2ff901; | |
--yellow: #ffcc02; | |
--sky: #01fbfb; | |
--orange: #ffcc02; |
A collection of links to the excellent "Composing Software" series of medium stories by Eric Elliott.
Edit: I see that each post in the series now has index, previous and next links. However, they don't follow a linear flow through all the articles with some pointing back to previous posts effectively locking you in a loop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Powershell Script for creating a 3x5 shard cluster | |
# Based on Mongo University M101 lecture, "Building a Shared Environemnt" https://youtu.be/dn45G2yw20A | |
$rootpath = "/temp/mongoshards/" | |
new-module -scriptblock {function report($text) { | |
write-output $("-" * $text.length) | |
write-output $text | |
write-output $("-" * $text.length) | |
write-output "" |