Skip to content

Instantly share code, notes, and snippets.

View sasiruLK's full-sized avatar

Sasiru Ravihansa sasiruLK

View GitHub Profile
@bholmesdev
bholmesdev / react-async-await-rfc-notes.md
Created October 15, 2022 18:22
React async / await RFC notes

React async-await RFC

What I know coming in

React server components (initial proposal) was a so-so DX that solved an important problem: I want to render a React component on the server only, with APIs to easily fetch data for rendering.

  • Pulls on islands architecture concepts (hi Astro.build!)
  • Improves full-stack ergonomics
@NickMcSweeney
NickMcSweeney / postgresql_plus_arch-linux.md
Last active October 2, 2025 04:20
Getting postgresql running on Arch Linux

Setup Postgresql

run postgresql with systemctl

Install postgres

latest

sudo pacman -S postgresql

specific version

find version & build from source

.
├── books
│   ├── handlers.go
│   └── models.go
├── config
│   └── db.go
└── main.go