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
  • 04:11, 7 August 2022 Elie talk contribs created page Code:borders-black-on-white.c (Created page with "<syntaxhighlight lang="c"> #define WIDTH 8640 #define HEIGHT 4320 #define IN_FILE "data/countries.data-int16-8640x4320" #define OUT_FILE "data/borders-black-on-white.png" #include <stdio.h> #define STB_IMAGE_WRITE_IMPLEMENTATION #include "stb_image_write.h" int main() { short *in = malloc(WIDTH*HEIGHT*sizeof(short)); unsigned char *out = malloc(WIDTH*HEIGHT*sizeof(unsigned char)); if (!in || !out) { printf("Not enough memory\n"); free(in); free(out);...")