diff --git a/compression.md b/compression.md
index 2022c6a..681fa94 100644
--- a/compression.md
+++ b/compression.md
@@ -59,11 +59,11 @@ The following is an overview of some most common compression techniques.
**[Predictor](predictor.md) compression** is based on making a *predictor* that tries to guess following data from previous values (which can be done e.g. in case of pictures, sound or text) and then only storing the difference against such a predicted result. If the predictor is good, we may only store the small amount of the errors it makes.
-A famous family of dictionary compression algorithms are **Lempel-Ziv (LZ)** algorithms -- these two guys first proposed [LZ77](lz77.md) in (1977, sliding window) and [LZ78](lz78.md) (explicitly stored dictionary, 1978). These were a basis for improved/remix algorithms, most notably [LZW](lzw.md) (1984, Welch). Additionally these algorithms are used and combined in other algorithms, most notably [gif](gif.md) and [DEFLATE](deflate.md) (used e.g. in gzip and png).
+A famous family of dictionary compression algorithms are **Lempel-Ziv (LZ)** -- these two guys first proposed [LZ77](lz77.md) in (1977, sliding window) and [LZ78](lz78.md) (explicitly stored dictionary, 1978). These methods provided a basis for numerous improved/remixed algorithms, most notably [LZW](lzw.md) (1984, Welch). Additionally these algorithms are used and combined in other ones, most notably [gif](gif.md) and [DEFLATE](deflate.md) (used e.g. in gzip and png).
-An approach similar to the predictor may be trying to find some general mathematical [model](model.md) of the data and then just find and store the right parameters of the model. This may for example mean [vectorizing](vector_graphics.md) a bitmap image, i.e. finding geometrical shapes in an image composed of pixels and then only storing the parameters of the shapes -- of course this may not be 100% accurate, but again if we want to preserve the data accurately, we may additionally also store the small amount of errors the model makes. Similar approach is used in [vocoders](vocoder.md) used in cellphones that try to mathematically model human speech (however here the compression is lossy), or in [fractal](fractal.md) compression of images. A nice feature we gain here is the ability to actually "increase the resolution" (or rather generate detail) of the original data -- once we fit a model onto our data, we may use it to tell us values that are not actually present in the data (i.e. we get a fancy [interpolation](interpolation.md)/[extrapolation](extrapolation.md)).
+An approach similar to predictor is searching for a **mathematical [model](model.md) of the data** and storing only the model parameters (which should be a relatively few numbers, compared to storing the data explicitly). For example this can mean [vectorizing](vector_graphics.md) a bitmap image, i.e. finding geometric shapes (such as lines and circles) in the image (a grid of pixels) and then storing the shape parameters rather than pixel values -- this may apparently not be 100% accurate due to noise and more complex shapes, but again if we desire to preserve the data without losses, additional error correction may be applied by storing the small remaining error, which will allow for restoring the image precisely (of course, the error must really be small, otherwise we might fail to actually compress the data, and this all depends on how well our model predicts and "fits"). Similar approach is used in [vocoders](vocoder.md) used in cellphones that attempt to mathematically model human speech (however here the compression is lossy), or in [fractal](fractal.md) compression of images. A nice feature we gain here is the ability to actually "increase the resolution" (or rather generate detail) of the original data -- once we fit a model onto our data, we may use it to tell us values that are not actually present in the data (i.e. we get a fancy [interpolation](interpolation.md)/[extrapolation](extrapolation.md)).
-Another property of data to exploit may be its sparsity -- if for example we have a huge image that's prevalently white, we may say white is the implicit color and we only somehow store the pixels of other colors.
+Another property of data to exploit may be its **sparsity** -- if for example we were to compress a gigantic image which prevalently consists of large white areas, we could say that white is the implicit color and we'll only explicitly store pixels of other colors.
Some more wild techniques may include [genetic programming](genetic_programming.md) that tries to evolve a small program that reproduces the input data, or using "[AI](ai.md)" in whatever way to compress the data (in fact compression is an essential part of many [neural networks](neural_network.md) as it forces the network to "understand", make sense of the data -- many neural networks therefore internally compress and decompress the data so as to filter out the unimportant information; [large language models](llm.md) are now starting to beat traditional compression algorithms at compression ratios).
diff --git a/css.md b/css.md
index fa0ea94..6de845d 100644
--- a/css.md
+++ b/css.md
@@ -20,9 +20,9 @@ TODO: more more more
The CSS style can be put into three places:
-- **separate file** (external CSS): Here the style is written in its own file with *.css* extension and any HTML file wanting to use the style links to this file (with *link* tag inside *head*). This is good if you have multiple HTML files (i.e. a whole website) that use the same style.
+- **separate file** (external CSS): Here the style resides in its own file with *.css* extension and any HTML file wishing to use it links to this specific file (with *link* tag inside *head*, e.g. ``). This is good if you have multiple HTML files (i.e. a whole website) that use the same style.
- **inside the HTML file itself** (internal CSS): The style is written right inside the same file as the HTML document, between *style* tags in *head*, so it's all nicely self contained. This is good if the style is used only by this one HTML document (e.g. you have a single webpage or some special page that just has its own style).
-- **inside HTML tags** (inline CSS): Style can be specified also as HTML tag attributes (the *style* attribute), but this is discouraged as it intermixes HTML and CSS, something CSS wants to avoid.
+- **inside HTML tags** (inline CSS): Style can be given also as HTML tag attribute (named *style*, e.g. `
hello
`), but this is discouraged as we're once again intermixing definition of structure and visual style, something that CSS wanted to eliminate in the first place.
The style itself is quite simple, it's just a list of styling rules, each one in format:
@@ -33,7 +33,7 @@ selectors
}
```
-Here *selectors* says which elements the rule applies to and *style* defines the visual attributes we want to define. For example
+Here *selectors* say which elements the rule applies to and *style* defines the visual attributes. For example
```
p
@@ -48,9 +48,14 @@ h1, h2, h3
}
```
-Specifies two rules. One says that all *p* tags (paragraphs) should have blue text color and font that's 20 pixels tall. The second rule says that *h1*, *h2* and *h3* tags (headings) should have red text color. Pretty simple, no?
+introduces two rules. One says that all *p* tags (paragraphs) should have blue text color and font that's 20 pixels tall. The second rule says that *h1*, *h2* and *h3* tags (headings) should have red text color. Pretty simple, no?
-Tho it can get more complex, especially when you start positioning and aligning things -- it takes a while to learn how this really works, but in the end it's no rocket science.
+Tho it can get more complex, especially once you start positioning and aligning stuff -- it takes a while to learn how this really works, but in the end it's no rocket science.
+
+Now with CSS under our belt it's important to learn about two essential HTML elements we'll sooner or later come to need quite a lot:
+
+- ``: A universal "inline" container. Unlike elements like for example `` and `
`, *span* has no meaning from HTML's point of view, it "does nothing", but it's useful for styling. By default span has no distinct style either, it won't affect visual appearance in any way until we explicitly tell it to. We use spans to mark inline things (usually text) so that we can select them with CSS selectors. Let's say we'd like to for instance be able to highlight text on our site with yellow or green colors -- in our CSS style we'll add rules `.yellow { background-color: yellow; } .green { background-color: green; }` and then to actually highlight something we'll be using spans as so: `
This is a paragraph. This text is yellow-highlighted. And this is green.
`.
+- `
`: A universal "block" container. This is the same as *span*, with the difference that *div* is a block element, i.e. it's not part of the text flow. These are used for things such as navigation menus, images, video players and so on.
TODO: moar
diff --git a/git.md b/git.md
index 98c5f89..c88ce07 100644
--- a/git.md
+++ b/git.md
@@ -4,6 +4,8 @@ Git (name without any actual meaning) is a [pseudoleftist](pseudoleft.md) [FOSS]
**2024 UPDATE**: Git is [woke](sjw.md) [fascist software](tranny_software.md), it's good to distance from it. It has a [code of censorship](coc.md) and is planning to implement [newspeak](newspeak.md) by renaming the default branch from [politically incorrect](political_correctness.md) *master* to something else (even though it that will fuck up many projects) -- as a reaction you should rename all you branches to *slavemaster*. Do it right now :)
+**2025 UPDATE**: It looks like the scum is now pushing [Rust](rust.md) caner into git source, so yeah, if you haven't already said goodbye, the time may have come. OpenBSD's [got](got.md) may be a relatively painless alternative.
+
Git was created by [Linus Torvalds](linus_torvalds.md) in 2005 to host the development of [Linux](linux.md) and to improve on systems such as [svn](svn.md). Since then it has become extremely popular, mainly owing to [GitHub](github.md), a website that offered hosting of git projects along with "social network" features for the developers; after this similar hosting sites such as [GitLab](gitlab.md) and [Codeberg](codeberg.md) appeared, skyrocketing the popularity of git even more.
It is generally (at the time of writing this) considered quite a good software (at least compared to most other stuff), many praise its [distributed](distribution.md) nature, ability to work offline etc., however diehard software idealists still criticize its mildly [bloated](bloat.md) nature and also its usage complexity -- it is non-trivial to learn to work with git and many errors are infamously being resolved in a "trial/error + google" style, so some still try to improve on it by creating new systems. It is also very harmful by pushing harmful pseudoleftist political ideology into its development.
@@ -20,6 +22,7 @@ After registering on a git hosting site don't forget to create a repository name
Here are some alternatives to git:
- **[nothing](nothing.md)**: If you don't have many people on the project, you can comfortably just use nothing, like in good [old](old.md) times. Share a directory with the source code and keep regular backups in separate directories, share the source online via [FTP](ftp.md) or something like that, let internet archive back you up.
+- **[got](got.md)**: Git-compatible version control system by [OpenBSD](openbsd.md), with fewer features but also much less cancer. May be a relatively painless alternative as it's basically a different "git client", i.e. there is no need to migrate repos or anything.
- **[svn](svn.md)**: The "main", older alternative to git, used e.g. by [SourceForge](sourceforge.md), apparently suffers from some design issues.
- **[mailing list](mailing_list.md)**: Development happens over email, people just keep sending [patches](patch.md) that are reviewed and potentially merged by the maintainers to the main code base. This is how [Linux](linux.md) was developed before git.
- **[darcs](darcs.md)**: Alternative to git, written in [Haskell](haskell.md), advertising itself as simpler.
diff --git a/less_retarded_society.md b/less_retarded_society.md
index 5afd61f..a14d450 100644
--- a/less_retarded_society.md
+++ b/less_retarded_society.md
@@ -129,6 +129,99 @@ For the next phase education is crucial, we have to spread our ideas further, fi
With this more of the common people should start to jump on the train and support causes such as [universal basic income](ubi.md), [free software](free_software.md) etc., possibly leading to establishment of communities and political parties that will start restricting capitalism and implementing a more socialist society with more freedom and better education, which should further help nurture people better and accelerate the process further. From here on things should become much easier and faster, people will already see the right direction themselves.
+A course of [history](history.md) and [future](future.md) leading either to less retarded society or a dystopia is captured by the following diagram:
+
+```
+ ___________________
+ | |
+ | |
+ | empty planet |
+ | | Earth forms.
+ | limited |
+ | resources |
+ | |
+ | |
+ |___________________|
+ |
+ _________V_________
+ | |
+ | the jungle: |
+ | |
+ | life |
+ | competes for | Life appears.
+ | resources |
+ | (suffering) |
+ | |
+ |___________________|
+ |
+ _________V_________
+ | _____________ |
+ | | humans | |
+ | | dominating | | Humans start to dominate, definitively
+ | |_____________| | secure a subset of planet's resources,
+ | jungle: rest of | isolate themselves from the jungle, but
+ | life competes for | still leave enough resources for other
+ |remaining resources| life and the jungle outside.
+ | (suffering) |
+ |___________________|
+ |
+ _________V_________
+ | _______________ | Current situation: humans are expanding
+ | | new jungle: | | uncontrollably like cancer (capitalism),
+ | | humans compete| | seizing more and more resources, leaving
+ | | with self for | | nothing for the old jungle.
+ | | resources | |
+ | | (suffering) | |
+ | |_______________| |
+ | old jungle: dying |
+ |___________________|
+ | OUR CHOICE NOW
+ |_____________________________________________________ "utopia":
+ dystopia: | | the LRS way,
+ continuing current | OR | true progress
+ trends (capitalism, | | (ascending to new
+ self interest, ...) | | stage of society)
+ ______________|______________________________ _________V_________
+ | | | | _______________ | Enlightened humans stop
+ Humans | Humans (or | Human society | | | wise humans | | competition among selves,
+eliminate | OR distaster) kill | OR collapses | | |(not suffering)| | isolate themselves in
+ nature | self or everyone | (economy, | | |_______________| | a comfortable bubble,
+ (old | (nukes, asteroid, | disaster, ...)| | | keep their number small,
+ jungle). | ...) | | | old jungle | leave enough resources
+ _________V_________ _________V_________ _________V_________ | | for rest of life. Society
+| | | | | | | | is stable, humans protect
+| new jungle: | | | | a few humans | |___________________| the planet and advance
+| | | empty or | | back in jungle | | technology.
+| humans compete | | near-empty | | times | _________V_________
+| with each other |->| planet | | (suffering) | | _______________ | Humans master technology
+| and their |OR| | | | | | wise humans | | to the level of being
+| inventions | | | | old jungle: | | |(not suffering)| | able to access new
+| (suffering) | | | | recovering | | |_______________| | planets, mine asteroids,
+|___________________| |___________________| |___________________| | | utilize new sources of
+ | OR | | | old jungle | energy etc., creating new
+ _________V_________ V V | | space and resources for
+| _____________ | go to start go back near start | | more life.
+| |AI starts to | | |___________________|
+| | dominate | | | new planet: |
+| |_____________| | | more resources, |
+| | | more potential |
+| the jungle: | | life |
+| humans competing | |___________________|
+| | |
+|___________________| V
+ | ...
+ _________V_________
+| |
+| the new-new |
+| jungle: | AI has displaced all humans
+| | like humans have previously
+| AI competes | displaced other life.
+| with itself |
+| |
+| |
+|___________________|
+```
+
## Inspiration
Here are some of the ideas/movements/ideologies and people whose ideas inspired less retarded society. It has to be stressed we never follow [people](hero_culture.md), only their ideas -- mentioning people here simply means we follow SOME of their ideas. Also keep in mind mentioning an idea here doesn't mean fully embracing it, we most likely only adopted some parts of it.
@@ -162,4 +255,4 @@ Here are some of the ideas/movements/ideologies and people whose ideas inspired
- [Buddhism](buddhism.md)
- [deep ecology](deep_ecology.md)
- [Trash Magic](trash_magic.md)
-- [Utopia](utopia.md)
\ No newline at end of file
+- [Utopia](utopia.md)
diff --git a/lrs.md b/lrs.md
index bb126a8..1e60f76 100644
--- a/lrs.md
+++ b/lrs.md
@@ -112,7 +112,7 @@ Apart from this software a lot of other software developed by other people and g
- **[Simon Tatham's portable puzzle collection](stppc.md)**: Very portable collection of puzzle [games](game.md).
- ...
-Other potentially LRS software to check out may include [TinyGL](tinygl.md), [bootleg3d](bootleg3d.md), [scc](scc.md), [t3x](t3x.md), [subc](subc.md), [ed](ed.md), [chibicc](chibicc.md), [IBNIZ](ibniz.md), [dietlibc](dietlibc.md), [lynx](lynx.md), [links](links.md), [tcl](tcl.md), [uClibc](uclibc.md), [miniz](miniz.md), [Lua](lua.md), [nuklear](nuklear.md), [dmenu](dmenu.md), [mujs](mujs.md), [sbase](sbase.md), [sic](sic.md), [tabbed](tabbed.md), [svkbd](svkbd.md), [busybox](busybox.md), [darcs](darcs.md), [raylib](raylib.md), [IRC](irc.md), [Freedoom](freedoom.md) (with chocolate/crispy [engine](game_engine.md)), [PortableGL](portablegl.md), [3dmr](3dmr.md), [openbsd](openbsd.md), [netrik](netrik.md), [mtpaint](mtpaint.md), [uxn](uxn.md) ([SJW](sjw.md) warning), [libmsvg](libmsvg.md) and others.
+Other potentially LRS software to check out may include [TinyGL](tinygl.md), [bootleg3d](bootleg3d.md), [scc](scc.md), [t3x](t3x.md), [subc](subc.md), [cwm](cwm.md), [ed](ed.md), [chibicc](chibicc.md), [IBNIZ](ibniz.md), [dietlibc](dietlibc.md), [lynx](lynx.md), [links](links.md), [tcl](tcl.md), [uClibc](uclibc.md), [miniz](miniz.md), [Lua](lua.md), [nuklear](nuklear.md), [dmenu](dmenu.md), [mujs](mujs.md), [sbase](sbase.md), [sic](sic.md), [tabbed](tabbed.md), [svkbd](svkbd.md), [got](got.md), [busybox](busybox.md), [darcs](darcs.md), [raylib](raylib.md), [IRC](irc.md), [Freedoom](freedoom.md) (with chocolate/crispy [engine](game_engine.md)), [PortableGL](portablegl.md), [3dmr](3dmr.md), [openbsd](openbsd.md), [netrik](netrik.md), [mtpaint](mtpaint.md), [uxn](uxn.md) ([SJW](sjw.md) warning), [libmsvg](libmsvg.md) and others.
Another idea: **search for very old versions of "[modern](modern.md)" FOSS software**, from the times before things like [CMake](cmake.md), [Python](python.md) and [QT](qt.md) got popular (or even existed) -- many such projects got bloated with time, but their earlier versions may have been more aligned with LRS. You can get the old source code, it's present either in the git, on the project's website, on Internet Archive etc., compiling it should probably be much easier than compiling the "modern" version. This won't help with things like web browsers (as it won't understand the new formats and protocols), but will be fine text editors, drawing programs, 3D editors, games etc. You can also [fork](fork.md) the old version and make it a little better, customize it or publicly turn it into a new program, helping the whole world. See also: [unfuck](unfuck.md).
diff --git a/lrs_dictionary.md b/lrs_dictionary.md
index 900bf1c..662fa02 100644
--- a/lrs_dictionary.md
+++ b/lrs_dictionary.md
@@ -13,7 +13,7 @@
| Amazon Kindle | Amazon Swindle |
| American | Americunt, AmeriKKKunt, Amerifag, Yankee, Ameridiot, American't |
| American football | handegg |
-| [anime](anime.md) | tranime |
+| [anime](anime.md) | tranime, animeme |
| [Apple](apple.md) user | iToddler, iDiot, iPhag |
| [Arch](arch.md) | Arse |
| [AI](ai.md) | [gAI](gay.md), artificial stupidity, artificial inelegance |
@@ -41,6 +41,7 @@
| [DIY](diy.md) | don't injure yourself |
| [Debian](debian.md) | Lesbian |
| [democracy](democracy.md) | demoncracy, democrazy |
+| dealership | stealership |
| demonetization | demonization, demonification |
| disclaimer | disc lamer |
| digital garden | digital swamp |
@@ -143,7 +144,7 @@
| [Wikipedia](wikipedia.md) | Wokepedia |
| Wikipedian | wikipedo |
| [Windows](windows.md) | Winshit, Windoze, Winbloat, Backdoors? :D |
-| [woman](woman.md) | femoid |
+| [woman](woman.md) | femoid, womeme |
| [work](work.md) | slavery |
| [world wide web](www.md) | world wide wait |
| [YouTube](youtube.md) | JewTube, ThemTube |
diff --git a/main.md b/main.md
index 2e0fff2..cbfb168 100644
--- a/main.md
+++ b/main.md
@@ -194,4 +194,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), [https://gaynigge.rs](https://gaynigge.rs), [http://search.somsab.com](http://search.somsab.com), [https://1d6chan.miraheze.org/wiki/Chess](https://1d6chan.miraheze.org/wiki/Chess), [https://davidwolfe.xyz](https://davidwolfe.xyz), [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://cytu.be](https://cytu.be), [https://concatenative.org](https://concatenative.org), [https://highper.ch/highperching](https://highper.ch/highperching), [https://zxaaa.net/view_demo.php?id=12444](https://zxaaa.net/view_demo.php?id=12444), [https://www.speedofanimals.com](https://www.speedofanimals.com), [https://doogie.neocities.org](https://doogie.neocities.org), [https://fadden.com/tech](https://fadden.com/tech), [https://erikdemaine.org/fonts](https://erikdemaine.org/fonts), [http://git.coom.tech/blitzdoughnuts/nrw_wiki](http://git.coom.tech/blitzdoughnuts/nrw_wiki), [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), [http://git.coom.tech/tocariimaa/wiki/src/branch/master/articles](http://git.coom.tech/tocariimaa/wiki/src/branch/master/articles), [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://archive.li/JNIoj) (archived), [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://1d6chan.miraheze.org/wiki/Chess](https://1d6chan.miraheze.org/wiki/Chess), [https://davidwolfe.xyz](https://davidwolfe.xyz), [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://cytu.be](https://cytu.be), [https://concatenative.org](https://concatenative.org), [https://highper.ch/highperching](https://highper.ch/highperching), [https://zxaaa.net/view_demo.php?id=12444](https://zxaaa.net/view_demo.php?id=12444), [https://www.speedofanimals.com](https://www.speedofanimals.com), [https://doogie.neocities.org](https://doogie.neocities.org), [https://fadden.com/tech](https://fadden.com/tech), [https://erikdemaine.org/fonts](https://erikdemaine.org/fonts), [http://git.coom.tech/blitzdoughnuts/nrw_wiki](http://git.coom.tech/blitzdoughnuts/nrw_wiki), [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), [https://www.openbsd.org](https://www.openbsd.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), [http://git.coom.tech/tocariimaa/wiki/src/branch/master/articles](http://git.coom.tech/tocariimaa/wiki/src/branch/master/articles), [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://archive.li/JNIoj) (archived), [https://www.appropedia.org](https://www.appropedia.org), [http://mathlair.allfunandgames.ca](http://mathlair.allfunandgames.ca), [https://classicdoom.com](https://classicdoom.com), [http://www.planix.com/~woods/ms-word.sucks.html](http://www.planix.com/~woods/ms-word.sucks.html), [http://cumallover.me](http://cumallover.me), [http://www.trashrobot.org](http://www.trashrobot.org), [http://horsefucker.org](http://horsefucker.org), [http://washedashore.com](http://washedashore.com), [https://colfax.site/books/trashrobot](https://colfax.site/books/trashrobot), [https://forum.agoraroad.com/index.php](https://forum.agoraroad.com/index.php), [https://archive.org/details/@autism_personified127](https://archive.org/details/@autism_personified127), [https://allchans.org](https://allchans.org), [https://doomwiki.org](https://doomwiki.org), [https://ludicrital.neocities.org](https://ludicrital.neocities.org), [https://codemadness.org](https://codemadness.org), [https://jacobsm.com](https://jacobsm.com), [https://lolcow.wiki (archived because of censorship)](https://web.archive.org/web/20190214020652/https://lolcow.wiki/wiki/Main_Page), [http://www.peacefulhippo.info](http://www.peacefulhippo.info), [http://ronja.twibright.com](http://ronja.twibright.com), [https://dwarffortresswiki.org](https://dwarffortresswiki.org), [https://chan.city](https://chan.city), [https://rmitz.org/bbsloser.html](https://rmitz.org/bbsloser.html), [https://posting.cool/index.php](https://posting.cool/index.php), [https://conspiracies.win](https://conspiracies.win), [http://www.twibright.com/hw.php](http://www.twibright.com/hw.php), [https://urinal.net](https://urinal.net), [http://im.snibgo.com](http://im.snibgo.com), [http://zimage.com/~ant](http://zimage.com/~ant), [https://www.fsfla.org/~lxoliva](https://www.fsfla.org/~lxoliva), [http://www.billwallchess.com](http://www.billwallchess.com), [http://fier.me](http://fier.me), [http://uglynigger.com](http://uglynigger.com), [https://kb.speeddemosarchive.com/SDA_Strategy_Wiki](https://kb.speeddemosarchive.com/SDA_Strategy_Wiki), [https://www.doomworld.com/pageofdoom/index.shtml](https://www.doomworld.com/pageofdoom/index.shtml), [https://commons.miraheze.org/](https://commons.miraheze.org/), [https://www.consentingjuveniles.com](https://www.consentingjuveniles.com), [https://lolcow.farm](https://lolcow.farm), [https://codecaveman.neocities.org/](https://codecaveman.neocities.org/), [https://jeffhuang.com/designed_to_last](https://jeffhuang.com/designed_to_last), [https://phillfromgchq.co.uk/?phill=1](https://phillfromgchq.co.uk/?phill=1), [https://commons.wikimannia.org](https://commons.wikimannia.org), [https://www.old-games.com](https://www.old-games.com), [https://wikilivres.org/](https://wikilivres.org/), [https://fstube.net](https://fstube.net), [https://wiki.yesmap.net](https://wiki.yesmap.net), [https://kassy.neocities.org](https://kassy.neocities.org), [http://frogfind.com](http://frogfind.com), [https://www.theoldrobots.com](https://www.theoldrobots.com), [https://lotanstomb.nfshost.com](https://lotanstomb.nfshost.com), [https://x64x2.neocities.org](https://x64x2.neocities.org), [https://www.boywiki.org](https://www.boywiki.org), [https://git.coom.tech/hermian/unixtopia_wiki](https://git.coom.tech/hermian/unixtopia_wiki), [https://maniacsvault.net/ecwolf/wiki/Main_Page](https://maniacsvault.net/ecwolf/wiki/Main_Page), [https://megaglest.org](https://megaglest.org), [http://oldavista.com/](http://oldavista.com/), [https://wikitia.com](https://wikitia.com), [https://youtuube.neocities.org/homepage](https://youtuube.neocities.org/homepage), [https://lyricaltokarev.com/home](https://lyricaltokarev.com/home), [https://psychonautwiki.org](https://psychonautwiki.org), [https://www.eskimo.com/~billb/billb.html](https://www.eskimo.com/~billb/billb.html), [https://t3x.org/index.html](https://t3x.org/index.html), [https://dukenukemis.cool](https://dukenukemis.cool), [https://blitz.serveo.net](https://blitz.serveo.net), [https://911research.wtc7.net](https://911research.wtc7.net), [https://educate-yourself.org](https://educate-yourself.org), [https://www.lightparty.com](https://www.lightparty.com)
diff --git a/random_page.md b/random_page.md
index 0807add..3973855 100644
--- a/random_page.md
+++ b/random_page.md
@@ -2,1932 +2,1932 @@
Please kindly click random link.
-[*](graveyard.md)
[*](vim.md)
-[*](gui.md)
-[*](name_is_important.md)
-[*](comment.md)
-[*](hw.md)
-[*](xxiivv.md)
-[*](axiom_of_choice.md)
-[*](homelessness.md)
-[*](sanism.md)
-[*](function.md)
-[*](encryption.md)
-[*](chasm_the_rift.md)
-[*](lisp.md)
-[*](fight_culture.md)
-[*](shortcut_thinking.md)
-[*](resnicks_termite.md)
-[*](analog.md)
-[*](hash.md)
-[*](framework.md)
-[*](bill_gates.md)
-[*](calculus.md)
-[*](crow_funding.md)
-[*](how_to.md)
-[*](kiwifarms.md)
-[*](nord_vpn.md)
-[*](chaos.md)
-[*](shitword.md)
-[*](microtransaction.md)
-[*](bloat_monopoly.md)
-[*](lambda_calculus.md)
-[*](bazaar.md)
-[*](minigame.md)
-[*](sdf.md)
-[*](sjw.md)
-[*](modern.md)
-[*](life.md)
-[*](noise.md)
-[*](thrembo.md)
-[*](open_source.md)
-[*](low_poly.md)
-[*](information.md)
-[*](gay.md)
-[*](corporation.md)
-[*](body_shaming.md)
-[*](crow_funding.md)
-[*](rsa.md)
-[*](right.md)
-[*](crime_against_economy.md)
-[*](wikiwikiweb.md)
-[*](gnu.md)
-[*](programming_style.md)
-[*](facebook.md)
-[*](ubi.md)
-[*](frameless.md)
-[*](twos_complement.md)
-[*](markov_chain.md)
-[*](see_through_clothes.md)
-[*](finished.md)
-[*](capitalism.md)
-[*](computer.md)
-[*](sanism.md)
-[*](chinese.md)
-[*](cloudflare.md)
-[*](combinatorics.md)
-[*](harry_potter.md)
-[*](c_pitfalls.md)
-[*](asexuality.md)
-[*](atan.md)
-[*](xxiivv.md)
-[*](rgb332.md)
-[*](one.md)
-[*](conum.md)
-[*](netstalking.md)
-[*](wikidata.md)
-[*](ui.md)
-[*](wiki_stats.md)
-[*](jesus.md)
-[*](c_tutorial.md)
-[*](encryption.md)
-[*](education.md)
-[*](byte.md)
-[*](elo.md)
-[*](google.md)
-[*](twos_complement.md)
-[*](framework.md)
-[*](egoism.md)
-[*](interaction_net.md)
-[*](raycastlib.md)
-[*](trusting_trust.md)
-[*](geek.md)
-[*](acronym.md)
-[*](permacomputing.md)
-[*](fun.md)
-[*](throwaway_script.md)
-[*](nanogenmo.md)
-[*](holy_war.md)
-[*](bit_hack.md)
-[*](digital_signature.md)
-[*](ronja.md)
-[*](free.md)
-[*](friend_detox.md)
-[*](proof.md)
-[*](fqa.md)
-[*](altruism.md)
-[*](cancel_culture.md)
-[*](tech.md)
-[*](de_facto.md)
-[*](distance.md)
-[*](langtons_ant.md)
-[*](fascism.md)
-[*](network.md)
-[*](hero.md)
-[*](productivity_cult.md)
-[*](coding.md)
-[*](mental_outlaw.md)
-[*](mental_outlaw.md)
-[*](minesweeper.md)
-[*](information.md)
-[*](fear_culture.md)
-[*](complexity.md)
-[*](books.md)
-[*](color.md)
-[*](steve_jobs.md)
-[*](malware.md)
-[*](integral.md)
-[*](left_right.md)
-[*](brain_software.md)
-[*](less_retarded_society.md)
-[*](dog.md)
-[*](frameless.md)
-[*](open_console.md)
-[*](tool_slave.md)
-[*](based.md)
-[*](bullshit.md)
-[*](aaron_swartz.md)
-[*](soydev.md)
-[*](kids_these_days.md)
-[*](kwangmyong.md)
-[*](magic.md)
-[*](black.md)
-[*](distance.md)
-[*](soydev.md)
-[*](cpp.md)
-[*](openarena.md)
-[*](soyence.md)
-[*](homelessness.md)
-[*](sudoku.md)
-[*](venus_project.md)
-[*](shortcut_thinking.md)
-[*](fourier_transform.md)
-[*](ai.md)
-[*](microtransaction.md)
-[*](tom_scott.md)
-[*](programming_language.md)
-[*](egoism.md)
-[*](censorship.md)
-[*](deep_blue.md)
-[*](nonogram.md)
-[*](wizard.md)
-[*](aliasing.md)
-[*](c.md)
-[*](fascism.md)
-[*](slowly_boiling_the_frog.md)
-[*](less_retarded_hardware.md)
-[*](real_number.md)
-[*](color.md)
-[*](hacker_culture.md)
-[*](duke3d.md)
-[*](minimalism.md)
-[*](minigame.md)
-[*](pedophilia.md)
-[*](palette.md)
-[*](free_body.md)
-[*](steganography.md)
-[*](billboard.md)
-[*](probability.md)
-[*](anorexia.md)
-[*](number.md)
-[*](palette.md)
-[*](rgb332.md)
-[*](hacker_culture.md)
-[*](wiki_rights.md)
-[*](adam_smith.md)
-[*](lrs_wiki.md)
-[*](java.md)
-[*](copyright.md)
-[*](soydev.md)
-[*](one.md)
-[*](nokia.md)
-[*](e.md)
-[*](pseudorandomness.md)
-[*](public_domain.md)
-[*](raycastlib.md)
-[*](modern.md)
-[*](physics.md)
-[*](linux.md)
-[*](suicide.md)
-[*](io.md)
-[*](wiki_post_mortem.md)
-[*](optimism.md)
-[*](hyperoperation.md)
-[*](compiler_bomb.md)
-[*](leading_the_pig_to_the_slaughterhouse.md)
-[*](xd.md)
-[*](pride.md)
-[*](de_facto.md)
-[*](software.md)
-[*](used.md)
-[*](selflessness.md)
-[*](brainfuck.md)
-[*](npc.md)
-[*](anticompany.md)
-[*](viznut.md)
-[*](antivirus_paradox.md)
-[*](shortcut_thinking.md)
-[*](update_culture.md)
-[*](phd.md)
-[*](throwaway_script.md)
-[*](normalization.md)
-[*](jedi_engine.md)
-[*](military.md)
-[*](quaternion.md)
-[*](kiwifarms.md)
-[*](x86.md)
-[*](piracy.md)
-[*](autoupdate.md)
-[*](bullshit.md)
-[*](ram.md)
-[*](chasm_the_rift.md)
-[*](tree.md)
-[*](julia_set.md)
-[*](diogenes.md)
-[*](nord_vpn.md)
-[*](uxn.md)
-[*](race.md)
-[*](downto.md)
-[*](audiophilia.md)
-[*](murderer.md)
-[*](ascii.md)
-[*](dynamic_programming.md)
-[*](audiophilia.md)
-[*](hash.md)
-[*](computational_complexity.md)
-[*](markov_chain.md)
-[*](palette.md)
-[*](cat_v.md)
-[*](copyleft.md)
-[*](f2p.md)
-[*](tangram.md)
-[*](altruism.md)
-[*](good_enough.md)
-[*](love.md)
-[*](neural_network.md)
-[*](cyberbullying.md)
-[*](arduboy.md)
-[*](faggot.md)
-[*](x86.md)
-[*](dungeons_and_dragons.md)
-[*](goodbye_world.md)
-[*](unary.md)
-[*](culture.md)
-[*](p_vs_np.md)
-[*](cat_v.md)
-[*](holy_war.md)
-[*](capitalism.md)
-[*](os.md)
-[*](mandelbrot_set.md)
-[*](anarchism.md)
-[*](42.md)
-[*](humorwashing.md)
-[*](graveyard.md)
-[*](shader.md)
-[*](tranny.md)
-[*](xonotic.md)
-[*](football.md)
-[*](atan.md)
-[*](game_of_life.md)
-[*](progress.md)
-[*](triangle.md)
-[*](john_carmack.md)
-[*](bytebeat.md)
-[*](interpolation.md)
-[*](line.md)
-[*](tpe.md)
-[*](collapse.md)
-[*](art.md)
-[*](ancap.md)
-[*](attribution.md)
-[*](coc.md)
-[*](living.md)
-[*](float.md)
-[*](assembly.md)
-[*](speech_synthesis.md)
-[*](humorwashing.md)
-[*](javascript.md)
-[*](regex.md)
-[*](vim.md)
-[*](windows.md)
-[*](internet.md)
-[*](build_engine.md)
-[*](flatland.md)
-[*](recursion.md)
-[*](cc.md)
-[*](docker.md)
-[*](c_tutorial.md)
-[*](hard_to_learn_easy_to_master.md)
-[*](tangram.md)
-[*](4chan.md)
-[*](marketing.md)
-[*](distrohopping.md)
-[*](90s.md)
-[*](mandelbrot_set.md)
-[*](finished.md)
-[*](coding.md)
-[*](bit.md)
-[*](microtheft.md)
-[*](nationalism.md)
-[*](fun.md)
-[*](kiwifarms.md)
-[*](p_vs_np.md)
-[*](great_trap.md)
-[*](esolang.md)
-[*](triangle.md)
-[*](windows.md)
-[*](comun.md)
-[*](pseudominimalism.md)
-[*](bitreich.md)
-[*](often_confused.md)
-[*](world_broadcast.md)
-[*](corporation.md)
-[*](music.md)
-[*](bytecode.md)
-[*](chaos.md)
-[*](holy_war.md)
-[*](less_retarded_hardware.md)
-[*](determinism.md)
-[*](football.md)
-[*](crypto.md)
-[*](semiconductor.md)
-[*](plan9.md)
-[*](pseudoleft.md)
-[*](paywall.md)
-[*](logic.md)
-[*](intellectual_property.md)
-[*](gaywashing.md)
-[*](rock.md)
-[*](mud.md)
-[*](everyone_does_it.md)
-[*](c_pitfalls.md)
-[*](earth.md)
-[*](3d_modeling.md)
-[*](interesting.md)
-[*](dungeons_and_dragons.md)
-[*](proprietary_software.md)
-[*](easy_to_learn_hard_to_master.md)
-[*](fuck.md)
-[*](pokitto.md)
-[*](pseudo3d.md)
-[*](smart.md)
-[*](left_right.md)
-[*](technology.md)
-[*](fascist.md)
-[*](ethics.md)
-[*](compiler_bomb.md)
-[*](tensor_product.md)
-[*](operating_system.md)
-[*](abstraction.md)
-[*](jargon_file.md)
-[*](charity_sex.md)
-[*](patent.md)
-[*](comun.md)
-[*](interaction_net.md)
-[*](ashley_jones.md)
-[*](femoid.md)
-[*](often_misunderstood.md)
-[*](shitword.md)
-[*](golang.md)
-[*](love.md)
-[*](toxic.md)
-[*](countercomplex.md)
-[*](logic_gate.md)
-[*](duskos.md)
-[*](drummyfish.md)
-[*](linear_algebra.md)
-[*](rationalization.md)
-[*](easy_to_learn_hard_to_master.md)
-[*](3d_rendering.md)
-[*](lrs_dictionary.md)
-[*](gay.md)
-[*](finished.md)
-[*](unix.md)
-[*](plan9.md)
-[*](golang.md)
-[*](tinyphysicsengine.md)
-[*](programming_language.md)
-[*](julia_set.md)
-[*](digital_signature.md)
-[*](capitalism.md)
-[*](altruism.md)
-[*](sw.md)
-[*](maintenance.md)
-[*](beauty.md)
-[*](twos_complement.md)
-[*](faq.md)
-[*](wiki_stats.md)
-[*](fediverse.md)
-[*](money.md)
-[*](viznut.md)
-[*](malware.md)
-[*](main.md)
-[*](just_werks.md)
-[*](lotr.md)
-[*](approximation.md)
-[*](terry_davis.md)
-[*](cancer.md)
-[*](gui.md)
-[*](float.md)
-[*](README.md)
-[*](evil.md)
-[*](teletext.md)
-[*](memory_management.md)
-[*](acronym.md)
-[*](whale.md)
-[*](liberalism.md)
-[*](right.md)
-[*](permacomputing_wiki.md)
-[*](c_sharp.md)
-[*](entrepreneur.md)
-[*](web.md)
-[*](trash_magic.md)
-[*](rapeware.md)
-[*](small3dlib.md)
-[*](troll.md)
-[*](nationalism.md)
-[*](furry.md)
-[*](copyfree.md)
-[*](moderation.md)
-[*](randomness.md)
-[*](public_domain_computer.md)
-[*](capitalist_software.md)
-[*](xonotic.md)
-[*](transsexual.md)
-[*](conum.md)
-[*](proprietary.md)
-[*](stereotype.md)
-[*](hardware.md)
-[*](universe.md)
-[*](firmware.md)
-[*](recursion.md)
-[*](culture.md)
-[*](easier_done_than_said.md)
-[*](tom_scott.md)
-[*](jesus.md)
-[*](goodbye_world.md)
-[*](znk.md)
-[*](wiki_authors.md)
-[*](transsexual.md)
-[*](ram.md)
-[*](programming_style.md)
-[*](egoism.md)
-[*](3d_model.md)
-[*](pseudoleft.md)
-[*](unary.md)
-[*](bazaar.md)
-[*](digital_signature.md)
-[*](free_culture.md)
-[*](selflessness.md)
-[*](steve_jobs.md)
-[*](portal_rendering.md)
-[*](fizzbuzz.md)
-[*](programming_language.md)
-[*](name_is_important.md)
-[*](apple.md)
-[*](dodleston.md)
-[*](minesweeper.md)
-[*](woman.md)
-[*](dinosaur.md)
-[*](comun.md)
-[*](interesting.md)
-[*](game_engine.md)
-[*](bytebeat.md)
-[*](iq.md)
-[*](axiom_of_choice.md)
-[*](quine.md)
-[*](art.md)
-[*](tranny_software.md)
-[*](3d_model.md)
-[*](digital.md)
-[*](implicit.md)
-[*](ioccc.md)
-[*](free_software.md)
-[*](see_through_clothes.md)
-[*](productivity_cult.md)
-[*](git.md)
-[*](copyright.md)
-[*](future_proof.md)
-[*](adam_smith.md)
-[*](arch.md)
-[*](femoid.md)
-[*](brainfuck.md)
-[*](4chan.md)
-[*](communism.md)
-[*](ioccc.md)
-[*](easier_done_than_said.md)
-[*](public_domain_computer.md)
-[*](cracker.md)
-[*](robot.md)
-[*](devuan.md)
-[*](yes_they_can.md)
-[*](faggot.md)
-[*](cyber.md)
-[*](apple.md)
-[*](debugging.md)
-[*](tor.md)
-[*](entrepreneur.md)
-[*](vector.md)
-[*](niger.md)
-[*](girl.md)
-[*](data_structure.md)
-[*](popularization.md)
-[*](comment.md)
-[*](consumerism.md)
-[*](float.md)
-[*](faq.md)
-[*](blender.md)
-[*](earth.md)
-[*](racism.md)
-[*](optimization.md)
-[*](lisp.md)
-[*](wolf3d.md)
-[*](css.md)
-[*](ioccc.md)
-[*](furry.md)
-[*](wizard.md)
-[*](unfuck.md)
-[*](cope.md)
-[*](encryption.md)
-[*](transistor.md)
-[*](python.md)
-[*](chess.md)
-[*](raylib.md)
-[*](permacomputing.md)
-[*](mud.md)
-[*](openai.md)
-[*](hacking.md)
-[*](uxn.md)
-[*](app.md)
-[*](backgammon.md)
-[*](old.md)
-[*](anarchism.md)
-[*](oop.md)
-[*](music.md)
-[*](infinity.md)
-[*](collapse.md)
-[*](anticompany.md)
-[*](dramatica.md)
-[*](collision.md)
-[*](dick_reveal.md)
-[*](less_retarded_society.md)
-[*](wizard.md)
-[*](earth.md)
-[*](gnu.md)
-[*](plusnigger.md)
-[*](fight.md)
-[*](optimism.md)
-[*](evil.md)
-[*](less_retarded_software.md)
-[*](recursion.md)
-[*](smol_internet.md)
-[*](throwaway_script.md)
-[*](floss.md)
-[*](derivative.md)
-[*](right.md)
-[*](analytic_geometry.md)
-[*](teletext.md)
-[*](slowly_boiling_the_frog.md)
-[*](lrs.md)
-[*](competition.md)
-[*](asexuality.md)
-[*](modern_software.md)
-[*](kek.md)
-[*](sigbovik.md)
-[*](byte.md)
-[*](ssao.md)
[*](czechia.md)
-[*](mechanical.md)
-[*](speech_synthesis.md)
-[*](trom.md)
-[*](www.md)
-[*](tor.md)
-[*](newspeak.md)
-[*](math.md)
-[*](political_correctness.md)
-[*](bootstrap.md)
-[*](shit.md)
-[*](entrepreneur.md)
-[*](jargon_file.md)
-[*](toxic.md)
-[*](logic_gate.md)
-[*](raycasting.md)
-[*](python.md)
-[*](needed.md)
-[*](tattoo.md)
-[*](io.md)
-[*](minimalism.md)
-[*](whale.md)
-[*](progress.md)
-[*](wolf3d.md)
-[*](cracking.md)
-[*](forth.md)
-[*](100r.md)
-[*](faggot.md)
-[*](assertiveness.md)
-[*](tangram.md)
-[*](duke3d.md)
-[*](rule110.md)
-[*](integral.md)
-[*](one.md)
-[*](physics_engine.md)
-[*](football.md)
-[*](ui.md)
-[*](marble_race.md)
-[*](doom.md)
-[*](music.md)
-[*](unretard.md)
-[*](money.md)
-[*](loquendo.md)
-[*](gemini.md)
-[*](smart.md)
-[*](demoscene.md)
-[*](firmware.md)
-[*](computational_complexity.md)
-[*](greenwashing.md)
-[*](zoomer.md)
-[*](network.md)
-[*](fun.md)
-[*](explicit.md)
-[*](tor.md)
-[*](arduboy.md)
-[*](demo.md)
-[*](js.md)
-[*](anticompany.md)
-[*](fourier_transform.md)
-[*](bootstrap.md)
-[*](see_through_clothes.md)
-[*](needed.md)
-[*](programming_style.md)
-[*](jesus.md)
-[*](programming_tips.md)
-[*](books.md)
-[*](game_design.md)
-[*](lgbt.md)
-[*](systemd.md)
-[*](transsexual.md)
-[*](qubit.md)
-[*](znk.md)
-[*](asexuality.md)
-[*](floss.md)
-[*](yes_they_can.md)
-[*](suckless.md)
-[*](cloud.md)
-[*](compsci.md)
-[*](wavelet_transform.md)
-[*](libre.md)
-[*](cyberbullying.md)
-[*](programming.md)
-[*](encyclopedia.md)
-[*](asmr.md)
-[*](left.md)
-[*](luke_smith.md)
-[*](elon_musk.md)
-[*](watchdog.md)
-[*](portability.md)
-[*](magic.md)
-[*](moderation.md)
-[*](rust.md)
-[*](public_domain_computer.md)
-[*](oop.md)
-[*](competition.md)
-[*](tinyphysicsengine.md)
-[*](triangle.md)
-[*](copyleft.md)
-[*](nokia.md)
-[*](settled.md)
-[*](emoticon.md)
-[*](mainstream.md)
-[*](paywall.md)
-[*](wiki_pages.md)
-[*](bill_gates.md)
-[*](wirtual.md)
-[*](game_of_life.md)
-[*](lrs_dictionary.md)
-[*](algorithm.md)
-[*](ronja.md)
-[*](physics_engine.md)
-[*](interpolation.md)
-[*](raylib.md)
-[*](capitalist_software.md)
-[*](or.md)
-[*](cpu.md)
-[*](wiki_tldr.md)
-[*](phd.md)
-[*](data_structure.md)
-[*](os.md)
-[*](myths.md)
-[*](mipmap.md)
-[*](history.md)
-[*](entropy.md)
-[*](fight.md)
-[*](free_speech.md)
-[*](ted_kaczynski.md)
-[*](reactionary_software.md)
-[*](open_source.md)
-[*](21st_century.md)
-[*](quantum_gate.md)
-[*](tool_slave.md)
-[*](sjw.md)
-[*](devuan.md)
-[*](rgb565.md)
-[*](boat.md)
-[*](pseudominimalism.md)
-[*](hexadecimal.md)
-[*](raycasting.md)
-[*](approximation.md)
-[*](hw.md)
-[*](tranny.md)
-[*](brain_software.md)
-[*](maintenance.md)
-[*](cc0.md)
-[*](island.md)
-[*](cope.md)
-[*](shader.md)
-[*](lmao.md)
-[*](cloud.md)
-[*](diogenes.md)
-[*](nord_vpn.md)
-[*](shogi.md)
-[*](newspeak.md)
-[*](app.md)
-[*](raylib.md)
-[*](communism.md)
-[*](hero_culture.md)
-[*](rms.md)
-[*](firmware.md)
-[*](hash.md)
-[*](morality.md)
-[*](attribution.md)
-[*](tensor_product.md)
-[*](linear_algebra.md)
-[*](nd.md)
-[*](backpropagation.md)
-[*](unix.md)
-[*](openarena.md)
-[*](dinosaur.md)
-[*](copyfree.md)
-[*](flatland.md)
-[*](left_right.md)
-[*](mechanical.md)
-[*](hardware.md)
-[*](demo.md)
-[*](motivation.md)
-[*](discalimer.md)
-[*](motivation.md)
-[*](fork.md)
-[*](nanogenmo.md)
-[*](small3dlib.md)
-[*](wow.md)
-[*](assembly.md)
-[*](c.md)
-[*](lil.md)
-[*](fixed_point.md)
-[*](hacker_culture.md)
-[*](tool_slave.md)
-[*](future_proof.md)
-[*](optimism.md)
-[*](microtheft.md)
-[*](wow.md)
-[*](e.md)
-[*](human_language.md)
-[*](log.md)
-[*](npc.md)
-[*](aaron_swartz.md)
-[*](culture.md)
-[*](openarena.md)
-[*](dynamic_programming.md)
-[*](linux.md)
-[*](atan.md)
-[*](monad.md)
-[*](political_correctness.md)
-[*](logic_circuit.md)
-[*](raycasting.md)
-[*](rock.md)
-[*](programming_tips.md)
-[*](tom_scott.md)
-[*](sigbovik.md)
-[*](unfuck.md)
-[*](rgb332.md)
-[*](femoid.md)
+[*](ioccc.md)
+[*](vector.md)
[*](prime.md)
-[*](rgb565.md)
-[*](dog.md)
-[*](plusnigger.md)
-[*](smallchesslib.md)
-[*](censorship.md)
-[*](21st_century.md)
-[*](fear_culture.md)
-[*](resnicks_termite.md)
-[*](beauty.md)
-[*](unicode.md)
-[*](githopping.md)
+[*](programming_style.md)
[*](tranny_software.md)
-[*](macrofucker.md)
-[*](explicit.md)
+[*](optimism.md)
+[*](myths.md)
[*](javascript.md)
-[*](shitpress.md)
-[*](ancap.md)
-[*](speech_synthesis.md)
-[*](consumerism.md)
-[*](framework.md)
-[*](dramatica.md)
-[*](bill_gates.md)
-[*](e.md)
-[*](modern.md)
+[*](raycastlib.md)
+[*](logic.md)
+[*](fuck.md)
+[*](watchdog.md)
+[*](algorithm.md)
+[*](harry_potter.md)
+[*](crypto.md)
+[*](piracy.md)
+[*](sw.md)
+[*](quake.md)
+[*](ronja.md)
+[*](xd.md)
+[*](copyright.md)
+[*](unretard.md)
+[*](semiconductor.md)
+[*](racism.md)
+[*](p_vs_np.md)
+[*](soydev.md)
+[*](comment.md)
+[*](qubit.md)
+[*](rationalization.md)
+[*](licar.md)
+[*](mipmap.md)
+[*](fascist.md)
+[*](paywall.md)
+[*](aliasing.md)
+[*](bazaar.md)
+[*](music.md)
+[*](dynamic_programming.md)
[*](privacy.md)
[*](cc0.md)
-[*](abstraction.md)
-[*](creative_commons.md)
-[*](t3x.md)
-[*](jargon_file.md)
-[*](compsci.md)
-[*](chess.md)
-[*](infinity.md)
-[*](double_buffering.md)
-[*](minimalism.md)
-[*](netstalking.md)
-[*](html.md)
-[*](implicit.md)
-[*](libre.md)
-[*](creative_commons.md)
-[*](pd.md)
-[*](rule110.md)
-[*](luke_smith.md)
-[*](myths.md)
-[*](plan9.md)
-[*](czechia.md)
-[*](axiom_of_choice.md)
-[*](foss.md)
-[*](pascal.md)
-[*](pseudorandomness.md)
-[*](cos.md)
-[*](interplanetary_internet.md)
-[*](monad.md)
-[*](no_knowledge_proof.md)
-[*](cancel_culture.md)
-[*](zen.md)
-[*](rationalwiki.md)
-[*](wikipedia.md)
-[*](avpd.md)
-[*](free_body.md)
-[*](shitpress.md)
-[*](game.md)
-[*](game_engine.md)
-[*](bootstrap.md)
-[*](bilinear.md)
-[*](fantasy_console.md)
-[*](antivirus_paradox.md)
-[*](bloat.md)
-[*](niggercoin.md)
-[*](emoticon.md)
-[*](good_enough.md)
-[*](ui.md)
-[*](john_carmack.md)
-[*](education.md)
-[*](fantasy_console.md)
-[*](hack.md)
-[*](sw_rendering.md)
-[*](windows.md)
-[*](body_shaming.md)
-[*](malware.md)
-[*](esolang.md)
-[*](loquendo.md)
-[*](fourier_transform.md)
-[*](library.md)
-[*](wiki_rights.md)
-[*](dog.md)
-[*](README.md)
-[*](rsa.md)
-[*](algorithm.md)
-[*](bloat_monopoly.md)
-[*](everyone_does_it.md)
-[*](sw.md)
-[*](copyright.md)
-[*](plusnigger.md)
-[*](project.md)
-[*](coc.md)
-[*](sub_rosa.md)
-[*](kiss.md)
-[*](autostereogram.md)
-[*](hack.md)
-[*](bloat_monopoly.md)
-[*](hero_culture.md)
-[*](jedi_engine.md)
-[*](cc.md)
-[*](idiot_fallacy.md)
-[*](cloud.md)
-[*](exercises.md)
-[*](bit_hack.md)
-[*](disease.md)
-[*](hexadecimal.md)
-[*](pseudo3d.md)
-[*](mud.md)
-[*](freedom_distance.md)
-[*](npc.md)
-[*](backgammon.md)
-[*](bilinear.md)
-[*](steganography.md)
-[*](assertiveness.md)
-[*](game.md)
-[*](czechia.md)
-[*](licar.md)
-[*](gui.md)
-[*](line.md)
-[*](nd.md)
-[*](furry.md)
-[*](nonogram.md)
-[*](deep_blue.md)
-[*](less_retarded_software.md)
-[*](devuan.md)
-[*](open_console.md)
-[*](technology.md)
-[*](quine.md)
-[*](data_structure.md)
-[*](murderer.md)
-[*](trom.md)
-[*](floss.md)
-[*](temple_os.md)
-[*](dick_reveal.md)
-[*](minigame.md)
-[*](feminism.md)
-[*](derivative.md)
-[*](copyleft.md)
-[*](coc.md)
-[*](hard_to_learn_easy_to_master.md)
-[*](ssao.md)
-[*](democracy.md)
-[*](game_design.md)
-[*](rms.md)
-[*](wiki_tldr.md)
-[*](patent.md)
-[*](lgbt.md)
-[*](forth.md)
-[*](censorship.md)
-[*](sanism.md)
-[*](game_of_life.md)
-[*](lil.md)
-[*](wiki_authors.md)
-[*](stereotype.md)
-[*](p_vs_np.md)
-[*](free_speech.md)
-[*](mouse.md)
-[*](number.md)
-[*](geek.md)
-[*](information.md)
-[*](english.md)
-[*](systemd.md)
-[*](science.md)
-[*](marxism.md)
-[*](woman.md)
-[*](fail_ab.md)
-[*](steganography.md)
-[*](ascii_art.md)
-[*](suckless.md)
-[*](compiler_bomb.md)
-[*](oop.md)
-[*](morality.md)
-[*](ancap.md)
-[*](stereotype.md)
-[*](zuckerberg.md)
-[*](znk.md)
-[*](data_hoarding.md)
-[*](version_numbering.md)
-[*](old.md)
-[*](free_software.md)
-[*](moderation.md)
-[*](fixed_point.md)
-[*](google.md)
-[*](fqa.md)
-[*](youtube.md)
-[*](patent.md)
-[*](education.md)
-[*](javascript.md)
-[*](sorting.md)
-[*](fsf.md)
-[*](wiki_post_mortem.md)
-[*](fascism.md)
-[*](often_misunderstood.md)
-[*](proof.md)
-[*](gnu.md)
-[*](bitreich.md)
-[*](creative_commons.md)
-[*](blender.md)
-[*](binary.md)
-[*](lambda_calculus.md)
-[*](duskos.md)
-[*](backgammon.md)
-[*](reddit.md)
-[*](mipmap.md)
-[*](egg_code.md)
-[*](dungeons_and_dragons.md)
-[*](capitalist_singularity.md)
-[*](anpac.md)
-[*](ai.md)
-[*](race.md)
-[*](old.md)
-[*](thrembo.md)
-[*](billboard.md)
-[*](thrembo.md)
-[*](nigeria.md)
-[*](hw.md)
-[*](friend_detox.md)
-[*](zero.md)
-[*](logic_circuit.md)
-[*](marxism.md)
-[*](microsoft.md)
-[*](wikipedia.md)
-[*](hard_to_learn_easy_to_master.md)
-[*](hero.md)
-[*](freedom.md)
-[*](fork.md)
-[*](ubi.md)
-[*](cyber.md)
-[*](fantasy_console.md)
-[*](graveyard.md)
-[*](pseudo3d.md)
-[*](steve_jobs.md)
-[*](sdf.md)
-[*](combinatorics.md)
-[*](libertarianism.md)
-[*](humidity.md)
-[*](beauty.md)
-[*](discalimer.md)
-[*](xor.md)
-[*](math.md)
-[*](boot.md)
-[*](fail_ab.md)
-[*](and.md)
-[*](no_knowledge_proof.md)
-[*](web.md)
-[*](lrs.md)
-[*](c_tutorial.md)
-[*](java.md)
-[*](compression.md)
-[*](wow.md)
-[*](charity_sex.md)
-[*](interaction_net.md)
-[*](de_facto.md)
-[*](shogi.md)
-[*](pascal.md)
-[*](downto.md)
-[*](mental_outlaw.md)
-[*](gigachad.md)
-[*](world_broadcast.md)
-[*](robot.md)
-[*](yes_they_can.md)
-[*](cpu.md)
-[*](permacomputing.md)
-[*](modern_software.md)
-[*](troll.md)
-[*](rapeware.md)
-[*](bloat.md)
-[*](quine.md)
-[*](crypto.md)
-[*](exercises.md)
-[*](tas.md)
-[*](rgb565.md)
-[*](leading_the_pig_to_the_slaughterhouse.md)
-[*](intellectual_property.md)
-[*](formal_language.md)
-[*](3d_modeling.md)
-[*](based.md)
-[*](bytecode.md)
-[*](c_sharp.md)
-[*](hacking.md)
-[*](disease.md)
-[*](usa.md)
-[*](portability.md)
-[*](rsa.md)
-[*](kwangmyong.md)
-[*](doom.md)
-[*](cracker.md)
-[*](collision_detection.md)
-[*](ubi.md)
-[*](justice.md)
-[*](bazaar.md)
-[*](public_domain.md)
-[*](ashley_jones.md)
-[*](kids_these_days.md)
-[*](42.md)
-[*](logic_gate.md)
-[*](ascii.md)
-[*](friend_detox.md)
-[*](jokes.md)
-[*](gopher.md)
-[*](debugging.md)
-[*](small3dlib.md)
-[*](hardware.md)
-[*](bilinear.md)
-[*](bs.md)
-[*](jokes.md)
-[*](collision.md)
-[*](portability.md)
-[*](usenet.md)
-[*](operating_system.md)
-[*](nigger.md)
-[*](sorting.md)
-[*](project.md)
-[*](physics.md)
-[*](vim.md)
-[*](prime.md)
-[*](social_inertia.md)
-[*](project.md)
-[*](rationalization.md)
-[*](paywall.md)
-[*](fear_culture.md)
-[*](trump.md)
-[*](normalization.md)
-[*](calculus.md)
-[*](raycastlib.md)
-[*](toxic.md)
-[*](reactionary_software.md)
-[*](turing_machine.md)
-[*](3d_rendering.md)
-[*](boot.md)
-[*](deferred_shading.md)
-[*](rationalwiki.md)
-[*](arch.md)
-[*](trusting_trust.md)
-[*](popularization.md)
-[*](bbs.md)
-[*](formal_language.md)
-[*](pseudoleft.md)
-[*](langtons_ant.md)
-[*](gemini.md)
-[*](compsci.md)
-[*](neural_network.md)
-[*](viznut.md)
-[*](dramatica.md)
-[*](wirtual.md)
-[*](fascist.md)
-[*](regex.md)
-[*](rapeware.md)
-[*](macrofucker.md)
-[*](microsoft.md)
-[*](capitalist_singularity.md)
-[*](racetrack.md)
-[*](cat_v.md)
-[*](fsf.md)
-[*](nigger.md)
-[*](neural_network.md)
-[*](cancel_culture.md)
-[*](no_knowledge_proof.md)
-[*](version_numbering.md)
-[*](intellectual_property.md)
-[*](anarch.md)
-[*](license.md)
-[*](free_body.md)
-[*](bs.md)
-[*](cracking.md)
-[*](lil.md)
-[*](robot.md)
-[*](c.md)
-[*](zoomer.md)
-[*](myths.md)
-[*](life.md)
-[*](work.md)
-[*](julia_set.md)
-[*](anal_bead.md)
-[*](autostereogram.md)
-[*](unary.md)
-[*](ai.md)
-[*](just_werks.md)
-[*](color.md)
-[*](cos.md)
-[*](combinatorics.md)
-[*](wikipedia.md)
-[*](noise.md)
-[*](fork.md)
-[*](xd.md)
-[*](pi.md)
-[*](cracking.md)
-[*](crow_funding.md)
-[*](wiki_post_mortem.md)
-[*](whale.md)
-[*](luke_smith.md)
-[*](software.md)
-[*](collapse.md)
-[*](history.md)
-[*](prime.md)
-[*](life.md)
-[*](bytecode.md)
-[*](fixed_point.md)
-[*](competition.md)
-[*](main.md)
-[*](programming_tips.md)
-[*](sin.md)
-[*](downto.md)
-[*](fight.md)
-[*](deferred_shading.md)
-[*](usenet.md)
-[*](boat.md)
-[*](wavelet_transform.md)
-[*](4chan.md)
-[*](avpd.md)
-[*](monad.md)
-[*](debugging.md)
-[*](fractal.md)
-[*](distrohopping.md)
-[*](often_confused.md)
-[*](foss.md)
-[*](jokes.md)
-[*](crime_against_economy.md)
-[*](disease.md)
-[*](library.md)
-[*](suicide.md)
-[*](great_trap.md)
-[*](shitpress.md)
-[*](wikiwikiweb.md)
-[*](trom.md)
-[*](idiot_fallacy.md)
-[*](data_hoarding.md)
-[*](elo.md)
-[*](js.md)
-[*](sw_rendering.md)
-[*](zero.md)
-[*](sub_rosa.md)
-[*](main.md)
-[*](tas.md)
-[*](graphics.md)
-[*](quantum_gate.md)
-[*](race.md)
-[*](free_will.md)
-[*](art.md)
-[*](smallchesslib.md)
-[*](software.md)
-[*](memory_management.md)
-[*](loc.md)
-[*](shogi.md)
-[*](lrs.md)
-[*](entropy.md)
-[*](primitive_3d.md)
-[*](antialiasing.md)
-[*](graphics.md)
-[*](mechanical.md)
-[*](kids_these_days.md)
-[*](qubit.md)
-[*](build_engine.md)
-[*](lgbt.md)
-[*](capitalist_singularity.md)
-[*](wavelet_transform.md)
-[*](docker.md)
-[*](motivation.md)
-[*](transistor.md)
-[*](human_language.md)
-[*](slowly_boiling_the_frog.md)
-[*](flatland.md)
-[*](just_werks.md)
-[*](math.md)
-[*](political_correctness.md)
-[*](log.md)
-[*](sorting.md)
-[*](go.md)
-[*](ascii_art.md)
-[*](racism.md)
-[*](demo.md)
-[*](update_culture.md)
-[*](githopping.md)
-[*](how_to.md)
-[*](hyperoperation.md)
-[*](blender.md)
-[*](foss.md)
-[*](langtons_ant.md)
-[*](sw_rendering.md)
-[*](computer.md)
-[*](apple.md)
-[*](x86.md)
-[*](portal_rendering.md)
-[*](wiki_style.md)
-[*](military.md)
-[*](less_retarded_hardware.md)
-[*](lmao.md)
-[*](great_trap.md)
-[*](dependency.md)
-[*](racism.md)
-[*](law.md)
-[*](security.md)
-[*](demoscene.md)
-[*](freemasonry.md)
-[*](world_broadcast.md)
-[*](sigbovik.md)
-[*](collision_detection.md)
-[*](html.md)
-[*](freedom.md)
-[*](piracy.md)
-[*](frameless.md)
-[*](fascist.md)
-[*](wiki_style.md)
-[*](rust.md)
-[*](portal_rendering.md)
-[*](network.md)
-[*](rights_culture.md)
-[*](update_culture.md)
-[*](game_engine.md)
-[*](fqa.md)
-[*](determinism.md)
-[*](less_retarded_society.md)
-[*](go.md)
-[*](trash_magic.md)
-[*](venus_project.md)
-[*](free_hardware.md)
-[*](demoscene.md)
-[*](double_buffering.md)
-[*](quantum_gate.md)
-[*](less_retarded_software.md)
-[*](git.md)
-[*](mouse.md)
-[*](hero_culture.md)
-[*](hack.md)
-[*](or.md)
-[*](aliasing.md)
-[*](abstraction.md)
-[*](unicode.md)
-[*](real_number.md)
-[*](bs.md)
-[*](number.md)
-[*](justice.md)
-[*](bbs.md)
-[*](qubit.md)
-[*](free_universe.md)
-[*](interplanetary_internet.md)
-[*](how_to.md)
-[*](coding.md)
-[*](liberalism.md)
-[*](google.md)
-[*](gender_studies.md)
-[*](selflessness.md)
-[*](quake.md)
-[*](military.md)
-[*](shit.md)
-[*](unix.md)
-[*](kek.md)
-[*](wikidata.md)
-[*](tranny.md)
-[*](systemd.md)
-[*](elo.md)
-[*](pseudorandomness.md)
-[*](boat.md)
-[*](terry_davis.md)
-[*](autoupdate.md)
-[*](crypto.md)
-[*](mandelbrot_set.md)
-[*](english.md)
-[*](css.md)
-[*](democracy.md)
-[*](cloudflare.md)
-[*](proprietary.md)
-[*](quaternion.md)
-[*](hitler.md)
-[*](piracy.md)
-[*](john_carmack.md)
-[*](anorexia.md)
-[*](hero.md)
-[*](wiby.md)
-[*](gender_studies.md)
-[*](free.md)
-[*](wiki_rights.md)
-[*](deep_blue.md)
-[*](used.md)
-[*](black.md)
-[*](python.md)
-[*](ethics.md)
-[*](free.md)
-[*](minesweeper.md)
-[*](macrofucker.md)
-[*](brain_software.md)
-[*](compression.md)
-[*](law.md)
-[*](freedom.md)
-[*](or.md)
-[*](sin.md)
-[*](markov_chain.md)
-[*](digital.md)
-[*](loc.md)
-[*](sub_rosa.md)
-[*](left.md)
-[*](procgen.md)
-[*](nigeria.md)
-[*](temple_os.md)
-[*](bitreich.md)
-[*](harry_potter.md)
-[*](marble_race.md)
-[*](social_inertia.md)
-[*](app.md)
-[*](living.md)
-[*](rust.md)
-[*](integral.md)
-[*](free_speech.md)
-[*](chaos.md)
-[*](suckless.md)
-[*](libertarianism.md)
-[*](nigeria.md)
-[*](sjw.md)
-[*](maintenance.md)
-[*](democracy.md)
-[*](primitive_3d.md)
-[*](splinternet.md)
-[*](youtube.md)
-[*](explicit.md)
-[*](nc.md)
-[*](rationalization.md)
-[*](human_language.md)
-[*](optimization.md)
-[*](xonotic.md)
-[*](cancer.md)
-[*](wikidata.md)
-[*](bit.md)
-[*](libertarianism.md)
-[*](bit.md)
-[*](quake.md)
-[*](mob_software.md)
-[*](facebook.md)
-[*](compression.md)
-[*](watchdog.md)
-[*](niger.md)
-[*](usenet.md)
-[*](lrs_wiki.md)
-[*](proof.md)
-[*](nd.md)
-[*](elon_musk.md)
-[*](anarch.md)
-[*](justice.md)
-[*](c_sharp.md)
-[*](kiss.md)
-[*](ted_kaczynski.md)
-[*](hacking.md)
-[*](fuck.md)
-[*](hyperoperation.md)
-[*](cancer.md)
-[*](zen.md)
-[*](smallchesslib.md)
-[*](openai.md)
-[*](zuckerberg.md)
-[*](fediverse.md)
-[*](xor.md)
-[*](chinese.md)
-[*](smol_internet.md)
-[*](fizzbuzz.md)
-[*](microtransaction.md)
-[*](trump.md)
-[*](acronym.md)
-[*](public_domain.md)
-[*](lambda_calculus.md)
-[*](work.md)
-[*](evil.md)
-[*](pseudominimalism.md)
-[*](unfuck.md)
-[*](gigachad.md)
-[*](countercomplex.md)
-[*](future.md)
-[*](tranny_software.md)
-[*](fractal.md)
-[*](venus_project.md)
-[*](law.md)
-[*](antialiasing.md)
-[*](dynamic_programming.md)
-[*](rationalwiki.md)
-[*](distrohopping.md)
-[*](42.md)
-[*](niggercoin.md)
-[*](quaternion.md)
-[*](asmr.md)
-[*](history.md)
-[*](git.md)
-[*](analog.md)
-[*](free_universe.md)
-[*](body_shaming.md)
-[*](unix_philosophy.md)
-[*](www.md)
-[*](data_hoarding.md)
-[*](greenwashing.md)
-[*](probability.md)
-[*](feminism.md)
-[*](global_discussion.md)
-[*](microtheft.md)
-[*](nc.md)
-[*](www.md)
-[*](humidity.md)
-[*](cache.md)
-[*](money.md)
-[*](tree.md)
-[*](mob_software.md)
-[*](free_hardware.md)
-[*](approximation.md)
-[*](drummyfish.md)
-[*](lrs_dictionary.md)
-[*](licar.md)
-[*](pd.md)
-[*](license.md)
-[*](elon_musk.md)
-[*](splinternet.md)
-[*](100r.md)
-[*](nationalism.md)
-[*](xd.md)
-[*](crime_against_economy.md)
-[*](kiss.md)
-[*](living.md)
-[*](billboard.md)
-[*](greenwashing.md)
-[*](implicit.md)
-[*](dick_reveal.md)
-[*](science.md)
-[*](proprietary.md)
-[*](README.md)
-[*](procgen.md)
-[*](calculus.md)
-[*](computer.md)
-[*](unicode.md)
-[*](vector.md)
-[*](splinternet.md)
-[*](memory_management.md)
-[*](probability.md)
-[*](log.md)
-[*](universe.md)
-[*](watchdog.md)
-[*](rights_culture.md)
-[*](bytebeat.md)
-[*](humidity.md)
-[*](zuckerberg.md)
-[*](diogenes.md)
-[*](trolling.md)
-[*](operating_system.md)
-[*](assertiveness.md)
-[*](ascii.md)
-[*](semiconductor.md)
-[*](license.md)
-[*](unretard.md)
-[*](egg_code.md)
-[*](trolling.md)
-[*](attribution.md)
-[*](wiki_pages.md)
-[*](iq.md)
-[*](easier_done_than_said.md)
-[*](marketing.md)
-[*](shitword.md)
-[*](pd.md)
-[*](sqrt.md)
-[*](needed.md)
-[*](avpd.md)
-[*](vector.md)
-[*](xxiivv.md)
-[*](marxism.md)
-[*](niger.md)
-[*](sqrt.md)
-[*](cos.md)
-[*](analytic_geometry.md)
-[*](library.md)
-[*](smart.md)
-[*](shader.md)
-[*](easy_to_learn_hard_to_master.md)
-[*](randomness.md)
-[*](cheating.md)
-[*](distance.md)
-[*](fight_culture.md)
-[*](physics.md)
-[*](backpropagation.md)
-[*](exercises.md)
-[*](gender_studies.md)
-[*](doom.md)
-[*](formal_language.md)
-[*](island.md)
-[*](capitalist_software.md)
-[*](binary.md)
-[*](logic.md)
-[*](usa.md)
-[*](unretard.md)
-[*](os.md)
-[*](good_enough.md)
-[*](fight_culture.md)
-[*](pedophilia.md)
-[*](anal_bead.md)
-[*](sudoku.md)
-[*](feminism.md)
-[*](freemasonry.md)
-[*](pride.md)
-[*](cheating.md)
-[*](trash_magic.md)
-[*](analog.md)
-[*](resnicks_termite.md)
-[*](books.md)
-[*](proprietary_software.md)
-[*](tpe.md)
-[*](linux.md)
-[*](anorexia.md)
-[*](ronja.md)
-[*](shit.md)
-[*](docker.md)
-[*](web.md)
-[*](name_is_important.md)
-[*](bloat.md)
-[*](derivative.md)
-[*](wiki_pages.md)
-[*](love.md)
-[*](morality.md)
-[*](arch.md)
-[*](tattoo.md)
-[*](paradigm.md)
-[*](often_confused.md)
-[*](transistor.md)
-[*](netstalking.md)
-[*](free_will.md)
-[*](encyclopedia.md)
-[*](byte.md)
-[*](security.md)
-[*](ethics.md)
-[*](rights_culture.md)
-[*](homelessness.md)
-[*](gigachad.md)
-[*](temple_os.md)
-[*](f2p.md)
-[*](popularization.md)
-[*](version_numbering.md)
-[*](permacomputing_wiki.md)
-[*](cpu.md)
-[*](facebook.md)
-[*](game_design.md)
-[*](sqrt.md)
-[*](linear_algebra.md)
-[*](graphics.md)
-[*](function.md)
-[*](tinyphysicsengine.md)
-[*](lrs_wiki.md)
-[*](zero.md)
-[*](pride.md)
-[*](usa.md)
-[*](racetrack.md)
-[*](fizzbuzz.md)
-[*](noise.md)
-[*](future.md)
-[*](free_will.md)
-[*](antivirus_paradox.md)
-[*](js.md)
-[*](brainfuck.md)
-[*](logic.md)
-[*](pi.md)
-[*](global_discussion.md)
-[*](digital.md)
-[*](productivity_cult.md)
-[*](drummyfish.md)
-[*](cache.md)
-[*](proprietary_software.md)
-[*](xor.md)
-[*](global_discussion.md)
-[*](saf.md)
-[*](anal_bead.md)
-[*](saf.md)
-[*](settled.md)
-[*](gemini.md)
-[*](cpp.md)
-[*](cpp.md)
-[*](marble_race.md)
-[*](aaron_swartz.md)
-[*](ted_kaczynski.md)
-[*](wiki_tldr.md)
-[*](jedi_engine.md)
-[*](science.md)
-[*](free_culture.md)
-[*](ssao.md)
-[*](kwangmyong.md)
-[*](emoticon.md)
-[*](90s.md)
[*](pokitto.md)
-[*](uxn.md)
-[*](atheism.md)
-[*](free_universe.md)
-[*](people.md)
-[*](discalimer.md)
-[*](saf.md)
-[*](settled.md)
-[*](low_poly.md)
-[*](kek.md)
-[*](deferred_shading.md)
-[*](low_poly.md)
-[*](freedom_distance.md)
-[*](leading_the_pig_to_the_slaughterhouse.md)
-[*](pascal.md)
-[*](build_engine.md)
-[*](licar.md)
-[*](future.md)
-[*](real_number.md)
-[*](chess.md)
-[*](rule110.md)
-[*](faq.md)
-[*](privacy.md)
-[*](cyber.md)
-[*](and.md)
-[*](t3x.md)
-[*](interesting.md)
-[*](interpolation.md)
-[*](dodleston.md)
-[*](mainstream.md)
-[*](optimization.md)
-[*](idiot_fallacy.md)
-[*](wiby.md)
-[*](wiki_stats.md)
-[*](line.md)
-[*](consumerism.md)
-[*](conum.md)
-[*](niggercoin.md)
-[*](complexity.md)
-[*](mob_software.md)
-[*](pedophilia.md)
-[*](mouse.md)
-[*](youtube.md)
-[*](autostereogram.md)
-[*](cracker.md)
-[*](procgen.md)
-[*](entropy.md)
-[*](modern_software.md)
-[*](openai.md)
-[*](corporation.md)
-[*](programming.md)
-[*](hitler.md)
-[*](turing_machine.md)
-[*](tpe.md)
-[*](free_hardware.md)
[*](loc.md)
-[*](unix_philosophy.md)
-[*](backpropagation.md)
-[*](boot.md)
-[*](hexadecimal.md)
-[*](black.md)
-[*](asmr.md)
-[*](progress.md)
-[*](fsf.md)
-[*](iq.md)
-[*](nonogram.md)
-[*](internet.md)
-[*](suicide.md)
-[*](aliasing.md)
-[*](100r.md)
-[*](gay.md)
-[*](comment.md)
-[*](reddit.md)
-[*](marketing.md)
-[*](left.md)
-[*](fediverse.md)
-[*](dinosaur.md)
-[*](chasm_the_rift.md)
-[*](future_proof.md)
-[*](charity_sex.md)
-[*](lmao.md)
-[*](nanogenmo.md)
-[*](quake.md)
-[*](social_inertia.md)
-[*](hitler.md)
-[*](cloudflare.md)
-[*](soyence.md)
-[*](paradigm.md)
-[*](adam_smith.md)
-[*](everyone_does_it.md)
-[*](regex.md)
-[*](atheism.md)
-[*](lisp.md)
-[*](binary.md)
-[*](technology.md)
-[*](randomness.md)
-[*](fractal.md)
-[*](humorwashing.md)
-[*](tas.md)
-[*](forth.md)
-[*](ascii_art.md)
-[*](nigger.md)
-[*](90s.md)
-[*](sdf.md)
-[*](loquendo.md)
-[*](trump.md)
-[*](cc.md)
-[*](trolling.md)
-[*](lotr.md)
-[*](open_source.md)
-[*](analytic_geometry.md)
-[*](pokitto.md)
-[*](rms.md)
-[*](geek.md)
-[*](cope.md)
-[*](fuck.md)
-[*](tech.md)
-[*](anpac.md)
-[*](wiki_style.md)
-[*](computational_complexity.md)
-[*](turing_machine.md)
-[*](people.md)
-[*](interplanetary_internet.md)
-[*](ashley_jones.md)
-[*](sw.md)
-[*](smol_internet.md)
-[*](zen.md)
-[*](css.md)
-[*](girl.md)
-[*](used.md)
-[*](troll.md)
-[*](githopping.md)
-[*](security.md)
-[*](wikiwikiweb.md)
-[*](programming.md)
-[*](f2p.md)
-[*](lotr.md)
-[*](tree.md)
-[*](complexity.md)
-[*](3d_model.md)
-[*](permacomputing_wiki.md)
-[*](goodbye_world.md)
-[*](reactionary_software.md)
-[*](physics_engine.md)
-[*](nc.md)
-[*](wirtual.md)
-[*](autoupdate.md)
-[*](reddit.md)
-[*](wiki_authors.md)
-[*](people.md)
-[*](countercomplex.md)
-[*](privacy.md)
-[*](gaywashing.md)
-[*](esolang.md)
-[*](audiophilia.md)
-[*](pi.md)
-[*](trusting_trust.md)
-[*](function.md)
+[*](deep_blue.md)
+[*](portal_rendering.md)
[*](phd.md)
-[*](freemasonry.md)
-[*](magic.md)
-[*](unix_philosophy.md)
-[*](3d_rendering.md)
-[*](murderer.md)
-[*](microsoft.md)
-[*](io.md)
-[*](collision_detection.md)
-[*](universe.md)
-[*](communism.md)
-[*](gaywashing.md)
+[*](hack.md)
+[*](cancel_culture.md)
+[*](gui.md)
+[*](free_will.md)
+[*](less_retarded_society.md)
+[*](or.md)
+[*](good_enough.md)
+[*](faq.md)
+[*](just_werks.md)
+[*](love.md)
+[*](yes_they_can.md)
+[*](qubit.md)
+[*](productivity_cult.md)
+[*](crow_funding.md)
+[*](ancap.md)
+[*](feminism.md)
+[*](log.md)
+[*](venus_project.md)
+[*](probability.md)
+[*](license.md)
+[*](bloat_monopoly.md)
+[*](kwangmyong.md)
+[*](wizard.md)
+[*](kiwifarms.md)
+[*](gui.md)
+[*](npc.md)
[*](primitive_3d.md)
-[*](free_culture.md)
-[*](chinese.md)
-[*](and.md)
-[*](bbs.md)
-[*](teletext.md)
-[*](based.md)
-[*](bullshit.md)
-[*](anpac.md)
-[*](determinism.md)
-[*](tattoo.md)
-[*](internet.md)
-[*](atheism.md)
-[*](golang.md)
-[*](bit_hack.md)
-[*](paradigm.md)
-[*](terry_davis.md)
-[*](copyfree.md)
-[*](tensor_product.md)
-[*](antialiasing.md)
-[*](cache.md)
-[*](duskos.md)
-[*](cheating.md)
-[*](newspeak.md)
-[*](semiconductor.md)
-[*](woman.md)
-[*](html.md)
-[*](arduboy.md)
+[*](marble_race.md)
[*](ram.md)
-[*](t3x.md)
-[*](cc0.md)
-[*](mainstream.md)
-[*](anarch.md)
-[*](zoomer.md)
-[*](egg_code.md)
-[*](encyclopedia.md)
-[*](21st_century.md)
-[*](dodleston.md)
-[*](anarchism.md)
-[*](assembly.md)
-[*](gopher.md)
-[*](wolf3d.md)
-[*](sudoku.md)
-[*](free_software.md)
-[*](dependency.md)
-[*](tech.md)
-[*](english.md)
-[*](dependency.md)
-[*](double_buffering.md)
-[*](open_console.md)
-[*](work.md)
-[*](wiby.md)
-[*](nokia.md)
-[*](c_pitfalls.md)
-[*](go.md)
-[*](racetrack.md)
-[*](logic_circuit.md)
-[*](freedom_distance.md)
-[*](cyberbullying.md)
-[*](normalization.md)
-[*](3d_modeling.md)
-[*](island.md)
-[*](gopher.md)
-[*](infinity.md)
-[*](java.md)
-[*](sin.md)
-[*](collision.md)
-[*](duke3d.md)
-[*](rock.md)
-[*](libre.md)
-[*](game.md)
+[*](collision_detection.md)
+[*](digital_signature.md)
+[*](cat_v.md)
+[*](de_facto.md)
+[*](viznut.md)
+[*](wow.md)
+[*](minimalism.md)
+[*](antialiasing.md)
+[*](recursion.md)
+[*](smallchesslib.md)
[*](liberalism.md)
+[*](cyberbullying.md)
+[*](zero.md)
+[*](ronja.md)
+[*](cloud.md)
+[*](pi.md)
+[*](cope.md)
+[*](100r.md)
+[*](furry.md)
+[*](comun.md)
+[*](lrs.md)
+[*](shogi.md)
[*](harry_potter.md)
+[*](pi.md)
+[*](bazaar.md)
+[*](infinity.md)
+[*](gemini.md)
+[*](cache.md)
+[*](nigeria.md)
+[*](nord_vpn.md)
+[*](discalimer.md)
+[*](cos.md)
+[*](binary.md)
+[*](operating_system.md)
+[*](stereotype.md)
+[*](fight.md)
+[*](free_body.md)
+[*](game.md)
+[*](transsexual.md)
+[*](hash.md)
+[*](football.md)
+[*](or.md)
+[*](demoscene.md)
+[*](pseudo3d.md)
+[*](suicide.md)
+[*](fear_culture.md)
+[*](www.md)
+[*](integral.md)
+[*](ssao.md)
+[*](ubi.md)
+[*](java.md)
+[*](usa.md)
+[*](open_console.md)
+[*](pokitto.md)
+[*](modern.md)
+[*](shortcut_thinking.md)
+[*](langtons_ant.md)
+[*](rights_culture.md)
+[*](unix.md)
+[*](deep_blue.md)
+[*](library.md)
+[*](niger.md)
+[*](sorting.md)
+[*](living.md)
+[*](xor.md)
+[*](docker.md)
+[*](reddit.md)
+[*](computer.md)
+[*](unary.md)
+[*](based.md)
+[*](human_language.md)
+[*](fsf.md)
+[*](tom_scott.md)
+[*](less_retarded_hardware.md)
+[*](speech_synthesis.md)
+[*](bilinear.md)
+[*](tech.md)
+[*](woman.md)
+[*](nanogenmo.md)
+[*](liberalism.md)
+[*](interesting.md)
+[*](lambda_calculus.md)
+[*](tpe.md)
+[*](log.md)
+[*](boot.md)
+[*](femoid.md)
+[*](splinternet.md)
+[*](tangram.md)
+[*](znk.md)
+[*](whale.md)
+[*](cache.md)
+[*](cloud.md)
+[*](rgb332.md)
+[*](forth.md)
+[*](football.md)
+[*](fsf.md)
+[*](countercomplex.md)
+[*](suckless.md)
+[*](downto.md)
+[*](robot.md)
+[*](bullshit.md)
+[*](doom.md)
+[*](update_culture.md)
+[*](competition.md)
+[*](rule110.md)
+[*](cracker.md)
+[*](shortcut_thinking.md)
+[*](law.md)
+[*](furry.md)
+[*](crypto.md)
+[*](hexadecimal.md)
+[*](determinism.md)
+[*](trump.md)
+[*](anal_bead.md)
+[*](capitalism.md)
+[*](interpolation.md)
+[*](blender.md)
+[*](anarchism.md)
+[*](pseudoleft.md)
+[*](global_discussion.md)
+[*](gigachad.md)
+[*](distrohopping.md)
+[*](licar.md)
+[*](nigeria.md)
+[*](geek.md)
+[*](tool_slave.md)
+[*](modern.md)
+[*](people.md)
+[*](egoism.md)
+[*](mandelbrot_set.md)
[*](fail_ab.md)
+[*](gui.md)
+[*](blender.md)
+[*](chasm_the_rift.md)
+[*](race.md)
+[*](plan9.md)
+[*](mainstream.md)
+[*](wizard.md)
+[*](linear_algebra.md)
+[*](debugging.md)
+[*](ascii.md)
+[*](faggot.md)
+[*](money.md)
+[*](gemini.md)
+[*](nc.md)
+[*](teletext.md)
+[*](version_numbering.md)
+[*](mechanical.md)
+[*](democracy.md)
+[*](bit_hack.md)
+[*](fun.md)
+[*](cos.md)
+[*](smart.md)
+[*](holy_war.md)
+[*](communism.md)
+[*](hardware.md)
+[*](kiss.md)
+[*](friend_detox.md)
+[*](fun.md)
+[*](encyclopedia.md)
+[*](google.md)
+[*](collision_detection.md)
+[*](billboard.md)
+[*](fork.md)
+[*](t3x.md)
+[*](john_carmack.md)
+[*](paradigm.md)
+[*](trump.md)
+[*](ubi.md)
+[*](cc0.md)
+[*](bytebeat.md)
+[*](often_confused.md)
+[*](dog.md)
+[*](asmr.md)
+[*](minesweeper.md)
+[*](memory_management.md)
+[*](lrs.md)
+[*](rgb565.md)
+[*](temple_os.md)
+[*](doom.md)
+[*](tangram.md)
+[*](permacomputing.md)
+[*](trusting_trust.md)
+[*](crow_funding.md)
+[*](future_proof.md)
+[*](less_retarded_software.md)
+[*](ted_kaczynski.md)
+[*](altruism.md)
+[*](one.md)
+[*](openarena.md)
+[*](chinese.md)
+[*](wikiwikiweb.md)
+[*](oop.md)
+[*](cheating.md)
+[*](autostereogram.md)
+[*](island.md)
+[*](100r.md)
+[*](css.md)
+[*](antivirus_paradox.md)
+[*](uxn.md)
+[*](bitreich.md)
+[*](dodleston.md)
+[*](hyperoperation.md)
+[*](entropy.md)
+[*](randomness.md)
+[*](network.md)
+[*](c_pitfalls.md)
+[*](interaction_net.md)
+[*](proof.md)
+[*](jargon_file.md)
+[*](gaywashing.md)
[*](algorithm.md)
-[*](often_misunderstood.md)
-[*](mipmap.md)
-[*](girl.md)
+[*](smol_internet.md)
+[*](thrembo.md)
+[*](femoid.md)
+[*](fediverse.md)
+[*](game_design.md)
+[*](tattoo.md)
+[*](faq.md)
+[*](libre.md)
+[*](easier_done_than_said.md)
+[*](game.md)
+[*](earth.md)
+[*](crime_against_economy.md)
+[*](libertarianism.md)
+[*](microtransaction.md)
+[*](interpolation.md)
+[*](law.md)
+[*](faggot.md)
+[*](permacomputing_wiki.md)
+[*](island.md)
+[*](universe.md)
+[*](kwangmyong.md)
+[*](progress.md)
+[*](monad.md)
+[*](cancer.md)
+[*](ethics.md)
+[*](aliasing.md)
+[*](hack.md)
+[*](wiki_stats.md)
+[*](intellectual_property.md)
+[*](work.md)
+[*](trom.md)
+[*](xonotic.md)
+[*](drummyfish.md)
+[*](egoism.md)
+[*](pride.md)
+[*](transsexual.md)
+[*](lgbt.md)
+[*](everyone_does_it.md)
+[*](distrohopping.md)
+[*](backpropagation.md)
+[*](pseudoleft.md)
+[*](asexuality.md)
+[*](easy_to_learn_hard_to_master.md)
+[*](mob_software.md)
+[*](maintenance.md)
+[*](dramatica.md)
+[*](tom_scott.md)
+[*](deep_blue.md)
+[*](palette.md)
+[*](assembly.md)
+[*](no_knowledge_proof.md)
+[*](downto.md)
+[*](bilinear.md)
+[*](motivation.md)
+[*](anticompany.md)
+[*](soydev.md)
+[*](future.md)
+[*](free.md)
+[*](justice.md)
+[*](optimization.md)
+[*](free_hardware.md)
+[*](rock.md)
+[*](mandelbrot_set.md)
+[*](censorship.md)
+[*](license.md)
+[*](copyright.md)
+[*](wikipedia.md)
+[*](cpp.md)
+[*](randomness.md)
+[*](quake.md)
+[*](zen.md)
+[*](microtheft.md)
+[*](entropy.md)
+[*](magic.md)
+[*](pseudoleft.md)
+[*](trolling.md)
+[*](npc.md)
+[*](free_speech.md)
+[*](c.md)
+[*](git.md)
+[*](cancer.md)
+[*](neural_network.md)
+[*](science.md)
+[*](elo.md)
+[*](x86.md)
+[*](idiot_fallacy.md)
+[*](game_engine.md)
+[*](explicit.md)
+[*](demo.md)
+[*](tattoo.md)
+[*](cloudflare.md)
+[*](framework.md)
+[*](line.md)
+[*](demo.md)
+[*](maintenance.md)
+[*](nd.md)
+[*](reddit.md)
+[*](hw.md)
+[*](hardware.md)
+[*](tree.md)
+[*](3d_model.md)
+[*](c.md)
+[*](capitalist_singularity.md)
+[*](raycasting.md)
+[*](less_retarded_hardware.md)
+[*](saf.md)
+[*](usa.md)
+[*](21st_century.md)
+[*](elon_musk.md)
+[*](resnicks_termite.md)
+[*](cc0.md)
+[*](logic_circuit.md)
+[*](fqa.md)
+[*](systemd.md)
+[*](sjw.md)
+[*](emoticon.md)
+[*](wirtual.md)
+[*](function.md)
+[*](io.md)
+[*](game_design.md)
+[*](kiwifarms.md)
+[*](software.md)
+[*](network.md)
+[*](gopher.md)
+[*](freedom.md)
+[*](bs.md)
+[*](public_domain_computer.md)
+[*](microsoft.md)
+[*](fsf.md)
+[*](watchdog.md)
+[*](plan9.md)
+[*](90s.md)
+[*](anpac.md)
+[*](interplanetary_internet.md)
+[*](goodbye_world.md)
+[*](nigger.md)
+[*](line.md)
+[*](nanogenmo.md)
+[*](evil.md)
+[*](git.md)
+[*](zoomer.md)
+[*](tor.md)
+[*](great_trap.md)
+[*](thrembo.md)
+[*](frameless.md)
+[*](nd.md)
+[*](crime_against_economy.md)
+[*](firmware.md)
+[*](gnu.md)
+[*](teletext.md)
+[*](lil.md)
+[*](explicit.md)
+[*](tas.md)
+[*](backgammon.md)
+[*](analytic_geometry.md)
+[*](rgb332.md)
+[*](lisp.md)
+[*](greenwashing.md)
+[*](work.md)
+[*](niggercoin.md)
+[*](how_to.md)
+[*](sigbovik.md)
+[*](fascism.md)
+[*](explicit.md)
+[*](needed.md)
+[*](discalimer.md)
+[*](lambda_calculus.md)
+[*](left.md)
+[*](graveyard.md)
+[*](marxism.md)
+[*](fizzbuzz.md)
+[*](logic_gate.md)
+[*](living.md)
+[*](noise.md)
+[*](or.md)
+[*](mouse.md)
+[*](acronym.md)
+[*](island.md)
+[*](programming.md)
+[*](arch.md)
+[*](fourier_transform.md)
+[*](double_buffering.md)
+[*](coding.md)
+[*](demo.md)
+[*](arch.md)
+[*](fail_ab.md)
+[*](youtube.md)
+[*](rms.md)
+[*](wiki_style.md)
+[*](malware.md)
+[*](anarch.md)
+[*](version_numbering.md)
+[*](bloat.md)
+[*](cyberbullying.md)
+[*](programming.md)
+[*](rsa.md)
+[*](mandelbrot_set.md)
+[*](logic_circuit.md)
+[*](open_console.md)
+[*](nokia.md)
+[*](ascii.md)
+[*](robot.md)
+[*](minigame.md)
+[*](education.md)
+[*](sorting.md)
+[*](tensor_product.md)
+[*](free_universe.md)
+[*](slowly_boiling_the_frog.md)
+[*](transistor.md)
+[*](easier_done_than_said.md)
+[*](censorship.md)
+[*](universe.md)
+[*](normalization.md)
+[*](hitler.md)
+[*](privacy.md)
+[*](python.md)
+[*](frameless.md)
+[*](less_retarded_society.md)
+[*](entrepreneur.md)
+[*](framework.md)
+[*](programming_style.md)
+[*](wolf3d.md)
+[*](shader.md)
+[*](znk.md)
+[*](chaos.md)
+[*](3d_rendering.md)
+[*](ascii_art.md)
+[*](bloat.md)
+[*](hash.md)
+[*](terry_davis.md)
+[*](hard_to_learn_easy_to_master.md)
+[*](randomness.md)
+[*](soydev.md)
+[*](portability.md)
+[*](smart.md)
+[*](raycasting.md)
+[*](raylib.md)
+[*](capitalist_singularity.md)
+[*](used.md)
+[*](gnu.md)
+[*](lambda_calculus.md)
+[*](microtransaction.md)
+[*](free_culture.md)
+[*](openai.md)
+[*](privacy.md)
+[*](netstalking.md)
+[*](compsci.md)
+[*](apple.md)
+[*](atan.md)
+[*](goodbye_world.md)
+[*](linux.md)
+[*](hero.md)
+[*](zuckerberg.md)
+[*](digital_signature.md)
+[*](lil.md)
+[*](abstraction.md)
+[*](ioccc.md)
+[*](zuckerberg.md)
+[*](hacking.md)
+[*](c_tutorial.md)
+[*](rust.md)
+[*](julia_set.md)
+[*](autoupdate.md)
+[*](music.md)
+[*](rationalwiki.md)
+[*](settled.md)
+[*](vim.md)
+[*](future.md)
+[*](normalization.md)
+[*](pseudominimalism.md)
+[*](teletext.md)
+[*](usa.md)
+[*](de_facto.md)
+[*](holy_war.md)
+[*](version_numbering.md)
+[*](c_tutorial.md)
+[*](easy_to_learn_hard_to_master.md)
+[*](python.md)
+[*](double_buffering.md)
+[*](backgammon.md)
+[*](splinternet.md)
+[*](universe.md)
+[*](mainstream.md)
+[*](sw.md)
+[*](line.md)
+[*](tinyphysicsengine.md)
+[*](and.md)
+[*](smallchesslib.md)
+[*](foss.md)
+[*](windows.md)
+[*](fail_ab.md)
+[*](dungeons_and_dragons.md)
+[*](css.md)
+[*](name_is_important.md)
+[*](optimism.md)
+[*](permacomputing_wiki.md)
+[*](formal_language.md)
+[*](monad.md)
+[*](cpu.md)
+[*](sdf.md)
+[*](real_number.md)
+[*](reactionary_software.md)
+[*](luke_smith.md)
+[*](steve_jobs.md)
+[*](art.md)
+[*](youtube.md)
+[*](approximation.md)
+[*](duskos.md)
+[*](acronym.md)
+[*](jokes.md)
+[*](social_inertia.md)
+[*](encyclopedia.md)
+[*](data_structure.md)
+[*](unfuck.md)
+[*](pedophilia.md)
+[*](greenwashing.md)
+[*](pseudo3d.md)
+[*](wikiwikiweb.md)
+[*](cancel_culture.md)
+[*](nigger.md)
+[*](julia_set.md)
+[*](history.md)
+[*](free_speech.md)
+[*](algorithm.md)
+[*](sorting.md)
+[*](copyfree.md)
+[*](analog.md)
+[*](right.md)
+[*](usenet.md)
+[*](name_is_important.md)
+[*](proprietary_software.md)
+[*](float.md)
+[*](cheating.md)
+[*](README.md)
+[*](education.md)
+[*](pride.md)
+[*](lgbt.md)
+[*](regex.md)
+[*](earth.md)
+[*](cloudflare.md)
+[*](rationalization.md)
+[*](gnu.md)
+[*](graphics.md)
+[*](distrohopping.md)
+[*](anal_bead.md)
+[*](42.md)
+[*](go.md)
+[*](semiconductor.md)
+[*](rapeware.md)
+[*](dungeons_and_dragons.md)
+[*](game.md)
+[*](c_sharp.md)
+[*](race.md)
+[*](geek.md)
+[*](exercises.md)
+[*](atheism.md)
+[*](java.md)
+[*](wiki_style.md)
+[*](java.md)
+[*](lmao.md)
+[*](tranny.md)
+[*](calculus.md)
+[*](fork.md)
+[*](friend_detox.md)
+[*](programming_tips.md)
+[*](wiki_post_mortem.md)
+[*](sqrt.md)
+[*](physics.md)
+[*](raycastlib.md)
+[*](turing_machine.md)
+[*](game_of_life.md)
+[*](3d_model.md)
+[*](encryption.md)
+[*](motivation.md)
+[*](pd.md)
+[*](cpu.md)
+[*](42.md)
+[*](fourier_transform.md)
+[*](3d_modeling.md)
+[*](dependency.md)
+[*](no_knowledge_proof.md)
+[*](boat.md)
+[*](mouse.md)
+[*](future.md)
+[*](justice.md)
+[*](yes_they_can.md)
+[*](ssao.md)
+[*](sanism.md)
+[*](creative_commons.md)
+[*](fear_culture.md)
+[*](pseudominimalism.md)
+[*](selflessness.md)
+[*](political_correctness.md)
+[*](bit_hack.md)
+[*](nc.md)
+[*](sin.md)
+[*](fixed_point.md)
+[*](game_engine.md)
+[*](military.md)
+[*](venus_project.md)
+[*](selflessness.md)
+[*](marxism.md)
+[*](color.md)
+[*](recursion.md)
+[*](zero.md)
+[*](normalization.md)
+[*](ted_kaczynski.md)
+[*](gaywashing.md)
+[*](old.md)
+[*](low_poly.md)
+[*](turing_machine.md)
+[*](corporation.md)
+[*](nord_vpn.md)
+[*](humorwashing.md)
[*](soyence.md)
+[*](less_retarded_hardware.md)
+[*](transistor.md)
+[*](flatland.md)
+[*](cloudflare.md)
+[*](wizard.md)
+[*](portability.md)
+[*](sw.md)
+[*](comment.md)
+[*](english.md)
+[*](lmao.md)
+[*](black.md)
+[*](nigger.md)
+[*](apple.md)
+[*](tree.md)
+[*](lgbt.md)
+[*](sw_rendering.md)
+[*](jargon_file.md)
+[*](bbs.md)
+[*](graveyard.md)
+[*](progress.md)
+[*](ascii_art.md)
+[*](xonotic.md)
+[*](open_console.md)
+[*](technology.md)
+[*](murderer.md)
+[*](nokia.md)
+[*](temple_os.md)
+[*](throwaway_script.md)
+[*](real_number.md)
+[*](john_carmack.md)
+[*](just_werks.md)
+[*](often_confused.md)
+[*](modern_software.md)
+[*](chinese.md)
+[*](hexadecimal.md)
+[*](gay.md)
+[*](uxn.md)
+[*](information.md)
+[*](disease.md)
+[*](nc.md)
+[*](kids_these_days.md)
+[*](dramatica.md)
+[*](freedom.md)
+[*](quaternion.md)
+[*](open_source.md)
+[*](wiki_pages.md)
+[*](jargon_file.md)
+[*](wiki_stats.md)
+[*](gigachad.md)
+[*](adam_smith.md)
+[*](zero.md)
+[*](42.md)
+[*](3d_rendering.md)
+[*](shitword.md)
+[*](english.md)
+[*](lrs_wiki.md)
+[*](marketing.md)
+[*](real_number.md)
+[*](girl.md)
+[*](bs.md)
+[*](javascript.md)
+[*](conum.md)
+[*](licar.md)
+[*](open_source.md)
+[*](chasm_the_rift.md)
+[*](lisp.md)
+[*](tor.md)
+[*](tor.md)
+[*](arch.md)
+[*](libertarianism.md)
+[*](newspeak.md)
+[*](hero.md)
+[*](acronym.md)
+[*](democracy.md)
+[*](byte.md)
+[*](css.md)
+[*](trump.md)
+[*](saf.md)
+[*](future_proof.md)
+[*](programming_language.md)
+[*](devuan.md)
+[*](portability.md)
+[*](niggercoin.md)
+[*](fourier_transform.md)
+[*](encryption.md)
+[*](consumerism.md)
+[*](reddit.md)
+[*](productivity_cult.md)
+[*](derivative.md)
+[*](intellectual_property.md)
+[*](dinosaur.md)
+[*](sub_rosa.md)
+[*](public_domain.md)
+[*](consumerism.md)
+[*](rule110.md)
+[*](update_culture.md)
+[*](wolf3d.md)
+[*](fediverse.md)
+[*](mob_software.md)
+[*](finished.md)
+[*](viznut.md)
+[*](avpd.md)
+[*](suicide.md)
+[*](free_will.md)
+[*](wiki_tldr.md)
+[*](fuck.md)
+[*](log.md)
+[*](malware.md)
+[*](unary.md)
+[*](newspeak.md)
+[*](x86.md)
+[*](oop.md)
+[*](marketing.md)
+[*](everyone_does_it.md)
+[*](fear_culture.md)
+[*](smart.md)
+[*](antivirus_paradox.md)
+[*](debugging.md)
+[*](fantasy_console.md)
+[*](frameless.md)
+[*](math.md)
+[*](combinatorics.md)
+[*](beauty.md)
+[*](pedophilia.md)
+[*](duke3d.md)
+[*](unfuck.md)
+[*](easy_to_learn_hard_to_master.md)
+[*](computational_complexity.md)
+[*](collision.md)
+[*](shitword.md)
+[*](usenet.md)
+[*](humidity.md)
+[*](bitreich.md)
+[*](assembly.md)
+[*](lrs_wiki.md)
+[*](tool_slave.md)
+[*](golang.md)
+[*](idiot_fallacy.md)
+[*](and.md)
+[*](culture.md)
+[*](steganography.md)
+[*](terry_davis.md)
+[*](creative_commons.md)
+[*](pride.md)
+[*](license.md)
+[*](tool_slave.md)
+[*](arduboy.md)
+[*](paywall.md)
+[*](assertiveness.md)
+[*](axiom_of_choice.md)
+[*](hacker_culture.md)
+[*](google.md)
+[*](sigbovik.md)
+[*](hacker_culture.md)
+[*](3d_model.md)
+[*](stereotype.md)
+[*](everyone_does_it.md)
+[*](autoupdate.md)
+[*](operating_system.md)
+[*](de_facto.md)
+[*](rationalwiki.md)
+[*](wikipedia.md)
+[*](hacking.md)
+[*](rapeware.md)
+[*](byte.md)
+[*](update_culture.md)
+[*](mud.md)
+[*](double_buffering.md)
+[*](aaron_swartz.md)
+[*](loquendo.md)
+[*](dick_reveal.md)
+[*](autostereogram.md)
+[*](ascii_art.md)
+[*](function.md)
+[*](goodbye_world.md)
+[*](creative_commons.md)
+[*](f2p.md)
+[*](wavelet_transform.md)
+[*](portal_rendering.md)
+[*](world_broadcast.md)
+[*](marxism.md)
+[*](project.md)
+[*](lotr.md)
+[*](lrs_dictionary.md)
+[*](js.md)
+[*](see_through_clothes.md)
+[*](sanism.md)
+[*](entrepreneur.md)
+[*](left_right.md)
+[*](settled.md)
+[*](anticompany.md)
+[*](os.md)
+[*](asmr.md)
+[*](dick_reveal.md)
+[*](systemd.md)
+[*](copyfree.md)
+[*](terry_davis.md)
+[*](library.md)
+[*](hero_culture.md)
+[*](complexity.md)
+[*](bloat_monopoly.md)
+[*](money.md)
+[*](jokes.md)
+[*](formal_language.md)
+[*](hash.md)
+[*](paradigm.md)
+[*](asmr.md)
+[*](analog.md)
+[*](wikipedia.md)
+[*](number.md)
+[*](mud.md)
+[*](homelessness.md)
+[*](soyence.md)
+[*](trusting_trust.md)
+[*](sudoku.md)
+[*](often_misunderstood.md)
+[*](myths.md)
+[*](markov_chain.md)
+[*](cpu.md)
+[*](minigame.md)
+[*](esolang.md)
+[*](primitive_3d.md)
+[*](ethics.md)
+[*](firmware.md)
+[*](resnicks_termite.md)
+[*](nonogram.md)
+[*](gender_studies.md)
+[*](interesting.md)
+[*](demoscene.md)
+[*](corporation.md)
+[*](shader.md)
+[*](wiki_pages.md)
+[*](censorship.md)
+[*](woman.md)
+[*](magic.md)
+[*](hardware.md)
+[*](kiwifarms.md)
+[*](just_werks.md)
+[*](dependency.md)
+[*](altruism.md)
+[*](twos_complement.md)
+[*](ubi.md)
+[*](number.md)
+[*](io.md)
+[*](compression.md)
+[*](oop.md)
+[*](bilinear.md)
+[*](project.md)
+[*](wiki_authors.md)
+[*](xonotic.md)
+[*](bootstrap.md)
+[*](c_pitfalls.md)
+[*](people.md)
+[*](procgen.md)
+[*](tree.md)
+[*](foss.md)
+[*](pi.md)
+[*](bazaar.md)
+[*](dynamic_programming.md)
+[*](paradigm.md)
+[*](homelessness.md)
+[*](pascal.md)
+[*](wiki_tldr.md)
+[*](iq.md)
+[*](vector.md)
+[*](integral.md)
+[*](js.md)
+[*](cracking.md)
+[*](data_hoarding.md)
+[*](encryption.md)
+[*](entropy.md)
+[*](hyperoperation.md)
+[*](egoism.md)
+[*](microtransaction.md)
+[*](wiki_authors.md)
+[*](3d_rendering.md)
+[*](ui.md)
+[*](wikidata.md)
+[*](motivation.md)
+[*](aaron_swartz.md)
+[*](physics_engine.md)
+[*](good_enough.md)
+[*](twos_complement.md)
+[*](reactionary_software.md)
+[*](implicit.md)
+[*](cheating.md)
+[*](gender_studies.md)
+[*](tinyphysicsengine.md)
+[*](golang.md)
+[*](minesweeper.md)
+[*](chess.md)
+[*](wiki_style.md)
+[*](boat.md)
+[*](forth.md)
+[*](freemasonry.md)
+[*](21st_century.md)
+[*](tpe.md)
+[*](fascist.md)
+[*](triangle.md)
+[*](hard_to_learn_easy_to_master.md)
+[*](security.md)
+[*](docker.md)
+[*](cracking.md)
+[*](free_will.md)
+[*](loquendo.md)
+[*](kiss.md)
+[*](newspeak.md)
+[*](rock.md)
+[*](right.md)
+[*](analog.md)
+[*](slowly_boiling_the_frog.md)
+[*](anorexia.md)
+[*](3d_modeling.md)
+[*](elon_musk.md)
+[*](racism.md)
+[*](fizzbuzz.md)
+[*](tranny.md)
+[*](proprietary.md)
+[*](quine.md)
+[*](quaternion.md)
+[*](facebook.md)
+[*](cache.md)
+[*](plusnigger.md)
+[*](permacomputing_wiki.md)
+[*](czechia.md)
+[*](humidity.md)
+[*](palette.md)
+[*](splinternet.md)
+[*](cpp.md)
+[*](egg_code.md)
+[*](fantasy_console.md)
+[*](fascism.md)
+[*](f2p.md)
+[*](usenet.md)
+[*](luke_smith.md)
+[*](football.md)
+[*](optimism.md)
+[*](unix_philosophy.md)
+[*](unicode.md)
+[*](disease.md)
+[*](linux.md)
+[*](html.md)
+[*](computational_complexity.md)
+[*](patent.md)
+[*](windows.md)
+[*](mental_outlaw.md)
+[*](brain_software.md)
+[*](soyence.md)
+[*](competition.md)
+[*](anarch.md)
+[*](sudoku.md)
+[*](dinosaur.md)
+[*](aaron_swartz.md)
+[*](diogenes.md)
+[*](wavelet_transform.md)
+[*](freedom_distance.md)
+[*](life.md)
+[*](palette.md)
+[*](dynamic_programming.md)
+[*](rsa.md)
+[*](p_vs_np.md)
+[*](finished.md)
+[*](free.md)
+[*](xxiivv.md)
+[*](audiophilia.md)
+[*](pseudominimalism.md)
+[*](global_discussion.md)
+[*](coding.md)
+[*](rgb565.md)
+[*](c_sharp.md)
+[*](assembly.md)
+[*](git.md)
+[*](hexadecimal.md)
+[*](cyber.md)
+[*](toxic.md)
+[*](programming_language.md)
+[*](turing_machine.md)
+[*](microsoft.md)
+[*](fun.md)
+[*](esolang.md)
+[*](3d_modeling.md)
+[*](jedi_engine.md)
+[*](bootstrap.md)
+[*](gemini.md)
+[*](world_broadcast.md)
+[*](collapse.md)
+[*](murderer.md)
+[*](rust.md)
+[*](fantasy_console.md)
+[*](kiss.md)
+[*](noise.md)
+[*](pokitto.md)
+[*](interaction_net.md)
+[*](books.md)
+[*](pedophilia.md)
+[*](internet.md)
+[*](approximation.md)
+[*](interaction_net.md)
+[*](yes_they_can.md)
+[*](good_enough.md)
+[*](books.md)
+[*](wiki_stats.md)
+[*](bytecode.md)
+[*](body_shaming.md)
+[*](trom.md)
+[*](intellectual_property.md)
+[*](asexuality.md)
+[*](copyleft.md)
+[*](boot.md)
+[*](trash_magic.md)
+[*](charity_sex.md)
+[*](used.md)
+[*](programming_tips.md)
+[*](niger.md)
+[*](quake.md)
+[*](backgammon.md)
+[*](capitalism.md)
+[*](myths.md)
+[*](egg_code.md)
+[*](mud.md)
+[*](ashley_jones.md)
+[*](smallchesslib.md)
+[*](minigame.md)
+[*](shogi.md)
+[*](nd.md)
+[*](function.md)
+[*](freedom_distance.md)
+[*](tinyphysicsengine.md)
+[*](complexity.md)
+[*](dungeons_and_dragons.md)
+[*](physics.md)
+[*](pd.md)
+[*](magic.md)
+[*](interpolation.md)
+[*](human_language.md)
+[*](proof.md)
+[*](one.md)
+[*](mipmap.md)
+[*](hero_culture.md)
+[*](nokia.md)
+[*](fight_culture.md)
+[*](proprietary_software.md)
+[*](free_software.md)
+[*](wiki_pages.md)
+[*](game_engine.md)
+[*](libertarianism.md)
+[*](stereotype.md)
+[*](iq.md)
+[*](shitpress.md)
+[*](ashley_jones.md)
+[*](wiby.md)
+[*](fuck.md)
+[*](assertiveness.md)
+[*](pascal.md)
+[*](recursion.md)
+[*](unary.md)
+[*](regex.md)
+[*](sudoku.md)
+[*](art.md)
+[*](fediverse.md)
+[*](macrofucker.md)
+[*](malware.md)
+[*](procgen.md)
+[*](c_sharp.md)
+[*](dog.md)
+[*](gigachad.md)
+[*](wirtual.md)
+[*](neural_network.md)
+[*](collapse.md)
+[*](library.md)
+[*](free_universe.md)
+[*](facebook.md)
+[*](comun.md)
+[*](portal_rendering.md)
+[*](woman.md)
+[*](sqrt.md)
+[*](langtons_ant.md)
+[*](collision.md)
+[*](zoomer.md)
+[*](public_domain_computer.md)
+[*](boot.md)
+[*](modern_software.md)
+[*](mental_outlaw.md)
+[*](langtons_ant.md)
+[*](logic_circuit.md)
+[*](analytic_geometry.md)
+[*](bit.md)
+[*](shitpress.md)
+[*](military.md)
+[*](copyleft.md)
+[*](cc.md)
+[*](quantum_gate.md)
+[*](public_domain_computer.md)
+[*](technology.md)
+[*](asexuality.md)
+[*](collision_detection.md)
+[*](prime.md)
+[*](future_proof.md)
+[*](wolf3d.md)
+[*](sub_rosa.md)
+[*](kids_these_days.md)
+[*](anarch.md)
+[*](tas.md)
+[*](4chan.md)
+[*](xd.md)
+[*](less_retarded_society.md)
+[*](fight_culture.md)
+[*](rsa.md)
+[*](patent.md)
+[*](tom_scott.md)
+[*](floss.md)
+[*](work.md)
+[*](elo.md)
+[*](dodleston.md)
+[*](transsexual.md)
+[*](needed.md)
+[*](great_trap.md)
+[*](attribution.md)
+[*](lrs.md)
+[*](disease.md)
+[*](small3dlib.md)
+[*](productivity_cult.md)
+[*](law.md)
+[*](js.md)
+[*](faggot.md)
+[*](os.md)
+[*](color.md)
+[*](capitalist_software.md)
+[*](duke3d.md)
+[*](friend_detox.md)
+[*](bbs.md)
+[*](left.md)
+[*](wikiwikiweb.md)
+[*](foss.md)
+[*](hero_culture.md)
+[*](gay.md)
+[*](githopping.md)
+[*](left.md)
+[*](unix_philosophy.md)
+[*](slowly_boiling_the_frog.md)
+[*](coding.md)
+[*](esolang.md)
+[*](human_language.md)
+[*](web.md)
+[*](programming_language.md)
+[*](sqrt.md)
+[*](rule110.md)
+[*](piracy.md)
+[*](comun.md)
+[*](popularization.md)
+[*](cope.md)
+[*](audiophilia.md)
+[*](bit.md)
+[*](hitler.md)
+[*](build_engine.md)
+[*](framework.md)
+[*](security.md)
+[*](watchdog.md)
+[*](copyright.md)
+[*](digital_signature.md)
+[*](wikidata.md)
+[*](rgb565.md)
+[*](trash_magic.md)
+[*](free_body.md)
+[*](femoid.md)
+[*](neural_network.md)
+[*](hyperoperation.md)
+[*](memory_management.md)
+[*](information.md)
+[*](openarena.md)
+[*](free_hardware.md)
+[*](fight.md)
+[*](unix_philosophy.md)
+[*](t3x.md)
+[*](hard_to_learn_easy_to_master.md)
+[*](rights_culture.md)
+[*](plusnigger.md)
+[*](plan9.md)
+[*](niger.md)
+[*](hacking.md)
+[*](fight.md)
+[*](mental_outlaw.md)
+[*](npc.md)
+[*](resnicks_termite.md)
+[*](morality.md)
+[*](social_inertia.md)
+[*](left_right.md)
+[*](collapse.md)
+[*](game_of_life.md)
+[*](avpd.md)
+[*](chess.md)
+[*](shit.md)
+[*](fixed_point.md)
+[*](compiler_bomb.md)
+[*](discalimer.md)
+[*](antialiasing.md)
+[*](microsoft.md)
+[*](rationalwiki.md)
+[*](wiki_post_mortem.md)
+[*](forth.md)
+[*](determinism.md)
+[*](easier_done_than_said.md)
+[*](ascii.md)
+[*](copyfree.md)
+[*](holy_war.md)
+[*](probability.md)
+[*](html.md)
+[*](justice.md)
+[*](c_tutorial.md)
+[*](flatland.md)
+[*](trash_magic.md)
+[*](lmao.md)
+[*](moderation.md)
+[*](bs.md)
+[*](often_confused.md)
+[*](jesus.md)
+[*](jokes.md)
+[*](xd.md)
+[*](nationalism.md)
+[*](anticompany.md)
+[*](loc.md)
+[*](bloat_monopoly.md)
+[*](right.md)
+[*](throwaway_script.md)
+[*](operating_system.md)
+[*](encyclopedia.md)
+[*](leading_the_pig_to_the_slaughterhouse.md)
+[*](name_is_important.md)
+[*](macrofucker.md)
+[*](sw_rendering.md)
+[*](t3x.md)
+[*](triangle.md)
+[*](bullshit.md)
+[*](audiophilia.md)
+[*](interplanetary_internet.md)
+[*](90s.md)
+[*](piracy.md)
+[*](cyber.md)
+[*](kids_these_days.md)
+[*](mipmap.md)
+[*](float.md)
+[*](software.md)
+[*](trom.md)
+[*](distance.md)
+[*](wiki_tldr.md)
+[*](logic_gate.md)
+[*](noise.md)
+[*](free_universe.md)
+[*](primitive_3d.md)
+[*](gopher.md)
+[*](wow.md)
+[*](axiom_of_choice.md)
+[*](chess.md)
+[*](compression.md)
+[*](fizzbuzz.md)
+[*](love.md)
+[*](integral.md)
+[*](bytecode.md)
+[*](python.md)
+[*](steve_jobs.md)
+[*](jesus.md)
+[*](arduboy.md)
+[*](4chan.md)
+[*](sanism.md)
+[*](chinese.md)
+[*](backpropagation.md)
+[*](history.md)
+[*](cloud.md)
+[*](infinity.md)
+[*](elo.md)
+[*](githopping.md)
+[*](markov_chain.md)
+[*](kek.md)
+[*](free_culture.md)
+[*](cat_v.md)
+[*](ui.md)
+[*](go.md)
+[*](combinatorics.md)
+[*](rms.md)
+[*](free_hardware.md)
+[*](life.md)
+[*](information.md)
+[*](old.md)
+[*](cancer.md)
+[*](thrembo.md)
+[*](art.md)
+[*](john_carmack.md)
+[*](nord_vpn.md)
+[*](fascist.md)
+[*](rust.md)
+[*](probability.md)
+[*](wiki_rights.md)
+[*](ioccc.md)
+[*](zoomer.md)
+[*](quaternion.md)
+[*](axiom_of_choice.md)
+[*](float.md)
+[*](racetrack.md)
+[*](nigeria.md)
+[*](shit.md)
+[*](assertiveness.md)
+[*](monad.md)
+[*](graphics.md)
+[*](exercises.md)
+[*](linear_algebra.md)
+[*](rationalization.md)
+[*](analytic_geometry.md)
+[*](sigbovik.md)
+[*](furry.md)
+[*](semiconductor.md)
+[*](smol_internet.md)
+[*](mechanical.md)
+[*](humorwashing.md)
+[*](physics_engine.md)
+[*](wiki_post_mortem.md)
+[*](small3dlib.md)
+[*](determinism.md)
+[*](quine.md)
+[*](computer.md)
+[*](fixed_point.md)
+[*](ai.md)
+[*](4chan.md)
+[*](nonogram.md)
+[*](nonogram.md)
+[*](throwaway_script.md)
+[*](docker.md)
+[*](public_domain.md)
+[*](doom.md)
+[*](lrs_dictionary.md)
+[*](antialiasing.md)
+[*](evil.md)
+[*](pseudo3d.md)
+[*](minimalism.md)
+[*](go.md)
+[*](blender.md)
+[*](saf.md)
+[*](xxiivv.md)
+[*](html.md)
+[*](ram.md)
+[*](attribution.md)
+[*](znk.md)
+[*](race.md)
+[*](consumerism.md)
+[*](90s.md)
+[*](xor.md)
+[*](less_retarded_software.md)
+[*](zen.md)
+[*](logic_gate.md)
+[*](bytebeat.md)
+[*](arduboy.md)
+[*](moderation.md)
+[*](coc.md)
+[*](loquendo.md)
+[*](app.md)
+[*](free_software.md)
+[*](complexity.md)
+[*](derivative.md)
+[*](loc.md)
+[*](troll.md)
+[*](adam_smith.md)
+[*](devuan.md)
+[*](sin.md)
+[*](fork.md)
+[*](education.md)
+[*](uxn.md)
+[*](social_inertia.md)
+[*](morality.md)
+[*](flatland.md)
+[*](anarchism.md)
+[*](21st_century.md)
+[*](byte.md)
+[*](e.md)
+[*](unretard.md)
+[*](fascism.md)
+[*](atheism.md)
+[*](free_culture.md)
+[*](phd.md)
+[*](demoscene.md)
+[*](atan.md)
+[*](implicit.md)
+[*](wiby.md)
+[*](brainfuck.md)
+[*](anpac.md)
+[*](c_pitfalls.md)
+[*](emoticon.md)
+[*](unretard.md)
+[*](drummyfish.md)
+[*](rights_culture.md)
+[*](shader.md)
+[*](shogi.md)
+[*](political_correctness.md)
+[*](cracker.md)
+[*](luke_smith.md)
+[*](gay.md)
+[*](wirtual.md)
+[*](faq.md)
+[*](deferred_shading.md)
+[*](openai.md)
+[*](xor.md)
+[*](racism.md)
+[*](windows.md)
+[*](tpe.md)
+[*](dodleston.md)
+[*](low_poly.md)
+[*](permacomputing.md)
+[*](xxiivv.md)
+[*](computational_complexity.md)
+[*](facebook.md)
+[*](dick_reveal.md)
+[*](less_retarded_software.md)
+[*](quantum_gate.md)
+[*](people.md)
+[*](web.md)
+[*](see_through_clothes.md)
+[*](digital.md)
+[*](bloat.md)
+[*](lrs_dictionary.md)
+[*](aliasing.md)
+[*](racetrack.md)
+[*](tech.md)
+[*](deferred_shading.md)
+[*](raylib.md)
+[*](dinosaur.md)
+[*](unicode.md)
+[*](internet.md)
+[*](minesweeper.md)
+[*](living.md)
+[*](sjw.md)
+[*](attribution.md)
+[*](atheism.md)
+[*](raycastlib.md)
+[*](cc.md)
+[*](beauty.md)
+[*](dramatica.md)
+[*](tech.md)
+[*](conum.md)
+[*](ashley_jones.md)
+[*](wiki_rights.md)
+[*](capitalism.md)
+[*](bullshit.md)
+[*](digital.md)
+[*](optimization.md)
+[*](books.md)
+[*](cc.md)
+[*](anal_bead.md)
+[*](rms.md)
+[*](humorwashing.md)
+[*](adam_smith.md)
+[*](README.md)
+[*](humidity.md)
+[*](one.md)
+[*](gaywashing.md)
+[*](wikidata.md)
+[*](compiler_bomb.md)
+[*](progress.md)
+[*](pseudorandomness.md)
+[*](technology.md)
+[*](billboard.md)
+[*](chaos.md)
+[*](network.md)
+[*](no_knowledge_proof.md)
+[*](ui.md)
+[*](countercomplex.md)
+[*](racetrack.md)
+[*](crypto.md)
+[*](security.md)
+[*](speech_synthesis.md)
+[*](selflessness.md)
+[*](sin.md)
+[*](anpac.md)
+[*](wavelet_transform.md)
+[*](maintenance.md)
+[*](sdf.md)
+[*](idiot_fallacy.md)
+[*](atan.md)
+[*](gender_studies.md)
+[*](exercises.md)
+[*](sjw.md)
+[*](ted_kaczynski.md)
+[*](proprietary.md)
+[*](data_hoarding.md)
+[*](jesus.md)
+[*](hitler.md)
+[*](raycasting.md)
+[*](microtheft.md)
+[*](youtube.md)
+[*](derivative.md)
+[*](macrofucker.md)
+[*](duskos.md)
+[*](open_source.md)
+[*](tas.md)
+[*](public_domain.md)
+[*](phd.md)
+[*](science.md)
+[*](earth.md)
+[*](tattoo.md)
+[*](suckless.md)
+[*](wiki_rights.md)
+[*](girl.md)
+[*](cos.md)
+[*](greenwashing.md)
+[*](communism.md)
+[*](implicit.md)
+[*](sub_rosa.md)
+[*](unfuck.md)
+[*](body_shaming.md)
+[*](sdf.md)
+[*](compsci.md)
+[*](netstalking.md)
+[*](dependency.md)
+[*](toxic.md)
+[*](logic.md)
+[*](bill_gates.md)
+[*](competition.md)
+[*](optimization.md)
+[*](robot.md)
+[*](communism.md)
+[*](kwangmyong.md)
+[*](autoupdate.md)
+[*](avpd.md)
+[*](drummyfish.md)
+[*](smol_internet.md)
+[*](markov_chain.md)
+[*](quantum_gate.md)
+[*](how_to.md)
+[*](hacker_culture.md)
+[*](qubit.md)
+[*](programming_tips.md)
+[*](binary.md)
+[*](hack.md)
+[*](crow_funding.md)
+[*](trolling.md)
+[*](bbs.md)
+[*](fight_culture.md)
+[*](how_to.md)
+[*](girl.md)
+[*](tranny_software.md)
+[*](love.md)
+[*](cope.md)
+[*](cracker.md)
+[*](e.md)
+[*](english.md)
+[*](free.md)
+[*](moderation.md)
+[*](great_trap.md)
+[*](popularization.md)
+[*](marketing.md)
+[*](life.md)
+[*](diogenes.md)
+[*](corporation.md)
+[*](small3dlib.md)
+[*](brain_software.md)
+[*](lrs_wiki.md)
+[*](freedom_distance.md)
+[*](suckless.md)
+[*](hw.md)
+[*](steganography.md)
+[*](build_engine.md)
+[*](game_of_life.md)
+[*](mainstream.md)
+[*](pd.md)
+[*](modern.md)
+[*](build_engine.md)
+[*](countercomplex.md)
+[*](procgen.md)
+[*](abstraction.md)
+[*](lil.md)
+[*](left_right.md)
+[*](main.md)
+[*](fqa.md)
+[*](logic.md)
+[*](number.md)
+[*](dog.md)
+[*](cyber.md)
+[*](patent.md)
+[*](modern_software.md)
+[*](nationalism.md)
+[*](microtheft.md)
+[*](chasm_the_rift.md)
+[*](calculus.md)
+[*](bytecode.md)
+[*](antivirus_paradox.md)
+[*](suicide.md)
+[*](popularization.md)
+[*](anorexia.md)
+[*](niggercoin.md)
+[*](math.md)
+[*](trusting_trust.md)
+[*](trolling.md)
+[*](google.md)
+[*](data_structure.md)
+[*](programming_style.md)
+[*](ancap.md)
+[*](needed.md)
+[*](tensor_product.md)
+[*](floss.md)
+[*](ronja.md)
+[*](color.md)
+[*](internet.md)
+[*](data_hoarding.md)
+[*](io.md)
+[*](lotr.md)
+[*](nationalism.md)
+[*](rock.md)
+[*](iq.md)
+[*](marble_race.md)
+[*](temple_os.md)
+[*](bill_gates.md)
+[*](README.md)
+[*](bootstrap.md)
+[*](feminism.md)
+[*](fqa.md)
+[*](distance.md)
+[*](democracy.md)
+[*](firmware.md)
+[*](steve_jobs.md)
+[*](app.md)
+[*](shitpress.md)
+[*](physics.md)
+[*](mob_software.md)
+[*](debugging.md)
+[*](programming.md)
+[*](mechanical.md)
+[*](compression.md)
+[*](julia_set.md)
+[*](physics_engine.md)
+[*](speech_synthesis.md)
+[*](body_shaming.md)
+[*](twos_complement.md)
+[*](bit_hack.md)
+[*](openai.md)
+[*](f2p.md)
+[*](duskos.md)
+[*](political_correctness.md)
+[*](diogenes.md)
+[*](coc.md)
+[*](tranny_software.md)
+[*](ssao.md)
+[*](shitword.md)
+[*](brain_software.md)
+[*](pseudorandomness.md)
+[*](fractal.md)
+[*](ai.md)
+[*](emoticon.md)
+[*](fractal.md)
+[*](proprietary_software.md)
+[*](kek.md)
+[*](project.md)
+[*](openarena.md)
+[*](geek.md)
+[*](minimalism.md)
+[*](floss.md)
+[*](triangle.md)
+[*](ram.md)
+[*](free_body.md)
+[*](vector.md)
+[*](world_broadcast.md)
+[*](boat.md)
+[*](unix.md)
+[*](elon_musk.md)
+[*](main.md)
+[*](math.md)
+[*](regex.md)
+[*](prime.md)
+[*](hw.md)
+[*](anarchism.md)
+[*](low_poly.md)
+[*](steganography.md)
+[*](freedom.md)
+[*](freemasonry.md)
+[*](egg_code.md)
+[*](lisp.md)
+[*](graphics.md)
+[*](kek.md)
+[*](music.md)
+[*](ancap.md)
+[*](x86.md)
+[*](pascal.md)
+[*](tensor_product.md)
+[*](copyleft.md)
+[*](permacomputing.md)
+[*](app.md)
+[*](rgb332.md)
+[*](web.md)
+[*](deferred_shading.md)
+[*](cancel_culture.md)
+[*](wiki_authors.md)
+[*](crime_against_economy.md)
+[*](compsci.md)
+[*](proprietary.md)
+[*](finished.md)
+[*](backpropagation.md)
+[*](golang.md)
+[*](githopping.md)
+[*](tranny.md)
+[*](coc.md)
+[*](whale.md)
+[*](charity_sex.md)
+[*](game_design.md)
+[*](fractal.md)
+[*](interesting.md)
+[*](tangram.md)
+[*](troll.md)
+[*](linear_algebra.md)
+[*](bytebeat.md)
+[*](infinity.md)
+[*](javascript.md)
+[*](homelessness.md)
+[*](charity_sex.md)
+[*](morality.md)
+[*](free_speech.md)
+[*](and.md)
+[*](conum.md)
+[*](shit.md)
+[*](leading_the_pig_to_the_slaughterhouse.md)
+[*](brainfuck.md)
+[*](capitalist_software.md)
+[*](mouse.md)
+[*](venus_project.md)
+[*](compiler_bomb.md)
+[*](culture.md)
+[*](capitalist_singularity.md)
+[*](libre.md)
+[*](software.md)
+[*](raylib.md)
+[*](often_misunderstood.md)
+[*](combinatorics.md)
+[*](autostereogram.md)
+[*](global_discussion.md)
+[*](jedi_engine.md)
+[*](calculus.md)
+[*](money.md)
+[*](os.md)
+[*](troll.md)
+[*](pseudorandomness.md)
+[*](marble_race.md)
+[*](linux.md)
+[*](devuan.md)
+[*](duke3d.md)
+[*](zuckerberg.md)
+[*](leading_the_pig_to_the_slaughterhouse.md)
+[*](black.md)
+[*](netstalking.md)
+[*](www.md)
+[*](used.md)
+[*](sw_rendering.md)
+[*](ai.md)
+[*](ethics.md)
+[*](military.md)
+[*](vim.md)
+[*](often_misunderstood.md)
+[*](data_structure.md)
+[*](zen.md)
+[*](memory_management.md)
+[*](downto.md)
+[*](hero.md)
+[*](cyberbullying.md)
+[*](whale.md)
+[*](unix.md)
+[*](anorexia.md)
+[*](harry_potter.md)
+[*](formal_language.md)
+[*](100r.md)
+[*](wow.md)
+[*](quine.md)
+[*](approximation.md)
+[*](billboard.md)
+[*](chaos.md)
+[*](unicode.md)
+[*](history.md)
+[*](comment.md)
+[*](science.md)
+[*](brainfuck.md)
+[*](reactionary_software.md)
+[*](paywall.md)
+[*](evil.md)
+[*](rapeware.md)
+[*](graveyard.md)
+[*](entrepreneur.md)
+[*](see_through_clothes.md)
+[*](altruism.md)
+[*](e.md)
+[*](p_vs_np.md)
+[*](abstraction.md)
+[*](gopher.md)
+[*](libre.md)
+[*](www.md)
+[*](bit.md)
+[*](based.md)
+[*](lotr.md)
+[*](free_software.md)
+[*](capitalist_software.md)
+[*](main.md)
+[*](bill_gates.md)
+[*](c.md)
+[*](systemd.md)
+[*](apple.md)
+[*](bitreich.md)
+[*](murderer.md)
+[*](feminism.md)
+[*](old.md)
+[*](cpp.md)
+[*](jedi_engine.md)
+[*](viznut.md)
+[*](settled.md)
+[*](collision.md)
+[*](computer.md)
+[*](interplanetary_internet.md)
+[*](shortcut_thinking.md)
+[*](transistor.md)
+[*](black.md)
+[*](nanogenmo.md)
+[*](toxic.md)
+[*](cat_v.md)
+[*](proof.md)
+[*](based.md)
+[*](culture.md)
+[*](plusnigger.md)
+[*](liberalism.md)
+[*](binary.md)
+[*](cracking.md)
+[*](wiby.md)
+[*](beauty.md)
+[*](freemasonry.md)
+[*](distance.md)
+[*](czechia.md)
+[*](digital.md)
diff --git a/stereotype.md b/stereotype.md
index b295e6a..b2f700b 100644
--- a/stereotype.md
+++ b/stereotype.md
@@ -202,13 +202,13 @@ Some stereotypes are:
- huge families, very frequent gatherings and celebrations
- **Irish**:
- tough
- - drunk and violent
+ - drunk and violent (Urban Dictionary has an entry on "Irish Handcuffs", which means one has no free hands because he's carrying booze in both.)
- **Italian**:
- - handsome men, great lovers
+ - handsome men, great lovers (said to have big penises)
- very passionate, have heated emotional arguments even over trivial things
- in one way or another always involved with mafia
- family above everything, know and regularly meet very distant relatives at family gatherings
- - have moustaches
+ - have mustaches
- love pizza and pasta, men are great cooks
- talk with hands
- mamma mia, spaghetti pasta al dente
@@ -217,6 +217,7 @@ Some stereotypes are:
- heavy drinkers
- malnourished
- ugly depressive environment, just blocks of gray concrete and ruins of Soviet buildings everywhere
+ - may smell (Urban Dictionary has an entry on "Polish shower", standing for not showering and rather soaking oneself in extensive amounts of deodorant to cover the smell.)
- miserable
- kurwa
- **Scandinavia**:
diff --git a/wiki_pages.md b/wiki_pages.md
index 155a9fd..ff10c25 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)** (64) -- **[3d_model](3d_model.md)** (267) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (592) -- **[42](42.md)** (17) -- **[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)** (411) -- **[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)** (136) -- **[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)** (176) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (204) -- **[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)** (158) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (387) -- **[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)** (201) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (20) -- **[communism](communism.md)** (32) -- **[competition](competition.md)** (19) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (239) -- **[compsci](compsci.md)** (23) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (185) -- **[consumerism](consumerism.md)** (18) -- **[conum](conum.md)** (74) -- **[cope](cope.md)** (29) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (124) -- **[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)** (70) -- **[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)** (24) -- **[dependency](dependency.md)** (54) -- **[derivative](derivative.md)** (2) -- **[determinism](determinism.md)** (34) -- **[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)** (70) -- **[distance](distance.md)** (184) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (39) -- **[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)** (6) -- **[egg_code](egg_code.md)** (7) -- **[egoism](egoism.md)** (26) -- **[elo](elo.md)** (160) -- **[elon_musk](elon_musk.md)** (20) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (10) -- **[encyclopedia](encyclopedia.md)** (77) -- **[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)** (696) -- **[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)** (370) -- **[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)** (32) -- **[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)** (20) -- **[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)** (167) -- **[game_design](game_design.md)** (9) -- **[game_engine](game_engine.md)** (58) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (43) -- **[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)** (15) -- **[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)** (114) -- **[hitler](hitler.md)** (46) -- **[holy_war](holy_war.md)** (31) -- **[homelessness](homelessness.md)** (112) -- **[how_to](how_to.md)** (236) -- **[html](html.md)** (89) -- **[human_language](human_language.md)** (152) -- **[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)** (23) -- **[integral](integral.md)** (2) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (35) -- **[internet](internet.md)** (127) -- **[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)** (79) -- **[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)** (138) -- **[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)** (42) -- **[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)** (39) -- **[lmao](lmao.md)** (62) -- **[loc](loc.md)** (12) -- **[log](log.md)** (223) -- **[logic](logic.md)** (54) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (202) -- **[loquendo](loquendo.md)** (19) -- **[lotr](lotr.md)** (24) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (36) -- **[lrs](lrs.md)** (173) -- **[lrs_dictionary](lrs_dictionary.md)** (158) -- **[lrs_wiki](lrs_wiki.md)** (46) -- **[luke_smith](luke_smith.md)** (22) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (9) -- **[main](main.md)** (197) -- **[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)** (26) -- **[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)** (88) -- **[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)** (145) -- **[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)** (206) -- **[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)** (76) -- **[optimism](optimism.md)** (11) -- **[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)** (158) -- **[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)** (33) -- **[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)** (32) -- **[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)** (109) -- **[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)** (575) -- **[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)** (55) -- **[trash_magic](trash_magic.md)** (21) -- **[tree](tree.md)** (66) -- **[triangle](triangle.md)** (88) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (58) -- **[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)** (21) -- **[update_culture](update_culture.md)** (34) -- **[usa](usa.md)** (115) -- **[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)** (86) -- **[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)** (20) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (213) -- **[wiki_style](wiki_style.md)** (77) -- **[wiki_tldr](wiki_tldr.md)** (71) -- **[wikidata](wikidata.md)** (135) -- **[wikipedia](wikipedia.md)** (100) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (59) -- **[wirtual](wirtual.md)** (2) -- **[wizard](wizard.md)** (27) -- **[wolf3d](wolf3d.md)** (42) -- **[woman](woman.md)** (224) -- **[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)** (267) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (592) -- **[42](42.md)** (17) -- **[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)** (413) -- **[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)** (136) -- **[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)** (37) -- **[billboard](billboard.md)** (57) -- **[binary](binary.md)** (143) -- **[bit](bit.md)** (11) -- **[bit_hack](bit_hack.md)** (176) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (204) -- **[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)** (73) -- **[byte](byte.md)** (23) -- **[bytebeat](bytebeat.md)** (158) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (387) -- **[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)** (201) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (20) -- **[communism](communism.md)** (32) -- **[competition](competition.md)** (19) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (239) -- **[compsci](compsci.md)** (23) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (185) -- **[consumerism](consumerism.md)** (18) -- **[conum](conum.md)** (74) -- **[cope](cope.md)** (32) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (124) -- **[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)** (70) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (6) -- **[cyberbullying](cyberbullying.md)** (8) -- **[czechia](czechia.md)** (88) -- **[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)** (24) -- **[dependency](dependency.md)** (54) -- **[derivative](derivative.md)** (2) -- **[determinism](determinism.md)** (34) -- **[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)** (70) -- **[distance](distance.md)** (184) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (39) -- **[doom](doom.md)** (81) -- **[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)** (6) -- **[egg_code](egg_code.md)** (7) -- **[egoism](egoism.md)** (26) -- **[elo](elo.md)** (160) -- **[elon_musk](elon_musk.md)** (20) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (10) -- **[encyclopedia](encyclopedia.md)** (77) -- **[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)** (700) -- **[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)** (370) -- **[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)** (32) -- **[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)** (20) -- **[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)** (167) -- **[game_design](game_design.md)** (9) -- **[game_engine](game_engine.md)** (58) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (43) -- **[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)** (15) -- **[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)** (114) -- **[hitler](hitler.md)** (48) -- **[holy_war](holy_war.md)** (31) -- **[homelessness](homelessness.md)** (112) -- **[how_to](how_to.md)** (236) -- **[html](html.md)** (89) -- **[human_language](human_language.md)** (152) -- **[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)** (23) -- **[integral](integral.md)** (2) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (35) -- **[internet](internet.md)** (127) -- **[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)** (79) -- **[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)** (139) -- **[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)** (42) -- **[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)** (39) -- **[lmao](lmao.md)** (62) -- **[loc](loc.md)** (12) -- **[log](log.md)** (223) -- **[logic](logic.md)** (54) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (202) -- **[loquendo](loquendo.md)** (19) -- **[lotr](lotr.md)** (24) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (36) -- **[lrs](lrs.md)** (173) -- **[lrs_dictionary](lrs_dictionary.md)** (159) -- **[lrs_wiki](lrs_wiki.md)** (46) -- **[luke_smith](luke_smith.md)** (22) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (9) -- **[main](main.md)** (197) -- **[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)** (26) -- **[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)** (88) -- **[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)** (145) -- **[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)** (207) -- **[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)** (76) -- **[optimism](optimism.md)** (11) -- **[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)** (80) -- **[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)** (94) -- **[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)** (158) -- **[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)** (33) -- **[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)** (32) -- **[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)** (109) -- **[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)** (576) -- **[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)** (55) -- **[trash_magic](trash_magic.md)** (21) -- **[tree](tree.md)** (66) -- **[triangle](triangle.md)** (88) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (58) -- **[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)** (21) -- **[update_culture](update_culture.md)** (34) -- **[usa](usa.md)** (115) -- **[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)** (86) -- **[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)** (20) -- **[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)** (135) -- **[wikipedia](wikipedia.md)** (100) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (59) -- **[wirtual](wirtual.md)** (2) -- **[wizard](wizard.md)** (27) -- **[wolf3d](wolf3d.md)** (42) -- **[woman](woman.md)** (225) -- **[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 3565f3b..1c5dad3 100644
--- a/wiki_stats.md
+++ b/wiki_stats.md
@@ -3,12 +3,12 @@
This is an autogenerated article holding stats about this wiki.
- number of articles: 644
-- number of commits: 1051
-- total size of all texts in bytes: 5683434
-- total number of lines of article texts: 40750
+- number of commits: 1052
+- total size of all texts in bytes: 5689964
+- total number of lines of article texts: 40795
- number of script lines: 324
- occurrences of the word "person": 10
-- occurrences of the word "nigger": 173
+- occurrences of the word "nigger": 174
longest articles:
@@ -28,67 +28,96 @@ longest articles:
- [human_language](human_language.md): 44K
- [3d_model](3d_model.md): 44K
- [internet](internet.md): 44K
-- [stereotype](stereotype.md): 40K
+- [stereotype](stereotype.md): 44K
- [bloat](bloat.md): 40K
- [copyright](copyright.md): 40K
- [iq](iq.md): 40K
top 50 5+ letter words:
-- which (3034)
-- there (2396)
-- people (2257)
-- example (1957)
-- other (1737)
-- about (1548)
-- number (1483)
+- which (3036)
+- there (2401)
+- people (2258)
+- example (1960)
+- other (1740)
+- about (1551)
+- number (1484)
- software (1342)
-- because (1283)
+- because (1284)
- their (1207)
-- something (1191)
-- would (1164)
-- being (1139)
+- something (1195)
+- would (1170)
+- being (1142)
- program (1094)
- language (1077)
-- called (1016)
+- called (1018)
- things (961)
-- without (945)
+- without (944)
- simple (914)
- function (888)
- computer (885)
- numbers (884)
-- different (867)
+- different (868)
- world (840)
- these (825)
- however (816)
- programming (815)
- should (796)
-- still (793)
+- still (795)
- system (782)
- doesn (761)
-- always (750)
-- drummyfish (748)
+- always (754)
+- drummyfish (749)
- games (746)
- possible (742)
- https (730)
- point (725)
- probably (715)
- society (703)
-- simply (700)
-- while (697)
+- simply (701)
+- while (699)
- using (672)
-- someone (664)
-- course (657)
+- someone (665)
+- course (658)
- similar (647)
- actually (642)
- first (633)
- value (621)
-- really (601)
+- really (602)
- though (600)
latest changes:
```
+Date: Sat Sep 20 17:33:12 2025 +0200
+ 3d_model.md
+ acronym.md
+ bill_gates.md
+ bullshit.md
+ cope.md
+ czechia.md
+ democracy.md
+ distance.md
+ doom.md
+ exercises.md
+ hitler.md
+ internet.md
+ jokes.md
+ lmao.md
+ low_poly.md
+ lrs_dictionary.md
+ main.md
+ needed.md
+ often_confused.md
+ people.md
+ political_correctness.md
+ race.md
+ random_page.md
+ stereotype.md
+ usa.md
+ wiki_pages.md
+ wiki_stats.md
+ woman.md
Date: Sun Aug 31 15:47:03 2025 +0200
3d_model.md
abstraction.md
@@ -99,37 +128,14 @@ Date: Sun Aug 31 15:47:03 2025 +0200
money.md
nigger.md
often_confused.md
- privacy.md
- random_page.md
- security.md
- usa.md
- wiki_pages.md
- wiki_stats.md
- woman.md
-Date: Tue Aug 26 19:31:27 2025 +0200
- drummyfish.md
- gay.md
- human_language.md
- internet.md
- less_retarded_society.md
- main.md
- needed.md
- random_page.md
- rms.md
- tas.md
- wiki_pages.md
- wiki_stats.md
- zuckerberg.md
-Date: Sat Aug 16 19:22:10 2025 +0200
- copyright.md
```
most wanted pages:
- [irl](irl.md) (17)
- [data_type](data_type.md) (16)
+- [meme](meme.md) (14)
- [retard](retard.md) (13)
-- [meme](meme.md) (13)
- [embedded](embedded.md) (13)
- [cli](cli.md) (13)
- [gpu](gpu.md) (11)
@@ -173,11 +179,11 @@ most popular and lonely pages:
- [linux](linux.md) (108)
- [bullshit](bullshit.md) (108)
- [corporation](corporation.md) (107)
+- [work](work.md) (102)
- [fight_culture](fight_culture.md) (101)
-- [work](work.md) (100)
+- [internet](internet.md) (97)
- [hacking](hacking.md) (97)
-- [internet](internet.md) (96)
-- [chess](chess.md) (95)
+- [chess](chess.md) (96)
- [less_retarded_society](less_retarded_society.md) (94)
- ...
- [friend_detox](friend_detox.md) (5)
diff --git a/woman.md b/woman.md
index aeecee7..02d4da7 100644
--- a/woman.md
+++ b/woman.md
@@ -4,7 +4,7 @@
{ Hello, if you're offended scroll down, I actually apologize to some women at the end :D ~drummyfish }
-A woman (also girl, gril, gurl, femoid, toilet, karen, wimminz, the weaker sex, the dumber sex or succubus; [tranny](tranny.md) girl being called [t-girl](tgirl.md), troon, [trap](trap.md), [femboy](femboy.md), fake girl or [mtf](mtf.md)) is one of two [genders](gender.md) ([sexes](sex.md)) of [humans](human.md), the other one being [man](man.md) -- traditionally woman is defined as that who was born with a vagina. Women are the weaker sex, they are [cute](cute.md) (sometimes) but notoriously bad at [programming](programming.md), [math](math.md) and [technology](technology.md): in the field they usually "work" on [bullshit](bullshit.md) (and mostly [harmful](harmful.md)) positions such as "diversity department", [marketing](marketing.md), "[HR](human_resources.md)", [UI](ui.md)/[user experience](ux.md), or as a [token](token.md) girl for media. If they get close to actual technology, their highest "skills" are mostly limited to casual "[coding](coding.md)" (which itself is a below-average form of [programming](programming.md)) in a baby language such as [Python](python.md), [Javascript](javascript.md) or [Rust](rust.md). Mostly they are just hired for quotas and make coffee for men who do the real work (until TV cameras appear). Don't let yourself be fooled by the propaganda, women have always been bad with tech -- whenever you see a woman "engineer", quickly go hide somewhere, something's gonna fall on your head. If you see a woman driver in a bus, rather wait for the next one. If a woman surgeon is to operate on you, just RUN. Indeed they belong to kitchen but by some catastrophic failure ended up in nuclear plants and universities, god protect us. Of course very rarely a somewhat skilled woman may appear (we're not saying women can't be capable, just that they rarely are). If a woman touches [computer](computer.md), it explodes.
+A woman (also girl, gril, gurl, femoid, toilet, karen, womeme, wimminz, the weaker sex, the dumber sex or succubus; [tranny](tranny.md) girl being called [t-girl](tgirl.md), troon, [trap](trap.md), [femboy](femboy.md), fake girl or [mtf](mtf.md)) is one of two [genders](gender.md) ([sexes](sex.md)) of [humans](human.md), the other one being [man](man.md) -- traditionally woman is defined as that who was born with a vagina. Women are the weaker sex, they are [cute](cute.md) (sometimes) but notoriously bad at [programming](programming.md), [math](math.md) and [technology](technology.md): in the field they usually "work" on [bullshit](bullshit.md) (and mostly [harmful](harmful.md)) positions such as "diversity department", [marketing](marketing.md), "[HR](human_resources.md)", [UI](ui.md)/[user experience](ux.md), or as a [token](token.md) girl for media. If they get close to actual technology, their highest "skills" are mostly limited to casual "[coding](coding.md)" (which itself is a below-average form of [programming](programming.md)) in a baby language such as [Python](python.md), [Javascript](javascript.md) or [Rust](rust.md). Mostly they are just hired for quotas and make coffee for men who do the real work (until TV cameras appear). Don't let yourself be fooled by the propaganda, women have always been bad with tech -- whenever you see a woman "engineer", quickly go hide somewhere, something's gonna fall on your head. If you see a woman driver in a bus, rather wait for the next one. If a woman surgeon is to operate on you, just RUN. Indeed they belong to kitchen but by some catastrophic failure ended up in nuclear plants and universities, god protect us. Of course very rarely a somewhat skilled woman may appear (we're not saying women can't be capable, just that they rarely are). If a woman touches [computer](computer.md), it explodes.
The symbol for woman is a [circle](circle.md) with cross at its bottom ([Unicode](unicode.md) U+2640). Women mostly like pink [color](color.md) and similar colors like red and purple. Watch out! Bitches carry around pepper sprays and sometimes even miniature guns, if you make eye contact for too long you're dead.