diff --git a/21st_century.md b/21st_century.md
index 207e765..ddd3839 100644
--- a/21st_century.md
+++ b/21st_century.md
@@ -22,6 +22,8 @@ Maybe most depressing of all is that a reader of this article, himself living in
Never before has the world witnessed such downfall as the 21st century, a chilling horror devoid of all humanity. No sincerity exists anymore, only fakes, as everyone seeks some kind of [capital](capitalism.md) now, no [art](art.md) is genuine anymore, no soul present in any craft, there is no place for soul among pure self interest -- in spite of world filled with bright colors and infantile pictures, everyone's miserable and frightened, it's like a world full of creepy clowns, cartoon animals are dancing around in [ads](marketing.md) and movies but you know it's all just soulless robots beneath the shell, something aimed purely at taking advantage of you, at entertaining you as you're being raped. They will torture you to death with a smile on their face.
+Everything looks like pure crap, all movies and video games, celebrities and rockstars [looks like crap](body_shaming.md) too and their "music" sounds the same, and this sea of crap drowns anything [beautiful](beauty.md) that might rarely emerge.
+
Human is dead, he got replaced by [economy](economy.md). There are just things such as economy, [laws](law.md), [rights](right_culture.md), countries, prosperity, [justice](justice.md), [correctness](political_correctness.md), then also more economy, money and prosperity, "progress", [modern](modern.md) technology and many other things, but no human. You dislike what you do and think it has no meaning? Shut up and serve the economy -- that's the OFFICIAL justification to any complaint. You are suffering every day agony and want to kill yourself? Yeah it's not ideal but shut up and serve the economy. Next: your kids are dying and are being raped every day? Yeah that's maybe not so good but anyway, shut up and serve the economy. Next.
Plants now exist that could possibly end the world hunger, but in [capitalism](capitalism.md) [corporations](corporation.md) can own biological species (see *plant breeders' """[rights](rights_culture.md)"""*) so these plants' DNA is now someone's property and the plants are forbidden to be grown by people so that hunger is sustained so that business built on top of hunger can be sustained. This is not even concealed or controversial anymore, people can do nothing about it -- there are children starving, chewing on truck tires in garbage dumps, there is food for them but they mustn't eat it because a rich faggot needs to be a tiny bit richer so the child is left to perish, that's just standard life in 21st century.
diff --git a/elon_musk.md b/elon_musk.md
index 6fb3886..5c7c931 100644
--- a/elon_musk.md
+++ b/elon_musk.md
@@ -1,5 +1,7 @@
# Elon Mu$k
+*This article is part of the defamation series of articles.*
+
Elon Musk is an enormous [capitalist](capitalism.md) dick. He is afroamerican. Elon's hair is the least fake thing about him. His [IQ](iq.md) is immeasurably low, he barely even passes the mirror self recognition test but he likes to LARP as [Einstein](einstein.md) on Twitter, it's super cringe, he's like a child, just more retarded and uglier.
Lololol how pathetic, this faggot PUBLICLY LIED for years about being good at games to make himself look cooler to [zoomers](zoomer.md), he made up having been a semi pro at [Quake](quake.md) lol, he paid people to grind his game accounts, then streamed playing the games and despite having top characters on the ladder showed he didn't know how to play the fucking games [LMAOOOOOO](lmao.md), he reluctantly admitted it now :D How the fuck were people supposed to believe he is running 20 companies while also being able to put enough time to be at the top of competitive game ladders FKN SHIT. EVERY SINGLE [ENTREPRENEUR](entrepreneur.md) IS A FUCKING PATHOLOGICAL LIAR, when will people fucking realize this.
diff --git a/exercises.md b/exercises.md
index 6fbb55c..3d82389 100644
--- a/exercises.md
+++ b/exercises.md
@@ -53,10 +53,11 @@ This place is for suggesting programming [projects](project.md) that will in fir
9. **[bytebeat](bytebeat.md)**: Make at least three cool sounding bytebeat songs.
10. **Lorem ipsum [markdown](md.md) generator**: Create a program that generates gibberish text in markdown format that looks like normal human text. Each time it is run, it will generate generally a different text that consists of 3 to 5 sections, each section starts with a heading which starts with `# ` after which 3 to 5 words follow, then there are two newlines and then 3 to 5 paragraphs follow; each paragraph ends with two newlines, except for the last one in the document which only ends with one newline. Paragraph consists of 5 to 10 sentences; each sentence consists of 3 to 10 words, starts with capital letter (other letters are lowercase) and ends with period. About 1 in 20 words in paragraphs are highlighted -- highlight is either italic (the word is between `*`s) or bold (the word is between `**`s). After period there is space except when it's the last period in a paragraph (then there is no space). Words are selected randomly from some set of words that you define (have at least 10 different words). Thumbs up for also generating lists etc.
11. **Caesar cipher**: Make a program that encrypts/decrypts text with the simple cipher known as Caesar cipher, i.e. by offsetting each letter by certain fixed number *N* (e.g. with *N = 2* the letter *A* will become *C*, *B* will become *D* etc.). Assume just ASCII characters on input (encrypted output can be non-ASCII). You can just choose and hardcode some specific *N* but thumbs up for allowing to set any *N*. You can input/output text from/to standard input/output or files -- it's up to you -- also you can either make one program that does both encoding and decoding (e.g. depending on CLI flag) or make two programs, one for each task.
-12. **Roman numeral converter**: make a program that will convert between Roman numerals and our traditional decimal numerals (only positive whole numbers, at least up to the limit of unsigned integer range), both ways. The program will read the numeral on its input (you can choose: either read it from standard input or take it from program arguments, this isn't that important), then recognize if it's Roman numeral or decimal number, then convert it to the other representation and print it out. Handle errors only on a basic level (e.g. write out if the input value is in wrong format).
-13. **simple website generator**: All static site generators suck ass, make your own. Make a simple markup language and a program that will turn this markup into [HTML](html.md) file -- this will allow you to write HTML websites very easily. The program will read the input file on standard input (i.e. NOT from a file, though you can optionally support this too) and output the HTML on standard output (again, output to file is optional), so that the program can be used like this: `cat myfile.mymarkup | ./mymarkupprocessor > mywebpage.html`. The markup language may be super simple: let's say `_` and `;_` could mark the start and end of bold text (translating to `` and `` respectively) , `#` and `;#` start and end of heading (translating to `
` and `
` respectively) and so on (you can make your own tags, this is just an example). Basically you'll be mostly just translating your tags into HTML tags. You don't have to implement escape sequences for special characters (i.e. it's fine if it's impossible to have let's say the `#` character in your output), but thumbs up if you do. You HAVE TO output a correct HTML, i.e. you have to output a prologue (something like ` ...`) and epilogue (something like ` `) and somehow deal with possible HTML special characters in the input text: for example if the input contains `<`, you have to translate it to `<` etc., but it is allowed to handle non-trivial cases (like weird Unicode stuff or something) by e.g. just replacing problematic input with `???`. [Unicode](unicode.md) doesn't have to be supported on output, you can output plain [ASCII](ascii.md). You have to support at least normal text, 2 levels of headings and bold text, thumbs up for additional things like images, links, lists etc. Thumbs up for additional features like allowing to set website title with a CLI flag, choose from several hardcoded [CSS](css.md) styles or adding extra output formats like [Markdown](md.md), LaTeX and so on. Test that you generate correct HTML with some HTML validator.
-14. **filetype guesser**: Create a program that reads a file and guesses its file type. You can NOT use the file name, only the file content. First look at the [magic number](magic_number.md) (file signature) -- check at least PDF, JPEG, PNG, MP3, GIF and TAR. If this doesn't succeed, then see if 90% of bytes are printable ASCII characters: if so, then guess the file to be TXT, otherwise you may report unknown type (or optionally you can try some extra checks if you want).
-15. **[brainfuck](brainfuck.md) interpreter**: Make a program that interprets brainfuck. You may choose to read the input program either from standard input or from a file (the file may have some hardcoded name, e.g. your program will just look for a file named `program.bf` in the same directory). If the brainfuck program is invalid or runtime error occurs in it, you may just write out `error` and halt your interpreter. Thumbs up for making the interpreter nicer, e.g. allowing to pass input file name as a CLI argument, reporting more details about errors (e.g. its position in source code) and so on.
+12. **Data corruptor**: write a [CLI](cli.md) utility that reads data from standard input and outputs the same data but corrupted on standard output. There must be at least one optional argument: the level of corruption in percents (i.e. 0 to 100) -- this will say how much the data will be corrupted. Default value will be 10. By corruption we mean flipping (negating) a bit in the data. Probability of flipping every single bit is given by the optional percentage argument. The number of corrupted bits doesn't have to be the EXACT requested percentage, it's just a statistical request (except for values 0 and 100, of course). This means that 1000 with 50% corrpution don't have to have exactly 500 bits different, just approximately that many. You can use the standard library `rand` function to generate random numbers. Thumbs up for extra functionality such as optional second argument for random seed, and possibly other types of corruption such as removing or adding bits. Test the utility by on some real data, e.g. videos, jpeg images, audio, PPM images etc.
+13. **Roman numeral converter**: make a program that will convert between Roman numerals and our traditional decimal numerals (only positive whole numbers, at least up to the limit of unsigned integer range), both ways. The program will read the numeral on its input (you can choose: either read it from standard input or take it from program arguments, this isn't that important), then recognize if it's Roman numeral or decimal number, then convert it to the other representation and print it out. Handle errors only on a basic level (e.g. write out if the input value is in wrong format).
+14. **simple website generator**: All static site generators suck ass, make your own. Make a simple markup language and a program that will turn this markup into [HTML](html.md) file -- this will allow you to write HTML websites very easily. The program will read the input file on standard input (i.e. NOT from a file, though you can optionally support this too) and output the HTML on standard output (again, output to file is optional), so that the program can be used like this: `cat myfile.mymarkup | ./mymarkupprocessor > mywebpage.html`. The markup language may be super simple: let's say `_` and `;_` could mark the start and end of bold text (translating to `` and `` respectively) , `#` and `;#` start and end of heading (translating to `` and `
` respectively) and so on (you can make your own tags, this is just an example). Basically you'll be mostly just translating your tags into HTML tags. You don't have to implement escape sequences for special characters (i.e. it's fine if it's impossible to have let's say the `#` character in your output), but thumbs up if you do. You HAVE TO output a correct HTML, i.e. you have to output a prologue (something like ` ...`) and epilogue (something like ` `) and somehow deal with possible HTML special characters in the input text: for example if the input contains `<`, you have to translate it to `<` etc., but it is allowed to handle non-trivial cases (like weird Unicode stuff or something) by e.g. just replacing problematic input with `???`. [Unicode](unicode.md) doesn't have to be supported on output, you can output plain [ASCII](ascii.md). You have to support at least normal text, 2 levels of headings and bold text, thumbs up for additional things like images, links, lists etc. Thumbs up for additional features like allowing to set website title with a CLI flag, choose from several hardcoded [CSS](css.md) styles or adding extra output formats like [Markdown](md.md), LaTeX and so on. Test that you generate correct HTML with some HTML validator.
+15. **filetype guesser**: Create a program that reads a file and guesses its file type. You can NOT use the file name, only the file content. First look at the [magic number](magic_number.md) (file signature) -- check at least PDF, JPEG, PNG, MP3, GIF and TAR. If this doesn't succeed, then see if 90% of bytes are printable ASCII characters: if so, then guess the file to be TXT, otherwise you may report unknown type (or optionally you can try some extra checks if you want).
+16. **[brainfuck](brainfuck.md) interpreter**: Make a program that interprets brainfuck. You may choose to read the input program either from standard input or from a file (the file may have some hardcoded name, e.g. your program will just look for a file named `program.bf` in the same directory). If the brainfuck program is invalid or runtime error occurs in it, you may just write out `error` and halt your interpreter. Thumbs up for making the interpreter nicer, e.g. allowing to pass input file name as a CLI argument, reporting more details about errors (e.g. its position in source code) and so on.
### Level 2: Mid, *Hurt Me Plenty*
diff --git a/licar.md b/licar.md
index 1184d76..1b55061 100644
--- a/licar.md
+++ b/licar.md
@@ -1,15 +1,32 @@
# Licar
-Licar (short for *[libre](libre.md) car*), also known as *the best racing game ever made*, is a fully [public domain](public_domain.md), [free software](free_software.md) and [free culture](free_culture.md) 3D racing [game](game.md) by [drummyfish](drummyfish.md), highly inspired by the proprietary game [Trackmania](trackmania.md). Licar is made in similar fashion to [Anarch](anarch.md) (another drummyfish's game) but is a little more [bloated](bloat.md): it is a fully [3D game](3d_rendering.md) made with [small3dlib](small3dlib.md) and [tinyphysicsengine](tinyphysicsengine.md) and although it's not the most [minimalist](minimalism.md) game under the Sun, it is still very much [KISS](kiss.md), extremely [portable](portability.md), not using any third party [libraries](library.md) etc. The [git](git.md) repo is currently at http://git.coom.tech/drummyfish/Licar; version 1.0 of the game was released on 25.06.2025 after 329 commits.
+Licar (short for *[libre](libre.md) car*), also known as *the best racing game ever made*, is a fully [public domain](public_domain.md), [free software](free_software.md) and [free culture](free_culture.md) 3D racing [game](game.md) by [drummyfish](drummyfish.md), highly inspired by the proprietary game [Trackmania](trackmania.md). Licar is made in similar fashion to [Anarch](anarch.md) (another drummyfish's game) but is a little more [bloated](bloat.md): it is a fully [3D game](3d_rendering.md) made with [small3dlib](small3dlib.md) and [tinyphysicsengine](tinyphysicsengine.md) and although it's not the most [minimalist](minimalism.md) game under the Sun, it is still very much [KISS](kiss.md), extremely [portable](portability.md), not using any third party [libraries](library.md) etc. The [git](git.md) repo is currently at http://git.coom.tech/drummyfish/Licar; version 1.0 of the game was released on 25.06.2025 after 329 commits. The creation of Licar was conducted purely with free software ([GIMP](gimp.md), [Blender](blender.md), [GNU](gnu.md)/[Linux](linux.md), [vim](vim.md), ...) and relatively old computers (mainly Thinkpad X200).
-The game's features include a fully 3D, completely [deterministic](determinism.md) physics, [software rendering](sw_rendering.md), replays, ghost cars and custom maps (written in a plain [ASCII](ascii.md) text format).
+The game's features include a fully 3D, completely [deterministic](determinism.md) physics, lovely soulful [software rendering](sw_rendering.md), replays, ghost cars and custom maps (written in a plain [ASCII](ascii.md) text format). In the base package there are 5 standard, 5 tiny and 2 bonus maps.
-Drummyfish made Licar to fulfill one of his long held dreams of making a Trackmania [clone](clone.md), for he used to love the game but had to abandon it once he started abstaining from [proprietary](proprietary.md) software. The [project](project.md) also offered an opportunity to put two of drummyfish's libraries to good use and to demonstrate some of [LRS](lrs.md) principles on a bigger project -- although the game isn't truly an LRS ideal, it still shows how powerful minimalism can be, even when applied to a relatively mainstream vision of what a video game is. By this it can potentially reach more [normies](npc.md).
+Drummyfish made Licar to fulfill one of his long held dreams of making a Trackmania [clone](clone.md), for he used to love the game but had to abandon it once he started abstaining from [proprietary](proprietary.md) software. The [project](project.md) also offered an opportunity to showcase drummyfish's major libraries and to demonstrate some of the [LRS](lrs.md) principles on a bigger project -- although the game isn't truly an LRS ideal, it still shows how powerful minimalism can be, even when applied to a relatively mainstream vision of what a video game is. By this it can potentially and hopefully reach more [normies](npc.md).
-Just like Anarch, Licar adheres to basic LRS [programming](programming.md) practices, for example it is fully written in [C99](c.md), uses no build system, no third party libraries, doesn't rely on standard library, doesn't use [floating point](float.md) and embeds its configuration and assets right in the source code (except for optional [music](music.md) and external data file). The whole game was made completely from scratch, including all assets, the text font, recording own musical samples for custom sound font for the soundtrack etc. The whole code has around 25 thousand [lines of code](loc.md). Needless to say the game is very portable end efficient as a result: the compiled binary (including embedded assets) has usually around 300 kB, the program runs with less than 500 kB [RAM](ram.md) on [CPUs](cpu.md) clocking even around 100 MHz. It was even run on [Pokitto](pokitto.md), albeit in an extremely limited way.
+Just like Anarch, Licar adheres to basic LRS [programming](programming.md) practices, for example it is fully written in [C99](c.md), is completely public domain under [CC0](CC0.md), uses no build system, no third party libraries, doesn't rely on standard library, doesn't use [floating point](float.md) and embeds its configuration and assets right in the source code (except for optional [music](music.md) and external data file). The whole game was made completely from scratch, including all assets, the text font, recording own musical samples for custom sound font for the soundtrack etc. The whole code has around 25 thousand [lines of code](loc.md). Needless to say the game is very portable end efficient as a result: the compiled binary (including embedded assets) usually weights around 300 kB, the program runs with less than 500 kB [RAM](ram.md) on [CPUs](cpu.md) clocking even around 100 MHz. It was even run on [Pokitto](pokitto.md), albeit in an extremely limited way.
-TODO: more
+## Technical Detail
+
+Licar is wholly written in [C99](c99.md) and only uses [small3dlib](small3dlib.md) (S3L) and [tinyphysicsengine](tincyphysicsengine.md) (TPE) as libraries -- apart from these no other libraries are used (not even standard library, except for using fixed size integers from *stdint.h*). The code is a single compilation unit, i.e. everything is implemented as header files (including S3L and TPE) that are included by a frontend which is then the only file to compile (no need for manual linking, build systems and whatnot). Of course specific frontends have to use some kind of [I/O](io.md) library to deliver interaction with the player, but these are not hard [dependencies](dependency.md) of the game itself, only of a specific frontend -- several frontends are implemented, including [SDL2](sdl.md), [CSFML](csfml.md) and [X11](x11.md). Frontends are very simple as they're only required to implement extremely basic functions such as a pixel drawing function, key press checking function and a few others. The game was successfully compiled and played under [GNU](gnu.md)/[Linux](linux.md), [Win$hit](windows.md), [OpenBSD](openbsd.md), on [Raspberry Pi](rpi.md), in [web](www.md) browser and even on very weak devices such as [Pokitto](pokitto.md) and [ESPBoy](espboy.md), albeit in a very limited "tech demo" way. When counting raw lines (`wc -l`), all code (including frontends etc.) totals around 25000 [lines of code](loc.md), whilst only the pure game code (only header files) has around 21000 lines.
+
+No [floating point](float.md) is ever used in the source code, everything (including 3D rendering and 3D physics) is implemented with 32 bit [fixed point](fixed_point.md).
+
+**Graphics**: like with Anarch, rendering to actual screen is realized through a frontend-defined pixel drawing [function](function.md) that's used by the game code to render everything from [GUI](gui.md) and text to the 3D view. [RGB565](rgb565.md) (65536 colors) is used as a color format, with the option to turn on [RGB332](rgb332.md) (256 colors) as well. All images are embedded in the source code and stored in 64x64 resolution in indexed format (except for sky images which are effectively composed of 2x2 normal images to give a higher resolution). The car [3D model](3d_model.md) is also embedded in source code. The models of map blocks are created in code. When loading a map, its 3D model is created and invisible triangles are [culled](culling.md) away (which is a little time consuming and makes bigger maps take longer to load). The map model triangles are then sorted so that the map is split into 64 (4x4x4) chunks -- only nearest 8 chunks of the map are being rendered at any time. Far away chunks are cheaply drawn as a very primitive "[LOD](lod.md)", simply a flat-colored 2D half-transparent square. All transparency is handled by [dithering](dithering.md). Text is drawn using a custom simple, [vector](vector.md), "segmented-display-like" font whose data are embedded in the source code.
+
+**Physics**: physics is [deterministic](determinism.md) and is always calculated at 30 ticks per second, no matter what the rendering FPS is, [interpolation](interpolation.md) is additionally applied to smooth the animation for rendering. Internally the car is composed of 5 spheres (4 wheels and the body) and is technically a soft body, but the shape is iteratively "stiffened" so that it appears as a rigid body. The relative position of the spheres is used to determine the car's orientation which is then applied to the 3D model for rendering. The map's shape in the physics world is modeled by a sort of [signed distance function](sdf.md) to handle [collisions](collision.md) with the car.
+
+**Audio**: all audio is in very simple 8 bit 8 KHz mono format. Sound effects are all generated [procedurally](procgen.md). The game comes with a manually created background music track stored in raw format in a separate file, which can be played by the frontend if it can and wants to.
+
+And finally some more uncategorized details. Maps are created in a plain text mini-language that specified where to place individual map blocks, what material and transformation they have etc. The process of loading a map includes reading this format and transforming it into the internal binary representation in which blocks are [sorted](sorting.md) so that looking up blocks can be done very quickly with binary search (this is crucial for resolving collisions as we need to quickly check the car's nearest blocks for collisions). Replays are similarly stored in a plain text format -- each replay record takes 16 bits and stores a change in input along with ticks since the last record (if the bits don't suffice to encode the ticks, a redundant no-change record is simply inserted). All these text data (i.e. mainly maps and replays) are stored in a virtual *data file* -- behind the scenes this files consists of the *internal data file* (one containing the basic maps, compiled right in the binary) and an optional *external data file*, which on platforms with filesystems is a normal file that can be edited to add more maps etc. Almost everything in the game is optional and can be turned off so that it's possible to play it on any kind of potato -- there can be no sound, texturing, no file system, no color display etc.
+
+## Postmortem
+
+TODO: some reflections n shit here
## See Also
-- [Anarch](anarch.md)
\ No newline at end of file
+- [Anarch](anarch.md)
+- [LRS](lrs.md)
\ No newline at end of file
diff --git a/magic.md b/magic.md
index 024bc24..49329dc 100644
--- a/magic.md
+++ b/magic.md
@@ -1,8 +1,6 @@
# Magic
-Magic stands for unknown mechanisms. Once mechanisms of magic are revealed and understood, it becomes [science](science.md).
-
-In [programming](programming.md) the term has negative connotitation as it's just another word for obscurity.
+Magic stands for unknown mechanisms. Once mechanisms of magic are revealed and understood, it becomes [science](science.md). In [programming](programming.md) and technology in general the term has negative connotation as it's just a different word for [obscurity](obscurity.md). To give an example: "magic constant" is a specific [numeric](number.md) value in code that somehow makes the program "[just work](just_werks.md)" without it being clear how or why -- this is considered a "bad programming practice".
## See Also
diff --git a/main.md b/main.md
index c182c19..237463e 100644
--- a/main.md
+++ b/main.md
@@ -180,4 +180,4 @@ Here there are quick directions to some relevant topics; for more see the links
Feel free to ignore this. Here we'll put links to help them being promoted, to help small search engines connect the non-mainstream web and so on. Please note that we don't necessarily agree with or promote what's on these sites, we just feel it's good if they get a bump for whatever reason (e.g. being censored by mainstream, containing some useful stuff, having good web design, provoking thought, demonstrating something good, demonstrating something bad and so on). If you feel brave you can try randomly clicking something, we put quite interesting sites here, it's a good starting point for internet digging. The links follow. { Let me know if you want to suggest addition or removal of some link. If some site turns 404, woke, capitalist or employs adds, I'll probably take it down. ~drummyfish }
-[http://collapseos.org](http://collapseos.org), [https://suckless.org](https://suckless.org), [http://duskos.org](http://duskos.org), [https://wiki.osdev.org](https://wiki.osdev.org), [https://braphogs.com](https://braphogs.com), [http://lolwut.info](http://lolwut.info), [http://cat-v.org](http://cat-v.org), [http://search.somsab.com](http://search.somsab.com), [https://zoophilia.wiki](https://zoophilia.wiki), [https://confluence.org](https://confluence.org), [https://zxaaa.net/view_demo.php?id=12444](https://zxaaa.net/view_demo.php?id=12444), [https://tubgurl.com/catalog.html](https://tubgurl.com/catalog.html), [https://wikiless.tiekoetter.com/wiki/?lang=nostalgia](https://wikiless.tiekoetter.com/wiki/?lang=nostalgia), [http://www.rsdb.org](http://www.rsdb.org), [http://forbiddentruth.mysite.com](http://forbiddentruth.mysite.com), [https://opengameart.org](https://opengameart.org), [https://www.sudosatirical.com](https://www.sudosatirical.com), [https://elisiei.obiente.com](https://elisiei.obiente.com), [https://elisiei.xyz](https://elisiei.xyz), [https://webwizard.ichi.city](https://webwizard.ichi.city), [http://www.polytope.net/hedrondude/bnc.htm](http://www.polytope.net/hedrondude/bnc.htm), [https://4get.bloat.cat](https://4get.bloat.cat), [https://www.memeatlas.com](https://www.memeatlas.com), [https://search.cdev.nexus](https://search.cdev.nexus), [https://nixers.net](https://nixers.net), [https://oeis.org/OEIS_pics.html](https://oeis.org/OEIS_pics.html), [https://superpredator.zone](https://superpredator.zone), [http://www.mrob.com](http://www.mrob.com), [https://ncatlab.org](https://ncatlab.org), [https://leakjunky.site](https://leakjunky.site), [https://www.gutenberg.org](https://www.gutenberg.org), [https://skibidifarms.st](https://skibidifarms.st), [http://web1.0hosting.net](http://web1.0hosting.net), [https://www.onionfarms.com/](https://www.onionfarms.com/), [https://librivox.org](https://librivox.org), [https://hoaxes.org](https://hoaxes.org), [https://screamer.wiki](https://screamer.wiki), [https://www.chiark.greenend.org.uk/~sgtatham/puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles), [https://golem.ph.utexas.edu](https://golem.ph.utexas.edu), [https://libregamewiki.org](https://libregamewiki.org), [https://pantsuprophet.xyz](https://pantsuprophet.xyz), [https://duion.com](https://duion.com), [http://digdeeper.club](http://digdeeper.club), [https://www.answering-christianity.com](https://www.answering-christianity.com), [https://www.chimpout.com](https://www.chimpout.com), [http://floodgap.com](http://floodgap.com), [https://en.metapedia.org](https://en.metapedia.org), [https://www.vidlii.com](https://www.vidlii.com), [https://wikiindex.org](https://wikiindex.org), [https://saidit.net](https://saidit.net), [https://www.newworldencyclopedia.org](https://www.newworldencyclopedia.org), [http://progopedia.com](http://progopedia.com), [http://techrights.org](http://techrights.org), [https://landsofgames.com](https://landsofgames.com), [https://randomwaffle.gbs.fm](https://randomwaffle.gbs.fm), [http://www.macroevolution.net](http://www.macroevolution.net), [http://macrochan.org](http://macrochan.org), [https://blog.plover.com](https://blog.plover.com), [https://hub.darcs.net](https://hub.darcs.net), [https://repo.or.cz](https://repo.or.cz), [https://templeos.org](https://templeos.org), [http://cidoku.net](http://cidoku.net), [http://z00m.ws](http://z00m.ws), [https://www.gnu.org](https://www.gnu.org), [https://kiwifarms.st](https://kiwifarms.st), [https://circumlunar.space](https://circumlunar.space), [http://www.nigger.org](http://www.nigger.org), [https://forums.somethingawful.com](https://forums.somethingawful.com), [https://the-eye.eu/redarcs](https://the-eye.eu/redarcs), [https://notabug.org](https://notabug.org), [https://gopherproxy.meulie.net](https://gopherproxy.meulie.net), [http://www.reactionary.software](http://www.reactionary.software), [https://libre.video](https://libre.video), [https://wiki.soyjak.st](https://wiki.soyjak.st), [https://scumgames.neocities.org](https://scumgames.neocities.org), [https://preservetube.com](https://preservetube.com), [http://textfiles.com](http://textfiles.com), [https://esolangs.org](https://esolangs.org), [http://www.ioccc.org](http://www.ioccc.org), [https://solar.lowtechmagazine.com](https://solar.lowtechmagazine.com), [http://www.calresco.org](http://www.calresco.org), [http://edramatica.com](http://edramatica.com), [https://infogalactic.com](https://infogalactic.com), [https://www.icechewing.com](https://www.icechewing.com), [http://www.alexchiu.com](http://www.alexchiu.com), [http://www.nigrapedia.com](http://www.nigrapedia.com), [http://whale.to](http://whale.to), [https://www.rouming.cz](https://www.rouming.cz), [https://crazyshit.com/category/celebrities](https://crazyshit.com/category/celebrities), [http://wermenh.com/index.html](http://wermenh.com/index.html), [https://www.thevenusproject.com](https://www.thevenusproject.com), [http://www.somaligov.net](http://www.somaligov.net), [https://stocksnap.io](https://stocksnap.io), [http://www.bentoandstarchky.com/dec/rants.htm](http://www.bentoandstarchky.com/dec/rants.htm), [https://doxbin.org](https://doxbin.org), [https://frogesay.neocities.org (archived because went full furry)](https://web.archive.org/web/20240206194418/https://frogesay.neocities.org/), [https://www.debunkingskeptics.com](https://www.debunkingskeptics.com), [https://stallman.org](https://stallman.org), [http://keypad.org/bunnies](http://keypad.org/bunnies), [https://8kun.top](https://8kun.top), [https://annas-archive.org](https://annas-archive.org), [http://icculus.org/piga](http://icculus.org/piga), [https://4chan.org/an](https://4chan.org/an), [https://forum.freegamedev.net](https://forum.freegamedev.net), [https://fediverse.wiki](https://fediverse.wiki), [https://dolphinana.codeberg.page](https://dolphinana.codeberg.page), [http://www.niggermania.com](http://www.niggermania.com), [https://watchpeopledie.tv](https://watchpeopledie.tv), [https://flarerpg.org](https://flarerpg.org), [https://copyfree.org](https://copyfree.org), [https://wiki.bibanon.org](https://wiki.bibanon.org), [https://www.chessprogramming.org](https://www.chessprogramming.org), [https://neolurk.org](https://neolurk.org), [https://zerocontradictions.net/FAQs/race-FAQs](https://zerocontradictions.net/FAQs/race-FAQs), [https://projectoberon.net](https://projectoberon.net), [http://bitreich.org](http://bitreich.org), [https://tcrf.net](https://tcrf.net), [http://www.humanbiologicaldiversity.com](http://www.humanbiologicaldiversity.com), [https://incels.wiki](https://incels.wiki), [https://www.nearlyfreespeech.net](https://www.nearlyfreespeech.net), [https://softpanorama.org](https://softpanorama.org), [https://retrobrewcomputers.org/doku.php](https://retrobrewcomputers.org/doku.php), [http://humanknowledge.net](http://humanknowledge.net), [https://wrongthink.link](https://wrongthink.link), [http://tastyfish.w10.site](http://tastyfish.w10.site), [https://wiki.leftypol.org](https://wiki.leftypol.org), [https://mdfs.net](https://mdfs.net), [https://bienvenidoainternet.org](https://bienvenidoainternet.org), [https://leftychan.net](https://leftychan.net), [https://leftypol.org](https://leftypol.org), [https://postbox.garden](https://postbox.garden), [https://www.lord-enki.net](https://www.lord-enki.net), [https://r.sine.com](https://r.sine.com), [https://sanctioned-suicide.net](https://sanctioned-suicide.net), [http://www.tastyfish.cz](http://www.tastyfish.cz), [https://simplifier.neocities.org](https://simplifier.neocities.org), [http://datamath.org](http://datamath.org), [http://www.armory.com/~crisper/Scorch/index.html](http://www.armory.com/~crisper/Scorch/index.html), [https://www.lixgame.com](https://www.lixgame.com), [https://obsoletemedia.org](https://obsoletemedia.org), [http://www.doshaven.eu](http://www.doshaven.eu), [https://omick.net](https://omick.net), [http://countercomplex.blogspot.com](http://countercomplex.blogspot.com), [http://batheinmymilk.com](http://batheinmymilk.com), [http://users.rcn.com/hgomberg/boys.html](http://users.rcn.com/hgomberg/boys.html), [https://wiki.thingsandstuff.org](https://wiki.thingsandstuff.org), [https://tinfoil-hat.net](https://tinfoil-hat.net), [https://search.marginalia.nu](https://search.marginalia.nu), [http://wiby.me](http://wiby.me), [https://57296.neocities.org](https://57296.neocities.org), [https://coom.tech](https://coom.tech), [https://rightdao.com](https://rightdao.com), [https://www.alexandria.org](https://www.alexandria.org), [https://allthetropes.org](https://allthetropes.org), [http://dunfield.classiccmp.org](http://dunfield.classiccmp.org/), [https://nanochess.org](https://nanochess.org), [https://namelessrumia.heliohost.org/w/doku.php?id=start](https://namelessrumia.heliohost.org/w/doku.php?id=start), [http://afternoon.dynu.com](http://afternoon.dynu.com/), [https://searchlores.nickifaulk.com](https://searchlores.nickifaulk.com), [https://senseis.xmp.net](https://senseis.xmp.net/), [https://www.pgdp.net](https://www.pgdp.net), [https://planetmath.org](https://planetmath.org), [https://www.otrr.org](https://www.otrr.org), [https://texteditors.org](https://texteditors.org), [https://www.trade-free.org](https://www.trade-free.org), [https://www.spi-inc.org](https://www.spi-inc.org), [http://runtimeterror.com](http://runtimeterror.com), [https://wiki.archiveteam.org](https://wiki.archiveteam.org), [https://www.expedition-atlantis.com/](https://www.expedition-atlantis.com/), [https://piracy.vercel.app](https://piracy.vercel.app), [https://wiki.tuhs.org](https://wiki.tuhs.org), [http://stupidctf.ddns.net](http://stupidctf.ddns.net), [http://cyber.dabamos.de](http://cyber.dabamos.de), [https://eldritchdata.neocities.org](https://eldritchdata.neocities.org), [https://bellard.org](https://bellard.org), [https://gcide.gnu.org.ua](https://gcide.gnu.org.ua), [https://2bit.neocities.org](https://2bit.neocities.org), [https://planecrashinfo.com](https://planecrashinfo.com), [https://www.tvnoe.cz](https://www.tvnoe.cz), [http://choice.tiepi.it/~matteobin](http://choice.tiepi.it/~matteobin), [https://repomansez.xyz](https://repomansez.xyz), [https://www.appropedia.org](https://www.appropedia.org), [http://mathlair.allfunandgames.ca](http://mathlair.allfunandgames.ca), [https://classicdoom.com](https://classicdoom.com), [http://www.planix.com/~woods/ms-word.sucks.html](http://www.planix.com/~woods/ms-word.sucks.html), [http://cumallover.me](http://cumallover.me), [http://www.trashrobot.org](http://www.trashrobot.org), [http://horsefucker.org](http://horsefucker.org), [http://washedashore.com](http://washedashore.com), [https://colfax.site/books/trashrobot](https://colfax.site/books/trashrobot), [https://forum.agoraroad.com/index.php](https://forum.agoraroad.com/index.php), [https://archive.org/details/@autism_personified127](https://archive.org/details/@autism_personified127), [https://allchans.org](https://allchans.org), [https://doomwiki.org](https://doomwiki.org), [https://ludicrital.neocities.org](https://ludicrital.neocities.org), [https://codemadness.org](https://codemadness.org), [https://jacobsm.com](https://jacobsm.com), [https://lolcow.wiki (archived because of censorship)](https://web.archive.org/web/20190214020652/https://lolcow.wiki/wiki/Main_Page), [http://www.peacefulhippo.info](http://www.peacefulhippo.info), [http://ronja.twibright.com](http://ronja.twibright.com), [https://dwarffortresswiki.org](https://dwarffortresswiki.org), [https://chan.city](https://chan.city), [https://rmitz.org/bbsloser.html](https://rmitz.org/bbsloser.html), [https://posting.cool/index.php](https://posting.cool/index.php), [https://conspiracies.win](https://conspiracies.win), [http://www.twibright.com/hw.php](http://www.twibright.com/hw.php), [https://urinal.net](https://urinal.net), [http://im.snibgo.com](http://im.snibgo.com), [http://zimage.com/~ant](http://zimage.com/~ant), [https://www.fsfla.org/~lxoliva](https://www.fsfla.org/~lxoliva), [http://www.billwallchess.com](http://www.billwallchess.com), [http://fier.me](http://fier.me), [http://uglynigger.com](http://uglynigger.com), [https://kb.speeddemosarchive.com/SDA_Strategy_Wiki](https://kb.speeddemosarchive.com/SDA_Strategy_Wiki), [https://www.doomworld.com/pageofdoom/index.shtml](https://www.doomworld.com/pageofdoom/index.shtml), [https://commons.miraheze.org/](https://commons.miraheze.org/), [https://www.consentingjuveniles.com](https://www.consentingjuveniles.com), [https://lolcow.farm](https://lolcow.farm), [https://codecaveman.neocities.org/](https://codecaveman.neocities.org/), [https://jeffhuang.com/designed_to_last](https://jeffhuang.com/designed_to_last), [https://phillfromgchq.co.uk/?phill=1](https://phillfromgchq.co.uk/?phill=1), [https://commons.wikimannia.org](https://commons.wikimannia.org), [https://www.old-games.com](https://www.old-games.com), [https://wikilivres.org/](https://wikilivres.org/), [https://fstube.net](https://fstube.net), [https://wiki.yesmap.net](https://wiki.yesmap.net), [https://kassy.neocities.org](https://kassy.neocities.org), [http://frogfind.com](http://frogfind.com), [https://www.theoldrobots.com](https://www.theoldrobots.com), [https://lotanstomb.nfshost.com](https://lotanstomb.nfshost.com), [https://x64x2.neocities.org](https://x64x2.neocities.org), [https://www.boywiki.org](https://www.boywiki.org), [https://git.coom.tech/hermian/unixtopia_wiki](https://git.coom.tech/hermian/unixtopia_wiki), [https://maniacsvault.net/ecwolf/wiki/Main_Page](https://maniacsvault.net/ecwolf/wiki/Main_Page), [https://megaglest.org](https://megaglest.org), [http://oldavista.com/](http://oldavista.com/), [https://wikitia.com](https://wikitia.com), [https://youtuube.neocities.org/homepage](https://youtuube.neocities.org/homepage), [https://lyricaltokarev.com/home](https://lyricaltokarev.com/home), [https://psychonautwiki.org](https://psychonautwiki.org), [https://www.eskimo.com/~billb/billb.html](https://www.eskimo.com/~billb/billb.html), [https://t3x.org/index.html](https://t3x.org/index.html), [https://dukenukemis.cool](https://dukenukemis.cool), [https://blitz.serveo.net](https://blitz.serveo.net), [https://911research.wtc7.net](https://911research.wtc7.net), [https://educate-yourself.org](https://educate-yourself.org), [https://www.lightparty.com](https://www.lightparty.com)
+[http://collapseos.org](http://collapseos.org), [https://suckless.org](https://suckless.org), [http://duskos.org](http://duskos.org), [https://wiki.osdev.org](https://wiki.osdev.org), [https://braphogs.com](https://braphogs.com), [http://lolwut.info](http://lolwut.info), [http://cat-v.org](http://cat-v.org), [http://search.somsab.com](http://search.somsab.com), [https://zoophilia.wiki](https://zoophilia.wiki), [https://confluence.org](https://confluence.org), [https://zxaaa.net/view_demo.php?id=12444](https://zxaaa.net/view_demo.php?id=12444), [https://fadden.com/tech](https://fadden.com/tech), [https://tubgurl.com/catalog.html](https://tubgurl.com/catalog.html), [https://wikiless.tiekoetter.com/wiki/?lang=nostalgia](https://wikiless.tiekoetter.com/wiki/?lang=nostalgia), [http://www.rsdb.org](http://www.rsdb.org), [http://forbiddentruth.mysite.com](http://forbiddentruth.mysite.com), [https://opengameart.org](https://opengameart.org), [https://www.sudosatirical.com](https://www.sudosatirical.com), [https://elisiei.obiente.com](https://elisiei.obiente.com), [https://elisiei.xyz](https://elisiei.xyz), [https://webwizard.ichi.city](https://webwizard.ichi.city), [http://www.polytope.net/hedrondude/bnc.htm](http://www.polytope.net/hedrondude/bnc.htm), [https://4get.bloat.cat](https://4get.bloat.cat), [https://www.memeatlas.com](https://www.memeatlas.com), [https://search.cdev.nexus](https://search.cdev.nexus), [https://nixers.net](https://nixers.net), [https://oeis.org/OEIS_pics.html](https://oeis.org/OEIS_pics.html), [https://superpredator.zone](https://superpredator.zone), [http://www.mrob.com](http://www.mrob.com), [https://ncatlab.org](https://ncatlab.org), [https://leakjunky.site](https://leakjunky.site), [https://www.gutenberg.org](https://www.gutenberg.org), [https://skibidifarms.st](https://skibidifarms.st), [http://web1.0hosting.net](http://web1.0hosting.net), [https://www.onionfarms.com/](https://www.onionfarms.com/), [https://librivox.org](https://librivox.org), [https://hoaxes.org](https://hoaxes.org), [https://screamer.wiki](https://screamer.wiki), [https://www.chiark.greenend.org.uk/~sgtatham/puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles), [https://golem.ph.utexas.edu](https://golem.ph.utexas.edu), [https://libregamewiki.org](https://libregamewiki.org), [https://pantsuprophet.xyz](https://pantsuprophet.xyz), [https://duion.com](https://duion.com), [http://digdeeper.club](http://digdeeper.club), [https://www.answering-christianity.com](https://www.answering-christianity.com), [https://www.chimpout.com](https://www.chimpout.com), [http://floodgap.com](http://floodgap.com), [https://en.metapedia.org](https://en.metapedia.org), [https://www.vidlii.com](https://www.vidlii.com), [https://wikiindex.org](https://wikiindex.org), [https://saidit.net](https://saidit.net), [https://www.newworldencyclopedia.org](https://www.newworldencyclopedia.org), [http://progopedia.com](http://progopedia.com), [http://techrights.org](http://techrights.org), [https://landsofgames.com](https://landsofgames.com), [https://randomwaffle.gbs.fm](https://randomwaffle.gbs.fm), [http://www.macroevolution.net](http://www.macroevolution.net), [http://macrochan.org](http://macrochan.org), [https://blog.plover.com](https://blog.plover.com), [https://hub.darcs.net](https://hub.darcs.net), [https://repo.or.cz](https://repo.or.cz), [https://templeos.org](https://templeos.org), [http://cidoku.net](http://cidoku.net), [http://z00m.ws](http://z00m.ws), [https://www.gnu.org](https://www.gnu.org), [https://kiwifarms.st](https://kiwifarms.st), [https://circumlunar.space](https://circumlunar.space), [http://www.nigger.org](http://www.nigger.org), [https://forums.somethingawful.com](https://forums.somethingawful.com), [https://the-eye.eu/redarcs](https://the-eye.eu/redarcs), [https://notabug.org](https://notabug.org), [https://gopherproxy.meulie.net](https://gopherproxy.meulie.net), [http://www.reactionary.software](http://www.reactionary.software), [https://libre.video](https://libre.video), [https://wiki.soyjak.st](https://wiki.soyjak.st), [https://scumgames.neocities.org](https://scumgames.neocities.org), [https://preservetube.com](https://preservetube.com), [http://textfiles.com](http://textfiles.com), [https://esolangs.org](https://esolangs.org), [http://www.ioccc.org](http://www.ioccc.org), [https://solar.lowtechmagazine.com](https://solar.lowtechmagazine.com), [http://www.calresco.org](http://www.calresco.org), [http://edramatica.com](http://edramatica.com), [https://infogalactic.com](https://infogalactic.com), [https://www.icechewing.com](https://www.icechewing.com), [http://www.alexchiu.com](http://www.alexchiu.com), [http://www.nigrapedia.com](http://www.nigrapedia.com), [http://whale.to](http://whale.to), [https://www.rouming.cz](https://www.rouming.cz), [https://crazyshit.com/category/celebrities](https://crazyshit.com/category/celebrities), [http://wermenh.com/index.html](http://wermenh.com/index.html), [https://www.thevenusproject.com](https://www.thevenusproject.com), [http://www.somaligov.net](http://www.somaligov.net), [https://stocksnap.io](https://stocksnap.io), [http://www.bentoandstarchky.com/dec/rants.htm](http://www.bentoandstarchky.com/dec/rants.htm), [https://doxbin.org](https://doxbin.org), [https://frogesay.neocities.org (archived because went full furry)](https://web.archive.org/web/20240206194418/https://frogesay.neocities.org/), [https://www.debunkingskeptics.com](https://www.debunkingskeptics.com), [https://stallman.org](https://stallman.org), [http://keypad.org/bunnies](http://keypad.org/bunnies), [https://8kun.top](https://8kun.top), [https://annas-archive.org](https://annas-archive.org), [http://icculus.org/piga](http://icculus.org/piga), [https://4chan.org/an](https://4chan.org/an), [https://forum.freegamedev.net](https://forum.freegamedev.net), [https://fediverse.wiki](https://fediverse.wiki), [https://dolphinana.codeberg.page](https://dolphinana.codeberg.page), [http://www.niggermania.com](http://www.niggermania.com), [https://watchpeopledie.tv](https://watchpeopledie.tv), [https://flarerpg.org](https://flarerpg.org), [https://copyfree.org](https://copyfree.org), [https://wiki.bibanon.org](https://wiki.bibanon.org), [https://www.chessprogramming.org](https://www.chessprogramming.org), [https://neolurk.org](https://neolurk.org), [https://zerocontradictions.net/FAQs/race-FAQs](https://zerocontradictions.net/FAQs/race-FAQs), [https://projectoberon.net](https://projectoberon.net), [http://bitreich.org](http://bitreich.org), [https://tcrf.net](https://tcrf.net), [http://www.humanbiologicaldiversity.com](http://www.humanbiologicaldiversity.com), [https://incels.wiki](https://incels.wiki), [https://www.nearlyfreespeech.net](https://www.nearlyfreespeech.net), [https://softpanorama.org](https://softpanorama.org), [https://retrobrewcomputers.org/doku.php](https://retrobrewcomputers.org/doku.php), [http://humanknowledge.net](http://humanknowledge.net), [https://wrongthink.link](https://wrongthink.link), [http://tastyfish.w10.site](http://tastyfish.w10.site), [https://wiki.leftypol.org](https://wiki.leftypol.org), [https://mdfs.net](https://mdfs.net), [https://bienvenidoainternet.org](https://bienvenidoainternet.org), [https://leftychan.net](https://leftychan.net), [https://leftypol.org](https://leftypol.org), [https://postbox.garden](https://postbox.garden), [https://www.lord-enki.net](https://www.lord-enki.net), [https://r.sine.com](https://r.sine.com), [https://sanctioned-suicide.net](https://sanctioned-suicide.net), [http://www.tastyfish.cz](http://www.tastyfish.cz), [https://simplifier.neocities.org](https://simplifier.neocities.org), [http://datamath.org](http://datamath.org), [http://www.armory.com/~crisper/Scorch/index.html](http://www.armory.com/~crisper/Scorch/index.html), [https://www.lixgame.com](https://www.lixgame.com), [https://obsoletemedia.org](https://obsoletemedia.org), [http://www.doshaven.eu](http://www.doshaven.eu), [https://omick.net](https://omick.net), [http://countercomplex.blogspot.com](http://countercomplex.blogspot.com), [http://batheinmymilk.com](http://batheinmymilk.com), [http://users.rcn.com/hgomberg/boys.html](http://users.rcn.com/hgomberg/boys.html), [https://wiki.thingsandstuff.org](https://wiki.thingsandstuff.org), [https://tinfoil-hat.net](https://tinfoil-hat.net), [https://search.marginalia.nu](https://search.marginalia.nu), [http://wiby.me](http://wiby.me), [https://57296.neocities.org](https://57296.neocities.org), [https://coom.tech](https://coom.tech), [https://rightdao.com](https://rightdao.com), [https://www.alexandria.org](https://www.alexandria.org), [https://allthetropes.org](https://allthetropes.org), [http://dunfield.classiccmp.org](http://dunfield.classiccmp.org/), [https://nanochess.org](https://nanochess.org), [https://namelessrumia.heliohost.org/w/doku.php?id=start](https://namelessrumia.heliohost.org/w/doku.php?id=start), [http://afternoon.dynu.com](http://afternoon.dynu.com/), [https://searchlores.nickifaulk.com](https://searchlores.nickifaulk.com), [https://senseis.xmp.net](https://senseis.xmp.net/), [https://www.pgdp.net](https://www.pgdp.net), [https://planetmath.org](https://planetmath.org), [https://www.otrr.org](https://www.otrr.org), [https://texteditors.org](https://texteditors.org), [https://www.trade-free.org](https://www.trade-free.org), [https://www.spi-inc.org](https://www.spi-inc.org), [http://runtimeterror.com](http://runtimeterror.com), [https://wiki.archiveteam.org](https://wiki.archiveteam.org), [https://www.expedition-atlantis.com/](https://www.expedition-atlantis.com/), [https://piracy.vercel.app](https://piracy.vercel.app), [https://wiki.tuhs.org](https://wiki.tuhs.org), [http://stupidctf.ddns.net](http://stupidctf.ddns.net), [http://cyber.dabamos.de](http://cyber.dabamos.de), [https://eldritchdata.neocities.org](https://eldritchdata.neocities.org), [https://bellard.org](https://bellard.org), [https://gcide.gnu.org.ua](https://gcide.gnu.org.ua), [https://2bit.neocities.org](https://2bit.neocities.org), [https://planecrashinfo.com](https://planecrashinfo.com), [https://www.tvnoe.cz](https://www.tvnoe.cz), [http://choice.tiepi.it/~matteobin](http://choice.tiepi.it/~matteobin), [https://repomansez.xyz](https://repomansez.xyz), [https://www.appropedia.org](https://www.appropedia.org), [http://mathlair.allfunandgames.ca](http://mathlair.allfunandgames.ca), [https://classicdoom.com](https://classicdoom.com), [http://www.planix.com/~woods/ms-word.sucks.html](http://www.planix.com/~woods/ms-word.sucks.html), [http://cumallover.me](http://cumallover.me), [http://www.trashrobot.org](http://www.trashrobot.org), [http://horsefucker.org](http://horsefucker.org), [http://washedashore.com](http://washedashore.com), [https://colfax.site/books/trashrobot](https://colfax.site/books/trashrobot), [https://forum.agoraroad.com/index.php](https://forum.agoraroad.com/index.php), [https://archive.org/details/@autism_personified127](https://archive.org/details/@autism_personified127), [https://allchans.org](https://allchans.org), [https://doomwiki.org](https://doomwiki.org), [https://ludicrital.neocities.org](https://ludicrital.neocities.org), [https://codemadness.org](https://codemadness.org), [https://jacobsm.com](https://jacobsm.com), [https://lolcow.wiki (archived because of censorship)](https://web.archive.org/web/20190214020652/https://lolcow.wiki/wiki/Main_Page), [http://www.peacefulhippo.info](http://www.peacefulhippo.info), [http://ronja.twibright.com](http://ronja.twibright.com), [https://dwarffortresswiki.org](https://dwarffortresswiki.org), [https://chan.city](https://chan.city), [https://rmitz.org/bbsloser.html](https://rmitz.org/bbsloser.html), [https://posting.cool/index.php](https://posting.cool/index.php), [https://conspiracies.win](https://conspiracies.win), [http://www.twibright.com/hw.php](http://www.twibright.com/hw.php), [https://urinal.net](https://urinal.net), [http://im.snibgo.com](http://im.snibgo.com), [http://zimage.com/~ant](http://zimage.com/~ant), [https://www.fsfla.org/~lxoliva](https://www.fsfla.org/~lxoliva), [http://www.billwallchess.com](http://www.billwallchess.com), [http://fier.me](http://fier.me), [http://uglynigger.com](http://uglynigger.com), [https://kb.speeddemosarchive.com/SDA_Strategy_Wiki](https://kb.speeddemosarchive.com/SDA_Strategy_Wiki), [https://www.doomworld.com/pageofdoom/index.shtml](https://www.doomworld.com/pageofdoom/index.shtml), [https://commons.miraheze.org/](https://commons.miraheze.org/), [https://www.consentingjuveniles.com](https://www.consentingjuveniles.com), [https://lolcow.farm](https://lolcow.farm), [https://codecaveman.neocities.org/](https://codecaveman.neocities.org/), [https://jeffhuang.com/designed_to_last](https://jeffhuang.com/designed_to_last), [https://phillfromgchq.co.uk/?phill=1](https://phillfromgchq.co.uk/?phill=1), [https://commons.wikimannia.org](https://commons.wikimannia.org), [https://www.old-games.com](https://www.old-games.com), [https://wikilivres.org/](https://wikilivres.org/), [https://fstube.net](https://fstube.net), [https://wiki.yesmap.net](https://wiki.yesmap.net), [https://kassy.neocities.org](https://kassy.neocities.org), [http://frogfind.com](http://frogfind.com), [https://www.theoldrobots.com](https://www.theoldrobots.com), [https://lotanstomb.nfshost.com](https://lotanstomb.nfshost.com), [https://x64x2.neocities.org](https://x64x2.neocities.org), [https://www.boywiki.org](https://www.boywiki.org), [https://git.coom.tech/hermian/unixtopia_wiki](https://git.coom.tech/hermian/unixtopia_wiki), [https://maniacsvault.net/ecwolf/wiki/Main_Page](https://maniacsvault.net/ecwolf/wiki/Main_Page), [https://megaglest.org](https://megaglest.org), [http://oldavista.com/](http://oldavista.com/), [https://wikitia.com](https://wikitia.com), [https://youtuube.neocities.org/homepage](https://youtuube.neocities.org/homepage), [https://lyricaltokarev.com/home](https://lyricaltokarev.com/home), [https://psychonautwiki.org](https://psychonautwiki.org), [https://www.eskimo.com/~billb/billb.html](https://www.eskimo.com/~billb/billb.html), [https://t3x.org/index.html](https://t3x.org/index.html), [https://dukenukemis.cool](https://dukenukemis.cool), [https://blitz.serveo.net](https://blitz.serveo.net), [https://911research.wtc7.net](https://911research.wtc7.net), [https://educate-yourself.org](https://educate-yourself.org), [https://www.lightparty.com](https://www.lightparty.com)
diff --git a/random_page.md b/random_page.md
index 4567c3b..1cedf53 100644
--- a/random_page.md
+++ b/random_page.md
@@ -2,1932 +2,1932 @@
Please kindly click random link.
-[*](wavelet_transform.md)
-[*](antivirus_paradox.md)
-[*](tas.md)
-[*](formal_language.md)
-[*](human_language.md)
-[*](xonotic.md)
-[*](future_proof.md)
-[*](racetrack.md)
-[*](history.md)
-[*](stereotype.md)
-[*](cos.md)
-[*](openarena.md)
-[*](git.md)
-[*](modern_software.md)
-[*](hyperoperation.md)
-[*](universe.md)
-[*](toxic.md)
-[*](education.md)
-[*](systemd.md)
-[*](anorexia.md)
-[*](graphics.md)
-[*](shit.md)
-[*](tpe.md)
-[*](math.md)
-[*](rsa.md)
-[*](entropy.md)
-[*](lotr.md)
-[*](pascal.md)
-[*](optimization.md)
-[*](love.md)
-[*](kiss.md)
-[*](microtransaction.md)
-[*](hacking.md)
-[*](culture.md)
-[*](reddit.md)
-[*](xd.md)
-[*](interpolation.md)
-[*](leading_the_pig_to_the_slaughterhouse.md)
-[*](quaternion.md)
-[*](just_werks.md)
-[*](css.md)
-[*](tom_scott.md)
-[*](speech_synthesis.md)
-[*](demo.md)
-[*](mouse.md)
-[*](cancel_culture.md)
-[*](line.md)
-[*](plusnigger.md)
-[*](devuan.md)
-[*](shit.md)
-[*](settled.md)
-[*](free_speech.md)
-[*](3d_rendering.md)
-[*](anarchism.md)
-[*](duke3d.md)
-[*](love.md)
-[*](recursion.md)
-[*](maintenance.md)
-[*](binary.md)
-[*](dog.md)
-[*](bytebeat.md)
-[*](plusnigger.md)
-[*](football.md)
-[*](oop.md)
-[*](tranny.md)
-[*](love.md)
-[*](attribution.md)
-[*](aaron_swartz.md)
-[*](lrs_wiki.md)
-[*](libre.md)
-[*](intellectual_property.md)
-[*](elo.md)
-[*](law.md)
-[*](tpe.md)
-[*](pd.md)
-[*](sw_rendering.md)
-[*](shitpress.md)
-[*](freedom.md)
-[*](entropy.md)
-[*](ram.md)
-[*](drummyfish.md)
-[*](conum.md)
-[*](docker.md)
-[*](wiby.md)
-[*](free_body.md)
-[*](library.md)
-[*](rule110.md)
-[*](jedi_engine.md)
-[*](hero_culture.md)
-[*](netstalking.md)
-[*](julia_set.md)
-[*](3d_rendering.md)
-[*](function.md)
-[*](unfuck.md)
-[*](graveyard.md)
-[*](interplanetary_internet.md)
-[*](anpac.md)
-[*](tor.md)
-[*](gopher.md)
-[*](quantum_gate.md)
-[*](cancel_culture.md)
-[*](memory_management.md)
-[*](whale.md)
-[*](tangram.md)
-[*](nonogram.md)
-[*](gaywashing.md)
-[*](whale.md)
-[*](often_confused.md)
-[*](c_tutorial.md)
-[*](exercises.md)
-[*](raycasting.md)
-[*](complexity.md)
-[*](anorexia.md)
-[*](cracking.md)
-[*](nigger.md)
-[*](comment.md)
-[*](fuck.md)
-[*](hitler.md)
-[*](gigachad.md)
-[*](countercomplex.md)
-[*](pseudorandomness.md)
-[*](analytic_geometry.md)
-[*](needed.md)
-[*](function.md)
-[*](bytecode.md)
-[*](marketing.md)
-[*](compsci.md)
-[*](js.md)
-[*](productivity_cult.md)
-[*](library.md)
-[*](xor.md)
-[*](information.md)
-[*](physics_engine.md)
-[*](nord_vpn.md)
-[*](popularization.md)
-[*](dungeons_and_dragons.md)
-[*](tech.md)
-[*](goodbye_world.md)
-[*](trolling.md)
-[*](gopher.md)
-[*](resnicks_termite.md)
-[*](3d_model.md)
-[*](graphics.md)
-[*](tor.md)
-[*](os.md)
-[*](thrembo.md)
-[*](linux.md)
-[*](optimism.md)
-[*](audiophilia.md)
-[*](coding.md)
-[*](marble_race.md)
-[*](crypto.md)
-[*](oop.md)
-[*](fixed_point.md)
-[*](xonotic.md)
-[*](www.md)
-[*](portal_rendering.md)
-[*](just_werks.md)
-[*](reactionary_software.md)
-[*](culture.md)
-[*](pseudo3d.md)
-[*](fsf.md)
-[*](dungeons_and_dragons.md)
-[*](programming_tips.md)
-[*](idiot_fallacy.md)
-[*](cc0.md)
-[*](phd.md)
-[*](c_sharp.md)
-[*](randomness.md)
-[*](fixed_point.md)
-[*](lambda_calculus.md)
-[*](www.md)
-[*](democracy.md)
-[*](app.md)
-[*](microtheft.md)
-[*](color.md)
-[*](feminism.md)
-[*](proprietary.md)
-[*](anarchism.md)
-[*](boat.md)
-[*](arduboy.md)
-[*](cancel_culture.md)
-[*](quine.md)
-[*](fail_ab.md)
-[*](disease.md)
-[*](chinese.md)
-[*](paradigm.md)
-[*](left_right.md)
-[*](moderation.md)
-[*](quaternion.md)
-[*](piracy.md)
-[*](money.md)
-[*](tangram.md)
-[*](viznut.md)
-[*](freedom_distance.md)
-[*](privacy.md)
-[*](body_shaming.md)
-[*](good_enough.md)
-[*](4chan.md)
-[*](myths.md)
-[*](c.md)
-[*](boat.md)
-[*](e.md)
-[*](consumerism.md)
-[*](microtransaction.md)
-[*](goodbye_world.md)
-[*](js.md)
-[*](c.md)
-[*](comun.md)
-[*](slowly_boiling_the_frog.md)
-[*](patent.md)
-[*](build_engine.md)
-[*](axiom_of_choice.md)
-[*](hard_to_learn_easy_to_master.md)
-[*](complexity.md)
-[*](dinosaur.md)
-[*](patent.md)
-[*](faq.md)
-[*](privacy.md)
-[*](hexadecimal.md)
-[*](rationalwiki.md)
-[*](fork.md)
-[*](race.md)
-[*](approximation.md)
-[*](unix.md)
-[*](coding.md)
-[*](morality.md)
-[*](doom.md)
-[*](no_knowledge_proof.md)
-[*](forth.md)
-[*](cpp.md)
-[*](democracy.md)
-[*](wiki_authors.md)
-[*](cloud.md)
-[*](based.md)
-[*](computer.md)
-[*](bootstrap.md)
-[*](macrofucker.md)
-[*](steganography.md)
-[*](game_of_life.md)
-[*](troll.md)
-[*](internet.md)
-[*](soyence.md)
-[*](tool_slave.md)
-[*](tinyphysicsengine.md)
-[*](main.md)
-[*](sqrt.md)
-[*](uxn.md)
-[*](netstalking.md)
-[*](game.md)
-[*](ioccc.md)
-[*](lgbt.md)
-[*](dramatica.md)
-[*](open_source.md)
-[*](trump.md)
-[*](kwangmyong.md)
-[*](capitalist_software.md)
-[*](proof.md)
-[*](antialiasing.md)
-[*](software.md)
-[*](needed.md)
-[*](smol_internet.md)
-[*](autostereogram.md)
-[*](usa.md)
-[*](pd.md)
-[*](permacomputing_wiki.md)
-[*](pseudo3d.md)
-[*](censorship.md)
-[*](raycastlib.md)
-[*](trom.md)
-[*](egg_code.md)
-[*](quake.md)
-[*](probability.md)
-[*](marketing.md)
-[*](google.md)
-[*](harry_potter.md)
-[*](monad.md)
-[*](cheating.md)
-[*](communism.md)
-[*](golang.md)
-[*](adam_smith.md)
-[*](deep_blue.md)
-[*](explicit.md)
-[*](blender.md)
-[*](robot.md)
-[*](coding.md)
-[*](saf.md)
-[*](zuckerberg.md)
-[*](saf.md)
-[*](one.md)
-[*](log.md)
-[*](fear_culture.md)
-[*](bootstrap.md)
-[*](left.md)
-[*](minigame.md)
-[*](collision.md)
-[*](quaternion.md)
-[*](abstraction.md)
-[*](compiler_bomb.md)
-[*](logic.md)
-[*](logic.md)
-[*](disease.md)
-[*](data_structure.md)
-[*](smallchesslib.md)
-[*](see_through_clothes.md)
-[*](lrs_wiki.md)
-[*](palette.md)
-[*](music.md)
-[*](forth.md)
-[*](docker.md)
-[*](pride.md)
-[*](go.md)
-[*](mainstream.md)
-[*](unix_philosophy.md)
-[*](regex.md)
-[*](people.md)
-[*](boot.md)
-[*](bootstrap.md)
-[*](mob_software.md)
-[*](p_vs_np.md)
-[*](data_hoarding.md)
-[*](trash_magic.md)
-[*](digital.md)
-[*](ubi.md)
-[*](thrembo.md)
-[*](html.md)
-[*](earth.md)
-[*](copyfree.md)
-[*](math.md)
-[*](entrepreneur.md)
-[*](demo.md)
-[*](line.md)
-[*](rgb565.md)
-[*](dinosaur.md)
-[*](ashley_jones.md)
-[*](hash.md)
-[*](explicit.md)
-[*](low_poly.md)
-[*](nigeria.md)
-[*](x86.md)
-[*](t3x.md)
-[*](luke_smith.md)
-[*](nc.md)
-[*](political_correctness.md)
-[*](julia_set.md)
-[*](boat.md)
-[*](ascii_art.md)
-[*](wiki_tldr.md)
-[*](bitreich.md)
-[*](python.md)
-[*](wiki_pages.md)
-[*](altruism.md)
-[*](minesweeper.md)
-[*](bloat.md)
-[*](wiki_post_mortem.md)
-[*](wiki_rights.md)
-[*](encryption.md)
-[*](asmr.md)
-[*](dodleston.md)
-[*](old.md)
-[*](brainfuck.md)
-[*](forth.md)
-[*](gnu.md)
-[*](aaron_swartz.md)
-[*](windows.md)
-[*](assembly.md)
-[*](xonotic.md)
-[*](newspeak.md)
-[*](git.md)
-[*](gay.md)
-[*](femoid.md)
-[*](gemini.md)
-[*](c_sharp.md)
-[*](triangle.md)
-[*](rgb565.md)
-[*](beauty.md)
-[*](license.md)
-[*](jedi_engine.md)
-[*](acronym.md)
-[*](pride.md)
-[*](google.md)
-[*](crypto.md)
-[*](boot.md)
-[*](holy_war.md)
-[*](fight.md)
-[*](settled.md)
-[*](rust.md)
-[*](approximation.md)
-[*](pseudorandomness.md)
-[*](mandelbrot_set.md)
-[*](trash_magic.md)
-[*](leading_the_pig_to_the_slaughterhouse.md)
-[*](openai.md)
-[*](memory_management.md)
-[*](log.md)
-[*](complexity.md)
-[*](tool_slave.md)
-[*](fail_ab.md)
-[*](nd.md)
-[*](science.md)
-[*](nigeria.md)
-[*](interaction_net.md)
-[*](algorithm.md)
-[*](dependency.md)
-[*](feminism.md)
-[*](global_discussion.md)
-[*](distance.md)
-[*](encyclopedia.md)
-[*](low_poly.md)
-[*](microtheft.md)
-[*](backpropagation.md)
-[*](free_body.md)
-[*](tas.md)
-[*](wiki_pages.md)
-[*](privacy.md)
-[*](asexuality.md)
-[*](nationalism.md)
-[*](ted_kaczynski.md)
-[*](assembly.md)
-[*](qubit.md)
-[*](apple.md)
-[*](interplanetary_internet.md)
-[*](capitalist_singularity.md)
-[*](freemasonry.md)
-[*](niger.md)
-[*](fediverse.md)
-[*](name_is_important.md)
-[*](de_facto.md)
-[*](nd.md)
-[*](rust.md)
-[*](coc.md)
-[*](cpp.md)
-[*](cheating.md)
-[*](friend_detox.md)
-[*](digital_signature.md)
-[*](javascript.md)
-[*](zoomer.md)
-[*](real_number.md)
-[*](znk.md)
-[*](esolang.md)
-[*](rationalwiki.md)
-[*](brainfuck.md)
-[*](semiconductor.md)
-[*](shogi.md)
-[*](minigame.md)
-[*](less_retarded_software.md)
-[*](compsci.md)
-[*](main.md)
-[*](piracy.md)
-[*](python.md)
-[*](90s.md)
-[*](web.md)
-[*](encryption.md)
-[*](znk.md)
-[*](free_universe.md)
-[*](pokitto.md)
-[*](small3dlib.md)
-[*](windows.md)
-[*](piracy.md)
-[*](bbs.md)
-[*](books.md)
-[*](hard_to_learn_easy_to_master.md)
-[*](pascal.md)
-[*](computational_complexity.md)
-[*](exercises.md)
-[*](wikiwikiweb.md)
-[*](tool_slave.md)
-[*](proprietary_software.md)
-[*](rationalization.md)
-[*](pseudoleft.md)
-[*](mechanical.md)
-[*](ram.md)
-[*](luke_smith.md)
-[*](atan.md)
-[*](fuck.md)
-[*](anal_bead.md)
-[*](cloud.md)
-[*](lambda_calculus.md)
-[*](elo.md)
-[*](easier_done_than_said.md)
-[*](analog.md)
-[*](racetrack.md)
-[*](charity_sex.md)
-[*](software.md)
-[*](anorexia.md)
-[*](README.md)
-[*](justice.md)
-[*](finished.md)
-[*](kek.md)
-[*](history.md)
-[*](newspeak.md)
-[*](interpolation.md)
-[*](programming_tips.md)
-[*](antivirus_paradox.md)
-[*](wikipedia.md)
-[*](game.md)
-[*](t3x.md)
-[*](chaos.md)
-[*](ronja.md)
-[*](rust.md)
-[*](human_language.md)
-[*](people.md)
-[*](cracker.md)
-[*](zen.md)
-[*](collapse.md)
-[*](egg_code.md)
-[*](fixed_point.md)
-[*](pi.md)
-[*](arch.md)
-[*](cc0.md)
-[*](nationalism.md)
-[*](iq.md)
-[*](licar.md)
-[*](tinyphysicsengine.md)
-[*](framework.md)
-[*](linear_algebra.md)
-[*](libertarianism.md)
-[*](faggot.md)
-[*](fractal.md)
-[*](capitalist_software.md)
-[*](pd.md)
-[*](steve_jobs.md)
-[*](java.md)
-[*](steganography.md)
-[*](popularization.md)
-[*](permacomputing_wiki.md)
-[*](egg_code.md)
-[*](double_buffering.md)
-[*](smallchesslib.md)
-[*](bitreich.md)
-[*](plan9.md)
-[*](education.md)
-[*](luke_smith.md)
-[*](cat_v.md)
-[*](proprietary.md)
-[*](fork.md)
-[*](docker.md)
-[*](unretard.md)
-[*](byte.md)
-[*](4chan.md)
-[*](fizzbuzz.md)
-[*](xd.md)
-[*](wiki_stats.md)
-[*](justice.md)
-[*](viznut.md)
-[*](pokitto.md)
-[*](ui.md)
-[*](c_tutorial.md)
-[*](xor.md)
-[*](dinosaur.md)
-[*](earth.md)
-[*](anal_bead.md)
-[*](derivative.md)
-[*](deep_blue.md)
-[*](bit_hack.md)
-[*](distance.md)
-[*](dog.md)
-[*](avpd.md)
-[*](graveyard.md)
-[*](public_domain.md)
-[*](quake.md)
-[*](disease.md)
-[*](left_right.md)
-[*](gnu.md)
-[*](paywall.md)
-[*](teletext.md)
-[*](brain_software.md)
-[*](bill_gates.md)
-[*](malware.md)
-[*](lmao.md)
-[*](foss.md)
-[*](recursion.md)
-[*](tattoo.md)
-[*](raylib.md)
-[*](ethics.md)
-[*](mouse.md)
-[*](speech_synthesis.md)
-[*](io.md)
-[*](bloat_monopoly.md)
-[*](logic_circuit.md)
-[*](rock.md)
-[*](proof.md)
-[*](wiki_post_mortem.md)
-[*](dynamic_programming.md)
-[*](elon_musk.md)
-[*](determinism.md)
-[*](pascal.md)
-[*](cat_v.md)
-[*](needed.md)
-[*](color.md)
-[*](cpp.md)
-[*](windows.md)
-[*](discalimer.md)
-[*](moderation.md)
-[*](right.md)
-[*](cpu.md)
-[*](permacomputing.md)
-[*](wirtual.md)
-[*](bit_hack.md)
-[*](holy_war.md)
-[*](assertiveness.md)
-[*](pseudominimalism.md)
-[*](xxiivv.md)
-[*](primitive_3d.md)
-[*](open_console.md)
-[*](algorithm.md)
-[*](wolf3d.md)
-[*](game_of_life.md)
-[*](attribution.md)
-[*](femoid.md)
-[*](cancer.md)
-[*](fear_culture.md)
-[*](lrs_dictionary.md)
-[*](css.md)
-[*](build_engine.md)
-[*](githopping.md)
-[*](nationalism.md)
-[*](computational_complexity.md)
-[*](c_tutorial.md)
-[*](diogenes.md)
-[*](dodleston.md)
-[*](21st_century.md)
-[*](optimism.md)
-[*](wolf3d.md)
-[*](firmware.md)
-[*](motivation.md)
-[*](floss.md)
-[*](fuck.md)
-[*](raycastlib.md)
-[*](sorting.md)
-[*](abstraction.md)
-[*](moderation.md)
-[*](kiwifarms.md)
-[*](fun.md)
-[*](integral.md)
-[*](blender.md)
-[*](fight_culture.md)
-[*](technology.md)
-[*](update_culture.md)
-[*](low_poly.md)
-[*](wiki_tldr.md)
-[*](3d_model.md)
-[*](right.md)
-[*](idiot_fallacy.md)
-[*](temple_os.md)
-[*](tree.md)
-[*](open_console.md)
-[*](trash_magic.md)
-[*](resnicks_termite.md)
-[*](social_inertia.md)
-[*](zuckerberg.md)
-[*](crypto.md)
-[*](teletext.md)
-[*](xor.md)
-[*](sw_rendering.md)
-[*](derivative.md)
-[*](fascism.md)
-[*](temple_os.md)
-[*](steve_jobs.md)
-[*](gender_studies.md)
-[*](free_culture.md)
-[*](settled.md)
-[*](evil.md)
-[*](rgb332.md)
-[*](lil.md)
-[*](esolang.md)
-[*](crime_against_economy.md)
-[*](niger.md)
-[*](arch.md)
-[*](cpu.md)
-[*](suicide.md)
-[*](free.md)
-[*](javascript.md)
-[*](copyleft.md)
-[*](robot.md)
-[*](usenet.md)
-[*](hexadecimal.md)
-[*](mouse.md)
-[*](billboard.md)
-[*](life.md)
-[*](permacomputing_wiki.md)
-[*](racism.md)
-[*](ai.md)
-[*](hard_to_learn_easy_to_master.md)
-[*](wiki_authors.md)
-[*](bloat_monopoly.md)
-[*](hardware.md)
-[*](usa.md)
-[*](morality.md)
-[*](future_proof.md)
-[*](color.md)
-[*](throwaway_script.md)
-[*](living.md)
-[*](throwaway_script.md)
-[*](niggercoin.md)
-[*](atheism.md)
-[*](rgb332.md)
-[*](unfuck.md)
-[*](censorship.md)
-[*](dependency.md)
-[*](censorship.md)
-[*](usenet.md)
-[*](pseudo3d.md)
-[*](audiophilia.md)
-[*](competition.md)
-[*](turing_machine.md)
-[*](portal_rendering.md)
-[*](consumerism.md)
-[*](binary.md)
-[*](used.md)
-[*](living.md)
-[*](shitpress.md)
-[*](line.md)
-[*](free_will.md)
-[*](ssao.md)
-[*](bazaar.md)
-[*](programming_style.md)
-[*](vim.md)
-[*](diogenes.md)
-[*](viznut.md)
-[*](ram.md)
-[*](wow.md)
-[*](easy_to_learn_hard_to_master.md)
-[*](freedom.md)
-[*](sw_rendering.md)
-[*](bbs.md)
-[*](wiki_tldr.md)
-[*](shortcut_thinking.md)
-[*](countercomplex.md)
-[*](wiki_style.md)
-[*](finished.md)
-[*](niger.md)
-[*](go.md)
-[*](noise.md)
-[*](pedophilia.md)
-[*](bullshit.md)
-[*](lotr.md)
-[*](rule110.md)
-[*](military.md)
-[*](bullshit.md)
-[*](unary.md)
-[*](duskos.md)
-[*](slowly_boiling_the_frog.md)
-[*](linux.md)
-[*](loc.md)
-[*](kiwifarms.md)
-[*](universe.md)
-[*](asexuality.md)
-[*](attribution.md)
-[*](game_design.md)
-[*](public_domain_computer.md)
-[*](compiler_bomb.md)
-[*](nanogenmo.md)
-[*](www.md)
-[*](gemini.md)
-[*](good_enough.md)
-[*](logic_gate.md)
-[*](left_right.md)
-[*](tranny_software.md)
-[*](ascii.md)
-[*](entrepreneur.md)
-[*](wiki_post_mortem.md)
-[*](sanism.md)
-[*](motivation.md)
-[*](optimization.md)
-[*](charity_sex.md)
-[*](selflessness.md)
-[*](mud.md)
-[*](algorithm.md)
-[*](julia_set.md)
-[*](soydev.md)
-[*](based.md)
-[*](libertarianism.md)
-[*](bit.md)
-[*](math.md)
-[*](elon_musk.md)
-[*](nord_vpn.md)
-[*](often_misunderstood.md)
-[*](toxic.md)
-[*](semiconductor.md)
-[*](old.md)
-[*](hacking.md)
-[*](freedom.md)
-[*](open_source.md)
-[*](prime.md)
-[*](rsa.md)
-[*](reactionary_software.md)
-[*](lrs.md)
-[*](probability.md)
-[*](dynamic_programming.md)
-[*](flatland.md)
-[*](magic.md)
[*](lisp.md)
-[*](game.md)
-[*](geek.md)
-[*](deferred_shading.md)
-[*](fear_culture.md)
-[*](hacker_culture.md)
-[*](libertarianism.md)
-[*](minesweeper.md)
-[*](ai.md)
-[*](downto.md)
-[*](data_hoarding.md)
-[*](licar.md)
-[*](often_misunderstood.md)
-[*](tensor_product.md)
-[*](os.md)
-[*](bilinear.md)
-[*](public_domain.md)
-[*](less_retarded_hardware.md)
-[*](wow.md)
-[*](one.md)
-[*](programming_tips.md)
-[*](free_culture.md)
-[*](frameless.md)
-[*](easier_done_than_said.md)
-[*](suicide.md)
+[*](free_body.md)
+[*](gigachad.md)
+[*](woman.md)
+[*](whale.md)
+[*](diogenes.md)
+[*](ubi.md)
+[*](charity_sex.md)
+[*](political_correctness.md)
+[*](shogi.md)
+[*](pokitto.md)
+[*](loc.md)
+[*](vim.md)
+[*](left.md)
[*](feminism.md)
-[*](microtheft.md)
-[*](ascii_art.md)
-[*](physics_engine.md)
-[*](hacker_culture.md)
-[*](prime.md)
-[*](chess.md)
-[*](history.md)
-[*](based.md)
-[*](procgen.md)
-[*](fqa.md)
-[*](debugging.md)
+[*](nokia.md)
+[*](bitreich.md)
+[*](x86.md)
+[*](java.md)
+[*](john_carmack.md)
+[*](toxic.md)
+[*](css.md)
+[*](proprietary.md)
+[*](game_of_life.md)
+[*](bill_gates.md)
+[*](brain_software.md)
+[*](world_broadcast.md)
+[*](cpp.md)
+[*](bbs.md)
+[*](bit.md)
+[*](free_body.md)
+[*](watchdog.md)
+[*](adam_smith.md)
+[*](implicit.md)
+[*](often_confused.md)
+[*](elon_musk.md)
+[*](bloat_monopoly.md)
+[*](portal_rendering.md)
+[*](boot.md)
+[*](duke3d.md)
+[*](computational_complexity.md)
+[*](zoomer.md)
+[*](how_to.md)
+[*](programming.md)
+[*](backpropagation.md)
+[*](math.md)
+[*](oop.md)
+[*](dog.md)
+[*](mob_software.md)
+[*](java.md)
[*](greenwashing.md)
-[*](yes_they_can.md)
-[*](soyence.md)
-[*](name_is_important.md)
-[*](terry_davis.md)
-[*](hash.md)
-[*](hero.md)
-[*](island.md)
-[*](logic_circuit.md)
-[*](bs.md)
-[*](faggot.md)
-[*](dungeons_and_dragons.md)
-[*](copyfree.md)
-[*](normalization.md)
-[*](integral.md)
-[*](shitpress.md)
-[*](sjw.md)
-[*](znk.md)
-[*](quine.md)
-[*](good_enough.md)
-[*](culture.md)
-[*](githopping.md)
-[*](wiby.md)
-[*](systemd.md)
-[*](transsexual.md)
-[*](graphics.md)
-[*](pseudoleft.md)
-[*](smart.md)
-[*](rms.md)
-[*](beauty.md)
-[*](island.md)
-[*](name_is_important.md)
-[*](proof.md)
-[*](version_numbering.md)
-[*](femoid.md)
-[*](wiby.md)
-[*](evil.md)
-[*](cyber.md)
-[*](splinternet.md)
-[*](and.md)
-[*](lrs_wiki.md)
-[*](sdf.md)
-[*](hyperoperation.md)
-[*](data_structure.md)
-[*](crow_funding.md)
-[*](anpac.md)
-[*](build_engine.md)
-[*](hyperoperation.md)
-[*](xxiivv.md)
+[*](game_engine.md)
+[*](speech_synthesis.md)
+[*](git.md)
+[*](wow.md)
+[*](gemini.md)
+[*](javascript.md)
+[*](analog.md)
+[*](js.md)
+[*](body_shaming.md)
+[*](disease.md)
+[*](entropy.md)
+[*](often_confused.md)
+[*](ram.md)
+[*](os.md)
[*](physics_engine.md)
-[*](cyberbullying.md)
-[*](de_facto.md)
-[*](murderer.md)
-[*](no_knowledge_proof.md)
-[*](tangram.md)
-[*](ethics.md)
+[*](rust.md)
+[*](minimalism.md)
+[*](social_inertia.md)
+[*](unix.md)
+[*](free_hardware.md)
+[*](internet.md)
+[*](kids_these_days.md)
+[*](hacker_culture.md)
+[*](tor.md)
+[*](julia_set.md)
+[*](anticompany.md)
+[*](nord_vpn.md)
+[*](robot.md)
+[*](anpac.md)
+[*](data_hoarding.md)
+[*](microsoft.md)
+[*](fork.md)
+[*](analog.md)
+[*](3d_model.md)
+[*](minesweeper.md)
+[*](abstraction.md)
+[*](based.md)
+[*](xonotic.md)
+[*](tor.md)
+[*](tensor_product.md)
+[*](sanism.md)
+[*](ascii_art.md)
+[*](axiom_of_choice.md)
+[*](wikiwikiweb.md)
+[*](nanogenmo.md)
+[*](pi.md)
+[*](proprietary_software.md)
+[*](digital.md)
+[*](slowly_boiling_the_frog.md)
+[*](programming_tips.md)
+[*](probability.md)
+[*](cancel_culture.md)
+[*](bit.md)
+[*](pi.md)
+[*](triangle.md)
+[*](trash_magic.md)
+[*](google.md)
+[*](devuan.md)
+[*](ssao.md)
+[*](just_werks.md)
+[*](feminism.md)
+[*](minesweeper.md)
+[*](pride.md)
+[*](femoid.md)
+[*](or.md)
+[*](rust.md)
+[*](distrohopping.md)
+[*](jesus.md)
+[*](cope.md)
+[*](backgammon.md)
+[*](sorting.md)
+[*](compression.md)
+[*](reddit.md)
+[*](libertarianism.md)
+[*](autoupdate.md)
+[*](zuckerberg.md)
+[*](suckless.md)
+[*](pride.md)
+[*](wikiwikiweb.md)
+[*](football.md)
+[*](license.md)
+[*](framework.md)
+[*](mandelbrot_set.md)
+[*](foss.md)
+[*](docker.md)
+[*](quaternion.md)
+[*](bytecode.md)
+[*](antialiasing.md)
+[*](life.md)
+[*](maintenance.md)
+[*](dynamic_programming.md)
+[*](interplanetary_internet.md)
+[*](egoism.md)
+[*](ancap.md)
+[*](lrs.md)
+[*](often_misunderstood.md)
+[*](recursion.md)
+[*](app.md)
+[*](needed.md)
[*](aliasing.md)
-[*](nd.md)
+[*](demo.md)
+[*](zoomer.md)
+[*](woman.md)
+[*](creative_commons.md)
+[*](yes_they_can.md)
+[*](paywall.md)
+[*](c_tutorial.md)
+[*](ascii.md)
+[*](sdf.md)
+[*](linear_algebra.md)
+[*](censorship.md)
+[*](pseudo3d.md)
+[*](line.md)
+[*](anal_bead.md)
+[*](racism.md)
+[*](procgen.md)
+[*](uxn.md)
+[*](wirtual.md)
+[*](unix.md)
+[*](complexity.md)
+[*](cache.md)
+[*](wiki_stats.md)
+[*](hardware.md)
+[*](gaywashing.md)
+[*](proprietary.md)
+[*](capitalist_software.md)
+[*](optimization.md)
+[*](doom.md)
+[*](rock.md)
+[*](encryption.md)
+[*](zuckerberg.md)
+[*](atheism.md)
+[*](nigger.md)
+[*](flatland.md)
+[*](billboard.md)
+[*](iq.md)
+[*](patent.md)
+[*](thrembo.md)
+[*](log.md)
+[*](app.md)
+[*](git.md)
+[*](nord_vpn.md)
+[*](cracker.md)
+[*](42.md)
+[*](netstalking.md)
+[*](universe.md)
+[*](markov_chain.md)
+[*](binary.md)
+[*](demo.md)
+[*](privacy.md)
+[*](integral.md)
+[*](global_discussion.md)
+[*](shitpress.md)
+[*](geek.md)
+[*](liberalism.md)
+[*](people.md)
+[*](debugging.md)
+[*](productivity_cult.md)
+[*](no_knowledge_proof.md)
+[*](less_retarded_software.md)
+[*](collision_detection.md)
+[*](black.md)
+[*](100r.md)
+[*](wikipedia.md)
+[*](c.md)
+[*](ancap.md)
+[*](bit_hack.md)
+[*](data_structure.md)
+[*](science.md)
+[*](billboard.md)
+[*](backgammon.md)
+[*](plusnigger.md)
+[*](c_tutorial.md)
+[*](plan9.md)
+[*](graphics.md)
+[*](wolf3d.md)
+[*](sub_rosa.md)
+[*](coding.md)
+[*](blender.md)
+[*](programming_language.md)
+[*](justice.md)
+[*](interpolation.md)
+[*](elo.md)
+[*](or.md)
+[*](teletext.md)
+[*](encyclopedia.md)
+[*](3d_rendering.md)
+[*](noise.md)
+[*](pd.md)
+[*](marble_race.md)
+[*](autostereogram.md)
+[*](sudoku.md)
+[*](small3dlib.md)
+[*](aaron_swartz.md)
+[*](jargon_file.md)
+[*](bytebeat.md)
+[*](shader.md)
+[*](gaywashing.md)
+[*](portal_rendering.md)
+[*](see_through_clothes.md)
+[*](nc.md)
+[*](coc.md)
+[*](cancel_culture.md)
+[*](chinese.md)
+[*](elon_musk.md)
+[*](raycasting.md)
+[*](assertiveness.md)
+[*](faggot.md)
+[*](asexuality.md)
+[*](hacking.md)
+[*](antialiasing.md)
+[*](float.md)
+[*](game_design.md)
+[*](holy_war.md)
+[*](mainstream.md)
+[*](tranny.md)
+[*](fight.md)
+[*](free_body.md)
+[*](real_number.md)
+[*](permacomputing.md)
+[*](work.md)
+[*](gay.md)
+[*](shitword.md)
+[*](deep_blue.md)
+[*](tech.md)
+[*](backpropagation.md)
+[*](programming.md)
+[*](old.md)
+[*](shitpress.md)
+[*](3d_model.md)
+[*](encryption.md)
+[*](cyber.md)
+[*](hardware.md)
+[*](charity_sex.md)
+[*](flatland.md)
+[*](internet.md)
+[*](langtons_ant.md)
+[*](culture.md)
+[*](ascii_art.md)
+[*](kek.md)
+[*](golang.md)
+[*](sudoku.md)
+[*](blender.md)
+[*](ioccc.md)
+[*](network.md)
+[*](czechia.md)
+[*](acronym.md)
+[*](see_through_clothes.md)
+[*](wiki_rights.md)
+[*](luke_smith.md)
+[*](openarena.md)
+[*](competition.md)
+[*](open_console.md)
+[*](graveyard.md)
+[*](chess.md)
+[*](venus_project.md)
+[*](3d_rendering.md)
+[*](idiot_fallacy.md)
+[*](rapeware.md)
+[*](wavelet_transform.md)
+[*](c_tutorial.md)
[*](cyber.md)
[*](unix_philosophy.md)
-[*](faq.md)
-[*](watchdog.md)
-[*](float.md)
-[*](go.md)
-[*](wolf3d.md)
-[*](data_hoarding.md)
-[*](logic_circuit.md)
-[*](ashley_jones.md)
-[*](fantasy_console.md)
-[*](suckless.md)
-[*](3d_modeling.md)
-[*](or.md)
-[*](unicode.md)
-[*](sudoku.md)
-[*](anarchism.md)
-[*](trusting_trust.md)
-[*](backpropagation.md)
-[*](often_confused.md)
-[*](cracking.md)
-[*](data_structure.md)
-[*](comment.md)
-[*](programming_language.md)
-[*](42.md)
-[*](information.md)
-[*](girl.md)
-[*](homelessness.md)
-[*](graveyard.md)
-[*](cc.md)
-[*](vector.md)
-[*](copyleft.md)
-[*](lrs_dictionary.md)
-[*](world_broadcast.md)
-[*](troll.md)
-[*](art.md)
-[*](markov_chain.md)
-[*](semiconductor.md)
-[*](free_software.md)
-[*](trolling.md)
-[*](rationalization.md)
-[*](pseudoleft.md)
-[*](app.md)
-[*](ascii.md)
-[*](distrohopping.md)
-[*](100r.md)
-[*](duke3d.md)
-[*](rule110.md)
-[*](diogenes.md)
-[*](kek.md)
-[*](smart.md)
-[*](zoomer.md)
-[*](proprietary.md)
-[*](work.md)
-[*](social_inertia.md)
-[*](patent.md)
-[*](npc.md)
-[*](political_correctness.md)
-[*](recursion.md)
-[*](everyone_does_it.md)
-[*](money.md)
-[*](golang.md)
-[*](network.md)
-[*](capitalist_singularity.md)
-[*](world_broadcast.md)
-[*](less_retarded_hardware.md)
-[*](crow_funding.md)
-[*](qubit.md)
-[*](framework.md)
-[*](100r.md)
-[*](capitalism.md)
-[*](wiki_stats.md)
-[*](floss.md)
-[*](fight_culture.md)
-[*](netstalking.md)
-[*](frameless.md)
-[*](21st_century.md)
-[*](cracker.md)
-[*](backgammon.md)
-[*](girl.md)
-[*](openarena.md)
-[*](wikipedia.md)
-[*](left.md)
-[*](lil.md)
-[*](egoism.md)
-[*](mandelbrot_set.md)
-[*](conum.md)
-[*](deferred_shading.md)
-[*](distrohopping.md)
-[*](kids_these_days.md)
-[*](venus_project.md)
-[*](sub_rosa.md)
-[*](aliasing.md)
-[*](hitler.md)
-[*](tas.md)
-[*](fqa.md)
-[*](wikidata.md)
-[*](sin.md)
-[*](black.md)
-[*](hacker_culture.md)
-[*](arduboy.md)
-[*](downto.md)
-[*](logic_gate.md)
-[*](deep_blue.md)
-[*](phd.md)
-[*](java.md)
-[*](asmr.md)
-[*](sqrt.md)
-[*](transistor.md)
-[*](military.md)
-[*](autoupdate.md)
-[*](black.md)
-[*](books.md)
-[*](git.md)
-[*](adam_smith.md)
-[*](jesus.md)
-[*](gigachad.md)
-[*](soydev.md)
-[*](collision_detection.md)
-[*](byte.md)
-[*](woman.md)
-[*](foss.md)
-[*](golang.md)
-[*](oop.md)
-[*](maintenance.md)
-[*](frameless.md)
-[*](aliasing.md)
-[*](io.md)
-[*](raylib.md)
-[*](fractal.md)
-[*](loquendo.md)
-[*](whale.md)
-[*](palette.md)
-[*](everyone_does_it.md)
-[*](sjw.md)
-[*](network.md)
-[*](optimization.md)
-[*](smart.md)
-[*](double_buffering.md)
-[*](less_retarded_society.md)
-[*](dynamic_programming.md)
-[*](myths.md)
-[*](transistor.md)
-[*](woman.md)
-[*](microtransaction.md)
-[*](tensor_product.md)
-[*](future.md)
-[*](game_of_life.md)
-[*](minigame.md)
-[*](bs.md)
[*](web.md)
-[*](npc.md)
-[*](gui.md)
-[*](tranny_software.md)
-[*](nanogenmo.md)
-[*](mental_outlaw.md)
-[*](fantasy_console.md)
-[*](wiki_stats.md)
-[*](twos_complement.md)
-[*](rms.md)
-[*](sorting.md)
-[*](demoscene.md)
-[*](mud.md)
-[*](anpac.md)
-[*](sanism.md)
-[*](youtube.md)
-[*](linear_algebra.md)
-[*](chasm_the_rift.md)
-[*](drummyfish.md)
-[*](anal_bead.md)
-[*](demo.md)
-[*](lgbt.md)
-[*](magic.md)
-[*](update_culture.md)
-[*](atheism.md)
-[*](sanism.md)
-[*](cache.md)
-[*](triangle.md)
-[*](gaywashing.md)
-[*](lmao.md)
-[*](paywall.md)
-[*](zero.md)
-[*](corporation.md)
-[*](friend_detox.md)
-[*](fight.md)
-[*](demoscene.md)
-[*](duskos.md)
-[*](autoupdate.md)
-[*](mipmap.md)
-[*](macrofucker.md)
-[*](gender_studies.md)
-[*](nigeria.md)
-[*](military.md)
-[*](drummyfish.md)
-[*](body_shaming.md)
-[*](tinyphysicsengine.md)
-[*](modern_software.md)
-[*](woman.md)
-[*](see_through_clothes.md)
-[*](liberalism.md)
-[*](atan.md)
-[*](race.md)
-[*](portability.md)
-[*](ronja.md)
-[*](distrohopping.md)
-[*](derivative.md)
-[*](humorwashing.md)
-[*](music.md)
-[*](chasm_the_rift.md)
-[*](hardware.md)
-[*](bs.md)
-[*](wiki_style.md)
-[*](memory_management.md)
-[*](dependency.md)
-[*](esolang.md)
-[*](dick_reveal.md)
-[*](shortcut_thinking.md)
-[*](free_hardware.md)
-[*](backgammon.md)
-[*](unix.md)
-[*](cancer.md)
-[*](noise.md)
-[*](fascist.md)
-[*](rationalwiki.md)
-[*](rapeware.md)
-[*](fourier_transform.md)
-[*](shader.md)
-[*](gay.md)
-[*](assertiveness.md)
-[*](creative_commons.md)
-[*](atan.md)
-[*](public_domain_computer.md)
-[*](future.md)
-[*](cope.md)
-[*](anarch.md)
-[*](42.md)
-[*](analog.md)
-[*](ancap.md)
-[*](markov_chain.md)
-[*](liberalism.md)
-[*](free_hardware.md)
-[*](fun.md)
-[*](justice.md)
-[*](countercomplex.md)
-[*](game_design.md)
-[*](soyence.md)
-[*](speech_synthesis.md)
-[*](logic_gate.md)
-[*](apple.md)
-[*](intellectual_property.md)
-[*](rsa.md)
-[*](friend_detox.md)
-[*](shader.md)
-[*](shitword.md)
-[*](kwangmyong.md)
-[*](transsexual.md)
-[*](brain_software.md)
-[*](venus_project.md)
-[*](loc.md)
-[*](minesweeper.md)
-[*](raylib.md)
-[*](democracy.md)
-[*](progress.md)
-[*](island.md)
-[*](game_engine.md)
-[*](free.md)
-[*](sudoku.md)
-[*](sigbovik.md)
-[*](free_culture.md)
-[*](quantum_gate.md)
-[*](raycasting.md)
-[*](chasm_the_rift.md)
-[*](python.md)
-[*](programming_style.md)
-[*](sw.md)
-[*](log.md)
-[*](cancer.md)
-[*](c_pitfalls.md)
-[*](used.md)
-[*](cc0.md)
-[*](vim.md)
-[*](lil.md)
-[*](infinity.md)
-[*](splinternet.md)
-[*](asmr.md)
-[*](bloat.md)
-[*](cope.md)
-[*](fractal.md)
-[*](bbs.md)
-[*](gnu.md)
-[*](e.md)
-[*](coc.md)
-[*](autoupdate.md)
-[*](blender.md)
-[*](sdf.md)
-[*](programming.md)
-[*](security.md)
-[*](number.md)
-[*](ethics.md)
-[*](wizard.md)
-[*](paradigm.md)
-[*](finished.md)
-[*](pseudorandomness.md)
-[*](langtons_ant.md)
-[*](shitword.md)
-[*](collision.md)
-[*](ancap.md)
-[*](beauty.md)
+[*](integral.md)
[*](sqrt.md)
-[*](sub_rosa.md)
-[*](mechanical.md)
-[*](lrs_dictionary.md)
-[*](ted_kaczynski.md)
-[*](gay.md)
-[*](physics.md)
-[*](proprietary_software.md)
-[*](rights_culture.md)
-[*](unicode.md)
-[*](capitalist_software.md)
-[*](tech.md)
-[*](wavelet_transform.md)
-[*](portal_rendering.md)
-[*](facebook.md)
-[*](duskos.md)
-[*](nonogram.md)
-[*](turing_machine.md)
-[*](chess.md)
-[*](gigachad.md)
-[*](implicit.md)
-[*](law.md)
-[*](and.md)
-[*](capitalist_singularity.md)
-[*](dog.md)
-[*](README.md)
-[*](compiler_bomb.md)
-[*](sw.md)
-[*](programming_language.md)
-[*](wavelet_transform.md)
-[*](ioccc.md)
-[*](ubi.md)
-[*](fqa.md)
-[*](mob_software.md)
-[*](living.md)
-[*](quantum_gate.md)
-[*](rights_culture.md)
-[*](project.md)
-[*](trump.md)
-[*](humidity.md)
-[*](free.md)
-[*](firmware.md)
-[*](geek.md)
-[*](murderer.md)
-[*](usa.md)
-[*](harry_potter.md)
-[*](tpe.md)
-[*](ascii_art.md)
-[*](ioccc.md)
-[*](race.md)
-[*](minimalism.md)
-[*](infinity.md)
-[*](comment.md)
-[*](lmao.md)
-[*](minimalism.md)
-[*](crow_funding.md)
-[*](mental_outlaw.md)
-[*](anticompany.md)
-[*](c_pitfalls.md)
-[*](license.md)
-[*](analytic_geometry.md)
-[*](regex.md)
-[*](fascism.md)
-[*](debugging.md)
-[*](global_discussion.md)
-[*](tranny.md)
-[*](jesus.md)
-[*](operating_system.md)
-[*](cloud.md)
-[*](devuan.md)
-[*](hw.md)
-[*](lisp.md)
-[*](future_proof.md)
-[*](marxism.md)
-[*](loc.md)
-[*](myths.md)
-[*](kiss.md)
-[*](portability.md)
-[*](ai.md)
-[*](soydev.md)
-[*](smallchesslib.md)
-[*](encyclopedia.md)
-[*](bytebeat.md)
-[*](io.md)
-[*](consumerism.md)
-[*](adam_smith.md)
-[*](smol_internet.md)
-[*](internet.md)
-[*](competition.md)
-[*](wizard.md)
-[*](science.md)
-[*](altruism.md)
-[*](javascript.md)
-[*](corporation.md)
-[*](wikipedia.md)
-[*](version_numbering.md)
-[*](usenet.md)
-[*](plan9.md)
-[*](anarch.md)
-[*](bit_hack.md)
-[*](interesting.md)
-[*](physics.md)
-[*](cloudflare.md)
-[*](billboard.md)
-[*](hack.md)
-[*](unretard.md)
-[*](how_to.md)
[*](leading_the_pig_to_the_slaughterhouse.md)
-[*](football.md)
-[*](furry.md)
-[*](jokes.md)
-[*](old.md)
-[*](tor.md)
-[*](nanogenmo.md)
-[*](tranny.md)
-[*](noise.md)
-[*](antivirus_paradox.md)
-[*](42.md)
-[*](xd.md)
-[*](small3dlib.md)
-[*](cyber.md)
-[*](corporation.md)
-[*](determinism.md)
-[*](langtons_ant.md)
-[*](binary.md)
-[*](web.md)
-[*](books.md)
-[*](evil.md)
-[*](wikiwikiweb.md)
-[*](ronja.md)
-[*](assertiveness.md)
-[*](life.md)
-[*](saf.md)
-[*](version_numbering.md)
-[*](racism.md)
-[*](e.md)
-[*](githopping.md)
-[*](proprietary_software.md)
-[*](egoism.md)
-[*](tranny_software.md)
-[*](copyright.md)
-[*](acronym.md)
-[*](trom.md)
-[*](capitalism.md)
-[*](flatland.md)
-[*](calculus.md)
-[*](temple_os.md)
-[*](anticompany.md)
-[*](girl.md)
-[*](furry.md)
-[*](fizzbuzz.md)
-[*](license.md)
-[*](wiki_authors.md)
-[*](black.md)
-[*](kiwifarms.md)
-[*](kek.md)
-[*](hw.md)
-[*](cyberbullying.md)
-[*](communism.md)
-[*](mental_outlaw.md)
-[*](vim.md)
-[*](fun.md)
-[*](gui.md)
-[*](emoticon.md)
-[*](holy_war.md)
-[*](unretard.md)
[*](4chan.md)
-[*](triangle.md)
-[*](john_carmack.md)
-[*](selflessness.md)
-[*](czechia.md)
-[*](education.md)
-[*](regex.md)
-[*](interplanetary_internet.md)
-[*](suckless.md)
-[*](bazaar.md)
-[*](billboard.md)
-[*](nigger.md)
-[*](nokia.md)
-[*](emoticon.md)
-[*](libre.md)
-[*](logic.md)
-[*](future.md)
-[*](idiot_fallacy.md)
-[*](free_software.md)
-[*](less_retarded_software.md)
-[*](pedophilia.md)
-[*](avpd.md)
-[*](sorting.md)
-[*](backpropagation.md)
-[*](nigger.md)
-[*](tensor_product.md)
-[*](wow.md)
-[*](encryption.md)
-[*](brainfuck.md)
-[*](loquendo.md)
-[*](left.md)
-[*](library.md)
-[*](rationalization.md)
-[*](bitreich.md)
-[*](randomness.md)
-[*](procgen.md)
-[*](markov_chain.md)
-[*](dick_reveal.md)
-[*](project.md)
-[*](kids_these_days.md)
-[*](bytebeat.md)
-[*](wiki_pages.md)
-[*](framework.md)
-[*](bilinear.md)
-[*](debugging.md)
-[*](creative_commons.md)
-[*](kids_these_days.md)
-[*](global_discussion.md)
-[*](unary.md)
-[*](coc.md)
-[*](arduboy.md)
-[*](world_broadcast.md)
-[*](palette.md)
-[*](communism.md)
-[*](security.md)
-[*](faq.md)
+[*](jesus.md)
+[*](tranny_software.md)
+[*](holy_war.md)
+[*](www.md)
[*](freemasonry.md)
-[*](pokitto.md)
-[*](wiki_rights.md)
-[*](humorwashing.md)
-[*](work.md)
-[*](chaos.md)
-[*](90s.md)
-[*](3d_rendering.md)
-[*](gemini.md)
-[*](interaction_net.md)
-[*](openai.md)
-[*](fight.md)
-[*](README.md)
-[*](determinism.md)
-[*](portability.md)
-[*](english.md)
-[*](sw.md)
-[*](acronym.md)
-[*](mandelbrot_set.md)
-[*](marxism.md)
-[*](jokes.md)
-[*](game_design.md)
-[*](or.md)
-[*](microsoft.md)
-[*](charity_sex.md)
-[*](creative_commons.md)
-[*](hero_culture.md)
-[*](byte.md)
-[*](c_sharp.md)
-[*](pi.md)
-[*](linear_algebra.md)
-[*](cloudflare.md)
-[*](computer.md)
-[*](shogi.md)
-[*](reddit.md)
-[*](permacomputing.md)
-[*](rock.md)
-[*](phd.md)
+[*](old.md)
+[*](evil.md)
+[*](jedi_engine.md)
+[*](rule110.md)
+[*](usa.md)
[*](demoscene.md)
-[*](compression.md)
-[*](jargon_file.md)
-[*](zero.md)
-[*](trom.md)
-[*](hero_culture.md)
-[*](nc.md)
-[*](trusting_trust.md)
-[*](rapeware.md)
-[*](social_inertia.md)
-[*](mob_software.md)
-[*](security.md)
-[*](unix.md)
-[*](open_source.md)
[*](apple.md)
-[*](shortcut_thinking.md)
-[*](bazaar.md)
-[*](free_speech.md)
-[*](neural_network.md)
-[*](google.md)
-[*](free_hardware.md)
-[*](free_software.md)
-[*](fourier_transform.md)
-[*](less_retarded_society.md)
-[*](watchdog.md)
+[*](anpac.md)
+[*](cope.md)
[*](interpolation.md)
-[*](less_retarded_software.md)
-[*](loquendo.md)
-[*](open_console.md)
-[*](permacomputing.md)
-[*](fascism.md)
-[*](zuckerberg.md)
+[*](assembly.md)
+[*](capitalist_singularity.md)
+[*](goodbye_world.md)
+[*](used.md)
+[*](viznut.md)
+[*](langtons_ant.md)
+[*](gnu.md)
[*](cheating.md)
-[*](lambda_calculus.md)
-[*](mainstream.md)
-[*](iq.md)
-[*](greenwashing.md)
+[*](netstalking.md)
+[*](tom_scott.md)
+[*](css.md)
+[*](gemini.md)
[*](compression.md)
-[*](calculus.md)
-[*](sudoku.md)
-[*](audiophilia.md)
-[*](see_through_clothes.md)
-[*](law.md)
-[*](programming_style.md)
-[*](art.md)
-[*](plan9.md)
-[*](mechanical.md)
-[*](fascist.md)
-[*](rms.md)
-[*](morality.md)
-[*](computer.md)
-[*](public_domain_computer.md)
-[*](cyberbullying.md)
-[*](bloat_monopoly.md)
-[*](programming_language.md)
-[*](yes_they_can.md)
-[*](cpu.md)
-[*](nc.md)
-[*](autostereogram.md)
-[*](de_facto.md)
-[*](encyclopedia.md)
-[*](rights_culture.md)
-[*](atheism.md)
-[*](marketing.md)
-[*](transistor.md)
-[*](boot.md)
-[*](earth.md)
-[*](computational_complexity.md)
-[*](maintenance.md)
-[*](troll.md)
-[*](nord_vpn.md)
-[*](trusting_trust.md)
-[*](programming.md)
-[*](czechia.md)
-[*](lrs.md)
-[*](youtube.md)
-[*](fail_ab.md)
-[*](twos_complement.md)
-[*](popularization.md)
-[*](no_knowledge_proof.md)
-[*](axiom_of_choice.md)
-[*](copyleft.md)
-[*](neural_network.md)
-[*](explicit.md)
-[*](neural_network.md)
-[*](ubi.md)
-[*](rgb332.md)
-[*](and.md)
-[*](pseudominimalism.md)
-[*](primitive_3d.md)
-[*](wikidata.md)
-[*](hack.md)
-[*](art.md)
-[*](normalization.md)
-[*](software.md)
-[*](less_retarded_hardware.md)
-[*](operating_system.md)
-[*](formal_language.md)
-[*](unary.md)
-[*](kiss.md)
-[*](fediverse.md)
-[*](zen.md)
-[*](probability.md)
-[*](steganography.md)
-[*](x86.md)
-[*](pride.md)
-[*](terry_davis.md)
-[*](conum.md)
-[*](technology.md)
-[*](jargon_file.md)
-[*](hash.md)
-[*](everyone_does_it.md)
-[*](fsf.md)
+[*](rock.md)
+[*](4chan.md)
+[*](c.md)
+[*](algorithm.md)
+[*](tree.md)
+[*](intellectual_property.md)
+[*](dependency.md)
[*](unfuck.md)
-[*](harry_potter.md)
-[*](john_carmack.md)
-[*](100r.md)
-[*](function.md)
-[*](humidity.md)
-[*](hero.md)
+[*](infinity.md)
+[*](nc.md)
+[*](byte.md)
+[*](troll.md)
+[*](faggot.md)
+[*](bloat_monopoly.md)
+[*](trom.md)
+[*](wikipedia.md)
+[*](byte.md)
+[*](debugging.md)
+[*](game_engine.md)
+[*](xor.md)
+[*](lmao.md)
+[*](quaternion.md)
+[*](demoscene.md)
+[*](assertiveness.md)
+[*](logic_circuit.md)
+[*](dodleston.md)
+[*](openai.md)
+[*](compiler_bomb.md)
+[*](interpolation.md)
+[*](everyone_does_it.md)
+[*](democracy.md)
+[*](macrofucker.md)
+[*](corporation.md)
+[*](conum.md)
+[*](settled.md)
+[*](bilinear.md)
+[*](determinism.md)
+[*](coc.md)
+[*](future_proof.md)
+[*](nanogenmo.md)
+[*](creative_commons.md)
+[*](cc0.md)
+[*](low_poly.md)
+[*](arduboy.md)
+[*](formal_language.md)
+[*](countercomplex.md)
+[*](foss.md)
+[*](freemasonry.md)
+[*](books.md)
+[*](devuan.md)
+[*](rock.md)
+[*](fear_culture.md)
+[*](living.md)
+[*](cloudflare.md)
+[*](hexadecimal.md)
+[*](shader.md)
+[*](rights_culture.md)
[*](distance.md)
-[*](double_buffering.md)
+[*](bitreich.md)
+[*](smallchesslib.md)
+[*](digital_signature.md)
+[*](tpe.md)
+[*](cancer.md)
+[*](elo.md)
+[*](cloud.md)
+[*](kiss.md)
+[*](wiki_pages.md)
+[*](calculus.md)
+[*](tinyphysicsengine.md)
+[*](proprietary.md)
+[*](dodleston.md)
+[*](teletext.md)
+[*](hacker_culture.md)
+[*](lambda_calculus.md)
+[*](egg_code.md)
+[*](qubit.md)
+[*](minigame.md)
+[*](demoscene.md)
+[*](rgb565.md)
+[*](saf.md)
+[*](openarena.md)
+[*](often_confused.md)
+[*](math.md)
+[*](encyclopedia.md)
+[*](noise.md)
+[*](tranny.md)
+[*](p_vs_np.md)
+[*](xor.md)
+[*](primitive_3d.md)
+[*](free.md)
+[*](90s.md)
+[*](licar.md)
+[*](combinatorics.md)
+[*](hard_to_learn_easy_to_master.md)
+[*](how_to.md)
+[*](capitalist_singularity.md)
+[*](communism.md)
+[*](minimalism.md)
+[*](normalization.md)
+[*](dramatica.md)
+[*](lrs.md)
+[*](io.md)
+[*](physics.md)
+[*](viznut.md)
+[*](name_is_important.md)
+[*](steganography.md)
+[*](hash.md)
+[*](exercises.md)
+[*](ronja.md)
+[*](security.md)
+[*](float.md)
+[*](firmware.md)
+[*](hash.md)
+[*](newspeak.md)
+[*](myths.md)
+[*](formal_language.md)
[*](unix_philosophy.md)
-[*](quine.md)
-[*](mipmap.md)
+[*](google.md)
+[*](less_retarded_software.md)
+[*](magic.md)
+[*](wikidata.md)
+[*](wiki_authors.md)
+[*](free_culture.md)
+[*](palette.md)
+[*](derivative.md)
+[*](docker.md)
+[*](deep_blue.md)
+[*](shortcut_thinking.md)
+[*](comment.md)
+[*](license.md)
+[*](tranny_software.md)
+[*](tas.md)
+[*](atan.md)
+[*](mechanical.md)
+[*](ascii.md)
+[*](capitalism.md)
+[*](free_software.md)
+[*](wiki_pages.md)
+[*](io.md)
+[*](earth.md)
+[*](lrs_wiki.md)
+[*](fsf.md)
+[*](idiot_fallacy.md)
+[*](trump.md)
+[*](lotr.md)
+[*](conum.md)
+[*](interesting.md)
+[*](cyberbullying.md)
+[*](tattoo.md)
+[*](infinity.md)
+[*](tensor_product.md)
+[*](nonogram.md)
+[*](temple_os.md)
+[*](fear_culture.md)
+[*](collapse.md)
+[*](explicit.md)
+[*](cloudflare.md)
+[*](gopher.md)
+[*](uxn.md)
+[*](data_hoarding.md)
+[*](tree.md)
+[*](mental_outlaw.md)
+[*](color.md)
+[*](great_trap.md)
+[*](p_vs_np.md)
+[*](terry_davis.md)
+[*](race.md)
[*](freedom_distance.md)
-[*](reactionary_software.md)
+[*](wiki_style.md)
+[*](fight_culture.md)
+[*](thrembo.md)
+[*](left_right.md)
+[*](infinity.md)
+[*](floss.md)
+[*](left.md)
+[*](censorship.md)
+[*](os.md)
+[*](kek.md)
+[*](anal_bead.md)
+[*](libre.md)
+[*](fourier_transform.md)
+[*](microtransaction.md)
+[*](rms.md)
+[*](go.md)
+[*](ashley_jones.md)
+[*](dungeons_and_dragons.md)
+[*](hitler.md)
+[*](less_retarded_society.md)
+[*](graphics.md)
+[*](julia_set.md)
+[*](main.md)
+[*](diogenes.md)
+[*](reddit.md)
+[*](xd.md)
+[*](lrs_dictionary.md)
+[*](interaction_net.md)
+[*](asexuality.md)
+[*](forth.md)
+[*](piracy.md)
+[*](raycastlib.md)
+[*](communism.md)
+[*](competition.md)
+[*](brain_software.md)
+[*](art.md)
+[*](entrepreneur.md)
+[*](optimism.md)
+[*](usa.md)
+[*](one.md)
+[*](linux.md)
+[*](censorship.md)
+[*](rgb565.md)
+[*](wiki_post_mortem.md)
+[*](everyone_does_it.md)
+[*](function.md)
+[*](lmao.md)
+[*](friend_detox.md)
+[*](kiwifarms.md)
+[*](hero.md)
+[*](teletext.md)
+[*](mud.md)
+[*](trusting_trust.md)
+[*](paradigm.md)
+[*](sjw.md)
+[*](libre.md)
+[*](communism.md)
+[*](combinatorics.md)
+[*](capitalist_software.md)
+[*](turing_machine.md)
+[*](kwangmyong.md)
+[*](coc.md)
+[*](smart.md)
+[*](apple.md)
+[*](friend_detox.md)
+[*](rights_culture.md)
+[*](kids_these_days.md)
+[*](operating_system.md)
+[*](4chan.md)
+[*](trusting_trust.md)
+[*](leading_the_pig_to_the_slaughterhouse.md)
+[*](holy_war.md)
+[*](open_console.md)
+[*](rule110.md)
+[*](lil.md)
+[*](hyperoperation.md)
+[*](game_design.md)
+[*](anarch.md)
+[*](antivirus_paradox.md)
+[*](niggercoin.md)
+[*](mouse.md)
+[*](sanism.md)
+[*](bootstrap.md)
+[*](attribution.md)
+[*](semiconductor.md)
+[*](chasm_the_rift.md)
+[*](software.md)
+[*](cracking.md)
+[*](crime_against_economy.md)
+[*](mental_outlaw.md)
+[*](phd.md)
+[*](100r.md)
+[*](or.md)
+[*](mental_outlaw.md)
+[*](gui.md)
+[*](90s.md)
+[*](shitpress.md)
+[*](beauty.md)
+[*](motivation.md)
+[*](fizzbuzz.md)
+[*](troll.md)
+[*](unicode.md)
+[*](great_trap.md)
+[*](logic_circuit.md)
+[*](terry_davis.md)
+[*](finished.md)
+[*](hack.md)
+[*](kiss.md)
+[*](free.md)
+[*](venus_project.md)
+[*](football.md)
+[*](wiki_tldr.md)
+[*](python.md)
+[*](body_shaming.md)
+[*](easy_to_learn_hard_to_master.md)
+[*](semiconductor.md)
+[*](dick_reveal.md)
+[*](linux.md)
+[*](t3x.md)
+[*](zoomer.md)
+[*](boat.md)
+[*](esolang.md)
+[*](copyleft.md)
+[*](software.md)
+[*](microtransaction.md)
+[*](probability.md)
+[*](less_retarded_society.md)
+[*](unix_philosophy.md)
+[*](tpe.md)
+[*](markov_chain.md)
+[*](trump.md)
+[*](education.md)
+[*](shortcut_thinking.md)
+[*](unix.md)
+[*](name_is_important.md)
+[*](feminism.md)
+[*](beauty.md)
+[*](settled.md)
+[*](fuck.md)
+[*](logic.md)
+[*](proprietary_software.md)
+[*](21st_century.md)
+[*](marketing.md)
+[*](wavelet_transform.md)
+[*](bootstrap.md)
+[*](html.md)
+[*](fascism.md)
+[*](hero_culture.md)
+[*](game.md)
+[*](tangram.md)
+[*](soydev.md)
+[*](nigeria.md)
+[*](marxism.md)
+[*](100r.md)
+[*](downto.md)
+[*](floss.md)
+[*](gnu.md)
+[*](discalimer.md)
+[*](monad.md)
+[*](anal_bead.md)
+[*](consumerism.md)
+[*](soydev.md)
+[*](law.md)
+[*](3d_modeling.md)
+[*](distance.md)
+[*](go.md)
+[*](hack.md)
+[*](productivity_cult.md)
+[*](sw_rendering.md)
+[*](anticompany.md)
+[*](phd.md)
+[*](watchdog.md)
+[*](crow_funding.md)
+[*](hash.md)
+[*](dependency.md)
+[*](jokes.md)
[*](fascist.md)
+[*](less_retarded_hardware.md)
+[*](antivirus_paradox.md)
+[*](pseudorandomness.md)
+[*](jokes.md)
+[*](hard_to_learn_easy_to_master.md)
+[*](systemd.md)
+[*](justice.md)
+[*](docker.md)
+[*](earth.md)
+[*](combinatorics.md)
+[*](pedophilia.md)
+[*](anorexia.md)
+[*](kids_these_days.md)
+[*](operating_system.md)
+[*](maintenance.md)
+[*](gender_studies.md)
+[*](capitalism.md)
+[*](living.md)
+[*](bs.md)
+[*](www.md)
+[*](culture.md)
+[*](raycasting.md)
+[*](lotr.md)
+[*](evil.md)
+[*](copyfree.md)
+[*](nd.md)
+[*](hw.md)
+[*](ssao.md)
+[*](zen.md)
+[*](digital.md)
+[*](fractal.md)
+[*](low_poly.md)
+[*](de_facto.md)
+[*](capitalist_singularity.md)
+[*](everyone_does_it.md)
+[*](fork.md)
+[*](microtheft.md)
+[*](history.md)
+[*](arduboy.md)
+[*](arch.md)
+[*](freedom.md)
+[*](john_carmack.md)
+[*](coding.md)
+[*](wikidata.md)
+[*](egoism.md)
+[*](xd.md)
+[*](logic_gate.md)
+[*](football.md)
+[*](bs.md)
+[*](nonogram.md)
+[*](free_culture.md)
+[*](anarchism.md)
+[*](turing_machine.md)
+[*](modern_software.md)
+[*](microtheft.md)
+[*](monad.md)
+[*](sigbovik.md)
+[*](brain_software.md)
+[*](malware.md)
+[*](lgbt.md)
+[*](racism.md)
+[*](egg_code.md)
+[*](modern.md)
+[*](good_enough.md)
+[*](freedom.md)
+[*](minesweeper.md)
[*](entrepreneur.md)
[*](licar.md)
-[*](ted_kaczynski.md)
-[*](unicode.md)
-[*](3d_modeling.md)
-[*](magic.md)
-[*](dramatica.md)
-[*](hitler.md)
-[*](sigbovik.md)
-[*](uxn.md)
-[*](combinatorics.md)
-[*](hacking.md)
-[*](jargon_file.md)
-[*](assembly.md)
-[*](asexuality.md)
-[*](mud.md)
-[*](qubit.md)
-[*](lgbt.md)
-[*](shit.md)
-[*](hero.md)
-[*](twos_complement.md)
-[*](sjw.md)
-[*](liberalism.md)
-[*](newspeak.md)
-[*](splinternet.md)
-[*](turing_machine.md)
-[*](homelessness.md)
-[*](resnicks_termite.md)
-[*](downto.md)
-[*](cope.md)
-[*](freemasonry.md)
-[*](exercises.md)
-[*](js.md)
-[*](bullshit.md)
-[*](great_trap.md)
-[*](pi.md)
-[*](teletext.md)
-[*](primitive_3d.md)
-[*](app.md)
-[*](cloudflare.md)
-[*](throwaway_script.md)
+[*](de_facto.md)
+[*](minimalism.md)
+[*](coding.md)
+[*](trump.md)
+[*](debugging.md)
+[*](fork.md)
+[*](free_will.md)
+[*](steganography.md)
[*](implicit.md)
-[*](egoism.md)
-[*](os.md)
-[*](technology.md)
-[*](bill_gates.md)
-[*](game_engine.md)
-[*](english.md)
-[*](pedophilia.md)
-[*](marble_race.md)
-[*](life.md)
-[*](f2p.md)
-[*](ashley_jones.md)
-[*](nokia.md)
-[*](bill_gates.md)
-[*](fsf.md)
-[*](john_carmack.md)
-[*](universe.md)
-[*](wirtual.md)
-[*](tom_scott.md)
-[*](slowly_boiling_the_frog.md)
-[*](free_speech.md)
-[*](raycastlib.md)
-[*](mainstream.md)
-[*](fantasy_console.md)
-[*](normalization.md)
-[*](free_universe.md)
-[*](elon_musk.md)
-[*](political_correctness.md)
-[*](terry_davis.md)
-[*](lrs.md)
-[*](tom_scott.md)
-[*](cache.md)
-[*](discalimer.md)
-[*](linux.md)
-[*](digital_signature.md)
-[*](prime.md)
-[*](analytic_geometry.md)
+[*](graphics.md)
+[*](programming_style.md)
+[*](hard_to_learn_easy_to_master.md)
+[*](vector.md)
+[*](pseudoleft.md)
+[*](githopping.md)
+[*](idiot_fallacy.md)
+[*](race.md)
+[*](people.md)
+[*](girl.md)
+[*](furry.md)
+[*](hw.md)
+[*](sigbovik.md)
+[*](entropy.md)
+[*](human_language.md)
+[*](throwaway_script.md)
+[*](sigbovik.md)
+[*](build_engine.md)
[*](one.md)
-[*](devuan.md)
+[*](fqa.md)
+[*](marxism.md)
+[*](js.md)
+[*](whale.md)
+[*](macrofucker.md)
+[*](hacking.md)
+[*](antialiasing.md)
+[*](optimism.md)
+[*](ubi.md)
+[*](proprietary_software.md)
+[*](twos_complement.md)
+[*](trash_magic.md)
+[*](tas.md)
+[*](macrofucker.md)
+[*](whale.md)
+[*](c_pitfalls.md)
+[*](ted_kaczynski.md)
+[*](smallchesslib.md)
+[*](de_facto.md)
+[*](splinternet.md)
+[*](smart.md)
+[*](quaternion.md)
+[*](wikipedia.md)
+[*](programming_tips.md)
+[*](bytebeat.md)
+[*](npc.md)
+[*](primitive_3d.md)
+[*](neural_network.md)
[*](lisp.md)
-[*](systemd.md)
-[*](doom.md)
[*](chinese.md)
+[*](compiler_bomb.md)
+[*](line.md)
+[*](reddit.md)
+[*](computer.md)
+[*](rule110.md)
+[*](fixed_point.md)
+[*](cracker.md)
+[*](ashley_jones.md)
+[*](anticompany.md)
+[*](hitler.md)
+[*](binary.md)
+[*](anpac.md)
+[*](anarchism.md)
+[*](wiki_style.md)
+[*](proof.md)
+[*](saf.md)
[*](sin.md)
+[*](build_engine.md)
+[*](pokitto.md)
+[*](internet.md)
+[*](ted_kaczynski.md)
+[*](quake.md)
+[*](right.md)
+[*](determinism.md)
+[*](twos_complement.md)
+[*](html.md)
+[*](ai.md)
+[*](dinosaur.md)
+[*](programming_style.md)
+[*](fizzbuzz.md)
+[*](procgen.md)
+[*](body_shaming.md)
+[*](distance.md)
+[*](wow.md)
+[*](speech_synthesis.md)
+[*](shit.md)
+[*](recursion.md)
+[*](physics.md)
+[*](sw_rendering.md)
+[*](wikiwikiweb.md)
+[*](deferred_shading.md)
+[*](build_engine.md)
+[*](approximation.md)
+[*](books.md)
+[*](xor.md)
+[*](left.md)
+[*](transsexual.md)
+[*](jokes.md)
+[*](billboard.md)
+[*](ai.md)
+[*](tool_slave.md)
+[*](island.md)
+[*](progress.md)
+[*](audiophilia.md)
+[*](antivirus_paradox.md)
+[*](data_hoarding.md)
+[*](update_culture.md)
+[*](windows.md)
+[*](normalization.md)
[*](copyfree.md)
[*](selflessness.md)
-[*](murderer.md)
-[*](entropy.md)
-[*](anarch.md)
-[*](arch.md)
-[*](free_body.md)
-[*](f2p.md)
-[*](ssao.md)
-[*](firmware.md)
-[*](competition.md)
-[*](free_will.md)
-[*](operating_system.md)
-[*](bit.md)
-[*](zoomer.md)
-[*](libre.md)
-[*](combinatorics.md)
-[*](bytecode.md)
-[*](openai.md)
-[*](randomness.md)
-[*](robot.md)
-[*](collapse.md)
-[*](tattoo.md)
-[*](cracker.md)
-[*](great_trap.md)
-[*](humidity.md)
-[*](faggot.md)
-[*](humorwashing.md)
-[*](float.md)
-[*](css.md)
-[*](right.md)
-[*](malware.md)
-[*](gopher.md)
-[*](html.md)
-[*](implicit.md)
-[*](paywall.md)
-[*](tree.md)
-[*](digital.md)
-[*](monad.md)
-[*](hardware.md)
-[*](cat_v.md)
-[*](comun.md)
-[*](trump.md)
-[*](3d_modeling.md)
-[*](wiki_style.md)
-[*](cos.md)
-[*](information.md)
-[*](kwangmyong.md)
-[*](aaron_swartz.md)
-[*](comun.md)
-[*](ui.md)
-[*](discalimer.md)
-[*](elo.md)
-[*](money.md)
-[*](plusnigger.md)
-[*](programming.md)
-[*](emoticon.md)
-[*](float.md)
-[*](game_engine.md)
-[*](chess.md)
-[*](monad.md)
-[*](copyright.md)
-[*](jokes.md)
-[*](sin.md)
-[*](youtube.md)
-[*](cracking.md)
-[*](collision.md)
-[*](bloat.md)
-[*](nokia.md)
-[*](zero.md)
-[*](sub_rosa.md)
-[*](p_vs_np.md)
-[*](trolling.md)
-[*](smol_internet.md)
-[*](free_will.md)
-[*](interaction_net.md)
-[*](autostereogram.md)
-[*](tattoo.md)
-[*](fourier_transform.md)
-[*](modern.md)
-[*](yes_they_can.md)
-[*](mipmap.md)
-[*](copyright.md)
-[*](shader.md)
-[*](shitword.md)
-[*](tree.md)
-[*](langtons_ant.md)
-[*](intellectual_property.md)
-[*](goodbye_world.md)
-[*](marxism.md)
-[*](often_confused.md)
-[*](homelessness.md)
-[*](nonogram.md)
-[*](racetrack.md)
-[*](microsoft.md)
-[*](cc.md)
-[*](rgb565.md)
-[*](html.md)
-[*](wiki_rights.md)
-[*](internet.md)
-[*](people.md)
-[*](geek.md)
-[*](fediverse.md)
-[*](combinatorics.md)
-[*](update_culture.md)
-[*](modern.md)
-[*](wizard.md)
-[*](modern_software.md)
-[*](backgammon.md)
-[*](dick_reveal.md)
-[*](fight_culture.md)
-[*](optimism.md)
-[*](gender_studies.md)
-[*](antialiasing.md)
-[*](suckless.md)
-[*](antialiasing.md)
-[*](collision_detection.md)
-[*](football.md)
-[*](cache.md)
-[*](rapeware.md)
-[*](f2p.md)
-[*](formal_language.md)
-[*](network.md)
-[*](real_number.md)
-[*](lotr.md)
-[*](avpd.md)
-[*](uxn.md)
-[*](cc.md)
-[*](ssao.md)
-[*](quake.md)
-[*](x86.md)
-[*](facebook.md)
-[*](how_to.md)
-[*](sdf.md)
-[*](less_retarded_society.md)
-[*](chinese.md)
-[*](human_language.md)
-[*](doom.md)
-[*](great_trap.md)
-[*](watchdog.md)
-[*](integral.md)
-[*](used.md)
-[*](racism.md)
-[*](xxiivv.md)
-[*](digital.md)
-[*](java.md)
-[*](niggercoin.md)
-[*](just_werks.md)
-[*](jedi_engine.md)
-[*](suicide.md)
-[*](macrofucker.md)
-[*](compression.md)
-[*](approximation.md)
-[*](interesting.md)
-[*](minimalism.md)
-[*](wirtual.md)
-[*](stereotype.md)
-[*](body_shaming.md)
-[*](number.md)
-[*](fizzbuzz.md)
-[*](p_vs_np.md)
-[*](gui.md)
-[*](floss.md)
-[*](interesting.md)
-[*](number.md)
-[*](flatland.md)
-[*](iq.md)
-[*](procgen.md)
-[*](crime_against_economy.md)
-[*](real_number.md)
-[*](marble_race.md)
-[*](modern.md)
-[*](work.md)
-[*](collision_detection.md)
-[*](ui.md)
-[*](axiom_of_choice.md)
-[*](english.md)
-[*](21st_century.md)
-[*](project.md)
-[*](wikidata.md)
-[*](niggercoin.md)
-[*](toxic.md)
-[*](reddit.md)
-[*](science.md)
-[*](zen.md)
-[*](bit.md)
-[*](npc.md)
-[*](bilinear.md)
-[*](calculus.md)
-[*](brain_software.md)
-[*](fork.md)
-[*](hexadecimal.md)
-[*](digital_signature.md)
-[*](dodleston.md)
-[*](main.md)
-[*](c.md)
-[*](progress.md)
-[*](hack.md)
-[*](ancap.md)
-[*](3d_model.md)
-[*](public_domain.md)
-[*](physics.md)
-[*](ascii.md)
-[*](progress.md)
-[*](dramatica.md)
-[*](greenwashing.md)
-[*](compsci.md)
-[*](collapse.md)
-[*](abstraction.md)
-[*](paradigm.md)
-[*](90s.md)
-[*](small3dlib.md)
-[*](anticompany.md)
-[*](malware.md)
-[*](vector.md)
-[*](facebook.md)
-[*](czechia.md)
-[*](easy_to_learn_hard_to_master.md)
-[*](furry.md)
+[*](technology.md)
[*](music.md)
-[*](wikiwikiweb.md)
-[*](bytecode.md)
-[*](c_pitfalls.md)
-[*](how_to.md)
-[*](sigbovik.md)
-[*](crime_against_economy.md)
-[*](motivation.md)
-[*](infinity.md)
-[*](vector.md)
-[*](gaywashing.md)
-[*](hw.md)
-[*](jesus.md)
-[*](shogi.md)
-[*](venus_project.md)
-[*](or.md)
-[*](thrembo.md)
-[*](easy_to_learn_hard_to_master.md)
-[*](t3x.md)
-[*](stereotype.md)
-[*](pseudominimalism.md)
-[*](transsexual.md)
-[*](cos.md)
-[*](tech.md)
-[*](capitalism.md)
-[*](duke3d.md)
-[*](analog.md)
+[*](rgb332.md)
+[*](cyber.md)
+[*](wavelet_transform.md)
+[*](html.md)
+[*](algorithm.md)
+[*](update_culture.md)
+[*](optimization.md)
+[*](quake.md)
[*](freedom_distance.md)
-[*](steve_jobs.md)
-[*](easier_done_than_said.md)
-[*](raycasting.md)
-[*](productivity_cult.md)
-[*](productivity_cult.md)
-[*](rock.md)
+[*](girl.md)
+[*](znk.md)
+[*](mechanical.md)
+[*](nigger.md)
[*](chaos.md)
+[*](digital.md)
+[*](physics.md)
+[*](fixed_point.md)
+[*](zero.md)
+[*](slowly_boiling_the_frog.md)
+[*](resnicks_termite.md)
+[*](global_discussion.md)
+[*](gaywashing.md)
+[*](explicit.md)
+[*](acronym.md)
+[*](greenwashing.md)
+[*](unary.md)
+[*](dinosaur.md)
+[*](e.md)
+[*](cos.md)
+[*](less_retarded_hardware.md)
+[*](used.md)
+[*](pseudo3d.md)
+[*](comment.md)
+[*](woman.md)
+[*](oop.md)
+[*](project.md)
+[*](golang.md)
+[*](public_domain_computer.md)
+[*](acronym.md)
+[*](implicit.md)
+[*](rights_culture.md)
+[*](t3x.md)
+[*](copyleft.md)
+[*](version_numbering.md)
+[*](nigeria.md)
+[*](windows.md)
+[*](easier_done_than_said.md)
+[*](digital_signature.md)
+[*](progress.md)
+[*](law.md)
+[*](evil.md)
+[*](randomness.md)
+[*](lil.md)
+[*](systemd.md)
+[*](brainfuck.md)
+[*](global_discussion.md)
+[*](fediverse.md)
+[*](shitword.md)
+[*](intellectual_property.md)
+[*](unfuck.md)
+[*](fantasy_console.md)
+[*](fascism.md)
+[*](float.md)
+[*](ubi.md)
+[*](cc.md)
+[*](tangram.md)
+[*](egg_code.md)
+[*](bloat_monopoly.md)
+[*](piracy.md)
+[*](friend_detox.md)
+[*](shogi.md)
+[*](fourier_transform.md)
+[*](egoism.md)
+[*](encyclopedia.md)
+[*](good_enough.md)
+[*](plan9.md)
+[*](boat.md)
+[*](double_buffering.md)
+[*](gopher.md)
+[*](apple.md)
+[*](bullshit.md)
+[*](jesus.md)
+[*](kiss.md)
+[*](anarch.md)
+[*](sub_rosa.md)
+[*](byte.md)
+[*](fail_ab.md)
+[*](security.md)
+[*](fediverse.md)
+[*](attribution.md)
+[*](living.md)
+[*](world_broadcast.md)
+[*](regex.md)
+[*](lambda_calculus.md)
+[*](wiby.md)
+[*](fascist.md)
+[*](dramatica.md)
+[*](neural_network.md)
+[*](sorting.md)
+[*](free_hardware.md)
+[*](mainstream.md)
+[*](hero.md)
+[*](comun.md)
+[*](cracker.md)
+[*](fuck.md)
+[*](rms.md)
+[*](luke_smith.md)
+[*](bootstrap.md)
+[*](pd.md)
+[*](fqa.md)
+[*](sanism.md)
+[*](fantasy_console.md)
+[*](bazaar.md)
+[*](cloud.md)
+[*](one.md)
+[*](rationalwiki.md)
+[*](nokia.md)
+[*](soyence.md)
+[*](resnicks_termite.md)
+[*](name_is_important.md)
+[*](21st_century.md)
+[*](usa.md)
+[*](diogenes.md)
+[*](turing_machine.md)
+[*](encryption.md)
+[*](function.md)
+[*](tor.md)
+[*](bbs.md)
+[*](fantasy_console.md)
+[*](moderation.md)
+[*](cyberbullying.md)
+[*](devuan.md)
+[*](fizzbuzz.md)
+[*](fuck.md)
+[*](drummyfish.md)
+[*](fight_culture.md)
+[*](mechanical.md)
+[*](myths.md)
+[*](number.md)
+[*](freedom_distance.md)
+[*](game_design.md)
+[*](loquendo.md)
+[*](sdf.md)
+[*](xd.md)
+[*](unretard.md)
+[*](wiki_stats.md)
+[*](trolling.md)
+[*](small3dlib.md)
[*](microsoft.md)
+[*](calculus.md)
+[*](interaction_net.md)
+[*](open_source.md)
+[*](cache.md)
+[*](rgb332.md)
+[*](luke_smith.md)
[*](deferred_shading.md)
+[*](modern.md)
+[*](jargon_file.md)
+[*](homelessness.md)
+[*](zero.md)
+[*](democracy.md)
+[*](programming_tips.md)
+[*](javascript.md)
+[*](entrepreneur.md)
+[*](vim.md)
+[*](npc.md)
+[*](marketing.md)
+[*](viznut.md)
+[*](probability.md)
+[*](pascal.md)
+[*](stereotype.md)
+[*](c_pitfalls.md)
+[*](popularization.md)
[*](openarena.md)
-[*](foss.md)
+[*](sjw.md)
+[*](reactionary_software.md)
+[*](military.md)
+[*](shit.md)
+[*](finished.md)
+[*](os.md)
+[*](duke3d.md)
+[*](42.md)
+[*](justice.md)
+[*](rapeware.md)
+[*](uxn.md)
+[*](logic_gate.md)
+[*](project.md)
+[*](cope.md)
+[*](liberalism.md)
+[*](love.md)
+[*](quantum_gate.md)
+[*](hyperoperation.md)
+[*](netstalking.md)
+[*](temple_os.md)
+[*](programming.md)
+[*](education.md)
+[*](randomness.md)
+[*](tool_slave.md)
+[*](public_domain_computer.md)
+[*](paradigm.md)
+[*](iq.md)
+[*](slowly_boiling_the_frog.md)
+[*](mob_software.md)
+[*](elo.md)
+[*](suicide.md)
+[*](collision.md)
+[*](phd.md)
+[*](fun.md)
+[*](compression.md)
+[*](sw_rendering.md)
+[*](interplanetary_internet.md)
+[*](cloud.md)
+[*](tattoo.md)
+[*](john_carmack.md)
+[*](atheism.md)
+[*](hardware.md)
+[*](greenwashing.md)
+[*](great_trap.md)
+[*](ascii_art.md)
+[*](number.md)
+[*](wiby.md)
+[*](sqrt.md)
+[*](line.md)
+[*](pascal.md)
+[*](duke3d.md)
+[*](mud.md)
+[*](rationalwiki.md)
+[*](easier_done_than_said.md)
+[*](fourier_transform.md)
+[*](physics_engine.md)
+[*](quantum_gate.md)
+[*](fascism.md)
+[*](youtube.md)
+[*](ui.md)
+[*](cc.md)
+[*](tas.md)
+[*](atan.md)
+[*](dodleston.md)
+[*](trom.md)
[*](altruism.md)
+[*](aliasing.md)
+[*](asmr.md)
+[*](binary.md)
+[*](oop.md)
+[*](pedophilia.md)
+[*](free_will.md)
+[*](music.md)
+[*](corporation.md)
+[*](web.md)
+[*](malware.md)
+[*](hacker_culture.md)
+[*](soydev.md)
+[*](pseudo3d.md)
+[*](finished.md)
+[*](freedom.md)
+[*](law.md)
+[*](dramatica.md)
+[*](popularization.md)
+[*](aaron_swartz.md)
+[*](sorting.md)
+[*](gui.md)
+[*](tom_scott.md)
+[*](capitalism.md)
+[*](f2p.md)
+[*](furry.md)
+[*](nationalism.md)
+[*](niger.md)
+[*](nord_vpn.md)
+[*](universe.md)
+[*](downto.md)
+[*](goodbye_world.md)
+[*](racetrack.md)
+[*](cpu.md)
+[*](bs.md)
+[*](computational_complexity.md)
+[*](tom_scott.md)
+[*](troll.md)
+[*](cat_v.md)
+[*](humorwashing.md)
+[*](dungeons_and_dragons.md)
+[*](tinyphysicsengine.md)
+[*](mandelbrot_set.md)
+[*](magic.md)
+[*](girl.md)
+[*](pseudoleft.md)
+[*](memory_management.md)
+[*](cracking.md)
+[*](marxism.md)
+[*](duskos.md)
+[*](derivative.md)
+[*](wow.md)
+[*](loquendo.md)
+[*](wiki_post_mortem.md)
+[*](crypto.md)
+[*](ethics.md)
+[*](systemd.md)
+[*](femoid.md)
+[*](steganography.md)
+[*](shitword.md)
+[*](frameless.md)
+[*](physics_engine.md)
+[*](ioccc.md)
+[*](plusnigger.md)
+[*](fail_ab.md)
+[*](comun.md)
+[*](procgen.md)
+[*](python.md)
+[*](goodbye_world.md)
+[*](xxiivv.md)
+[*](vim.md)
+[*](racism.md)
+[*](lambda_calculus.md)
+[*](langtons_ant.md)
+[*](fsf.md)
+[*](malware.md)
+[*](zen.md)
+[*](x86.md)
+[*](compsci.md)
+[*](crypto.md)
+[*](history.md)
+[*](linear_algebra.md)
+[*](comun.md)
+[*](copyright.md)
+[*](fsf.md)
+[*](motivation.md)
+[*](thrembo.md)
+[*](ioccc.md)
+[*](transistor.md)
+[*](consumerism.md)
+[*](cancer.md)
+[*](nonogram.md)
+[*](golang.md)
+[*](lil.md)
+[*](prime.md)
+[*](bit.md)
+[*](double_buffering.md)
+[*](wiki_tldr.md)
+[*](recursion.md)
+[*](technology.md)
+[*](humorwashing.md)
+[*](semiconductor.md)
+[*](comment.md)
+[*](autoupdate.md)
+[*](femoid.md)
+[*](quine.md)
+[*](countercomplex.md)
+[*](cpp.md)
+[*](tool_slave.md)
+[*](humidity.md)
+[*](exercises.md)
+[*](anarchism.md)
+[*](trusting_trust.md)
+[*](audiophilia.md)
+[*](python.md)
+[*](free_culture.md)
+[*](f2p.md)
+[*](forth.md)
+[*](creative_commons.md)
+[*](bitreich.md)
+[*](patent.md)
+[*](wikidata.md)
+[*](geek.md)
+[*](collision_detection.md)
+[*](moderation.md)
+[*](modern_software.md)
+[*](fascist.md)
+[*](ram.md)
+[*](newspeak.md)
+[*](newspeak.md)
+[*](history.md)
+[*](ui.md)
+[*](science.md)
+[*](cc.md)
+[*](political_correctness.md)
+[*](zuckerberg.md)
+[*](arch.md)
+[*](art.md)
+[*](gopher.md)
+[*](security.md)
+[*](dog.md)
+[*](bytecode.md)
+[*](shader.md)
+[*](pseudominimalism.md)
+[*](needed.md)
+[*](throwaway_script.md)
+[*](sqrt.md)
+[*](backgammon.md)
+[*](triangle.md)
+[*](cc0.md)
+[*](free.md)
+[*](collapse.md)
+[*](xonotic.md)
+[*](suckless.md)
+[*](world_broadcast.md)
+[*](io.md)
+[*](faq.md)
+[*](lisp.md)
+[*](asmr.md)
+[*](bloat.md)
+[*](wizard.md)
+[*](popularization.md)
+[*](low_poly.md)
+[*](smol_internet.md)
+[*](niger.md)
+[*](graveyard.md)
+[*](watchdog.md)
+[*](e.md)
+[*](lmao.md)
+[*](formal_language.md)
+[*](competition.md)
+[*](social_inertia.md)
+[*](trash_magic.md)
+[*](crow_funding.md)
+[*](game.md)
+[*](optimization.md)
+[*](copyleft.md)
+[*](emoticon.md)
+[*](css.md)
+[*](microsoft.md)
+[*](discalimer.md)
+[*](open_source.md)
+[*](dick_reveal.md)
+[*](pride.md)
+[*](cpp.md)
+[*](autoupdate.md)
+[*](computational_complexity.md)
+[*](fractal.md)
+[*](nd.md)
+[*](mob_software.md)
+[*](git.md)
+[*](pokitto.md)
+[*](rsa.md)
+[*](life.md)
+[*](complexity.md)
+[*](suicide.md)
+[*](blender.md)
+[*](free_speech.md)
+[*](hack.md)
+[*](money.md)
+[*](altruism.md)
+[*](future.md)
+[*](framework.md)
+[*](toxic.md)
+[*](resnicks_termite.md)
+[*](crypto.md)
+[*](sw.md)
+[*](music.md)
+[*](myths.md)
+[*](compiler_bomb.md)
+[*](wiki_style.md)
+[*](wiki_authors.md)
+[*](free_software.md)
+[*](assertiveness.md)
+[*](cos.md)
+[*](unretard.md)
+[*](steve_jobs.md)
+[*](libertarianism.md)
+[*](kwangmyong.md)
+[*](arch.md)
+[*](graveyard.md)
+[*](log.md)
+[*](fight.md)
+[*](mipmap.md)
+[*](left_right.md)
+[*](portability.md)
+[*](countercomplex.md)
+[*](robot.md)
+[*](bbs.md)
+[*](loquendo.md)
+[*](modern_software.md)
+[*](raylib.md)
+[*](bloat.md)
+[*](murderer.md)
+[*](reactionary_software.md)
+[*](lgbt.md)
+[*](memory_management.md)
+[*](work.md)
+[*](cloudflare.md)
[*](free_universe.md)
+[*](faq.md)
+[*](c_pitfalls.md)
+[*](interplanetary_internet.md)
+[*](settled.md)
+[*](trom.md)
+[*](drummyfish.md)
+[*](t3x.md)
+[*](ted_kaczynski.md)
+[*](attribution.md)
+[*](information.md)
+[*](nigger.md)
+[*](shogi.md)
+[*](harry_potter.md)
+[*](humorwashing.md)
+[*](digital_signature.md)
+[*](future_proof.md)
+[*](3d_modeling.md)
+[*](f2p.md)
+[*](splinternet.md)
+[*](hero_culture.md)
+[*](duskos.md)
+[*](chaos.md)
+[*](progress.md)
+[*](altruism.md)
+[*](lotr.md)
[*](often_misunderstood.md)
+[*](magic.md)
+[*](free_software.md)
+[*](cache.md)
+[*](42.md)
+[*](fight.md)
+[*](adam_smith.md)
+[*](black.md)
+[*](furry.md)
+[*](portal_rendering.md)
+[*](cos.md)
+[*](julia_set.md)
+[*](README.md)
+[*](kiwifarms.md)
+[*](distrohopping.md)
+[*](color.md)
+[*](steve_jobs.md)
+[*](collision.md)
+[*](wiki_rights.md)
+[*](jargon_file.md)
+[*](qubit.md)
+[*](permacomputing.md)
+[*](english.md)
+[*](xonotic.md)
+[*](copyright.md)
+[*](audiophilia.md)
+[*](culture.md)
+[*](permacomputing_wiki.md)
+[*](unicode.md)
+[*](military.md)
+[*](niger.md)
+[*](moderation.md)
+[*](algorithm.md)
+[*](bill_gates.md)
+[*](suckless.md)
+[*](hexadecimal.md)
+[*](harry_potter.md)
+[*](charity_sex.md)
+[*](regex.md)
+[*](lrs_wiki.md)
+[*](dinosaur.md)
+[*](free_universe.md)
+[*](pseudorandomness.md)
+[*](love.md)
+[*](wizard.md)
+[*](rsa.md)
+[*](public_domain_computer.md)
+[*](znk.md)
+[*](pedophilia.md)
+[*](linear_algebra.md)
+[*](approximation.md)
+[*](quake.md)
+[*](usenet.md)
+[*](just_werks.md)
+[*](homelessness.md)
+[*](free_will.md)
+[*](copyfree.md)
+[*](gigachad.md)
+[*](ram.md)
+[*](aliasing.md)
+[*](hyperoperation.md)
+[*](marble_race.md)
+[*](crime_against_economy.md)
+[*](suicide.md)
+[*](collision_detection.md)
+[*](art.md)
+[*](kiwifarms.md)
+[*](wiki_tldr.md)
+[*](compsci.md)
+[*](nanogenmo.md)
+[*](less_retarded_software.md)
+[*](niggercoin.md)
+[*](free_hardware.md)
+[*](copyright.md)
+[*](wiki_rights.md)
+[*](facebook.md)
+[*](memory_management.md)
+[*](znk.md)
+[*](splinternet.md)
+[*](tech.md)
+[*](right.md)
+[*](disease.md)
+[*](sudoku.md)
+[*](fight_culture.md)
+[*](adam_smith.md)
+[*](githopping.md)
+[*](less_retarded_hardware.md)
+[*](mipmap.md)
+[*](dick_reveal.md)
+[*](cc0.md)
+[*](ai.md)
+[*](linux.md)
+[*](fediverse.md)
+[*](rationalwiki.md)
+[*](nc.md)
+[*](atheism.md)
+[*](terry_davis.md)
+[*](marble_race.md)
+[*](jedi_engine.md)
+[*](npc.md)
+[*](unretard.md)
+[*](abstraction.md)
+[*](avpd.md)
+[*](smol_internet.md)
+[*](deferred_shading.md)
+[*](licar.md)
+[*](tpe.md)
+[*](bit_hack.md)
+[*](triangle.md)
+[*](cancel_culture.md)
+[*](chinese.md)
+[*](logic.md)
+[*](work.md)
+[*](avpd.md)
+[*](rationalization.md)
+[*](earth.md)
+[*](libertarianism.md)
+[*](operating_system.md)
+[*](chaos.md)
+[*](left_right.md)
+[*](love.md)
+[*](hero_culture.md)
+[*](wirtual.md)
+[*](frameless.md)
+[*](ethics.md)
+[*](gender_studies.md)
+[*](faggot.md)
+[*](bytebeat.md)
+[*](markov_chain.md)
+[*](real_number.md)
+[*](democracy.md)
+[*](anarch.md)
+[*](90s.md)
+[*](dog.md)
+[*](ronja.md)
+[*](interesting.md)
+[*](pi.md)
+[*](marketing.md)
+[*](quine.md)
+[*](raylib.md)
+[*](asexuality.md)
+[*](rsa.md)
+[*](nokia.md)
+[*](sjw.md)
+[*](brainfuck.md)
+[*](libre.md)
+[*](gay.md)
+[*](hw.md)
+[*](zen.md)
+[*](noise.md)
+[*](vector.md)
+[*](beauty.md)
+[*](raylib.md)
+[*](computer.md)
+[*](morality.md)
+[*](duskos.md)
+[*](ui.md)
+[*](money.md)
+[*](yes_they_can.md)
+[*](calculus.md)
+[*](openai.md)
+[*](based.md)
+[*](axiom_of_choice.md)
+[*](rgb565.md)
+[*](microtransaction.md)
+[*](future.md)
+[*](disease.md)
+[*](rationalization.md)
+[*](shit.md)
+[*](autostereogram.md)
+[*](portability.md)
+[*](fail_ab.md)
+[*](zero.md)
+[*](randomness.md)
+[*](determinism.md)
+[*](unary.md)
+[*](raycastlib.md)
+[*](chasm_the_rift.md)
+[*](cat_v.md)
+[*](data_structure.md)
+[*](free_speech.md)
+[*](normalization.md)
+[*](ashley_jones.md)
+[*](main.md)
+[*](humidity.md)
+[*](abstraction.md)
+[*](public_domain.md)
+[*](used.md)
+[*](productivity_cult.md)
+[*](tattoo.md)
+[*](library.md)
+[*](wiki_post_mortem.md)
+[*](aaron_swartz.md)
+[*](update_culture.md)
+[*](approximation.md)
+[*](fqa.md)
+[*](hacking.md)
+[*](capitalist_software.md)
+[*](quine.md)
+[*](ascii.md)
+[*](nationalism.md)
+[*](network.md)
+[*](cheating.md)
+[*](gigachad.md)
+[*](cheating.md)
+[*](racetrack.md)
+[*](raycasting.md)
+[*](tranny_software.md)
+[*](minigame.md)
+[*](monad.md)
+[*](boat.md)
+[*](motivation.md)
+[*](leading_the_pig_to_the_slaughterhouse.md)
+[*](fun.md)
+[*](modern.md)
+[*](youtube.md)
+[*](derivative.md)
+[*](logic.md)
+[*](minigame.md)
+[*](game_engine.md)
+[*](dynamic_programming.md)
+[*](and.md)
+[*](smallchesslib.md)
+[*](morality.md)
+[*](transistor.md)
+[*](cpu.md)
+[*](e.md)
+[*](transistor.md)
+[*](right.md)
+[*](pascal.md)
+[*](qubit.md)
+[*](black.md)
+[*](axiom_of_choice.md)
+[*](google.md)
+[*](old.md)
+[*](no_knowledge_proof.md)
+[*](jedi_engine.md)
+[*](esolang.md)
+[*](bullshit.md)
+[*](political_correctness.md)
+[*](optimism.md)
+[*](dependency.md)
+[*](czechia.md)
+[*](README.md)
+[*](drummyfish.md)
+[*](geek.md)
+[*](tangram.md)
+[*](xxiivv.md)
+[*](dungeons_and_dragons.md)
+[*](cat_v.md)
+[*](education.md)
+[*](openai.md)
+[*](mouse.md)
+[*](tech.md)
+[*](needed.md)
+[*](version_numbering.md)
+[*](military.md)
+[*](21st_century.md)
+[*](future.md)
+[*](nd.md)
+[*](often_misunderstood.md)
+[*](see_through_clothes.md)
+[*](lrs_wiki.md)
+[*](wiki_authors.md)
+[*](firmware.md)
+[*](ethics.md)
+[*](facebook.md)
+[*](selflessness.md)
+[*](rapeware.md)
+[*](saf.md)
+[*](portability.md)
+[*](fixed_point.md)
+[*](arduboy.md)
+[*](small3dlib.md)
+[*](easier_done_than_said.md)
+[*](free_speech.md)
+[*](sdf.md)
+[*](bullshit.md)
+[*](privacy.md)
+[*](collision.md)
+[*](bit_hack.md)
+[*](gnu.md)
+[*](smart.md)
+[*](patent.md)
+[*](rust.md)
+[*](corporation.md)
+[*](just_werks.md)
+[*](technology.md)
+[*](race.md)
+[*](regex.md)
+[*](3d_rendering.md)
+[*](homelessness.md)
+[*](people.md)
+[*](proof.md)
+[*](rationalization.md)
+[*](consumerism.md)
+[*](gender_studies.md)
+[*](integral.md)
+[*](bazaar.md)
+[*](boot.md)
+[*](hitler.md)
+[*](sub_rosa.md)
+[*](cracking.md)
+[*](permacomputing_wiki.md)
+[*](game.md)
+[*](harry_potter.md)
+[*](c_sharp.md)
+[*](sin.md)
+[*](license.md)
+[*](based.md)
+[*](library.md)
+[*](log.md)
+[*](wizard.md)
+[*](and.md)
+[*](discalimer.md)
+[*](and.md)
+[*](plusnigger.md)
+[*](wolf3d.md)
+[*](murderer.md)
+[*](software.md)
+[*](version_numbering.md)
+[*](java.md)
+[*](avpd.md)
+[*](function.md)
+[*](sw.md)
+[*](palette.md)
+[*](logic_circuit.md)
+[*](color.md)
+[*](intellectual_property.md)
+[*](open_source.md)
+[*](easy_to_learn_hard_to_master.md)
+[*](kek.md)
+[*](game_of_life.md)
+[*](githopping.md)
+[*](island.md)
+[*](piracy.md)
+[*](c_sharp.md)
+[*](distrohopping.md)
+[*](mandelbrot_set.md)
+[*](ssao.md)
+[*](app.md)
+[*](smol_internet.md)
+[*](complexity.md)
+[*](number.md)
+[*](lgbt.md)
+[*](chasm_the_rift.md)
+[*](p_vs_np.md)
+[*](go.md)
+[*](fun.md)
+[*](README.md)
+[*](emoticon.md)
+[*](reactionary_software.md)
+[*](asmr.md)
+[*](privacy.md)
+[*](money.md)
+[*](permacomputing.md)
+[*](tree.md)
+[*](human_language.md)
+[*](lrs_dictionary.md)
+[*](loc.md)
+[*](permacomputing_wiki.md)
+[*](unicode.md)
+[*](open_console.md)
+[*](wirtual.md)
+[*](web.md)
+[*](science.md)
+[*](bloat.md)
+[*](soyence.md)
+[*](loc.md)
+[*](palette.md)
+[*](social_inertia.md)
+[*](human_language.md)
+[*](hexadecimal.md)
+[*](humidity.md)
+[*](wiki_stats.md)
+[*](deep_blue.md)
+[*](stereotype.md)
+[*](framework.md)
+[*](good_enough.md)
+[*](game_of_life.md)
+[*](youtube.md)
+[*](microtheft.md)
+[*](transsexual.md)
+[*](gemini.md)
+[*](mouse.md)
+[*](trolling.md)
+[*](atan.md)
+[*](no_knowledge_proof.md)
+[*](twos_complement.md)
+[*](wolf3d.md)
+[*](mipmap.md)
+[*](shortcut_thinking.md)
+[*](universe.md)
+[*](wiby.md)
+[*](life.md)
+[*](niggercoin.md)
+[*](prime.md)
+[*](throwaway_script.md)
+[*](cpu.md)
+[*](esolang.md)
+[*](crime_against_economy.md)
+[*](explicit.md)
+[*](venus_project.md)
+[*](public_domain.md)
+[*](data_structure.md)
+[*](firmware.md)
+[*](neural_network.md)
+[*](faq.md)
+[*](free_universe.md)
+[*](stereotype.md)
+[*](public_domain.md)
+[*](selflessness.md)
+[*](fractal.md)
+[*](rms.md)
+[*](emoticon.md)
+[*](doom.md)
+[*](c.md)
+[*](dynamic_programming.md)
+[*](programming_style.md)
+[*](books.md)
+[*](frameless.md)
+[*](murderer.md)
+[*](unfuck.md)
+[*](bilinear.md)
+[*](prime.md)
+[*](javascript.md)
+[*](mainstream.md)
+[*](pseudominimalism.md)
+[*](cancer.md)
+[*](less_retarded_society.md)
+[*](rgb332.md)
+[*](backpropagation.md)
+[*](soyence.md)
+[*](pd.md)
+[*](hero.md)
+[*](chess.md)
+[*](c_sharp.md)
+[*](easy_to_learn_hard_to_master.md)
+[*](3d_modeling.md)
+[*](sw.md)
+[*](lrs.md)
+[*](lrs_dictionary.md)
+[*](brainfuck.md)
+[*](english.md)
+[*](downto.md)
+[*](wiki_pages.md)
+[*](trolling.md)
+[*](usenet.md)
+[*](floss.md)
+[*](crow_funding.md)
+[*](bill_gates.md)
+[*](analytic_geometry.md)
+[*](information.md)
+[*](x86.md)
+[*](gui.md)
+[*](fear_culture.md)
+[*](elon_musk.md)
+[*](steve_jobs.md)
+[*](autostereogram.md)
+[*](interaction_net.md)
+[*](plan9.md)
+[*](interesting.md)
+[*](programming_language.md)
+[*](network.md)
+[*](freemasonry.md)
+[*](primitive_3d.md)
+[*](information.md)
+[*](pseudoleft.md)
+[*](morality.md)
+[*](compsci.md)
+[*](paywall.md)
+[*](usenet.md)
+[*](logic_gate.md)
+[*](assembly.md)
+[*](paywall.md)
+[*](toxic.md)
+[*](tensor_product.md)
+[*](raycastlib.md)
+[*](entropy.md)
+[*](tranny.md)
+[*](mud.md)
+[*](analog.md)
+[*](analytic_geometry.md)
+[*](flatland.md)
+[*](ronja.md)
+[*](www.md)
+[*](future_proof.md)
+[*](iq.md)
+[*](programming_language.md)
+[*](vector.md)
+[*](boot.md)
+[*](czechia.md)
+[*](quantum_gate.md)
+[*](doom.md)
+[*](anorexia.md)
+[*](math.md)
+[*](library.md)
+[*](maintenance.md)
+[*](pseudominimalism.md)
+[*](facebook.md)
+[*](island.md)
+[*](sin.md)
+[*](ancap.md)
+[*](how_to.md)
+[*](english.md)
+[*](analytic_geometry.md)
+[*](real_number.md)
+[*](forth.md)
+[*](main.md)
+[*](robot.md)
+[*](exercises.md)
+[*](tinyphysicsengine.md)
+[*](chess.md)
+[*](bilinear.md)
+[*](assembly.md)
+[*](demo.md)
+[*](gay.md)
+[*](windows.md)
+[*](liberalism.md)
+[*](foss.md)
+[*](cyberbullying.md)
+[*](conum.md)
+[*](unary.md)
+[*](nationalism.md)
+[*](proof.md)
+[*](js.md)
+[*](bazaar.md)
+[*](collapse.md)
+[*](yes_they_can.md)
+[*](temple_os.md)
+[*](3d_model.md)
+[*](double_buffering.md)
+[*](racetrack.md)
+[*](computer.md)
+[*](speech_synthesis.md)
+[*](kwangmyong.md)
+[*](project.md)
+[*](paradigm.md)
+[*](nigeria.md)
+[*](anorexia.md)
+[*](xxiivv.md)
+[*](pseudorandomness.md)
+[*](transsexual.md)
+[*](bytecode.md)
diff --git a/reddit.md b/reddit.md
index 1489aa1..4b9ea4c 100644
--- a/reddit.md
+++ b/reddit.md
@@ -28,4 +28,9 @@ Typical reddit thread after [SJW](sjw.md) takeover looks like this:
- this changed my life
- As a highly trained professional and expert in the field I couldn't agree more!
- [removed] +123
- - Actually, latest studies have shown this is rather a cultural phenomenon.
\ No newline at end of file
+ - Actually, latest studies have shown this is rather a cultural phenomenon.
+
+## See Also
+
+- [9gag](9gag.md)
+- [4chan](4chan.md)
\ No newline at end of file
diff --git a/soyence.md b/soyence.md
index d2d1a4d..e1ac7cf 100644
--- a/soyence.md
+++ b/soyence.md
@@ -95,6 +95,7 @@ Here are a few tips on how to spot soyence:
- Is money involved? Is any form of [capital](capital.md) (money, attention, power, ...) in play? Is there any form of business connected? If so, it is business, not science.
- Is politics involved? Will the results help some currently active political group? It's highly suspicious, it almost definitely can't be trusted, it's most likely not science.
- Is the mainstream spending resources on promoting it? It's soyence almost with 100% certainty.
+- Weather forecasts? They literally don't work.
- ...
The cult of soyence is one of the great pillars of the system's indoctrination and brainwashing that nurtures onto [NPCs](npc.md) a mindset of mindlessness in which people obtain answers to any and all questions solely from "approved experts", allowing to establish lies which contradict what would otherwise be completely obvious, visible with the naked eye. Of course it's not necessarily wrong to take the word of an expert, nonetheless the point here is that this simple idea is twisted and taken to such an extreme that it becomes a tool for exploitation of the people: now it is FORBIDDEN to NOT take the word of an "expert" on practically every part of your life that is not the one tiny and insignificant niche that you specialize in such as selling cars or photographing weddings (and even there if you oppose the consensus you'll likely be canceled and labeled "no longer an expert in that area"): there are now eye experts that will tell you what your eyes are seeing and ear experts telling you what your ears are hearing and unless you have a [PhD](phd.md) in eye or ear "science", you must trust them. So now a common folk is completely rid of all thinking, it is possible to implant any "facts" to everyone's heads. For example (this may happen to [the author](drummyfish.md) sooner or later) it is absolutely possible for the system to imprison an absolute pacifist -- who only ever advocated against any violence at all -- for the crime of inciting violence, even if there is complete and undeniable evidence, such as his website with all his writings, that the man never called for violence and in fact did the absolute opposite -- this is possible because no one will bother reading the evidence even when it's right in front of his eyes, or he just won't believe his eyes because he is simply waiting for an "expert" to translate the real world for him, and if said expert is skilled enough in mental gymnastic -- or just plain and simple lying -- he can just translate a sentence "NEVER use violence" into it "actually" meaning "I call everyone to use violence now!". This sounds stupids and it is, and it's how reality is nowadays -- just ask yourself this: when you see a mass shooter on the news, will you go download his manifesto, read through it and make your own judgment, or will you just wait for the summary of the manifesto they'll give you on the news?
diff --git a/trolling.md b/trolling.md
index e9eed59..223607c 100644
--- a/trolling.md
+++ b/trolling.md
@@ -38,6 +38,8 @@ Here are some potentially entertaining ways of trolling (they'll be written from
- **Accessibility, "trollslation"**: I like to leave cool [funny words](nigger.md) and phrases ("learn to see") in Braille script so that it looks like I'm trying to help (Braille message found by a statue is assumed to be there to describe the statue), people have no idea what it actually says and they think I'm helping the disabled when I'm actually trolling them. Can also be done with uncommonly spoken [languages](human_language.md), for example one can print a poster that says something positive in several common languages (like "Have a nice day kind stranger <333"), but the [Chinese](chinese.md) translation could say something slightly different ("The chinese must be this tall to shop here.") :D
- ...
+{ Back in the times of [fax](fax.md) there was a cool troll known as "black fax". As the name suggests, the goal was to fax a completely black page to waste the receiver's ink :D ~drummyfish }
+
{ I got asked a very good question: is trolling in fact [fascism](fascism.md) and how can I, a LRS supporter, like it then? This topic can get pretty complicated, trolling is probably like games themselves, it is a simulation of behavior that could otherwise be unethical, we always have to think about what's happening -- sometimes what's called "trolling" is just bullying without any creativity, which is not trolling in the right sense; other times trolling is seeking self benefit (fun on detriment of others) which is normally unethical but may be fine as a part of game, and other times trolling may aim to bring fun for everyone, in which case it may even be selfless. Seeking fun (a kind of self benefit) on the detriment of others is, at least by our definition, a form of fascism. I enjoy the acts of trolling, and though it may be partly an imperfection of me as a human being, I try to keep it compatible with LRS in the following ways. Firstly I never support actually very harmful trolling (such as "cutting for Bieber") to be DONE, though I do enjoy reviewing the cases that already happened and I may find them both funny and sad at the same time -- this is similar to how one can be a pacifist and completely reject violence while still finding some value in watching gore videos. Secondly trolling may be done to entities that aren't living beings, for example companies or states. Thirdly I may support acts of trolling that I don't think are significantly harmful, for example lighthearted pranks (the kind of joke you play on someone and it eventually entertains both of you, but it mustn't be taken too far, harm must be negligible), or Internet trolling. It's similar to sports or video games -- it is completely acceptable (and desirable) to create environments -- which must always be entered VOLUNTARILY -- that simulate amoral behavior and relieve some of our amoral animal needs, for example those for competition or fight, despite such behavior not being acceptable in other contexts. I.e. it is for example acceptable to kill each other in video games. Internet, or at least a great part of it, is such an environment -- it is a kind of playground anyone can enter voluntarily, that's known to have the kind of trolling game going on. On the Internet we only interact by speech and speech alone can never hurt anyone -- if one cannot bear reading something on the Internet, he can avoid using it (at least that's how it should be). ~drummyfish }
## See Also
diff --git a/wiki_pages.md b/wiki_pages.md
index 78e0735..6f4bf56 100644
--- a/wiki_pages.md
+++ b/wiki_pages.md
@@ -2,4 +2,4 @@
This is an autogenerated page listing all pages.
-**[100r](100r.md)** (10) -- **[21st_century](21st_century.md)** (62) -- **[3d_model](3d_model.md)** (258) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (592) -- **[42](42.md)** (16) -- **[4chan](4chan.md)** (33) -- **[90s](90s.md)** (60) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (22) -- **[acronym](acronym.md)** (404) -- **[adam_smith](adam_smith.md)** (37) -- **[ai](ai.md)** (33) -- **[algorithm](algorithm.md)** (365) -- **[aliasing](aliasing.md)** (60) -- **[altruism](altruism.md)** (12) -- **[anal_bead](anal_bead.md)** (8) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (135) -- **[anarchism](anarchism.md)** (21) -- **[ancap](ancap.md)** (31) -- **[and](and.md)** (2) -- **[anorexia](anorexia.md)** (110) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[anticompany](anticompany.md)** (15) -- **[antivirus_paradox](antivirus_paradox.md)** (12) -- **[app](app.md)** (10) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (29) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (20) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (224) -- **[asexuality](asexuality.md)** (7) -- **[ashley_jones](ashley_jones.md)** (38) -- **[asmr](asmr.md)** (2) -- **[assembly](assembly.md)** (264) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (31) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (6) -- **[autostereogram](autostereogram.md)** (120) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (13) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (62) -- **[backpropagation](backpropagation.md)** (87) -- **[based](based.md)** (3) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (29) -- **[beauty](beauty.md)** (33) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (35) -- **[billboard](billboard.md)** (57) -- **[binary](binary.md)** (143) -- **[bit](bit.md)** (11) -- **[bit_hack](bit_hack.md)** (173) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (203) -- **[bloat_monopoly](bloat_monopoly.md)** (14) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (95) -- **[books](books.md)** (36) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (51) -- **[byte](byte.md)** (23) -- **[bytebeat](bytebeat.md)** (157) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (385) -- **[c_pitfalls](c_pitfalls.md)** (160) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2159) -- **[cache](cache.md)** (27) -- **[calculus](calculus.md)** (320) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (31) -- **[capitalism](capitalism.md)** (166) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (32) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (15) -- **[censorship](censorship.md)** (61) -- **[chaos](chaos.md)** (113) -- **[charity_sex](charity_sex.md)** (10) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (67) -- **[chess](chess.md)** (539) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (27) -- **[coc](coc.md)** (23) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (38) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (199) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (20) -- **[communism](communism.md)** (29) -- **[competition](competition.md)** (19) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (237) -- **[compsci](compsci.md)** (23) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (183) -- **[consumerism](consumerism.md)** (18) -- **[conum](conum.md)** (74) -- **[cope](cope.md)** (29) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (121) -- **[corporation](corporation.md)** (37) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[cpu](cpu.md)** (95) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (32) -- **[crime_against_economy](crime_against_economy.md)** (17) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (38) -- **[css](css.md)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (6) -- **[cyberbullying](cyberbullying.md)** (8) -- **[czechia](czechia.md)** (87) -- **[data_hoarding](data_hoarding.md)** (33) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (138) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (21) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (54) -- **[derivative](derivative.md)** (2) -- **[determinism](determinism.md)** (33) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (18) -- **[digital_signature](digital_signature.md)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (40) -- **[discalimer](discalimer.md)** (26) -- **[disease](disease.md)** (68) -- **[distance](distance.md)** (171) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (36) -- **[doom](doom.md)** (80) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (32) -- **[drummyfish](drummyfish.md)** (114) -- **[duke3d](duke3d.md)** (32) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (34) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (27) -- **[earth](earth.md)** (78) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (16) -- **[education](education.md)** (4) -- **[egg_code](egg_code.md)** (7) -- **[egoism](egoism.md)** (26) -- **[elo](elo.md)** (155) -- **[elon_musk](elon_musk.md)** (18) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (10) -- **[encyclopedia](encyclopedia.md)** (76) -- **[english](english.md)** (21) -- **[entrepreneur](entrepreneur.md)** (4) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (18) -- **[evil](evil.md)** (75) -- **[exercises](exercises.md)** (691) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (10) -- **[fail_ab](fail_ab.md)** (47) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (366) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (8) -- **[fediverse](fediverse.md)** (17) -- **[feminism](feminism.md)** (68) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (12) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (155) -- **[fizzbuzz](fizzbuzz.md)** (232) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (125) -- **[floss](floss.md)** (2) -- **[football](football.md)** (57) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (155) -- **[frameless](frameless.md)** (14) -- **[framework](framework.md)** (7) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (41) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (143) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (12) -- **[free_will](free_will.md)** (23) -- **[freedom](freedom.md)** (30) -- **[freedom_distance](freedom_distance.md)** (4) -- **[freemasonry](freemasonry.md)** (27) -- **[friend_detox](friend_detox.md)** (2) -- **[fsf](fsf.md)** (33) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (67) -- **[function](function.md)** (142) -- **[furry](furry.md)** (27) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (46) -- **[game](game.md)** (163) -- **[game_design](game_design.md)** (9) -- **[game_engine](game_engine.md)** (58) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (41) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (8) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (79) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (66) -- **[go](go.md)** (113) -- **[golang](golang.md)** (20) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (12) -- **[google](google.md)** (16) -- **[gopher](gopher.md)** (73) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (36) -- **[great_trap](great_trap.md)** (14) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (33) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (84) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (9) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (18) -- **[hexadecimal](hexadecimal.md)** (38) -- **[history](history.md)** (112) -- **[hitler](hitler.md)** (46) -- **[holy_war](holy_war.md)** (31) -- **[homelessness](homelessness.md)** (111) -- **[how_to](how_to.md)** (232) -- **[html](html.md)** (89) -- **[human_language](human_language.md)** (149) -- **[humidity](humidity.md)** (8) -- **[humorwashing](humorwashing.md)** (33) -- **[hw](hw.md)** (7) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (25) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[integral](integral.md)** (2) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (33) -- **[internet](internet.md)** (126) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (35) -- **[iq](iq.md)** (145) -- **[island](island.md)** (76) -- **[jargon_file](jargon_file.md)** (13) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (161) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (102) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (136) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (24) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (8) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (48) -- **[kiwifarms](kiwifarms.md)** (11) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (10) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (56) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (164) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (137) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (35) -- **[libre](libre.md)** (2) -- **[licar](licar.md)** (6) -- **[license](license.md)** (57) -- **[life](life.md)** (20) -- **[lil](lil.md)** (22) -- **[line](line.md)** (153) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (74) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (38) -- **[lmao](lmao.md)** (62) -- **[loc](loc.md)** (12) -- **[log](log.md)** (223) -- **[logic](logic.md)** (18) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (202) -- **[loquendo](loquendo.md)** (19) -- **[lotr](lotr.md)** (22) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (34) -- **[lrs](lrs.md)** (173) -- **[lrs_dictionary](lrs_dictionary.md)** (153) -- **[lrs_wiki](lrs_wiki.md)** (46) -- **[luke_smith](luke_smith.md)** (22) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (11) -- **[main](main.md)** (183) -- **[mainstream](mainstream.md)** (10) -- **[maintenance](maintenance.md)** (9) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (10) -- **[marketing](marketing.md)** (35) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (12) -- **[math](math.md)** (42) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (8) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (64) -- **[minimalism](minimalism.md)** (83) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (40) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (23) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (61) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (27) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (87) -- **[netstalking](netstalking.md)** (45) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (13) -- **[niger](niger.md)** (11) -- **[nigeria](nigeria.md)** (11) -- **[nigger](nigger.md)** (130) -- **[niggercoin](niggercoin.md)** (7) -- **[no_knowledge_proof](no_knowledge_proof.md)** (20) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (14) -- **[nonogram](nonogram.md)** (43) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (9) -- **[npc](npc.md)** (22) -- **[number](number.md)** (507) -- **[often_confused](often_confused.md)** (200) -- **[often_misunderstood](often_misunderstood.md)** (24) -- **[old](old.md)** (4) -- **[one](one.md)** (13) -- **[oop](oop.md)** (389) -- **[open_console](open_console.md)** (70) -- **[open_source](open_source.md)** (40) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (74) -- **[optimism](optimism.md)** (9) -- **[optimization](optimization.md)** (105) -- **[or](or.md)** (6) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (63) -- **[paradigm](paradigm.md)** (27) -- **[pascal](pascal.md)** (83) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (68) -- **[people](people.md)** (78) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (155) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (93) -- **[popularization](popularization.md)** (2) -- **[portability](portability.md)** (188) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (6) -- **[prime](prime.md)** (166) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (44) -- **[probability](probability.md)** (87) -- **[procgen](procgen.md)** (516) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (74) -- **[programming_language](programming_language.md)** (175) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (2) -- **[progress](progress.md)** (33) -- **[project](project.md)** (42) -- **[proof](proof.md)** (10) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (12) -- **[pseudorandomness](pseudorandomness.md)** (153) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quake](quake.md)** (34) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (54) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1933) -- **[randomness](randomness.md)** (182) -- **[rapeware](rapeware.md)** (2) -- **[rationalization](rationalization.md)** (16) -- **[rationalwiki](rationalwiki.md)** (13) -- **[raycasting](raycasting.md)** (513) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (28) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (111) -- **[reddit](reddit.md)** (30) -- **[regex](regex.md)** (214) -- **[resnicks_termite](resnicks_termite.md)** (210) -- **[rgb332](rgb332.md)** (116) -- **[rgb565](rgb565.md)** (48) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (6) -- **[rms](rms.md)** (59) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (49) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (30) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (28) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (18) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (20) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (23) -- **[shit](shit.md)** (34) -- **[shitpress](shitpress.md)** (8) -- **[shitword](shitword.md)** (70) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (91) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (233) -- **[sjw](sjw.md)** (29) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (18) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (35) -- **[smart](smart.md)** (15) -- **[smol_internet](smol_internet.md)** (20) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (42) -- **[soyence](soyence.md)** (103) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (167) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (227) -- **[stereotype](stereotype.md)** (523) -- **[steve_jobs](steve_jobs.md)** (36) -- **[sub_rosa](sub_rosa.md)** (56) -- **[suckless](suckless.md)** (52) -- **[sudoku](sudoku.md)** (214) -- **[suicide](suicide.md)** (52) -- **[sw](sw.md)** (16) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[t3x](t3x.md)** (104) -- **[tangram](tangram.md)** (72) -- **[tas](tas.md)** (28) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (14) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (22) -- **[thrembo](thrembo.md)** (18) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tool_slave](tool_slave.md)** (14) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny](tranny.md)** (2) -- **[tranny_software](tranny_software.md)** (31) -- **[transistor](transistor.md)** (29) -- **[transsexual](transsexual.md)** (50) -- **[trash_magic](trash_magic.md)** (21) -- **[tree](tree.md)** (66) -- **[triangle](triangle.md)** (88) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (50) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (12) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (220) -- **[twos_complement](twos_complement.md)** (38) -- **[ubi](ubi.md)** (34) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (14) -- **[unfuck](unfuck.md)** (18) -- **[unicode](unicode.md)** (87) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (157) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (19) -- **[update_culture](update_culture.md)** (32) -- **[usa](usa.md)** (112) -- **[used](used.md)** (6) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (47) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (63) -- **[version_numbering](version_numbering.md)** (90) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (16) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (214) -- **[wiki_style](wiki_style.md)** (77) -- **[wiki_tldr](wiki_tldr.md)** (71) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (97) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (59) -- **[wirtual](wirtual.md)** (2) -- **[wizard](wizard.md)** (27) -- **[wolf3d](wolf3d.md)** (42) -- **[woman](woman.md)** (214) -- **[work](work.md)** (107) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (126) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (114) -- **[xor](xor.md)** (2) -- **[xxiivv](xxiivv.md)** (34) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (48) -- **[zen](zen.md)** (16) -- **[zero](zero.md)** (33) -- **[znk](znk.md)** (13) -- **[zoomer](zoomer.md)** (47) -- **[zuckerberg](zuckerberg.md)** (2)
\ No newline at end of file
+**[100r](100r.md)** (10) -- **[21st_century](21st_century.md)** (62) -- **[3d_model](3d_model.md)** (258) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (592) -- **[42](42.md)** (16) -- **[4chan](4chan.md)** (33) -- **[90s](90s.md)** (60) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (22) -- **[acronym](acronym.md)** (404) -- **[adam_smith](adam_smith.md)** (37) -- **[ai](ai.md)** (33) -- **[algorithm](algorithm.md)** (365) -- **[aliasing](aliasing.md)** (60) -- **[altruism](altruism.md)** (12) -- **[anal_bead](anal_bead.md)** (8) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (135) -- **[anarchism](anarchism.md)** (21) -- **[ancap](ancap.md)** (31) -- **[and](and.md)** (2) -- **[anorexia](anorexia.md)** (110) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[anticompany](anticompany.md)** (15) -- **[antivirus_paradox](antivirus_paradox.md)** (12) -- **[app](app.md)** (10) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (29) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (20) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (224) -- **[asexuality](asexuality.md)** (7) -- **[ashley_jones](ashley_jones.md)** (38) -- **[asmr](asmr.md)** (2) -- **[assembly](assembly.md)** (264) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (31) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (6) -- **[autostereogram](autostereogram.md)** (120) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (13) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (62) -- **[backpropagation](backpropagation.md)** (87) -- **[based](based.md)** (3) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (29) -- **[beauty](beauty.md)** (33) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (35) -- **[billboard](billboard.md)** (57) -- **[binary](binary.md)** (143) -- **[bit](bit.md)** (11) -- **[bit_hack](bit_hack.md)** (173) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (203) -- **[bloat_monopoly](bloat_monopoly.md)** (14) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (95) -- **[books](books.md)** (36) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (51) -- **[byte](byte.md)** (23) -- **[bytebeat](bytebeat.md)** (157) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (385) -- **[c_pitfalls](c_pitfalls.md)** (160) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2159) -- **[cache](cache.md)** (27) -- **[calculus](calculus.md)** (320) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (31) -- **[capitalism](capitalism.md)** (166) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (32) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (15) -- **[censorship](censorship.md)** (61) -- **[chaos](chaos.md)** (113) -- **[charity_sex](charity_sex.md)** (10) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (67) -- **[chess](chess.md)** (539) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (27) -- **[coc](coc.md)** (23) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (38) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (199) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (20) -- **[communism](communism.md)** (29) -- **[competition](competition.md)** (19) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (237) -- **[compsci](compsci.md)** (23) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (183) -- **[consumerism](consumerism.md)** (18) -- **[conum](conum.md)** (74) -- **[cope](cope.md)** (29) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (121) -- **[corporation](corporation.md)** (37) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[cpu](cpu.md)** (95) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (32) -- **[crime_against_economy](crime_against_economy.md)** (17) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (38) -- **[css](css.md)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (6) -- **[cyberbullying](cyberbullying.md)** (8) -- **[czechia](czechia.md)** (87) -- **[data_hoarding](data_hoarding.md)** (33) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (138) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (21) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (54) -- **[derivative](derivative.md)** (2) -- **[determinism](determinism.md)** (33) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (18) -- **[digital_signature](digital_signature.md)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (40) -- **[discalimer](discalimer.md)** (26) -- **[disease](disease.md)** (68) -- **[distance](distance.md)** (171) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (36) -- **[doom](doom.md)** (80) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (32) -- **[drummyfish](drummyfish.md)** (114) -- **[duke3d](duke3d.md)** (32) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (34) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (27) -- **[earth](earth.md)** (78) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (16) -- **[education](education.md)** (4) -- **[egg_code](egg_code.md)** (7) -- **[egoism](egoism.md)** (26) -- **[elo](elo.md)** (155) -- **[elon_musk](elon_musk.md)** (18) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (10) -- **[encyclopedia](encyclopedia.md)** (76) -- **[english](english.md)** (21) -- **[entrepreneur](entrepreneur.md)** (4) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (18) -- **[evil](evil.md)** (75) -- **[exercises](exercises.md)** (691) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (10) -- **[fail_ab](fail_ab.md)** (47) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (366) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (8) -- **[fediverse](fediverse.md)** (17) -- **[feminism](feminism.md)** (68) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (12) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (155) -- **[fizzbuzz](fizzbuzz.md)** (232) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (125) -- **[floss](floss.md)** (2) -- **[football](football.md)** (57) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (155) -- **[frameless](frameless.md)** (14) -- **[framework](framework.md)** (7) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (41) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (145) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (12) -- **[free_will](free_will.md)** (23) -- **[freedom](freedom.md)** (30) -- **[freedom_distance](freedom_distance.md)** (4) -- **[freemasonry](freemasonry.md)** (27) -- **[friend_detox](friend_detox.md)** (2) -- **[fsf](fsf.md)** (33) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (67) -- **[function](function.md)** (142) -- **[furry](furry.md)** (27) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (47) -- **[game](game.md)** (165) -- **[game_design](game_design.md)** (9) -- **[game_engine](game_engine.md)** (58) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (41) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (8) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (79) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (66) -- **[go](go.md)** (113) -- **[golang](golang.md)** (20) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (12) -- **[google](google.md)** (16) -- **[gopher](gopher.md)** (73) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (36) -- **[great_trap](great_trap.md)** (14) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (33) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (84) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (9) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (18) -- **[hexadecimal](hexadecimal.md)** (38) -- **[history](history.md)** (112) -- **[hitler](hitler.md)** (46) -- **[holy_war](holy_war.md)** (31) -- **[homelessness](homelessness.md)** (111) -- **[how_to](how_to.md)** (232) -- **[html](html.md)** (89) -- **[human_language](human_language.md)** (149) -- **[humidity](humidity.md)** (8) -- **[humorwashing](humorwashing.md)** (33) -- **[hw](hw.md)** (7) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (25) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[integral](integral.md)** (2) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (33) -- **[internet](internet.md)** (126) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (35) -- **[iq](iq.md)** (145) -- **[island](island.md)** (76) -- **[jargon_file](jargon_file.md)** (13) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (161) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (102) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (137) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (24) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (8) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (48) -- **[kiwifarms](kiwifarms.md)** (11) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (10) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (56) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (164) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (137) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (35) -- **[libre](libre.md)** (2) -- **[licar](licar.md)** (14) -- **[license](license.md)** (57) -- **[life](life.md)** (20) -- **[lil](lil.md)** (22) -- **[line](line.md)** (153) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (74) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (38) -- **[lmao](lmao.md)** (62) -- **[loc](loc.md)** (12) -- **[log](log.md)** (223) -- **[logic](logic.md)** (18) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (202) -- **[loquendo](loquendo.md)** (19) -- **[lotr](lotr.md)** (22) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (34) -- **[lrs](lrs.md)** (173) -- **[lrs_dictionary](lrs_dictionary.md)** (154) -- **[lrs_wiki](lrs_wiki.md)** (46) -- **[luke_smith](luke_smith.md)** (22) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (11) -- **[main](main.md)** (183) -- **[mainstream](mainstream.md)** (10) -- **[maintenance](maintenance.md)** (9) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (10) -- **[marketing](marketing.md)** (35) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (12) -- **[math](math.md)** (42) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (12) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (8) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (64) -- **[minimalism](minimalism.md)** (83) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (40) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (23) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (61) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (27) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (87) -- **[netstalking](netstalking.md)** (45) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (13) -- **[niger](niger.md)** (11) -- **[nigeria](nigeria.md)** (11) -- **[nigger](nigger.md)** (130) -- **[niggercoin](niggercoin.md)** (7) -- **[no_knowledge_proof](no_knowledge_proof.md)** (20) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (14) -- **[nonogram](nonogram.md)** (43) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (9) -- **[npc](npc.md)** (22) -- **[number](number.md)** (507) -- **[often_confused](often_confused.md)** (200) -- **[often_misunderstood](often_misunderstood.md)** (24) -- **[old](old.md)** (4) -- **[one](one.md)** (13) -- **[oop](oop.md)** (389) -- **[open_console](open_console.md)** (70) -- **[open_source](open_source.md)** (40) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (74) -- **[optimism](optimism.md)** (9) -- **[optimization](optimization.md)** (105) -- **[or](or.md)** (6) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (63) -- **[paradigm](paradigm.md)** (27) -- **[pascal](pascal.md)** (83) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (68) -- **[people](people.md)** (78) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (155) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (93) -- **[popularization](popularization.md)** (2) -- **[portability](portability.md)** (188) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (6) -- **[prime](prime.md)** (166) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (44) -- **[probability](probability.md)** (87) -- **[procgen](procgen.md)** (516) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (74) -- **[programming_language](programming_language.md)** (175) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (2) -- **[progress](progress.md)** (33) -- **[project](project.md)** (42) -- **[proof](proof.md)** (10) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (12) -- **[pseudorandomness](pseudorandomness.md)** (153) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quake](quake.md)** (34) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (54) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1933) -- **[randomness](randomness.md)** (182) -- **[rapeware](rapeware.md)** (2) -- **[rationalization](rationalization.md)** (16) -- **[rationalwiki](rationalwiki.md)** (13) -- **[raycasting](raycasting.md)** (513) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (28) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (111) -- **[reddit](reddit.md)** (30) -- **[regex](regex.md)** (214) -- **[resnicks_termite](resnicks_termite.md)** (210) -- **[rgb332](rgb332.md)** (116) -- **[rgb565](rgb565.md)** (48) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (6) -- **[rms](rms.md)** (59) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (49) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (30) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (30) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (18) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (20) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (23) -- **[shit](shit.md)** (34) -- **[shitpress](shitpress.md)** (8) -- **[shitword](shitword.md)** (70) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (91) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (233) -- **[sjw](sjw.md)** (29) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (18) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (35) -- **[smart](smart.md)** (15) -- **[smol_internet](smol_internet.md)** (20) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (42) -- **[soyence](soyence.md)** (104) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (167) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (227) -- **[stereotype](stereotype.md)** (523) -- **[steve_jobs](steve_jobs.md)** (36) -- **[sub_rosa](sub_rosa.md)** (56) -- **[suckless](suckless.md)** (52) -- **[sudoku](sudoku.md)** (214) -- **[suicide](suicide.md)** (52) -- **[sw](sw.md)** (16) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[t3x](t3x.md)** (104) -- **[tangram](tangram.md)** (72) -- **[tas](tas.md)** (28) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (14) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (22) -- **[thrembo](thrembo.md)** (18) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (12) -- **[tom_scott](tom_scott.md)** (4) -- **[tool_slave](tool_slave.md)** (14) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny](tranny.md)** (2) -- **[tranny_software](tranny_software.md)** (31) -- **[transistor](transistor.md)** (29) -- **[transsexual](transsexual.md)** (51) -- **[trash_magic](trash_magic.md)** (21) -- **[tree](tree.md)** (66) -- **[triangle](triangle.md)** (88) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (50) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (12) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (220) -- **[twos_complement](twos_complement.md)** (38) -- **[ubi](ubi.md)** (34) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (14) -- **[unfuck](unfuck.md)** (18) -- **[unicode](unicode.md)** (87) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (157) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (19) -- **[update_culture](update_culture.md)** (34) -- **[usa](usa.md)** (112) -- **[used](used.md)** (6) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (47) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (63) -- **[version_numbering](version_numbering.md)** (90) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (16) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (219) -- **[wiki_style](wiki_style.md)** (77) -- **[wiki_tldr](wiki_tldr.md)** (71) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (97) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (59) -- **[wirtual](wirtual.md)** (2) -- **[wizard](wizard.md)** (27) -- **[wolf3d](wolf3d.md)** (42) -- **[woman](woman.md)** (214) -- **[work](work.md)** (107) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (126) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (114) -- **[xor](xor.md)** (2) -- **[xxiivv](xxiivv.md)** (34) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (48) -- **[zen](zen.md)** (16) -- **[zero](zero.md)** (33) -- **[znk](znk.md)** (13) -- **[zoomer](zoomer.md)** (47) -- **[zuckerberg](zuckerberg.md)** (2)
\ No newline at end of file
diff --git a/wiki_stats.md b/wiki_stats.md
index 5c323d2..3ffb7c7 100644
--- a/wiki_stats.md
+++ b/wiki_stats.md
@@ -3,9 +3,9 @@
This is an autogenerated article holding stats about this wiki.
- number of articles: 644
-- number of commits: 1033
-- total size of all texts in bytes: 5602366
-- total number of lines of article texts: 40310
+- number of commits: 1034
+- total size of all texts in bytes: 5607710
+- total number of lines of article texts: 40341
- number of script lines: 324
- occurrences of the word "person": 10
- occurrences of the word "nigger": 157
@@ -21,7 +21,7 @@ longest articles:
- [faq](faq.md): 76K
- [less_retarded_society](less_retarded_society.md): 72K
- [3d_rendering](3d_rendering.md): 56K
-- [woman](woman.md): 52K
+- [woman](woman.md): 56K
- [main](main.md): 52K
- [programming_language](programming_language.md): 48K
- [c](c.md): 44K
@@ -31,56 +31,56 @@ longest articles:
- [bloat](bloat.md): 40K
- [iq](iq.md): 40K
- [cheating](cheating.md): 40K
-- [copyright](copyright.md): 40K
+- [free_software](free_software.md): 40K
top 50 5+ letter words:
-- which (3006)
+- which (3008)
- there (2371)
-- people (2247)
-- example (1941)
+- people (2249)
+- example (1943)
- other (1716)
-- about (1533)
-- number (1472)
-- software (1334)
+- about (1534)
+- number (1475)
+- software (1338)
- because (1265)
-- their (1185)
-- something (1168)
+- their (1190)
+- something (1171)
- would (1150)
- being (1129)
-- program (1086)
+- program (1087)
- language (1035)
-- called (1008)
+- called (1009)
- things (959)
- without (936)
-- simple (902)
+- simple (903)
- numbers (883)
- function (882)
- computer (878)
-- different (847)
+- different (848)
- world (829)
- these (814)
-- programming (813)
+- programming (814)
- however (810)
- should (790)
-- still (782)
-- system (776)
-- doesn (754)
+- still (785)
+- system (777)
+- doesn (756)
- games (742)
-- drummyfish (735)
-- always (734)
-- possible (727)
-- point (718)
-- probably (708)
-- https (705)
+- drummyfish (740)
+- always (735)
+- possible (728)
+- point (720)
+- probably (709)
+- https (707)
- while (698)
- society (697)
- simply (692)
-- using (664)
+- using (665)
- someone (651)
- course (646)
- actually (640)
-- similar (637)
+- similar (638)
- first (625)
- value (617)
- though (600)
@@ -89,6 +89,32 @@ top 50 5+ letter words:
latest changes:
```
+Date: Thu Jun 26 00:54:22 2025 +0200
+ drummyfish.md
+ free_software.md
+ future_proof.md
+ game.md
+ hitler.md
+ jokes.md
+ licar.md
+ lrs_dictionary.md
+ main.md
+ microsoft.md
+ needed.md
+ progress.md
+ race.md
+ random_page.md
+ reddit.md
+ science.md
+ small3dlib.md
+ soyence.md
+ tinyphysicsengine.md
+ transsexual.md
+ unicode.md
+ update_culture.md
+ wiki_pages.md
+ wiki_stats.md
+ woman.md
Date: Sun Jun 22 21:07:42 2025 +0200
90s.md
acronym.md
@@ -102,27 +128,6 @@ Date: Sun Jun 22 21:07:42 2025 +0200
random_page.md
rust.md
wiki_pages.md
- wiki_stats.md
-Date: Thu Jun 19 02:56:49 2025 +0200
- czechia.md
- distance.md
- drummyfish.md
- encyclopedia.md
- formal_language.md
- kiwifarms.md
- licar.md
- noise.md
- random_page.md
- soyence.md
- turing_machine.md
- unicode.md
- update_culture.md
- usa.md
- wiki_pages.md
- wiki_stats.md
- woman.md
- zoomer.md
-Date: Tue Jun 17 18:35:49 2025 +0200
```
most wanted pages:
@@ -150,24 +155,24 @@ most wanted pages:
most popular and lonely pages:
-- [lrs](lrs.md) (355)
+- [lrs](lrs.md) (356)
- [capitalism](capitalism.md) (329)
-- [bloat](bloat.md) (252)
-- [c](c.md) (249)
-- [free_software](free_software.md) (211)
-- [game](game.md) (166)
+- [bloat](bloat.md) (254)
+- [c](c.md) (250)
+- [free_software](free_software.md) (212)
+- [game](game.md) (167)
- [suckless](suckless.md) (152)
-- [proprietary](proprietary.md) (142)
+- [proprietary](proprietary.md) (143)
- [modern](modern.md) (135)
-- [minimalism](minimalism.md) (130)
+- [minimalism](minimalism.md) (131)
- [computer](computer.md) (130)
- [censorship](censorship.md) (128)
-- [kiss](kiss.md) (126)
+- [kiss](kiss.md) (127)
- [fun](fun.md) (124)
-- [math](math.md) (122)
+- [math](math.md) (123)
- [shit](shit.md) (121)
-- [programming](programming.md) (120)
-- [woman](woman.md) (116)
+- [programming](programming.md) (121)
+- [woman](woman.md) (117)
- [art](art.md) (112)
- [history](history.md) (109)
- [gnu](gnu.md) (108)
diff --git a/wikipedia.md b/wikipedia.md
index be43369..67016cf 100644
--- a/wikipedia.md
+++ b/wikipedia.md
@@ -79,7 +79,8 @@ We can stumble upon many interesting and entertaining pages and articles on Wiki
- **longest pages**: https://en.wikipedia.org/wiki/Special:LongPages
- **special pages**: https://en.wikipedia.org/wiki/Special:SpecialPages
- **list of lists of lists**: https://en.wikipedia.org/wiki/List_of_lists_of_lists
-- **current events**: https://en.wikipedia.org/wiki/Portal:Current_events
+- **list of practical jokes**: https://en.wikipedia.org/wiki/List_of_practical_joke_topics
+- ...
## Alternatives
diff --git a/wirtual.md b/wirtual.md
index d5e3953..d38e419 100644
--- a/wirtual.md
+++ b/wirtual.md
@@ -1,3 +1,3 @@
# Wirtual
-Frrtshualll issss the bikkessst kunt on [erth](earth.md).
\ No newline at end of file
+Frrtshualll issss the bikkessst kunt on [erth](earth.md). Has punchable goblin face.
\ No newline at end of file