Skip to content

Instantly share code, notes, and snippets.

View vegadelalyra's full-sized avatar
🏠
Working from home

Daniel Vega vegadelalyra

🏠
Working from home
View GitHub Profile
@miguelseguramx
miguelseguramx / pokedex.css
Created August 13, 2020 01:17
Todos los estilos de nuestra Pokedex!
/* General */
/*-------------------------*/
:root {
--red: #dd082f;
--dark-red: #3b020d;
--green: #2ff901;
--yellow: #ffcc02;
--sky: #01fbfb;
--orange: #ffcc02;
@dsolovay
dsolovay / ShardTest.ps1
Last active February 15, 2024 21:25
Create MongoDB replica sets, shards, and test data
# 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 ""