Skip to content

Instantly share code, notes, and snippets.

View nathanielfernandes's full-sized avatar
👨‍🍳
cooking

Nathaniel Fernandes nathanielfernandes

👨‍🍳
cooking
View GitHub Profile
@bazhenovc
bazhenovc / the_sane_rendering_manifesto.md
Last active March 15, 2025 08:44
The Sane Rendering Manifesto

The Sane Rendering Manifesto

The goal of this manifesto is to provide an easy to follow and reasonable rules that realtime and video game renderers can follow.

These rules highly prioritize image clarity/stability and pleasant gameplay experience over photorealism and excess graphics fidelity.

Keep in mind that shipping a game has priority over everything else and it is allowed to break the rules of the manifesto when there are no other good options in order to ship the game.

Do not use dynamic resolution.

@jali-clarke
jali-clarke / TypeHeck.hs
Last active November 22, 2022 22:23
printing `hello world!` by running a brainfuck interpreter in haskell's type system
{-# LANGUAGE
DataKinds,
KindSignatures,
TypeFamilies,
TypeOperators,
UndecidableInstances
#-}
import Data.Kind (Type)
import GHC.TypeLits (AppendSymbol, Nat, Symbol, type (+), type (-), symbolVal)