All public logs

Combined display of all available logs of the change wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 12:15, 5 August 2022 Elie talk contribs created page Code:isochromic.c (Created page with "<syntaxhighlight lang="c"> // Elie's isochromic image generator v0.5 // Copyright 2022, Elie Goldman Smith // License: GNU GPL V3 // To compile this code: // gcc isochromic.c -lm -lfftw3 -lreadline -lcurses -O3 -o isochromic // # takes awhile to compile, because of optimization and stb_image #include <ctype.h> #include <fftw3.h> #include <math.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <readline/readline.h> #include <...")