Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
0-9
 99-bottles
B
 bbs
C
 cal
E
 editor
F
 fizzbuzz
 flappy
 forth
 Functions
H
 hello
 httpd
L
 life
 lisp
M
 makePuzzle
 makeSolution
 mandelbrot
N
 Neon Samples
 net-services
O
 othello
Q
 quine
S
 sieve
 snake
 solveSudoku
 spacedebris
 sudoku
T
 tetris
Prints out the song “99 Bottles of Beer” as from the web site http://www.99-bottles-of-beer.net.
Implements a simple 1990s style BBS application.
Implementation of the Unix cal command.
Simple text editor, with Neon syntax highlighting.
For each integer from 1 to 100, print “Fizz” if the number is divisible by 3, or “Buzz” if the number is divisible by 5, or “FizzBuzz” if the number is divisible by both.
Implementation of a “Flappy Bird” clone.
Implementation of the Forth programming language.
The canonical “Hello World” program.
Implementation of a simple HTTP server.
Conway’s Game of Life.
Implementation of a Scheme-like Lisp variant.
FUNCTION makePuzzle(
   solution: multiarray.ArrayNumber2D,
   filled: Number,
   callback: FUNCTION(n: Number)
): multiarray.ArrayNumber2D
This function makes a puzzle (a partially filled grid), given a solution (completely filled grid) and a number of cells to leave filled.
FUNCTION makeSolution(): multiarray.ArrayNumber2D
This function makes a random solution to a Sudoku puzzle.
Mandelbrot set generator.
Neon samples.
Simple network services.
Othello game.
Program that prints out its own source code.
Compute prime numbers up to 100 with the Sieve of Eratosthenes.
Snake game in curses.
FUNCTION solveSudoku(INOUT grid: multiarray.ArrayNumber2D): Number
This solver uses the above implementation to efficiently solve a Sudoku puzzle.
Vector base space rocks game.
Sudoku solver and puzzle generator.
Tetris game in curses.
Close