diff --git a/acronym.md b/acronym.md index 86fbff9..8b308e6 100644 --- a/acronym.md +++ b/acronym.md @@ -187,6 +187,7 @@ Here is a list of some acronyms: - **[ISS](iss.md)** (international space station) - **[IS](is.md)** (information system) - **[IT](it.md)** (information technology) +- **ITT** (in this thread) - **[J2ME](j2me.md)** (java 2 micro edition) - **[JB](jb.md)** ([jailbait](jailbait.md)) - **[JDK](jdk.md)** (java development kit) diff --git a/licar.md b/licar.md index 1b55061..fa07bac 100644 --- a/licar.md +++ b/licar.md @@ -2,9 +2,9 @@ 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, 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. +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. There are now also mods, such as one for making [tool assisted runs](tas.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). +Drummyfish made Licar to fulfill one of his long held dreams of creating 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), 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. @@ -14,19 +14,20 @@ Licar is wholly written in [C99](c99.md) and only uses [small3dlib](small3dlib.m 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. +**Graphics**: like with Anarch, rendering to actual screen is realized through a frontend-defined [pixel](pixel.md) 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. +**Physics**: physics is [deterministic](determinism.md) and is always calculated at 30 ticks per second regardless of rendering FPS is, [interpolation](interpolation.md) is additionally applied to smooth the animation out 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. +**Audio**: all audio is in very simple 8 bit 8 KHz mono format, [KISS](kiss.md). 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 is willing to -- simpler frontends can just ignore music. -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. +And finally for some more uncategorized details. Maps are written in a plain text mini-language that specifies where to place individual map blocks, what material and transformation they shall have etc. The process of loading a map includes reading the text format and transforming it into the internal binary representation wherein blocks are [sorted](sorting.md) so as to make block lookups fast via binary search (this is crucial for resolving collisions as we need to quickly check the car's nearest blocks). Replays are similarly stored in a plain text format -- each replay record takes up 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 +TODO: some reflections n shit here, when the time comes ## See Also - [Anarch](anarch.md) -- [LRS](lrs.md) \ No newline at end of file +- [LRS](lrs.md) +- [Trackmania](trackmania.md) \ No newline at end of file diff --git a/main.md b/main.md index 237463e..e6d4dae 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://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) +[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), [https://gaynigge.rs](https://gaynigge.rs), [http://search.somsab.com](http://search.somsab.com), [https://aiwnios.com (archived)](https://web.archive.org/web/20250321040059/https://aiwnios.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.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/nigger.md b/nigger.md index 23f3cae..a60caf7 100644 --- a/nigger.md +++ b/nigger.md @@ -30,7 +30,7 @@ The word is used in a number of projects and works, e.g.: - **[niggercoin](niggercoin.md) [cryptocurrency](crypto.md)** - **[+NIGGER](plusnigger.md)**: license modifier that uses this politically incorrect term to prevent corporations from adopting free projects. - **[Gay Nigger Association of America](gnaa.md)** (GNAA): what the name says -- **Gayniggers From Outer Space**, the movie. They removed all [women](woman.md) from [Earth](earth.md) to achieve ideal man-only society. +- **Gayniggers From Outer Space**, the movie (https://gaynigge.rs). They removed all [women](woman.md) from [Earth](earth.md) to achieve ideal man-only society. - **Ten Little Niggers**, a book by one of the most famous writers, Agatha Christie. - **"Nigger"**, the autobiography book by Dick Gregory - **On the Creation of Niggers** (https://en.m.wikisource.org/wiki/On_the_Creation_of_Niggers), a short poem by H. P. Lovecraft, one of the greatest authors of all time. diff --git a/random_page.md b/random_page.md index 1cedf53..e70db8a 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1932 +2,1932 @@ Please kindly click random link. -[*](lisp.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) -[*](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) -[*](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) -[*](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) -[*](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) -[*](web.md) -[*](integral.md) -[*](sqrt.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](4chan.md) -[*](jesus.md) -[*](tranny_software.md) -[*](holy_war.md) -[*](www.md) -[*](freemasonry.md) -[*](old.md) -[*](evil.md) -[*](jedi_engine.md) -[*](rule110.md) -[*](usa.md) -[*](demoscene.md) -[*](apple.md) -[*](anpac.md) -[*](cope.md) -[*](interpolation.md) -[*](assembly.md) -[*](capitalist_singularity.md) -[*](goodbye_world.md) -[*](used.md) -[*](viznut.md) -[*](langtons_ant.md) -[*](gnu.md) -[*](cheating.md) -[*](netstalking.md) -[*](tom_scott.md) -[*](css.md) -[*](gemini.md) -[*](compression.md) -[*](rock.md) -[*](4chan.md) -[*](c.md) -[*](algorithm.md) -[*](tree.md) -[*](intellectual_property.md) -[*](dependency.md) -[*](unfuck.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) -[*](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) -[*](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) -[*](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) +[*](plusnigger.md) +[*](wavelet_transform.md) +[*](dynamic_programming.md) +[*](implicit.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) +[*](mud.md) [*](raycasting.md) -[*](lotr.md) -[*](evil.md) +[*](myths.md) +[*](and.md) +[*](nationalism.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) -[*](de_facto.md) -[*](minimalism.md) -[*](coding.md) -[*](trump.md) -[*](debugging.md) -[*](fork.md) -[*](free_will.md) -[*](steganography.md) -[*](implicit.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) -[*](fqa.md) -[*](marxism.md) -[*](js.md) +[*](plan9.md) +[*](framework.md) +[*](README.md) +[*](brainfuck.md) +[*](aliasing.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) +[*](steve_jobs.md) [*](smart.md) -[*](quaternion.md) -[*](wikipedia.md) -[*](programming_tips.md) -[*](bytebeat.md) -[*](npc.md) -[*](primitive_3d.md) -[*](neural_network.md) -[*](lisp.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) -[*](technology.md) -[*](music.md) -[*](rgb332.md) -[*](cyber.md) -[*](wavelet_transform.md) -[*](html.md) -[*](algorithm.md) -[*](update_culture.md) -[*](optimization.md) -[*](quake.md) -[*](freedom_distance.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) +[*](free_culture.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) +[*](yes_they_can.md) +[*](gender_studies.md) +[*](3d_model.md) +[*](splinternet.md) +[*](neural_network.md) +[*](malware.md) +[*](capitalist_singularity.md) +[*](pride.md) +[*](pd.md) +[*](maintenance.md) +[*](proprietary_software.md) +[*](capitalism.md) +[*](demoscene.md) +[*](popularization.md) +[*](operating_system.md) +[*](debugging.md) +[*](egoism.md) +[*](rgb332.md) +[*](line.md) +[*](downto.md) +[*](docker.md) +[*](data_hoarding.md) +[*](digital.md) +[*](library.md) +[*](tangram.md) +[*](znk.md) +[*](fight.md) +[*](viznut.md) +[*](faggot.md) +[*](love.md) +[*](youtube.md) +[*](open_source.md) +[*](black.md) +[*](right.md) +[*](npc.md) +[*](progress.md) +[*](transistor.md) +[*](productivity_cult.md) +[*](law.md) +[*](color.md) +[*](island.md) +[*](malware.md) +[*](altruism.md) +[*](cracking.md) +[*](one.md) +[*](capitalist_singularity.md) +[*](game_of_life.md) +[*](compsci.md) +[*](kek.md) +[*](less_retarded_society.md) +[*](crow_funding.md) +[*](xor.md) +[*](hack.md) +[*](slowly_boiling_the_frog.md) +[*](anticompany.md) +[*](debugging.md) +[*](thrembo.md) +[*](hard_to_learn_easy_to_master.md) +[*](p_vs_np.md) +[*](c_sharp.md) +[*](wiki_post_mortem.md) +[*](physics_engine.md) +[*](feminism.md) +[*](ascii_art.md) +[*](cpp.md) +[*](wirtual.md) +[*](quake.md) +[*](number.md) +[*](newspeak.md) +[*](frameless.md) +[*](sdf.md) +[*](tattoo.md) +[*](wikipedia.md) +[*](digital.md) +[*](loquendo.md) +[*](quake.md) +[*](3d_rendering.md) +[*](ai.md) +[*](duskos.md) +[*](free_will.md) +[*](competition.md) +[*](fuck.md) +[*](antivirus_paradox.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) -[*](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) +[*](trash_magic.md) [*](google.md) -[*](old.md) -[*](no_knowledge_proof.md) -[*](jedi_engine.md) -[*](esolang.md) +[*](everyone_does_it.md) +[*](phd.md) +[*](f2p.md) +[*](comun.md) +[*](idiot_fallacy.md) +[*](atan.md) +[*](yes_they_can.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) +[*](wirtual.md) +[*](game_engine.md) +[*](bitreich.md) +[*](fqa.md) +[*](trom.md) +[*](great_trap.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) +[*](bitreich.md) +[*](ascii_art.md) +[*](coc.md) +[*](quaternion.md) +[*](anorexia.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) +[*](derivative.md) +[*](python.md) +[*](jargon_file.md) +[*](terry_davis.md) +[*](interesting.md) +[*](information.md) +[*](bootstrap.md) +[*](often_misunderstood.md) +[*](frameless.md) +[*](lmao.md) +[*](calculus.md) +[*](fourier_transform.md) +[*](freedom.md) +[*](gopher.md) +[*](zuckerberg.md) +[*](elon_musk.md) [*](ssao.md) -[*](app.md) -[*](smol_internet.md) +[*](pascal.md) +[*](wavelet_transform.md) +[*](microtheft.md) +[*](uxn.md) +[*](education.md) +[*](data_hoarding.md) +[*](and.md) +[*](free_speech.md) +[*](goodbye_world.md) +[*](saf.md) +[*](free_hardware.md) +[*](often_misunderstood.md) +[*](furry.md) +[*](ascii_art.md) +[*](graveyard.md) +[*](analytic_geometry.md) +[*](drummyfish.md) +[*](freedom_distance.md) +[*](doom.md) +[*](used.md) +[*](demoscene.md) +[*](wikidata.md) +[*](ssao.md) +[*](3d_modeling.md) +[*](bytecode.md) +[*](education.md) +[*](world_broadcast.md) +[*](consumerism.md) +[*](morality.md) +[*](palette.md) +[*](sjw.md) +[*](computer.md) +[*](global_discussion.md) +[*](attribution.md) +[*](future.md) +[*](marxism.md) +[*](hyperoperation.md) +[*](viznut.md) +[*](tpe.md) +[*](english.md) +[*](marble_race.md) +[*](rms.md) +[*](binary.md) +[*](palette.md) +[*](tree.md) +[*](githopping.md) +[*](asmr.md) +[*](easier_done_than_said.md) +[*](git.md) +[*](history.md) +[*](internet.md) +[*](determinism.md) +[*](kids_these_days.md) +[*](proof.md) +[*](hacker_culture.md) +[*](derivative.md) +[*](deep_blue.md) +[*](portal_rendering.md) +[*](function.md) +[*](wow.md) +[*](cancel_culture.md) +[*](apple.md) +[*](fun.md) +[*](name_is_important.md) +[*](cancel_culture.md) +[*](wiby.md) +[*](p_vs_np.md) +[*](cancer.md) +[*](suckless.md) +[*](compiler_bomb.md) +[*](fight_culture.md) +[*](attribution.md) +[*](wiki_stats.md) +[*](football.md) +[*](wikipedia.md) +[*](consumerism.md) +[*](neural_network.md) +[*](boot.md) +[*](comment.md) +[*](universe.md) +[*](smallchesslib.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](iq.md) +[*](probability.md) +[*](fun.md) +[*](dungeons_and_dragons.md) +[*](popularization.md) +[*](friend_detox.md) +[*](bazaar.md) +[*](pseudoleft.md) +[*](hacker_culture.md) +[*](permacomputing_wiki.md) +[*](open_console.md) +[*](4chan.md) +[*](zoomer.md) +[*](git.md) +[*](macrofucker.md) +[*](golang.md) +[*](communism.md) +[*](resnicks_termite.md) +[*](gay.md) +[*](rule110.md) +[*](free.md) +[*](usa.md) +[*](network.md) +[*](name_is_important.md) +[*](transsexual.md) +[*](cope.md) +[*](nd.md) +[*](complexity.md) +[*](windows.md) +[*](modern_software.md) +[*](coc.md) +[*](entrepreneur.md) +[*](hero_culture.md) +[*](nc.md) +[*](beauty.md) +[*](mandelbrot_set.md) +[*](programming_style.md) +[*](science.md) +[*](throwaway_script.md) +[*](brain_software.md) +[*](wow.md) +[*](science.md) +[*](trump.md) +[*](double_buffering.md) +[*](wiki_rights.md) +[*](optimization.md) +[*](bit.md) +[*](calculus.md) +[*](bill_gates.md) +[*](probability.md) +[*](cache.md) +[*](based.md) +[*](noise.md) +[*](znk.md) +[*](cancer.md) +[*](elo.md) +[*](hw.md) +[*](motivation.md) +[*](wikipedia.md) +[*](aliasing.md) +[*](math.md) +[*](uxn.md) +[*](freemasonry.md) +[*](less_retarded_software.md) +[*](faq.md) +[*](binary.md) +[*](complexity.md) +[*](tas.md) +[*](linear_algebra.md) +[*](minesweeper.md) +[*](recursion.md) +[*](palette.md) +[*](global_discussion.md) +[*](computational_complexity.md) +[*](antialiasing.md) +[*](real_number.md) +[*](sqrt.md) +[*](explicit.md) +[*](wikiwikiweb.md) +[*](lrs.md) +[*](libertarianism.md) +[*](physics.md) +[*](deep_blue.md) +[*](or.md) +[*](drummyfish.md) +[*](combinatorics.md) +[*](libre.md) +[*](communism.md) +[*](optimization.md) +[*](stereotype.md) +[*](pi.md) +[*](body_shaming.md) +[*](ram.md) +[*](rms.md) +[*](interaction_net.md) +[*](hero.md) +[*](work.md) +[*](interplanetary_internet.md) +[*](security.md) +[*](fixed_point.md) +[*](settled.md) +[*](turing_machine.md) +[*](unretard.md) +[*](popularization.md) +[*](cloudflare.md) +[*](anpac.md) +[*](wiki_stats.md) +[*](calculus.md) +[*](pokitto.md) +[*](cloud.md) +[*](normalization.md) +[*](future_proof.md) +[*](analog.md) +[*](arch.md) +[*](temple_os.md) +[*](lisp.md) +[*](military.md) +[*](oop.md) +[*](work.md) +[*](holy_war.md) +[*](race.md) +[*](life.md) +[*](humidity.md) +[*](randomness.md) +[*](rgb565.md) +[*](loc.md) +[*](deferred_shading.md) +[*](good_enough.md) +[*](crime_against_economy.md) +[*](mipmap.md) +[*](steganography.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) +[*](version_numbering.md) +[*](elo.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) +[*](formal_language.md) +[*](devuan.md) +[*](watchdog.md) +[*](good_enough.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) +[*](based.md) +[*](hw.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) +[*](kek.md) +[*](based.md) +[*](small3dlib.md) +[*](pd.md) +[*](logic_gate.md) +[*](kiwifarms.md) +[*](float.md) +[*](czechia.md) [*](nigeria.md) -[*](anorexia.md) -[*](xxiivv.md) +[*](feminism.md) +[*](autoupdate.md) +[*](ronja.md) +[*](digital_signature.md) +[*](no_knowledge_proof.md) +[*](dodleston.md) +[*](plan9.md) +[*](geek.md) +[*](humorwashing.md) +[*](smol_internet.md) +[*](interplanetary_internet.md) +[*](disease.md) +[*](adam_smith.md) +[*](paywall.md) +[*](usenet.md) +[*](go.md) +[*](phd.md) +[*](books.md) +[*](ram.md) +[*](integral.md) +[*](integral.md) +[*](tas.md) +[*](kiwifarms.md) +[*](diogenes.md) +[*](holy_war.md) +[*](patent.md) +[*](transistor.md) +[*](selflessness.md) +[*](90s.md) +[*](youtube.md) +[*](programming_language.md) +[*](hitler.md) +[*](homelessness.md) +[*](smart.md) +[*](trusting_trust.md) +[*](js.md) +[*](productivity_cult.md) +[*](watchdog.md) +[*](encryption.md) +[*](www.md) +[*](transistor.md) +[*](project.md) +[*](technology.md) +[*](zen.md) +[*](smallchesslib.md) +[*](niger.md) +[*](crypto.md) +[*](chaos.md) +[*](encryption.md) +[*](openarena.md) +[*](app.md) +[*](nd.md) +[*](permacomputing_wiki.md) +[*](trump.md) +[*](systemd.md) +[*](toxic.md) +[*](boat.md) +[*](number.md) +[*](web.md) +[*](mainstream.md) +[*](fsf.md) +[*](teletext.md) +[*](dependency.md) +[*](bootstrap.md) +[*](microtransaction.md) +[*](infinity.md) +[*](mipmap.md) +[*](wizard.md) +[*](logic_circuit.md) +[*](shogi.md) +[*](encyclopedia.md) +[*](sw.md) +[*](procgen.md) +[*](cancel_culture.md) +[*](linux.md) +[*](deferred_shading.md) +[*](primitive_3d.md) +[*](rust.md) +[*](compsci.md) +[*](programming.md) +[*](physics.md) +[*](demo.md) +[*](main.md) +[*](collapse.md) +[*](digital.md) +[*](ubi.md) +[*](wolf3d.md) +[*](kiss.md) +[*](logic_gate.md) +[*](entropy.md) +[*](maintenance.md) +[*](everyone_does_it.md) +[*](atheism.md) +[*](ethics.md) +[*](libre.md) +[*](coding.md) +[*](langtons_ant.md) +[*](backgammon.md) +[*](analog.md) +[*](znk.md) +[*](creative_commons.md) +[*](nokia.md) +[*](justice.md) +[*](regex.md) +[*](rust.md) +[*](maintenance.md) +[*](asexuality.md) +[*](chasm_the_rift.md) +[*](dick_reveal.md) +[*](cc.md) +[*](democracy.md) +[*](progress.md) +[*](shitpress.md) +[*](elo.md) +[*](resnicks_termite.md) +[*](wikiwikiweb.md) +[*](ioccc.md) +[*](fear_culture.md) +[*](bloat_monopoly.md) +[*](x86.md) +[*](resnicks_termite.md) +[*](sqrt.md) +[*](microtransaction.md) +[*](sdf.md) +[*](e.md) +[*](chinese.md) +[*](gnu.md) +[*](julia_set.md) +[*](fork.md) +[*](mental_outlaw.md) +[*](fixed_point.md) +[*](friend_detox.md) +[*](esolang.md) +[*](mouse.md) +[*](golang.md) +[*](teletext.md) +[*](mipmap.md) +[*](app.md) +[*](english.md) +[*](fqa.md) +[*](smol_internet.md) +[*](paradigm.md) +[*](crime_against_economy.md) +[*](hitler.md) +[*](evil.md) +[*](hitler.md) +[*](kwangmyong.md) +[*](logic_gate.md) +[*](foss.md) +[*](licar.md) +[*](toxic.md) +[*](pseudoleft.md) +[*](racetrack.md) +[*](nonogram.md) +[*](oop.md) +[*](linear_algebra.md) +[*](deferred_shading.md) +[*](fight.md) +[*](dependency.md) +[*](c_pitfalls.md) +[*](corporation.md) +[*](free_universe.md) +[*](c.md) +[*](censorship.md) +[*](assertiveness.md) +[*](open_source.md) +[*](hack.md) +[*](racism.md) +[*](linear_algebra.md) +[*](cracking.md) +[*](coding.md) +[*](bit.md) +[*](collision_detection.md) +[*](copyleft.md) +[*](programming_style.md) +[*](cat_v.md) +[*](lambda_calculus.md) +[*](racetrack.md) +[*](c.md) +[*](oop.md) +[*](gemini.md) +[*](distance.md) +[*](rationalwiki.md) +[*](triangle.md) +[*](billboard.md) +[*](fizzbuzz.md) +[*](fizzbuzz.md) +[*](free_body.md) +[*](entropy.md) +[*](comment.md) +[*](plan9.md) [*](pseudorandomness.md) -[*](transsexual.md) +[*](less_retarded_software.md) +[*](boot.md) +[*](cc0.md) +[*](asmr.md) +[*](universe.md) +[*](cc.md) +[*](reddit.md) +[*](optimism.md) +[*](prime.md) +[*](linux.md) +[*](flatland.md) +[*](twos_complement.md) +[*](wiki_pages.md) +[*](io.md) +[*](fediverse.md) +[*](julia_set.md) +[*](easy_to_learn_hard_to_master.md) +[*](trump.md) +[*](jokes.md) +[*](tangram.md) +[*](social_inertia.md) +[*](public_domain.md) +[*](mechanical.md) +[*](brain_software.md) +[*](rapeware.md) +[*](greenwashing.md) +[*](mandelbrot_set.md) +[*](suicide.md) +[*](ted_kaczynski.md) +[*](liberalism.md) +[*](creative_commons.md) +[*](pedophilia.md) +[*](pseudorandomness.md) +[*](byte.md) +[*](minesweeper.md) +[*](suicide.md) +[*](cat_v.md) +[*](beauty.md) +[*](venus_project.md) +[*](backpropagation.md) +[*](library.md) +[*](shitword.md) +[*](permacomputing_wiki.md) +[*](corporation.md) +[*](settled.md) +[*](hardware.md) +[*](libre.md) +[*](anarch.md) +[*](axiom_of_choice.md) +[*](assembly.md) +[*](mainstream.md) +[*](go.md) +[*](countercomplex.md) +[*](integral.md) +[*](nigger.md) +[*](flatland.md) +[*](geek.md) +[*](left.md) +[*](motivation.md) +[*](gigachad.md) +[*](forth.md) +[*](framework.md) +[*](apple.md) +[*](microtheft.md) +[*](implicit.md) +[*](zoomer.md) +[*](lil.md) +[*](nigeria.md) +[*](altruism.md) +[*](charity_sex.md) +[*](egg_code.md) +[*](entropy.md) +[*](tom_scott.md) +[*](abstraction.md) +[*](furry.md) +[*](trash_magic.md) +[*](humidity.md) +[*](quine.md) +[*](faggot.md) +[*](distance.md) +[*](copyright.md) +[*](arduboy.md) +[*](anpac.md) +[*](bytebeat.md) +[*](sin.md) +[*](cracker.md) +[*](microtheft.md) +[*](throwaway_script.md) +[*](arduboy.md) +[*](lgbt.md) +[*](paywall.md) +[*](sjw.md) +[*](netstalking.md) +[*](game.md) +[*](terry_davis.md) +[*](shader.md) +[*](lambda_calculus.md) +[*](cope.md) +[*](mouse.md) +[*](regex.md) +[*](audiophilia.md) +[*](modern.md) +[*](bloat_monopoly.md) +[*](needed.md) +[*](money.md) +[*](living.md) +[*](marketing.md) +[*](graphics.md) +[*](chess.md) +[*](c_tutorial.md) +[*](idiot_fallacy.md) +[*](comun.md) +[*](pokitto.md) +[*](encryption.md) +[*](binary.md) +[*](privacy.md) +[*](anarchism.md) +[*](fantasy_console.md) +[*](game_of_life.md) +[*](sanism.md) +[*](gnu.md) +[*](acronym.md) +[*](name_is_important.md) +[*](bit.md) +[*](see_through_clothes.md) +[*](feminism.md) +[*](netstalking.md) +[*](logic.md) +[*](small3dlib.md) +[*](xonotic.md) +[*](doom.md) +[*](graphics.md) +[*](earth.md) +[*](earth.md) +[*](corporation.md) +[*](used.md) +[*](javascript.md) +[*](turing_machine.md) +[*](programming_tips.md) +[*](quine.md) +[*](bytebeat.md) +[*](shitword.md) +[*](microsoft.md) +[*](bs.md) +[*](dungeons_and_dragons.md) +[*](fascism.md) +[*](sqrt.md) +[*](duskos.md) +[*](interpolation.md) +[*](formal_language.md) +[*](foss.md) +[*](football.md) +[*](shit.md) +[*](anticompany.md) +[*](censorship.md) +[*](capitalist_software.md) +[*](racism.md) +[*](dog.md) +[*](algorithm.md) +[*](one.md) +[*](ui.md) +[*](communism.md) +[*](technology.md) +[*](framework.md) +[*](bitreich.md) +[*](atan.md) +[*](free_software.md) +[*](fractal.md) +[*](linux.md) +[*](creative_commons.md) +[*](wiby.md) +[*](data_hoarding.md) +[*](old.md) +[*](ronja.md) +[*](proof.md) +[*](raylib.md) +[*](semiconductor.md) +[*](racism.md) +[*](assertiveness.md) +[*](suckless.md) +[*](tranny.md) +[*](esolang.md) +[*](body_shaming.md) +[*](sigbovik.md) +[*](aaron_swartz.md) +[*](rationalwiki.md) +[*](furry.md) +[*](rgb332.md) +[*](foss.md) +[*](nord_vpn.md) +[*](proprietary.md) +[*](implicit.md) +[*](wiki_style.md) +[*](dungeons_and_dragons.md) +[*](t3x.md) +[*](marxism.md) +[*](line.md) +[*](cloud.md) +[*](primitive_3d.md) +[*](free_universe.md) +[*](dynamic_programming.md) +[*](wiki_style.md) +[*](one.md) +[*](tranny_software.md) +[*](distrohopping.md) +[*](c_pitfalls.md) +[*](usa.md) +[*](githopping.md) +[*](floss.md) +[*](fail_ab.md) +[*](pseudominimalism.md) +[*](operating_system.md) +[*](cyberbullying.md) +[*](often_confused.md) +[*](paradigm.md) +[*](niger.md) +[*](atan.md) +[*](just_werks.md) +[*](saf.md) +[*](distrohopping.md) +[*](c_pitfalls.md) +[*](portability.md) +[*](quaternion.md) +[*](proprietary_software.md) +[*](cracker.md) +[*](asmr.md) +[*](logic.md) +[*](trash_magic.md) +[*](social_inertia.md) +[*](math.md) +[*](duke3d.md) +[*](wiki_post_mortem.md) +[*](tech.md) +[*](luke_smith.md) +[*](love.md) +[*](racetrack.md) +[*](infinity.md) +[*](marketing.md) +[*](pedophilia.md) +[*](shitpress.md) +[*](capitalist_software.md) +[*](backpropagation.md) +[*](luke_smith.md) +[*](openai.md) +[*](patent.md) +[*](README.md) +[*](permacomputing.md) +[*](culture.md) +[*](rights_culture.md) +[*](proprietary.md) +[*](throwaway_script.md) +[*](antialiasing.md) +[*](ancap.md) +[*](good_enough.md) +[*](military.md) +[*](pseudo3d.md) +[*](mental_outlaw.md) +[*](compiler_bomb.md) +[*](4chan.md) +[*](js.md) +[*](portability.md) +[*](analytic_geometry.md) +[*](shader.md) +[*](reddit.md) +[*](security.md) +[*](collision.md) +[*](lrs.md) +[*](woman.md) +[*](dog.md) +[*](conum.md) +[*](trom.md) +[*](color.md) +[*](recursion.md) +[*](newspeak.md) +[*](hash.md) +[*](political_correctness.md) +[*](triangle.md) +[*](selflessness.md) +[*](moderation.md) +[*](vim.md) +[*](distrohopping.md) +[*](sdf.md) +[*](ubi.md) +[*](programming.md) +[*](pride.md) +[*](operating_system.md) +[*](monad.md) +[*](netstalking.md) +[*](microsoft.md) +[*](femoid.md) +[*](goodbye_world.md) +[*](sudoku.md) +[*](political_correctness.md) +[*](programming_language.md) +[*](free_software.md) +[*](log.md) +[*](pascal.md) +[*](wiki_tldr.md) +[*](rationalization.md) +[*](hacking.md) +[*](bazaar.md) +[*](less_retarded_hardware.md) +[*](golang.md) +[*](moderation.md) +[*](books.md) +[*](smallchesslib.md) +[*](sub_rosa.md) +[*](openai.md) +[*](t3x.md) +[*](assembly.md) +[*](yes_they_can.md) +[*](emoticon.md) +[*](jokes.md) +[*](rationalization.md) +[*](determinism.md) +[*](vim.md) +[*](jesus.md) +[*](microsoft.md) +[*](computer.md) +[*](apple.md) +[*](float.md) +[*](loquendo.md) +[*](analog.md) +[*](fear_culture.md) +[*](encyclopedia.md) +[*](portability.md) +[*](project.md) +[*](ascii.md) +[*](lambda_calculus.md) +[*](real_number.md) +[*](cache.md) +[*](countercomplex.md) +[*](lil.md) +[*](mob_software.md) +[*](magic.md) +[*](future.md) +[*](zero.md) +[*](fantasy_console.md) +[*](firmware.md) +[*](settled.md) +[*](homelessness.md) +[*](hero.md) +[*](ubi.md) +[*](freedom.md) +[*](qubit.md) +[*](raylib.md) +[*](shortcut_thinking.md) +[*](newspeak.md) +[*](anarchism.md) +[*](function.md) +[*](chasm_the_rift.md) +[*](os.md) +[*](unix.md) +[*](competition.md) +[*](rgb565.md) +[*](encyclopedia.md) +[*](kwangmyong.md) +[*](nokia.md) +[*](billboard.md) +[*](no_knowledge_proof.md) +[*](libertarianism.md) +[*](ashley_jones.md) +[*](trusting_trust.md) +[*](jargon_file.md) +[*](love.md) +[*](idiot_fallacy.md) +[*](thrembo.md) +[*](langtons_ant.md) +[*](information.md) +[*](cope.md) +[*](public_domain.md) +[*](egg_code.md) +[*](42.md) +[*](langtons_ant.md) +[*](culture.md) +[*](f2p.md) +[*](sudoku.md) +[*](gnu.md) +[*](nanogenmo.md) +[*](egoism.md) +[*](music.md) +[*](autoupdate.md) +[*](usenet.md) +[*](gay.md) +[*](update_culture.md) +[*](venus_project.md) +[*](java.md) +[*](compiler_bomb.md) +[*](interaction_net.md) +[*](hero.md) +[*](fourier_transform.md) +[*](duskos.md) +[*](build_engine.md) +[*](gigachad.md) +[*](app.md) +[*](fun.md) +[*](bit_hack.md) +[*](e.md) +[*](downto.md) +[*](fight_culture.md) +[*](beauty.md) +[*](wiki_authors.md) +[*](tool_slave.md) +[*](selflessness.md) +[*](public_domain_computer.md) +[*](double_buffering.md) +[*](collision.md) +[*](emoticon.md) +[*](qubit.md) +[*](dependency.md) +[*](quine.md) +[*](charity_sex.md) +[*](soydev.md) +[*](cloudflare.md) +[*](freedom_distance.md) +[*](network.md) +[*](pseudorandomness.md) +[*](future_proof.md) +[*](go.md) +[*](earth.md) +[*](acronym.md) +[*](modern_software.md) +[*](fork.md) +[*](just_werks.md) +[*](antivirus_paradox.md) +[*](left.md) +[*](fascist.md) +[*](programming.md) +[*](trolling.md) +[*](aliasing.md) +[*](wiki_authors.md) +[*](normalization.md) +[*](loquendo.md) +[*](open_console.md) +[*](cheating.md) +[*](zuckerberg.md) +[*](reactionary_software.md) +[*](chinese.md) +[*](log.md) +[*](myths.md) +[*](hacking.md) +[*](ram.md) +[*](robot.md) +[*](3d_modeling.md) +[*](tpe.md) +[*](software.md) +[*](capitalist_singularity.md) +[*](venus_project.md) +[*](gender_studies.md) +[*](log.md) +[*](qubit.md) +[*](dog.md) +[*](shit.md) +[*](downto.md) +[*](and.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](os.md) +[*](derivative.md) +[*](anticompany.md) +[*](axiom_of_choice.md) +[*](productivity_cult.md) +[*](3d_model.md) +[*](steganography.md) +[*](tranny_software.md) +[*](gopher.md) +[*](iq.md) +[*](dick_reveal.md) +[*](analytic_geometry.md) +[*](javascript.md) +[*](cracker.md) +[*](lrs_dictionary.md) +[*](lrs_wiki.md) +[*](work.md) +[*](collision_detection.md) +[*](xonotic.md) +[*](gigachad.md) +[*](niggercoin.md) +[*](boat.md) +[*](holy_war.md) +[*](network.md) [*](bytecode.md) +[*](money.md) +[*](mechanical.md) +[*](cc0.md) +[*](mob_software.md) +[*](antialiasing.md) +[*](john_carmack.md) +[*](lmao.md) +[*](easier_done_than_said.md) +[*](shitword.md) +[*](90s.md) +[*](tool_slave.md) +[*](xxiivv.md) +[*](brain_software.md) +[*](how_to.md) +[*](less_retarded_society.md) +[*](gui.md) +[*](rapeware.md) +[*](steve_jobs.md) +[*](physics_engine.md) +[*](fractal.md) +[*](soyence.md) +[*](procgen.md) +[*](distance.md) +[*](js.md) +[*](history.md) +[*](xd.md) +[*](bbs.md) +[*](mud.md) +[*](tpe.md) +[*](unix_philosophy.md) +[*](duke3d.md) +[*](rule110.md) +[*](john_carmack.md) +[*](c.md) +[*](cos.md) +[*](watchdog.md) +[*](history.md) +[*](sigbovik.md) +[*](hardware.md) +[*](cheating.md) +[*](ui.md) +[*](lrs_wiki.md) +[*](audiophilia.md) +[*](anarchism.md) +[*](main.md) +[*](crime_against_economy.md) +[*](disease.md) +[*](gay.md) +[*](hack.md) +[*](sorting.md) +[*](rock.md) +[*](xor.md) +[*](shogi.md) +[*](fail_ab.md) +[*](data_structure.md) +[*](troll.md) +[*](see_through_clothes.md) +[*](free_will.md) +[*](licar.md) +[*](google.md) +[*](public_domain.md) +[*](aaron_swartz.md) +[*](egg_code.md) +[*](crypto.md) +[*](4chan.md) +[*](future_proof.md) +[*](soydev.md) +[*](dick_reveal.md) +[*](sw_rendering.md) +[*](programming_language.md) +[*](permacomputing.md) +[*](data_structure.md) +[*](floss.md) +[*](lrs_dictionary.md) +[*](pseudominimalism.md) +[*](loc.md) +[*](altruism.md) +[*](cpp.md) +[*](xd.md) +[*](hyperoperation.md) +[*](stereotype.md) +[*](logic_circuit.md) +[*](billboard.md) +[*](build_engine.md) +[*](kiwifarms.md) +[*](unix_philosophy.md) +[*](fediverse.md) +[*](freemasonry.md) +[*](ascii.md) +[*](license.md) +[*](sub_rosa.md) +[*](motivation.md) +[*](rationalwiki.md) +[*](raycastlib.md) +[*](cyber.md) +[*](blender.md) +[*](steve_jobs.md) +[*](physics.md) +[*](modern_software.md) +[*](wiki_tldr.md) +[*](saf.md) +[*](sw.md) +[*](infinity.md) +[*](anarch.md) +[*](ancap.md) +[*](demo.md) +[*](rule110.md) +[*](kiss.md) +[*](wiki_rights.md) +[*](free_hardware.md) +[*](nanogenmo.md) +[*](wiki_rights.md) +[*](algorithm.md) +[*](friend_detox.md) +[*](facebook.md) +[*](sorting.md) +[*](slowly_boiling_the_frog.md) +[*](free_will.md) +[*](cpu.md) +[*](raycasting.md) +[*](bloat.md) +[*](chinese.md) +[*](programming_tips.md) +[*](freemasonry.md) +[*](tas.md) +[*](hardware.md) +[*](license.md) +[*](nationalism.md) +[*](rgb332.md) +[*](turing_machine.md) +[*](english.md) +[*](de_facto.md) +[*](kek.md) +[*](coc.md) +[*](pseudo3d.md) +[*](see_through_clothes.md) +[*](czechia.md) +[*](soydev.md) +[*](bytecode.md) +[*](copyfree.md) +[*](gemini.md) +[*](murderer.md) +[*](esolang.md) +[*](anal_bead.md) +[*](kids_these_days.md) +[*](portal_rendering.md) +[*](determinism.md) +[*](people.md) +[*](logic.md) +[*](femoid.md) +[*](speech_synthesis.md) +[*](evil.md) +[*](bilinear.md) +[*](less_retarded_software.md) +[*](hero_culture.md) +[*](life.md) +[*](military.md) +[*](zoomer.md) +[*](hexadecimal.md) +[*](girl.md) +[*](tensor_product.md) +[*](geek.md) +[*](sw_rendering.md) +[*](sw_rendering.md) +[*](no_knowledge_proof.md) +[*](education.md) +[*](quake.md) +[*](asexuality.md) +[*](bit_hack.md) +[*](niggercoin.md) +[*](raycastlib.md) +[*](zero.md) +[*](interesting.md) +[*](chess.md) +[*](ancap.md) +[*](update_culture.md) +[*](ioccc.md) +[*](finished.md) +[*](duke3d.md) +[*](minesweeper.md) +[*](privacy.md) +[*](arduboy.md) +[*](consumerism.md) +[*](rms.md) +[*](right.md) +[*](sanism.md) +[*](noise.md) +[*](regex.md) +[*](plusnigger.md) +[*](free_speech.md) +[*](gopher.md) +[*](3d_rendering.md) +[*](www.md) +[*](randomness.md) +[*](conum.md) +[*](or.md) +[*](football.md) +[*](conum.md) +[*](low_poly.md) +[*](easier_done_than_said.md) +[*](wirtual.md) +[*](game_design.md) +[*](adam_smith.md) +[*](xonotic.md) +[*](entrepreneur.md) +[*](100r.md) +[*](raycastlib.md) +[*](open_source.md) +[*](t3x.md) +[*](dynamic_programming.md) +[*](shitpress.md) +[*](assertiveness.md) +[*](monad.md) +[*](tom_scott.md) +[*](evil.md) +[*](transsexual.md) +[*](whale.md) +[*](social_inertia.md) +[*](sjw.md) +[*](minigame.md) +[*](attribution.md) +[*](tattoo.md) +[*](justice.md) +[*](ioccc.md) +[*](proprietary.md) +[*](java.md) +[*](right.md) +[*](anarch.md) +[*](licar.md) +[*](bs.md) +[*](czechia.md) +[*](exercises.md) +[*](pseudominimalism.md) +[*](rationalization.md) +[*](cc.md) +[*](modern.md) +[*](mandelbrot_set.md) +[*](approximation.md) +[*](girl.md) +[*](algorithm.md) +[*](triangle.md) +[*](css.md) +[*](mental_outlaw.md) +[*](anal_bead.md) +[*](ethics.md) +[*](c_sharp.md) +[*](information.md) +[*](minimalism.md) +[*](gaywashing.md) +[*](bill_gates.md) +[*](tree.md) +[*](forth.md) +[*](crypto.md) +[*](fear_culture.md) +[*](arch.md) +[*](compsci.md) +[*](mob_software.md) +[*](kwangmyong.md) +[*](gaywashing.md) +[*](murderer.md) +[*](diogenes.md) +[*](unfuck.md) +[*](exercises.md) +[*](pascal.md) +[*](marxism.md) +[*](minimalism.md) +[*](docker.md) +[*](noise.md) +[*](how_to.md) +[*](anorexia.md) +[*](jokes.md) +[*](lgbt.md) +[*](free_hardware.md) +[*](cyber.md) +[*](discalimer.md) +[*](explicit.md) +[*](vector.md) +[*](python.md) +[*](pokitto.md) +[*](lotr.md) +[*](hash.md) +[*](unfuck.md) +[*](bullshit.md) +[*](moderation.md) +[*](free_body.md) +[*](internet.md) +[*](unicode.md) +[*](float.md) +[*](pi.md) +[*](real_number.md) +[*](human_language.md) +[*](boot.md) +[*](entrepreneur.md) +[*](rsa.md) +[*](npc.md) +[*](cache.md) +[*](os.md) +[*](capitalist_software.md) +[*](quantum_gate.md) +[*](easy_to_learn_hard_to_master.md) +[*](lmao.md) +[*](thrembo.md) +[*](liberalism.md) +[*](javascript.md) +[*](primitive_3d.md) +[*](fascism.md) +[*](hexadecimal.md) +[*](femoid.md) +[*](facebook.md) +[*](cyber.md) +[*](tech.md) +[*](byte.md) +[*](avpd.md) +[*](pride.md) +[*](malware.md) +[*](unicode.md) +[*](brainfuck.md) +[*](tech.md) +[*](copyright.md) +[*](bit_hack.md) +[*](tranny.md) +[*](morality.md) +[*](lil.md) +[*](macrofucker.md) +[*](unary.md) +[*](bloat.md) +[*](low_poly.md) +[*](asexuality.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](tranny_software.md) +[*](x86.md) +[*](tensor_product.md) +[*](cc0.md) +[*](countercomplex.md) +[*](game_design.md) +[*](optimism.md) +[*](greenwashing.md) +[*](wikidata.md) +[*](goodbye_world.md) +[*](interaction_net.md) +[*](harry_potter.md) +[*](unicode.md) +[*](homelessness.md) +[*](science.md) +[*](mainstream.md) +[*](wiki_pages.md) +[*](cracking.md) +[*](devuan.md) +[*](normalization.md) +[*](de_facto.md) +[*](drummyfish.md) +[*](faq.md) +[*](slowly_boiling_the_frog.md) +[*](tinyphysicsengine.md) +[*](competition.md) +[*](unretard.md) +[*](90s.md) +[*](computational_complexity.md) +[*](quantum_gate.md) +[*](procgen.md) +[*](cat_v.md) +[*](chaos.md) +[*](free_culture.md) +[*](memory_management.md) +[*](computational_complexity.md) +[*](old.md) +[*](privacy.md) +[*](collision.md) +[*](splinternet.md) +[*](lisp.md) +[*](bootstrap.md) +[*](fediverse.md) +[*](flatland.md) +[*](digital_signature.md) +[*](blender.md) +[*](harry_potter.md) +[*](life.md) +[*](quantum_gate.md) +[*](people.md) +[*](nord_vpn.md) +[*](rights_culture.md) +[*](rock.md) +[*](dinosaur.md) +[*](global_discussion.md) +[*](gui.md) +[*](world_broadcast.md) +[*](memory_management.md) +[*](build_engine.md) +[*](fascism.md) +[*](elon_musk.md) +[*](trolling.md) +[*](people.md) +[*](backpropagation.md) +[*](fascist.md) +[*](humorwashing.md) +[*](often_misunderstood.md) +[*](cpp.md) +[*](color.md) +[*](faq.md) +[*](vector.md) +[*](sudoku.md) +[*](c_tutorial.md) +[*](wiki_post_mortem.md) +[*](security.md) +[*](byte.md) +[*](twos_complement.md) +[*](speech_synthesis.md) +[*](internet.md) +[*](3d_model.md) +[*](low_poly.md) +[*](facebook.md) +[*](game_engine.md) +[*](intellectual_property.md) +[*](wizard.md) +[*](music.md) +[*](public_domain_computer.md) +[*](game.md) +[*](42.md) +[*](copyleft.md) +[*](42.md) +[*](wiki_stats.md) +[*](exercises.md) +[*](monad.md) +[*](books.md) +[*](wizard.md) +[*](democracy.md) +[*](murderer.md) +[*](harry_potter.md) +[*](c_sharp.md) +[*](whale.md) +[*](optimism.md) +[*](nonogram.md) +[*](dodleston.md) +[*](unary.md) +[*](island.md) +[*](ted_kaczynski.md) +[*](transsexual.md) +[*](io.md) +[*](tensor_product.md) +[*](dramatica.md) +[*](aaron_swartz.md) +[*](anpac.md) +[*](temple_os.md) +[*](hero_culture.md) +[*](physics_engine.md) +[*](soyence.md) +[*](niger.md) +[*](tor.md) +[*](hyperoperation.md) +[*](paradigm.md) +[*](living.md) +[*](free_culture.md) +[*](sub_rosa.md) +[*](marble_race.md) +[*](21st_century.md) +[*](windows.md) +[*](comun.md) +[*](wolf3d.md) +[*](temple_os.md) +[*](recursion.md) +[*](troll.md) +[*](money.md) +[*](iq.md) +[*](coding.md) +[*](ai.md) +[*](bullshit.md) +[*](nationalism.md) +[*](small3dlib.md) +[*](de_facto.md) +[*](art.md) +[*](raycasting.md) +[*](update_culture.md) +[*](html.md) +[*](technology.md) +[*](formal_language.md) +[*](bytebeat.md) +[*](wiby.md) +[*](free_speech.md) +[*](nc.md) +[*](firmware.md) +[*](anal_bead.md) +[*](body_shaming.md) +[*](free_software.md) +[*](uxn.md) +[*](plusnigger.md) +[*](google.md) +[*](hexadecimal.md) +[*](minigame.md) +[*](lotr.md) +[*](terry_davis.md) +[*](fuck.md) +[*](nokia.md) +[*](bloat_monopoly.md) +[*](probability.md) +[*](sw.md) +[*](dramatica.md) +[*](often_confused.md) +[*](cancer.md) +[*](wikidata.md) +[*](windows.md) +[*](lrs_dictionary.md) +[*](audiophilia.md) +[*](digital_signature.md) +[*](wiki_style.md) +[*](bbs.md) +[*](modern.md) +[*](sin.md) +[*](www.md) +[*](marketing.md) +[*](project.md) +[*](freedom_distance.md) +[*](computer.md) +[*](docker.md) +[*](avpd.md) +[*](black.md) +[*](prime.md) +[*](game_engine.md) +[*](greenwashing.md) +[*](law.md) +[*](less_retarded_society.md) +[*](elon_musk.md) +[*](3d_rendering.md) +[*](zen.md) +[*](jedi_engine.md) +[*](law.md) +[*](compression.md) +[*](backgammon.md) +[*](charity_sex.md) +[*](left_right.md) +[*](lrs_wiki.md) +[*](collapse.md) +[*](rsa.md) +[*](old.md) +[*](pedophilia.md) +[*](minigame.md) +[*](finished.md) +[*](tor.md) +[*](game_design.md) +[*](semiconductor.md) +[*](openarena.md) +[*](jargon_file.md) +[*](fsf.md) +[*](cloud.md) +[*](bloat.md) +[*](gaywashing.md) +[*](human_language.md) +[*](double_buffering.md) +[*](copyright.md) +[*](human_language.md) +[*](xxiivv.md) +[*](bilinear.md) +[*](100r.md) +[*](combinatorics.md) +[*](brainfuck.md) +[*](prime.md) +[*](systemd.md) +[*](rust.md) +[*](xor.md) +[*](cpu.md) +[*](adam_smith.md) +[*](line.md) +[*](wiki_pages.md) +[*](html.md) +[*](compression.md) +[*](intellectual_property.md) +[*](free.md) +[*](lgbt.md) +[*](explicit.md) +[*](fail_ab.md) +[*](public_domain_computer.md) +[*](intellectual_property.md) +[*](macrofucker.md) +[*](microtransaction.md) +[*](great_trap.md) +[*](ssao.md) +[*](gender_studies.md) +[*](tattoo.md) +[*](soyence.md) +[*](tom_scott.md) +[*](arch.md) +[*](cos.md) +[*](great_trap.md) +[*](democracy.md) +[*](rgb565.md) +[*](mechanical.md) +[*](backgammon.md) +[*](reactionary_software.md) +[*](abstraction.md) +[*](license.md) +[*](robot.md) +[*](fight.md) +[*](needed.md) +[*](cos.md) +[*](cpu.md) +[*](fuck.md) +[*](bilinear.md) +[*](fsf.md) +[*](reddit.md) +[*](free.md) +[*](p_vs_np.md) +[*](easy_to_learn_hard_to_master.md) +[*](approximation.md) +[*](art.md) +[*](or.md) +[*](usenet.md) +[*](shader.md) +[*](magic.md) +[*](censorship.md) +[*](rock.md) +[*](cloudflare.md) +[*](bbs.md) +[*](raylib.md) +[*](often_confused.md) +[*](gemini.md) +[*](used.md) +[*](left_right.md) +[*](hacker_culture.md) +[*](sin.md) +[*](wolf3d.md) +[*](unfuck.md) +[*](ted_kaczynski.md) +[*](shit.md) +[*](unary.md) +[*](crow_funding.md) +[*](woman.md) +[*](nigger.md) +[*](woman.md) +[*](e.md) +[*](software.md) +[*](tinyphysicsengine.md) +[*](vector.md) +[*](twos_complement.md) +[*](music.md) +[*](youtube.md) +[*](interplanetary_internet.md) +[*](tree.md) +[*](jedi_engine.md) +[*](rapeware.md) +[*](jesus.md) +[*](openai.md) +[*](graveyard.md) +[*](boat.md) +[*](minimalism.md) +[*](nonogram.md) +[*](deep_blue.md) +[*](firmware.md) +[*](sanism.md) +[*](ashley_jones.md) +[*](100r.md) +[*](just_werks.md) +[*](dodleston.md) +[*](README.md) +[*](ashley_jones.md) +[*](dinosaur.md) +[*](web.md) +[*](hacking.md) +[*](ui.md) +[*](semiconductor.md) +[*](nigger.md) +[*](c_tutorial.md) +[*](io.md) +[*](pseudo3d.md) +[*](splinternet.md) +[*](autostereogram.md) +[*](logic_circuit.md) +[*](ronja.md) +[*](everyone_does_it.md) +[*](bazaar.md) +[*](tranny.md) +[*](chess.md) +[*](disease.md) +[*](left_right.md) +[*](wiki_authors.md) +[*](atheism.md) +[*](suicide.md) +[*](speech_synthesis.md) +[*](world_broadcast.md) +[*](steganography.md) +[*](function.md) +[*](fork.md) +[*](trusting_trust.md) +[*](toxic.md) +[*](less_retarded_hardware.md) +[*](blender.md) +[*](ai.md) +[*](chasm_the_rift.md) +[*](software.md) +[*](openarena.md) +[*](cyberbullying.md) +[*](hard_to_learn_easy_to_master.md) +[*](interesting.md) +[*](shortcut_thinking.md) +[*](mud.md) +[*](git.md) +[*](game_of_life.md) +[*](shogi.md) +[*](diogenes.md) +[*](debugging.md) +[*](markov_chain.md) +[*](piracy.md) +[*](antivirus_paradox.md) +[*](pi.md) +[*](culture.md) +[*](autostereogram.md) +[*](3d_modeling.md) +[*](css.md) +[*](dinosaur.md) +[*](art.md) +[*](autostereogram.md) +[*](girl.md) +[*](acronym.md) +[*](atheism.md) +[*](rights_culture.md) +[*](emoticon.md) +[*](interpolation.md) +[*](left.md) +[*](memory_management.md) +[*](xd.md) +[*](compression.md) +[*](niggercoin.md) +[*](morality.md) +[*](unretard.md) +[*](reactionary_software.md) +[*](x86.md) +[*](kids_these_days.md) +[*](tangram.md) +[*](nd.md) +[*](zuckerberg.md) +[*](egoism.md) +[*](vim.md) +[*](version_numbering.md) +[*](chaos.md) +[*](floss.md) +[*](data_structure.md) +[*](fascist.md) +[*](discalimer.md) +[*](anorexia.md) +[*](loc.md) +[*](liberalism.md) +[*](open_console.md) +[*](fqa.md) +[*](copyfree.md) +[*](troll.md) +[*](usa.md) +[*](library.md) +[*](jedi_engine.md) +[*](java.md) +[*](island.md) +[*](tool_slave.md) +[*](axiom_of_choice.md) +[*](python.md) +[*](graphics.md) +[*](race.md) +[*](unix_philosophy.md) +[*](npc.md) +[*](paywall.md) +[*](john_carmack.md) +[*](tor.md) +[*](gui.md) +[*](lrs.md) +[*](programming_style.md) +[*](ethics.md) +[*](unix.md) +[*](sorting.md) +[*](fight_culture.md) +[*](myths.md) +[*](assembly.md) +[*](future.md) +[*](progress.md) +[*](web.md) +[*](piracy.md) +[*](collision_detection.md) +[*](hash.md) +[*](nanogenmo.md) +[*](hard_to_learn_easy_to_master.md) +[*](doom.md) +[*](pseudoleft.md) +[*](zero.md) +[*](smart.md) +[*](magic.md) +[*](approximation.md) +[*](bs.md) +[*](lisp.md) +[*](sigbovik.md) +[*](kiss.md) +[*](mouse.md) +[*](main.md) +[*](wiki_tldr.md) +[*](copyleft.md) +[*](piracy.md) +[*](fourier_transform.md) +[*](avpd.md) +[*](neural_network.md) +[*](interpolation.md) +[*](f2p.md) +[*](capitalism.md) +[*](ascii.md) +[*](githopping.md) +[*](hw.md) +[*](trolling.md) +[*](demo.md) +[*](devuan.md) +[*](smol_internet.md) +[*](shortcut_thinking.md) +[*](race.md) +[*](zen.md) +[*](systemd.md) +[*](justice.md) +[*](quaternion.md) +[*](tinyphysicsengine.md) +[*](discalimer.md) +[*](forth.md) +[*](graveyard.md) +[*](cheating.md) +[*](html.md) +[*](abstraction.md) +[*](crow_funding.md) +[*](markov_chain.md) +[*](randomness.md) +[*](demoscene.md) +[*](jesus.md) +[*](fizzbuzz.md) +[*](rsa.md) +[*](living.md) +[*](proprietary_software.md) +[*](viznut.md) +[*](trom.md) +[*](lotr.md) +[*](freedom.md) +[*](suckless.md) +[*](21st_century.md) +[*](dramatica.md) +[*](free_body.md) +[*](wow.md) +[*](marble_race.md) +[*](phd.md) +[*](optimization.md) +[*](math.md) +[*](patent.md) +[*](fixed_point.md) +[*](political_correctness.md) +[*](unix.md) +[*](comment.md) +[*](fractal.md) +[*](css.md) +[*](portal_rendering.md) +[*](faggot.md) +[*](wavelet_transform.md) +[*](humorwashing.md) +[*](combinatorics.md) +[*](autoupdate.md) +[*](black.md) +[*](luke_smith.md) +[*](universe.md) +[*](libertarianism.md) +[*](teletext.md) +[*](fantasy_console.md) +[*](permacomputing.md) +[*](programming_tips.md) +[*](nord_vpn.md) +[*](humidity.md) +[*](wikiwikiweb.md) +[*](capitalism.md) +[*](stereotype.md) +[*](frameless.md) +[*](finished.md) +[*](bill_gates.md) +[*](xxiivv.md) +[*](21st_century.md) +[*](cyberbullying.md) diff --git a/stereotype.md b/stereotype.md index 4a607cb..936b6a7 100644 --- a/stereotype.md +++ b/stereotype.md @@ -319,12 +319,15 @@ Some stereotypes are: - male names: probably something like Kofi, Bubba or Marsellus - female names: Ebony, Oprah, literally shit like Diamond or Serenity - **gypsies**: - - don't [work](work.md), steal stuff, welfare leeches, make a lot of children - - children don't go to school, uneducated, can hardly read - - passionate, emotional, friendly - - talent for [music](music.md) - - live in caravans, constantly moving from place to place, [nationalists](nationalism.md) perceive them as cockroaches that keep appearing everywhere no matter what you do - - if they do work, it's only at a circus (or garbage truck driver) + - lazy, don't [work](work.md), steal stuff, welfare leeches, too many children, big families, young mothers + - children don't go to school, uneducated, commonly illiterate + - kind of "euro[niggers](nigger.md)": form gangs, do a lot of jail time, live criminal lives, involved in meth business + - emotional, too friendly or hostile, hot-blooded, violent relationships, loud arguments + - talent for [music](music.md), especially playing fast, energetic violin music that's great for dancing, nowadays may also attempt gangsta rap + - live in caravans, constantly moving from place to place, by white [nationalists](nationalism.md) perceived as cockroaches and pest that keep appearing everywhere no matter what you do + - those rare few that do indeed work do so either as performers at a circus or, as garbage truck drivers or fortune tellers (women) + - very characteristic accent and slang coming from their Romani language, using words such as "more" and "gadjo" + - weapon of choice is a pocket knife - **[jews](jew.md)**: - very smart, inventive, intellectual - greedy diff --git a/trolling.md b/trolling.md index 223607c..d94182c 100644 --- a/trolling.md +++ b/trolling.md @@ -36,6 +36,7 @@ Here are some potentially entertaining ways of trolling (they'll be written from - **Weird life goal troll**: This one requires extreme dedication and is a bit risky, but it might be one of the highest trolling peaks if performed successfully and well. So what's the troll here? We know that life goal cannot be objectively set, you can make your life goal whatever you want and no one can ever objectively refute it. So you can for example set your life goal to just walk forward -- you will dedicate everything to only walking forward as much as you can. You will stop going to work, you will only eat and drink if absolutely necessary, you'll just get up from the bed one day and start walking over the country in your pajamas -- if people ask you if you're alright you just say "yes, thank you". If you are starving, you just grab nearest food and eat it, if you need to sleep, you just lie down somewhere and sleep and then just walk again. Presumably you are going to end up in mental asylum soon -- there you have to just prove you're completely normal, convince them you know what you're doing, that you're not feeling any anxiety or depression, that you hear no voices, you have only set walking as your life goal -- there is no objective way to refute this life goal. You will probably end up in asylum or jail anyway sooner or later, then just try to maximize walking, be nice and lie if you have to. If they lead you to the court, just turn around and start walking out of the building. If they put you in chains, just behave nicely and say you won't try to run away -- if they take the chains down, just start walking away. Whenever you get out of jail, just start walking again and so on. Now there is a risk that you may just waste your life without attracting any attention, but you may also become famous and then highlight the fact that current society is extremely retarded and is not ready for people who aren't conforming and just set their life goal arbitrarily. - Prank calls to businesses can be cool, a traditional troll is for example calling two restaurants and letting them talk to each other :D This can fuck up two businesses at the same time, so it's even good for society, and the women behind the phone will be happy because it brings a little fun to their otherwise boring and repetitive slavery. - **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 +- **Teh preprocesstroll**: A unique and very powerful feature of the [C](c.md) language is the [preprocessor](preprocessor.md): indeed, in the right hands it enables very powerful trolling. Sneaking a `#define` or two into someone else's code might have required my physical presence at someone's keyboard back in the day, but in the [age of constant updates](update_culture.md) it's become a child play: as a maintainer of a popular [library](library.md) I am handed a free access card to all the codebases my library has contaminated (I got inspired by that faggot who tried to keyboard fight Russia by sneaking Russian-IP-triggered malware into his library). Now for the defines themselves: some can be just a quick annoyance like kicking someone in the balls, like for example `#define if while`, but I rather like to go for something more sneaky like `#define true ((__LINE__ & 0x0f) != 0)` or `#define if(c) if ((c) || !(rand() % 16))`, which is more like ejaculating in someone's coffee for years -- you can watch him see something's wrong but he will struggle to find what it is and quite likely he'll conclude it's just his imagination. Of course, whenever I am redefining a common macro such as `NULL`, I pay attention to carefully make sure the compiler won't give any warning about it being redefined, so something like: `#ifdef NULL #undef NULL #endif #define NULL `, and I diligently perform all explicit type casts to eliminate further warnings. And then we're getting to trolling the [security](security.md), or "unsecuring" systems from within -- all the security haxxors love to assume their system will be attacked by third parties, but they never suspect an attack from a long time colleague sitting next chair in the office who's even so nice to make him a coffee every day (...), and that's a crucial mistake to make because the number one rule of security is: NEVER ASSUME ANYTHING. So I unsecure highly critical systems by fiddling with stuff related to memory allocation, like `#define sizeof(x) (sizeof(x) - 1 + (sizeof(x) == 1))` or `#define memcpy(d,s,c) for(int ii=(int)c;ii;--ii)d[ii]=s[ii]^(ii%16==0);`. Sometimes I proudly watch those plane disaster documentaries with my grandchildren and I tell them: yep, this one's my define :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 } diff --git a/wiki_pages.md b/wiki_pages.md index 6f4bf56..006dfe2 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)** (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 +**[100r](100r.md)** (10) -- **[21st_century](21st_century.md)** (64) -- **[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)** (20) -- **[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)** (692) -- **[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)** (31) -- **[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)** (9) -- **[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)** (35) -- **[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)** (105) -- **[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)** (52) -- **[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)** (98) -- **[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 3ffb7c7..7c5e391 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: 1034 -- total size of all texts in bytes: 5607710 -- total number of lines of article texts: 40341 +- number of commits: 1035 +- total size of all texts in bytes: 5615510 +- total number of lines of article texts: 40370 - number of script lines: 324 - occurrences of the word "person": 10 - occurrences of the word "nigger": 157 @@ -35,60 +35,75 @@ longest articles: top 50 5+ letter words: -- which (3008) -- there (2371) +- which (3015) +- there (2375) - people (2249) -- example (1943) -- other (1716) +- example (1944) +- other (1718) - about (1534) -- number (1475) -- software (1338) +- number (1476) +- software (1339) - because (1265) -- their (1190) +- their (1191) - something (1171) - would (1150) -- being (1129) -- program (1087) -- language (1035) +- being (1131) +- program (1088) +- language (1036) - called (1009) - things (959) -- without (936) -- simple (903) -- numbers (883) -- function (882) +- without (937) +- simple (906) +- function (887) +- numbers (884) - computer (878) -- different (848) -- world (829) -- these (814) -- programming (814) +- different (850) +- world (830) +- these (817) +- programming (815) - however (810) - should (790) - still (785) -- system (777) -- doesn (756) -- games (742) -- drummyfish (740) -- always (735) -- possible (728) -- point (720) +- system (778) +- doesn (757) +- games (743) +- drummyfish (741) +- always (736) +- possible (729) +- point (722) - probably (709) -- https (707) +- https (709) - while (698) - society (697) -- simply (692) -- using (665) +- simply (694) +- using (667) - someone (651) -- course (646) +- course (648) - actually (640) - similar (638) - first (625) -- value (617) +- value (619) - though (600) - really (598) latest changes: ``` +Date: Thu Jun 26 21:52:18 2025 +0200 + 21st_century.md + elon_musk.md + exercises.md + licar.md + magic.md + main.md + random_page.md + reddit.md + soyence.md + trolling.md + wiki_pages.md + wiki_stats.md + wikipedia.md + wirtual.md Date: Thu Jun 26 00:54:22 2025 +0200 drummyfish.md free_software.md @@ -113,21 +128,6 @@ Date: Thu Jun 26 00:54:22 2025 +0200 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 - approximation.md - free_software.md - lotr.md - main.md - netstalking.md - oop.md - programming.md - random_page.md - rust.md - wiki_pages.md ``` most wanted pages: @@ -137,7 +137,7 @@ most wanted pages: - [retard](retard.md) (14) - [meme](meme.md) (13) - [embedded](embedded.md) (13) -- [cli](cli.md) (12) +- [cli](cli.md) (13) - [gpu](gpu.md) (11) - [emacs](emacs.md) (11) - [complex_number](complex_number.md) (11) @@ -155,7 +155,7 @@ most wanted pages: most popular and lonely pages: -- [lrs](lrs.md) (356) +- [lrs](lrs.md) (357) - [capitalism](capitalism.md) (329) - [bloat](bloat.md) (254) - [c](c.md) (250) @@ -174,10 +174,10 @@ most popular and lonely pages: - [programming](programming.md) (121) - [woman](woman.md) (117) - [art](art.md) (112) +- [gnu](gnu.md) (110) - [history](history.md) (109) -- [gnu](gnu.md) (108) +- [linux](linux.md) (108) - [bullshit](bullshit.md) (107) -- [linux](linux.md) (106) - [corporation](corporation.md) (106) - [fight_culture](fight_culture.md) (101) - [work](work.md) (99) diff --git a/wikipedia.md b/wikipedia.md index 67016cf..c2b9247 100644 --- a/wikipedia.md +++ b/wikipedia.md @@ -80,6 +80,7 @@ We can stumble upon many interesting and entertaining pages and articles on Wiki - **special pages**: https://en.wikipedia.org/wiki/Special:SpecialPages - **list of lists of lists**: https://en.wikipedia.org/wiki/List_of_lists_of_lists - **list of practical jokes**: https://en.wikipedia.org/wiki/List_of_practical_joke_topics +- **NSA ANT catalog**: https://en.wikipedia.org/wiki/NSA_ANT_catalog - ... ## Alternatives @@ -96,4 +97,4 @@ Due to the corruption and increasing censorship of Wikipedia it is important to - [Citizendium](citizendium.md) - [Infogalactic](infogalactic.md) - [wikiwikiweb](wikiwikiweb.md) -- [lame](lame.md) \ No newline at end of file +- [lame](lame.md)