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;
@Geoff-Ford
Geoff-Ford / composing-software.md
Last active March 14, 2025 20:26
Eric Elliott's Composing Software Series

Eric Elliott's "Composing Software" Series

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.

@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 ""