Skip to content

Instantly share code, notes, and snippets.

View gabrielsr's full-sized avatar

Gabriel Rodrigues gabrielsr

View GitHub Profile
@armandofox
armandofox / date_calculator_pseudocode.txt
Created August 20, 2020 18:56
date_calculator_pseudocode.txt
start with Year = 1980
while (days remaining > 365)
if Year is a leap year
then if possible, peel off 366 days and advance Year by 1
else
peel off 365 days and advance Year by 1
return Year
@staltz
staltz / introrx.md
Last active May 15, 2024 17:28
The introduction to Reactive Programming you've been missing