Skip to content

Instantly share code, notes, and snippets.

View tylerlrhodes's full-sized avatar
🍕

Tyler Rhodes tylerlrhodes

🍕
View GitHub Profile
@btroncone
btroncone / ngrxintro.md
Last active February 9, 2024 15:37
A Comprehensive Introduction to @ngrx/store - Companion to Egghead.io Series

Comprehensive Introduction to @ngrx/store

By: @BTroncone

Also check out my lesson @ngrx/store in 10 minutes on egghead.io!

Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!

Table of Contents

@dyoo
dyoo / mergesort.rkt
Created November 12, 2012 00:24
mergesort using the same trick as SICP 2.64 to avoid intermediate random access vector
#lang racket
;; Implementation of a mergesort on lists, while avoiding intermediate
;; vector construction. Uses the same trick as that in SICP Exercise
;; 2.64 to keep track of the elements we haven't yet processed.
(provide mergesort)
(define (mergesort elts)