Skip to content

Instantly share code, notes, and snippets.

View narslan's full-sized avatar

Nevroz Arslan narslan

  • Turkey
  • 13:54 (UTC +03:00)
View GitHub Profile
@narslan
narslan / circledb.rkt
Created December 11, 2024 11:34 — forked from Saityi/circledb.rkt
'An Archaeology-inspired database' (but in Racket) (https://www.aosabook.org/en/500L/an-archaeology-inspired-database.html) (Incomplete -- does not include queries)
#lang racket
(require racket/generic
racket/match
racket/pretty
struct-update
threading)
(define flip
(curry (λ (f a b) (f b a))))
@narslan
narslan / building-sync-systems.md
Created February 19, 2024 04:28 — forked from pesterhazy/building-sync-systems.md
Building an offline realtime sync engine

So you want to write a sync system for a web app with offline and realtime support? Good luck. You might find the following resources useful.

Overview articles