1
1
Fork
You've already forked random_code
0
No description
  • C 98.7%
  • HTML 0.6%
  • Odin 0.6%
Find a file
Captain4LK 051c7e032d
Add brainfuck.odin
Little experiment I did
2024年09月20日 19:03:18 +02:00
brainfuck Add brainfuck.odin 2024年09月20日 19:03:18 +02:00
external art2png: code improvement 2023年04月06日 17:10:56 +02:00
golgotha Some reapo cleanup 2022年08月12日 12:08:51 +02:00
image_manipulation iso_transform.c: refactoring, mostly feature complete 2023年09月06日 21:49:43 +02:00
img2pixel_emscripten_test Update index.html 2023年02月02日 17:51:18 +01:00
markov Add poe.txt 2023年01月18日 16:00:29 +01:00
plotter Plotter: improve position accuracy 2022年10月19日 18:43:39 +01:00
qoi QOI: initial commit 2022年04月15日 22:25:09 +02:00
RvnicRaven-testing Add map_convert.c 2023年06月05日 19:51:47 +02:00
single_header art2png: code improvement 2023年04月06日 17:10:56 +02:00
wfc Start wfc.c 2022年05月21日 20:22:56 +02:00
.gitignore Blur: faster 2023年03月05日 19:53:13 +01:00
COPYING Add content to readme 2021年04月21日 19:42:27 +02:00
README.md remove brainfuck2x.c 2022年01月23日 21:16:45 +01:00

random_code

Collection of random, small code snippets I wrote over time. All code in this repository (except in the external directory) is released to the Public Domain, see COPYING for more info.

Brainfuck

brainfuck.c

A brainfuck interpreter

gmod_convert.c

On October 22, 2000, Golgotha was released to the Public Domain. The 3d models included were however distributed in a custom format, incompatible with modern software. This small C program converts the .gmod files to the wavefront format.

steganography.c

Hide data in png files

quantize.c

Image quantization (reduces the color of an image). Doesn't do any dithering, look at SLK_img2pixel if you want that.