Skip to content

Instantly share code, notes, and snippets.

View svanschalkwyk's full-sized avatar

Steph van Schalkwyk svanschalkwyk

View GitHub Profile
@veekaybee
veekaybee / normcore-llm.md
Last active May 4, 2024 21:03
Normcore LLM Reads

Anti-hype LLM reading list

Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

Foundational Concepts

Screenshot 2023-12-18 at 10 40 27 PM

Pre-Transformer Models

@JanWielemaker
JanWielemaker / server.pl
Created November 14, 2019 10:51
A statefull HTTP server
:- module(http_statefull_server,
[ server/0
]).
:- use_module(library(http/http_server)).
:- use_module(library(http/http_session)).
:- use_module(library(broadcast)).
:- use_module(library(modules)).
:- use_module(library(debug)).
:- http_handler(root(.), http_redirect(moved, root(home)), []).