From 3c8ae1c6f66cd69e8424019291f9fdbb46f6d348 Mon Sep 17 00:00:00 2001 From: Miloslav Ciz Date: Sun, 28 Sep 2025 22:39:23 +0200 Subject: [PATCH] Update --- capitalism.md | 2 +- css.md | 33 +- lrs.md | 2 +- main.md | 2 +- math.md | 3 +- random_page.md | 3814 ++++++++++++++++++++++++------------------------ unix.md | 4 +- wiki_pages.md | 2 +- wiki_stats.md | 88 +- 9 files changed, 1990 insertions(+), 1960 deletions(-) diff --git a/capitalism.md b/capitalism.md index 8e8cb7e..bbe8808 100644 --- a/capitalism.md +++ b/capitalism.md @@ -114,7 +114,7 @@ While the old capitalism was more of a steady slavery and the deterioration of s { This initial prosperous stage appeared e.g. in Czechoslovakia, where I lived, in the 90s, after the fall of the totalitarian regime. Everything was beautiful, sadly it didn't last longer than about 10 years. ~drummyfish } -Slowly "startups" evolve to medium sized businesses and a few will become the big [corporations](corporation.md). These are the first higher entities that have an intelligence of their own, they are composed of humans and technology who together work solely for the corporation's further growth and profit. A corporation has a super human intelligence (combined intelligence of its workers) but has no human emotion or conscience (which is suppressed by the corporation's structure), it is basically the rogue [AI](ai.md) we see in sci-fi horror movies. Corporation selects only the worst of humans for the management positions and has further mechanisms to eliminate any effects of human conscience and tendency for ethical behavior; for example it works on the principle of ["I'm just doing my job"](just_doing_my_job.md): everyone is just doing a small part of what the whole company is doing so that no one feels responsible for the whole or sometimes doesn't even know what he's part of. If anyone protests, he's replaced with a new hire. Of course, many know they're doing something bad but they have no choice if they want to feed their families, and [everyone is doing it](everyone_is_doing_it.md). +Slowly "[startups](startup.md)" evolve to medium sized businesses and a few will become the big [corporations](corporation.md). These are the first higher entities that have an intelligence of their own, they are composed of humans and technology who together work solely for the corporation's further growth and profit. A corporation has a super human intelligence (combined intelligence of its workers) but has no human emotion or conscience (which is suppressed by the corporation's structure), it is basically the rogue [AI](ai.md) we see in sci-fi horror movies. Corporation selects only the worst of humans for the management positions and has further mechanisms to eliminate any effects of human conscience and tendency for ethical behavior; for example it works on the principle of ["I'm just doing my job"](just_doing_my_job.md): everyone is playing but a small role in the company's grandiose plan, and so no one feels responsible for the whole or sometimes doesn't even know (or pretends not to know) what he's part taking in. Division of labor has been expanded to **division of responsibility**, the unbearable weight of unethical behavior is spread among many so it becomes bearable -- as someone once pointed out, big organizations always utilize this practice: "clean hands for the mastermind, clean conscience for the executor". If anyone happens to protest, he's replaced with a new hire, and so people aren't even tempted to protest ("if not me, [someone else would have done it](someone_else_will_do_it.md)"). Of course, many know they're doing something bad but they have no choice if they want to feed their families, and [everyone is doing it](everyone_is_doing_it.md). Deterioration of society is fast now but people are kept in a false sense of a feeling that "it's just a temporary thing", "it's this individual's fault (not the system's)" and that "it's slowly getting better", mainly with the help of 24/7 almighty media brainwashing. Due to heavy [greenwashing](greenwashing.md), [openwashing](openwashing.md) etc. most people are for example naively convinced that corporations are becoming more "environment friendly", "responsible", "open source" ("Microsoft isn't what it used to be", ...) etc., as if a corporation had something akin to emotion instead of pure desire for profit which is its only goal by definition. A corporation will repeat ads telling you it is paying black handicapped gays to plant trees but internally no one gives a shit about anything but making more money, a manager's job is just to increase profit, waste is increasing and dumped to oceans when no one is looking, bullshit is being invented to kickstart more bullshit business which leads to more need for energy wasting (unnecessary transportation, upkeep of factories and workplaces, invention of bullshit technology to solve artificial problems arising from artificial bullshit). A lie repeated 1000 times a day will beat even truth that's evident to naked eye, basic logic and common sense. Even when sky is littered with ads, cities are burning and people are working 20 hours a day, a capitalist will keep saying "this is a good society", "we are just in a temporary crisis", "it is getting better" and "I care about the people", and people will take it as truth. diff --git a/css.md b/css.md index 6de845d..30d89f5 100644 --- a/css.md +++ b/css.md @@ -16,7 +16,7 @@ Back in the boomer web days -- basically before the glorious year 2000 -- there TODO: more more more -## How It Works +## How It Works (Now An Actual Mini-Tutorial) The CSS style can be put into three places: @@ -50,13 +50,42 @@ h1, h2, h3 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 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. +Tho it can get more complex, especially once you start positioning and aligning stuff (and making it all work on different devices and so on) -- it takes a while to learn how it all works, sometimes you'll encounter quite unintuitive design (for example that center-aligning a fixed-size block is not done with `align` attribute but rather through `margin: auto`). In the end it's not a rocket science, but you won't master CSS overnight. A general advice must be given: **[less is more](less_is_more.md), [keep it simple](kiss.md)!** Try to use only light CSS and a few simple rules, do not go apeshit with the latest and coolest bleeding edge CSS transformations and animations and whatnot, that will only make your site unmaintainable, bloated, slow, incompatible and most likely also annoying. CSS can do a lot and it's tempting to do crazy shit -- if you want something to be 3D spinning and have round corners and be positioned with absolute coordinates, you can do it, but it's not a good idea, please trust this advice. + +TIP: "[Modern](modern.md)" [bloated](bloat.md) web browser will typically have built-in so called "dev tools" (often opened with F12) that let you examine any website "under the hood", including visualization of all the CSS blocks and letting you modify them temporarily and in real time. This can help understand CSS much faster. 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. +It's understandable that a newbie digging through complete documentation of all existing CSS attributes will only end up with a frustrating information overload, and so let us help by picking some of the most important attributes you should check out to start with: + +- `background-color`: Color of the element's background, e.g. `background-color: blue`. +- `background-image`: Sets an image as the element's background, e.g. `background-image: url("images/goatse.jpg")`. To further adjust HOW the image is applied see `background-repeat`, `background-size`, `background-position` etc. +- `border`: Sets how the element's border is drawn (by default there's usually no border at all). For example: `border: 1px dotted black`. Borders on individual sides can separately be handled through `border-top`, `border-right` etc. +- `color`: The color of TEXT (i.e. NOT the color of background, as intuition might suggest). +- `display`: How to draw the element, most common values: `none` (invisible), `inline` (element that "flows in the text") or `block` (element outside text). +- `font-family`: Chooses text font. The value is a comma-separated list of fonts that will be prioritized from the left, i.e. if desired font is missing, the right one will be tried and so forth. Besides concrete fonts ("Times New Roman", "Helvetica", ...), generic families can (and SHOULD) also be given, such as "sans-serif", "monospace", ... For example: `font-family: Arial, Helvetica, sans-serif`. +- `font-size`: Size of text, e.g. `font-size: 10pt`. +- `height`: Sets height of the element. See also `min-height` and `max-height`. +- `margin`: Sets the gap that will be between this element and other elements, i.e. the OUTSIDE gap. This is similar to `padding`, but padding is for the inside of the element. Margin can be set for each direction (top, right, bottom and left) -- see attribute values below. IMPORTANTLY: setting both left and right margin to `auto` will make the element get aligned in the center (it will automatically position itself so that the left and right gaps are equal). +- `padding`: Similar to `margin`, but sets the gap that's between the element's border and its INSIDE content. +- `text-align`: How text will be aligned inside its parent, most common values: `left`, `right`, `center` or `justify` (kinda "block align", the text will be stretched to fill the whole block). +- `text-decoration`: How the text is decorated, common values: `none`, `underline`, `overline`, `line-through`, ... +- `width`: Like `height` but for width. + +Now the values of these attributes can very often be expressed in various formats, for example colors can be specified with RGB, hex values or English words. Here is a summary of value formats: + +- **Keywords** can usually be used, for example `auto` (compute automatically, as in `width: auto`), `inherit` (inherit the value from parent) and so on. Some attributes expect special keywords, e.g. `text-decoration` can be set to `underline`, `overline`, `none` etc. +- **Sizes** can be expressed in different units, including [pixels](pixels.md) (`px`, as in `width: 160px`), points (`pt`, as in `width: 20pt`) and percents (of the parent's size, `%`, as in `width: 50%`). +- **[Colors](color.md)** can likewise be written in different formats, including [RGB](rgb.md) (e.g. `color: rgb(255,0,127)`, `rgba` is allowed too), [HSL](hsl.md) (e.g. `color: hsl(55, 30%, 50%)`), [hexadecimal](hex.md) (e.g. `color: #00ff37` or `color: #fc9`) or plain [English](english.md) (e.g. `color: red`). +- **4 values for each direction** start at the top and go clockwise, while fewer than 4 can also be given (then unspecified directions will take the value of the opposite direction, or whatever remains). For example `margin: 10px 20px 30px 40px` means `10px` on top, `20px` right, `30px` at the bottom and `40px` left. If we'd do `margin: 5px auto`, we'd get `5px` on top and bottom and `auto` on left and right. If we'd do `margin: 10%`, we'd get `10%` in all directions, and so on. It's also possible to expand the attribute with the direction's name, like: `margin-left: 10px`. + +Some more advanced attributes to study next are `float`, `clear` (related to `float`) and `position` (related to `left`, `right`, `top` and `bottom` attributes). + +Oh dear, that's not nearly everything. Next check out pseudo elements and pseudo classes. For example `.mydiv:hover` will match anything with class `mydiv`, but ONLY if the mouse cursor is over it. `p:first-child` will select only those `p` elements that are first children of their parents. And so on and so forth. + TODO: moar ## CSS Gore And Pissing People Off diff --git a/lrs.md b/lrs.md index 1e60f76..c5557b5 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), [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. +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), [toybox](toybox.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/main.md b/main.md index cbfb168..a4df1a3 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), [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) +[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://dukenukem.net](https://dukenukem.net), [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/math.md b/math.md index 692295b..a0ab305 100644 --- a/math.md +++ b/math.md @@ -40,4 +40,5 @@ Following are some math areas and topics which a programmer should be familiar w - [computer science](compsci.md) - [physics](physics.md) - [science](science.md) -- [thrembo](thrembo.md) \ No newline at end of file +- [thrembo](thrembo.md) +- [math rock](math_rock.md) \ No newline at end of file diff --git a/random_page.md b/random_page.md index 3973855..d60ea6d 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1932 +2,1932 @@ Please kindly click random link. -[*](vim.md) -[*](czechia.md) -[*](ioccc.md) -[*](vector.md) -[*](prime.md) -[*](programming_style.md) -[*](tranny_software.md) -[*](optimism.md) -[*](myths.md) -[*](javascript.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) -[*](pokitto.md) -[*](loc.md) -[*](deep_blue.md) -[*](portal_rendering.md) -[*](phd.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) -[*](marble_race.md) -[*](ram.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) -[*](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) +[*](needed.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) +[*](luke_smith.md) +[*](evil.md) +[*](wiki_authors.md) +[*](czechia.md) +[*](free_will.md) +[*](humidity.md) +[*](logic.md) +[*](fight_culture.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) +[*](lgbt.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) +[*](loc.md) +[*](probability.md) +[*](duskos.md) +[*](sin.md) +[*](holy_war.md) +[*](productivity_cult.md) +[*](anticompany.md) +[*](feminism.md) +[*](c_pitfalls.md) +[*](wiki_authors.md) +[*](gaywashing.md) +[*](lisp.md) +[*](javascript.md) +[*](sorting.md) +[*](collapse.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) +[*](elon_musk.md) +[*](ethics.md) +[*](marxism.md) +[*](mob_software.md) +[*](pseudominimalism.md) +[*](paradigm.md) +[*](resnicks_termite.md) +[*](bytebeat.md) +[*](physics_engine.md) +[*](furry.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) +[*](usa.md) +[*](semiconductor.md) +[*](steve_jobs.md) +[*](free_will.md) +[*](mandelbrot_set.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) +[*](logic_gate.md) +[*](murderer.md) +[*](tor.md) +[*](cancel_culture.md) +[*](digital.md) +[*](libertarianism.md) +[*](integral.md) +[*](minesweeper.md) +[*](trump.md) +[*](libertarianism.md) +[*](cope.md) +[*](reddit.md) +[*](elon_musk.md) [*](floss.md) -[*](ronja.md) -[*](color.md) +[*](left.md) +[*](faq.md) +[*](xxiivv.md) +[*](programming_style.md) +[*](cheating.md) +[*](faggot.md) +[*](fight.md) +[*](malware.md) +[*](crypto.md) +[*](ascii.md) +[*](soydev.md) +[*](tangram.md) +[*](marketing.md) +[*](adam_smith.md) +[*](greenwashing.md) +[*](girl.md) +[*](html.md) +[*](earth.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](bloat.md) +[*](future.md) +[*](piracy.md) +[*](elo.md) +[*](censorship.md) +[*](pedophilia.md) +[*](cat_v.md) +[*](hero_culture.md) +[*](physics_engine.md) +[*](rgb332.md) +[*](hacker_culture.md) +[*](logic_gate.md) +[*](antivirus_paradox.md) [*](internet.md) -[*](data_hoarding.md) -[*](io.md) -[*](lotr.md) -[*](nationalism.md) -[*](rock.md) -[*](iq.md) -[*](marble_race.md) +[*](rms.md) +[*](black.md) +[*](island.md) +[*](niger.md) +[*](wikiwikiweb.md) +[*](approximation.md) +[*](piracy.md) +[*](compsci.md) +[*](xonotic.md) +[*](libertarianism.md) +[*](charity_sex.md) +[*](mechanical.md) +[*](freemasonry.md) +[*](ted_kaczynski.md) +[*](palette.md) +[*](tree.md) +[*](byte.md) +[*](copyright.md) +[*](nonogram.md) +[*](throwaway_script.md) +[*](hero.md) +[*](popularization.md) +[*](windows.md) +[*](data_structure.md) +[*](mandelbrot_set.md) +[*](wiki_pages.md) +[*](culture.md) +[*](ethics.md) +[*](stereotype.md) +[*](loc.md) +[*](fascism.md) +[*](just_werks.md) +[*](kwangmyong.md) +[*](netstalking.md) +[*](bloat_monopoly.md) +[*](assertiveness.md) +[*](tinyphysicsengine.md) +[*](computational_complexity.md) +[*](regex.md) +[*](triangle.md) +[*](usenet.md) +[*](framework.md) +[*](freedom_distance.md) +[*](encryption.md) +[*](blender.md) +[*](quake.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) +[*](gigachad.md) +[*](free_speech.md) +[*](modern_software.md) +[*](smart.md) +[*](antialiasing.md) +[*](hyperoperation.md) +[*](suckless.md) +[*](hexadecimal.md) +[*](coc.md) +[*](myths.md) +[*](zuckerberg.md) +[*](woman.md) +[*](beauty.md) +[*](asexuality.md) +[*](paradigm.md) +[*](diogenes.md) +[*](sw.md) +[*](communism.md) +[*](bit.md) +[*](tattoo.md) +[*](chess.md) +[*](fixed_point.md) +[*](furry.md) +[*](gay.md) +[*](axiom_of_choice.md) +[*](nonogram.md) +[*](friend_detox.md) +[*](bbs.md) +[*](real_number.md) +[*](egoism.md) +[*](c_pitfalls.md) +[*](anorexia.md) +[*](4chan.md) +[*](graphics.md) +[*](watchdog.md) +[*](emoticon.md) +[*](markov_chain.md) +[*](wikipedia.md) +[*](io.md) +[*](mental_outlaw.md) +[*](low_poly.md) +[*](update_culture.md) +[*](paywall.md) +[*](usa.md) +[*](log.md) +[*](human_language.md) +[*](interaction_net.md) +[*](fizzbuzz.md) +[*](communism.md) +[*](wolf3d.md) +[*](main.md) +[*](copyfree.md) +[*](money.md) +[*](wiby.md) +[*](licar.md) +[*](t3x.md) +[*](lgbt.md) +[*](100r.md) +[*](build_engine.md) +[*](fsf.md) +[*](mental_outlaw.md) +[*](trusting_trust.md) +[*](copyleft.md) +[*](niggercoin.md) +[*](less_retarded_society.md) +[*](ashley_jones.md) +[*](log.md) +[*](uxn.md) +[*](cache.md) +[*](html.md) [*](debugging.md) -[*](programming.md) +[*](tranny_software.md) +[*](procgen.md) +[*](racism.md) +[*](google.md) +[*](fun.md) +[*](version_numbering.md) +[*](left.md) +[*](settled.md) +[*](newspeak.md) +[*](100r.md) +[*](hero_culture.md) +[*](tor.md) +[*](software.md) +[*](reddit.md) +[*](infinity.md) +[*](shortcut_thinking.md) +[*](reactionary_software.md) +[*](soydev.md) +[*](wizard.md) +[*](rationalwiki.md) +[*](wiki_stats.md) +[*](anal_bead.md) +[*](deep_blue.md) +[*](wikipedia.md) +[*](pd.md) +[*](logic_gate.md) +[*](copyfree.md) +[*](noise.md) +[*](sorting.md) +[*](aaron_swartz.md) +[*](git.md) +[*](infinity.md) +[*](liberalism.md) +[*](piracy.md) +[*](internet.md) +[*](library.md) +[*](unretard.md) +[*](backgammon.md) +[*](transsexual.md) +[*](quantum_gate.md) +[*](wiki_style.md) +[*](hardware.md) +[*](intellectual_property.md) +[*](race.md) +[*](living.md) +[*](www.md) +[*](free_culture.md) +[*](unix_philosophy.md) +[*](backpropagation.md) +[*](saf.md) +[*](analytic_geometry.md) +[*](rsa.md) +[*](modern_software.md) +[*](censorship.md) +[*](t3x.md) +[*](fork.md) +[*](ai.md) +[*](programming_tips.md) +[*](21st_century.md) +[*](cope.md) +[*](c_tutorial.md) +[*](anticompany.md) +[*](english.md) +[*](software.md) +[*](lambda_calculus.md) +[*](motivation.md) +[*](capitalist_singularity.md) +[*](crime_against_economy.md) +[*](compiler_bomb.md) +[*](wavelet_transform.md) +[*](charity_sex.md) +[*](duke3d.md) +[*](markov_chain.md) +[*](xd.md) +[*](systemd.md) +[*](linux.md) +[*](exercises.md) +[*](niggercoin.md) +[*](dog.md) +[*](dependency.md) +[*](sqrt.md) +[*](based.md) +[*](social_inertia.md) +[*](cat_v.md) +[*](go.md) +[*](friend_detox.md) +[*](bytebeat.md) +[*](distance.md) +[*](macrofucker.md) +[*](procgen.md) +[*](dodleston.md) +[*](game_design.md) +[*](wolf3d.md) +[*](cos.md) +[*](triangle.md) +[*](living.md) +[*](determinism.md) +[*](git.md) +[*](42.md) +[*](feminism.md) +[*](gender_studies.md) +[*](shader.md) +[*](combinatorics.md) +[*](shitpress.md) +[*](altruism.md) +[*](javascript.md) +[*](throwaway_script.md) +[*](future_proof.md) +[*](military.md) +[*](number.md) +[*](mud.md) +[*](art.md) +[*](fascist.md) +[*](low_poly.md) +[*](normalization.md) +[*](easier_done_than_said.md) +[*](graphics.md) +[*](tom_scott.md) +[*](macrofucker.md) +[*](aliasing.md) +[*](cc0.md) +[*](magic.md) +[*](anarch.md) +[*](3d_model.md) +[*](fight_culture.md) +[*](homelessness.md) +[*](css.md) +[*](avpd.md) +[*](procgen.md) +[*](xd.md) +[*](determinism.md) +[*](capitalist_software.md) +[*](toxic.md) +[*](calculus.md) +[*](xonotic.md) +[*](steganography.md) +[*](downto.md) +[*](splinternet.md) +[*](interaction_net.md) +[*](raylib.md) +[*](education.md) +[*](unicode.md) +[*](open_console.md) +[*](humorwashing.md) +[*](geek.md) +[*](diogenes.md) +[*](plusnigger.md) +[*](apple.md) +[*](cpu.md) +[*](lil.md) +[*](qubit.md) +[*](function.md) +[*](approximation.md) +[*](xxiivv.md) +[*](smol_internet.md) +[*](earth.md) +[*](dick_reveal.md) +[*](gemini.md) +[*](backpropagation.md) +[*](gemini.md) +[*](trom.md) +[*](education.md) +[*](cc0.md) +[*](fediverse.md) +[*](phd.md) +[*](fork.md) +[*](apple.md) +[*](aaron_swartz.md) +[*](cc.md) +[*](encryption.md) +[*](lrs_wiki.md) +[*](bootstrap.md) +[*](easier_done_than_said.md) +[*](morality.md) +[*](digital_signature.md) +[*](primitive_3d.md) +[*](fight.md) +[*](ioccc.md) +[*](nokia.md) +[*](countercomplex.md) +[*](maintenance.md) +[*](selflessness.md) +[*](iq.md) +[*](langtons_ant.md) +[*](monad.md) +[*](data_hoarding.md) +[*](watchdog.md) +[*](emoticon.md) +[*](lambda_calculus.md) +[*](pseudo3d.md) +[*](billboard.md) +[*](tattoo.md) +[*](free_culture.md) +[*](duskos.md) +[*](nanogenmo.md) +[*](kiwifarms.md) +[*](low_poly.md) +[*](unary.md) +[*](name_is_important.md) +[*](ascii_art.md) +[*](neural_network.md) +[*](fascism.md) [*](mechanical.md) -[*](compression.md) -[*](julia_set.md) +[*](capitalism.md) +[*](venus_project.md) +[*](encryption.md) [*](physics_engine.md) +[*](deferred_shading.md) +[*](collapse.md) +[*](left_right.md) +[*](fsf.md) +[*](culture.md) +[*](primitive_3d.md) +[*](p_vs_np.md) +[*](intellectual_property.md) +[*](combinatorics.md) +[*](terry_davis.md) +[*](assertiveness.md) +[*](everyone_does_it.md) +[*](unix.md) +[*](explicit.md) +[*](brainfuck.md) +[*](sub_rosa.md) +[*](ui.md) +[*](tool_slave.md) +[*](golang.md) +[*](bullshit.md) +[*](ashley_jones.md) +[*](disease.md) +[*](calculus.md) +[*](drummyfish.md) +[*](jesus.md) +[*](derivative.md) +[*](progress.md) +[*](normalization.md) +[*](body_shaming.md) +[*](compression.md) +[*](life.md) +[*](mud.md) +[*](microsoft.md) +[*](bazaar.md) +[*](privacy.md) +[*](cracker.md) +[*](island.md) +[*](tranny.md) +[*](free_will.md) +[*](wirtual.md) +[*](binary.md) +[*](zero.md) +[*](music.md) +[*](p_vs_np.md) +[*](and.md) +[*](tattoo.md) +[*](fun.md) +[*](quine.md) +[*](algorithm.md) +[*](xor.md) +[*](bullshit.md) +[*](autostereogram.md) +[*](jargon_file.md) +[*](operating_system.md) +[*](rsa.md) +[*](steve_jobs.md) +[*](unix_philosophy.md) +[*](pedophilia.md) +[*](malware.md) +[*](algorithm.md) +[*](geek.md) +[*](rms.md) +[*](bill_gates.md) +[*](teletext.md) +[*](open_console.md) +[*](elon_musk.md) +[*](regex.md) +[*](assembly.md) +[*](gopher.md) +[*](boot.md) +[*](framework.md) +[*](kwangmyong.md) +[*](dependency.md) +[*](asmr.md) +[*](version_numbering.md) +[*](formal_language.md) +[*](universe.md) +[*](t3x.md) +[*](crow_funding.md) +[*](programming_language.md) +[*](pseudoleft.md) +[*](corporation.md) +[*](cache.md) +[*](hash.md) +[*](wiki_stats.md) +[*](java.md) +[*](plan9.md) +[*](liberalism.md) +[*](4chan.md) +[*](css.md) +[*](hitler.md) +[*](anarchism.md) +[*](ancap.md) +[*](human_language.md) +[*](kiss.md) +[*](www.md) +[*](and.md) +[*](dodleston.md) +[*](anarch.md) +[*](temple_os.md) +[*](music.md) +[*](sdf.md) +[*](phd.md) +[*](rapeware.md) +[*](systemd.md) +[*](earth.md) +[*](apple.md) +[*](minigame.md) +[*](youtube.md) +[*](lmao.md) +[*](libre.md) +[*](graveyard.md) +[*](collision_detection.md) +[*](dramatica.md) +[*](one.md) +[*](nd.md) +[*](wiki_authors.md) +[*](marble_race.md) +[*](42.md) +[*](quantum_gate.md) +[*](determinism.md) +[*](mob_software.md) +[*](sigbovik.md) +[*](exercises.md) +[*](humorwashing.md) +[*](programming_style.md) +[*](love.md) +[*](niggercoin.md) +[*](bitreich.md) +[*](foss.md) +[*](capitalist_singularity.md) +[*](twos_complement.md) +[*](duke3d.md) +[*](game_engine.md) +[*](crime_against_economy.md) +[*](assembly.md) +[*](free_hardware.md) +[*](maintenance.md) +[*](openarena.md) +[*](ashley_jones.md) +[*](python.md) +[*](float.md) +[*](sjw.md) +[*](right.md) +[*](implicit.md) +[*](memory_management.md) +[*](czechia.md) +[*](interpolation.md) +[*](needed.md) +[*](military.md) +[*](interesting.md) +[*](pascal.md) +[*](copyright.md) +[*](fixed_point.md) +[*](collision_detection.md) +[*](free.md) +[*](sin.md) +[*](xonotic.md) +[*](primitive_3d.md) +[*](pi.md) +[*](nd.md) +[*](murderer.md) +[*](racetrack.md) +[*](mental_outlaw.md) +[*](rust.md) +[*](bloat_monopoly.md) +[*](sigbovik.md) +[*](mouse.md) +[*](black.md) +[*](42.md) +[*](README.md) +[*](gopher.md) +[*](ai.md) +[*](c.md) +[*](go.md) +[*](fuck.md) +[*](free_software.md) +[*](charity_sex.md) +[*](google.md) +[*](wikidata.md) +[*](facebook.md) +[*](cheating.md) +[*](asexuality.md) +[*](microsoft.md) +[*](transistor.md) +[*](dungeons_and_dragons.md) +[*](lrs.md) +[*](entropy.md) +[*](julia_set.md) +[*](linux.md) +[*](often_misunderstood.md) +[*](number.md) +[*](chinese.md) +[*](greenwashing.md) +[*](windows.md) +[*](sudoku.md) +[*](hero.md) +[*](geek.md) +[*](cyberbullying.md) +[*](wiki_rights.md) +[*](nationalism.md) +[*](axiom_of_choice.md) +[*](openarena.md) +[*](productivity_cult.md) +[*](bytecode.md) +[*](robot.md) +[*](fear_culture.md) +[*](finished.md) +[*](rights_culture.md) +[*](speech_synthesis.md) +[*](tool_slave.md) +[*](capitalist_software.md) +[*](microtheft.md) +[*](xor.md) +[*](gay.md) +[*](shitpress.md) +[*](chasm_the_rift.md) +[*](lrs_dictionary.md) +[*](proprietary.md) +[*](communism.md) +[*](holy_war.md) +[*](public_domain_computer.md) +[*](freemasonry.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](regex.md) +[*](distance.md) +[*](wikiwikiweb.md) +[*](cc.md) +[*](free.md) +[*](elo.md) +[*](recursion.md) +[*](pseudominimalism.md) +[*](derivative.md) +[*](popularization.md) +[*](dinosaur.md) +[*](license.md) +[*](lil.md) +[*](js.md) +[*](love.md) +[*](see_through_clothes.md) +[*](3d_rendering.md) +[*](prime.md) +[*](esolang.md) +[*](c.md) +[*](entrepreneur.md) +[*](hacker_culture.md) +[*](diogenes.md) +[*](gender_studies.md) +[*](morality.md) +[*](nigeria.md) +[*](interaction_net.md) +[*](countercomplex.md) +[*](microtransaction.md) +[*](minigame.md) +[*](hard_to_learn_easy_to_master.md) +[*](creative_commons.md) +[*](bitreich.md) +[*](freedom_distance.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](chasm_the_rift.md) +[*](bbs.md) +[*](netstalking.md) +[*](good_enough.md) +[*](minimalism.md) +[*](competition.md) +[*](used.md) +[*](fuck.md) +[*](noise.md) +[*](shitword.md) +[*](3d_model.md) +[*](future.md) +[*](mipmap.md) +[*](autoupdate.md) +[*](sanism.md) +[*](splinternet.md) +[*](freemasonry.md) +[*](information.md) +[*](lgbt.md) +[*](fqa.md) +[*](modern.md) +[*](monad.md) +[*](bazaar.md) +[*](zuckerberg.md) +[*](fqa.md) +[*](copyleft.md) +[*](nc.md) +[*](wirtual.md) +[*](nationalism.md) +[*](linux.md) +[*](sin.md) +[*](f2p.md) +[*](nanogenmo.md) +[*](life.md) +[*](based.md) +[*](raycastlib.md) +[*](quaternion.md) +[*](asmr.md) +[*](rationalization.md) +[*](hard_to_learn_easy_to_master.md) +[*](discalimer.md) +[*](soyence.md) +[*](game_engine.md) +[*](docker.md) +[*](math.md) +[*](portability.md) +[*](cancel_culture.md) +[*](gui.md) +[*](trolling.md) +[*](raycasting.md) +[*](adam_smith.md) +[*](freedom.md) +[*](pride.md) +[*](debugging.md) +[*](mechanical.md) +[*](fantasy_console.md) +[*](frameless.md) +[*](uxn.md) +[*](githopping.md) +[*](programming_language.md) +[*](comun.md) +[*](game.md) +[*](coding.md) +[*](wiki_tldr.md) +[*](loquendo.md) +[*](slowly_boiling_the_frog.md) +[*](sub_rosa.md) +[*](gigachad.md) +[*](dinosaur.md) +[*](intellectual_property.md) +[*](watchdog.md) +[*](conum.md) +[*](vim.md) +[*](global_discussion.md) +[*](global_discussion.md) +[*](or.md) +[*](newspeak.md) +[*](acronym.md) +[*](physics.md) +[*](security.md) +[*](venus_project.md) +[*](doom.md) +[*](people.md) +[*](body_shaming.md) +[*](hack.md) +[*](combinatorics.md) +[*](function.md) +[*](vim.md) +[*](less_retarded_hardware.md) +[*](culture.md) +[*](xd.md) +[*](based.md) +[*](data_structure.md) +[*](sw_rendering.md) +[*](tom_scott.md) +[*](motivation.md) +[*](brainfuck.md) +[*](exercises.md) +[*](twos_complement.md) +[*](small3dlib.md) +[*](books.md) +[*](minimalism.md) +[*](audiophilia.md) +[*](facebook.md) +[*](logic.md) +[*](githopping.md) +[*](tree.md) +[*](integral.md) +[*](great_trap.md) +[*](license.md) +[*](x86.md) +[*](unretard.md) +[*](fediverse.md) +[*](app.md) +[*](ubi.md) +[*](shitpress.md) +[*](brain_software.md) +[*](rationalization.md) +[*](troll.md) +[*](arch.md) +[*](color.md) +[*](100r.md) +[*](ronja.md) +[*](race.md) +[*](graveyard.md) +[*](3d_rendering.md) +[*](sorting.md) +[*](femoid.md) +[*](discalimer.md) +[*](steganography.md) +[*](demoscene.md) +[*](cyber.md) +[*](langtons_ant.md) +[*](jokes.md) +[*](quine.md) +[*](whale.md) +[*](interesting.md) +[*](moderation.md) +[*](bit_hack.md) +[*](often_confused.md) +[*](c_sharp.md) +[*](faggot.md) +[*](unix_philosophy.md) +[*](encyclopedia.md) +[*](mainstream.md) +[*](network.md) +[*](iq.md) +[*](no_knowledge_proof.md) +[*](gemini.md) +[*](transsexual.md) +[*](microsoft.md) +[*](nationalism.md) +[*](fantasy_console.md) +[*](vector.md) +[*](arch.md) +[*](censorship.md) +[*](permacomputing.md) +[*](goodbye_world.md) +[*](justice.md) +[*](kiwifarms.md) +[*](tpe.md) +[*](free.md) +[*](abstraction.md) +[*](rgb332.md) +[*](portal_rendering.md) +[*](fizzbuzz.md) +[*](znk.md) +[*](proprietary.md) +[*](network.md) +[*](dog.md) +[*](viznut.md) +[*](real_number.md) +[*](game.md) +[*](soyence.md) +[*](collision_detection.md) +[*](public_domain.md) +[*](venus_project.md) +[*](island.md) +[*](shortcut_thinking.md) +[*](update_culture.md) +[*](settled.md) +[*](hacking.md) +[*](law.md) +[*](cancer.md) +[*](probability.md) +[*](game_design.md) +[*](line.md) +[*](minigame.md) +[*](harry_potter.md) +[*](whale.md) +[*](old.md) +[*](asmr.md) +[*](data_structure.md) +[*](cyber.md) +[*](morality.md) +[*](nokia.md) +[*](smol_internet.md) +[*](cos.md) +[*](shogi.md) +[*](education.md) +[*](data_hoarding.md) +[*](everyone_does_it.md) +[*](logic_circuit.md) +[*](physics.md) +[*](linear_algebra.md) +[*](duke3d.md) +[*](programming_style.md) +[*](jedi_engine.md) +[*](life.md) +[*](explicit.md) +[*](digital_signature.md) +[*](zen.md) +[*](usa.md) +[*](pi.md) +[*](see_through_clothes.md) +[*](css.md) +[*](idiot_fallacy.md) +[*](nord_vpn.md) +[*](crypto.md) +[*](bbs.md) +[*](atan.md) +[*](niger.md) +[*](portal_rendering.md) +[*](npc.md) +[*](public_domain.md) +[*](trusting_trust.md) +[*](e.md) +[*](wiki_post_mortem.md) +[*](universe.md) +[*](minesweeper.md) +[*](explicit.md) +[*](less_retarded_hardware.md) +[*](cloudflare.md) +[*](shader.md) +[*](open_source.md) +[*](resnicks_termite.md) +[*](ram.md) +[*](sjw.md) +[*](game_design.md) +[*](wavelet_transform.md) +[*](bit.md) +[*](semiconductor.md) +[*](tool_slave.md) +[*](forth.md) +[*](fediverse.md) +[*](gopher.md) +[*](wolf3d.md) +[*](soydev.md) +[*](crow_funding.md) +[*](wiki_post_mortem.md) +[*](hyperoperation.md) +[*](tinyphysicsengine.md) +[*](distrohopping.md) +[*](open_console.md) +[*](lotr.md) +[*](greenwashing.md) +[*](dramatica.md) +[*](demoscene.md) +[*](devuan.md) +[*](goodbye_world.md) +[*](creative_commons.md) +[*](easier_done_than_said.md) +[*](law.md) +[*](ascii.md) +[*](copyright.md) +[*](rust.md) +[*](binary.md) +[*](free_body.md) +[*](oop.md) +[*](mainstream.md) +[*](mipmap.md) +[*](ram.md) +[*](modern.md) +[*](cpp.md) +[*](teletext.md) +[*](minesweeper.md) +[*](wiki_tldr.md) +[*](nc.md) +[*](fail_ab.md) +[*](evil.md) +[*](raycastlib.md) +[*](aaron_swartz.md) +[*](malware.md) +[*](often_confused.md) +[*](devuan.md) +[*](pride.md) +[*](pd.md) +[*](free_speech.md) +[*](prime.md) +[*](one.md) +[*](unix.md) +[*](qubit.md) +[*](implicit.md) +[*](history.md) +[*](rsa.md) +[*](left_right.md) +[*](f2p.md) +[*](anal_bead.md) +[*](boot.md) +[*](normalization.md) +[*](disease.md) +[*](ai.md) +[*](homelessness.md) +[*](deep_blue.md) +[*](cc.md) +[*](tas.md) +[*](randomness.md) +[*](hard_to_learn_easy_to_master.md) +[*](python.md) +[*](recursion.md) +[*](english.md) +[*](reactionary_software.md) +[*](cloudflare.md) +[*](bill_gates.md) +[*](lotr.md) +[*](just_werks.md) +[*](fascism.md) +[*](arduboy.md) +[*](lisp.md) +[*](pseudorandomness.md) +[*](java.md) +[*](often_confused.md) +[*](attribution.md) +[*](cc0.md) +[*](art.md) +[*](lambda_calculus.md) +[*](rule110.md) +[*](color.md) +[*](aliasing.md) +[*](plan9.md) +[*](ui.md) +[*](military.md) +[*](shogi.md) +[*](egoism.md) +[*](optimism.md) +[*](zen.md) +[*](interpolation.md) +[*](ssao.md) +[*](proprietary.md) +[*](io.md) +[*](sw.md) +[*](sudoku.md) +[*](hitler.md) +[*](netstalking.md) +[*](suicide.md) +[*](proprietary_software.md) +[*](ascii_art.md) +[*](gnu.md) +[*](gui.md) +[*](lmao.md) +[*](shader.md) +[*](complexity.md) +[*](less_retarded_hardware.md) +[*](sqrt.md) +[*](logic.md) +[*](goodbye_world.md) +[*](fractal.md) +[*](finished.md) +[*](tech.md) +[*](licar.md) +[*](game_of_life.md) +[*](how_to.md) +[*](comment.md) +[*](nd.md) +[*](fear_culture.md) +[*](debugging.md) +[*](ascii_art.md) +[*](and.md) +[*](operating_system.md) +[*](dependency.md) +[*](billboard.md) +[*](brainfuck.md) +[*](ethics.md) +[*](collapse.md) +[*](sw_rendering.md) +[*](trusting_trust.md) +[*](bs.md) +[*](audiophilia.md) +[*](chess.md) +[*](dick_reveal.md) +[*](steve_jobs.md) +[*](portal_rendering.md) +[*](left.md) +[*](magic.md) +[*](how_to.md) +[*](chaos.md) +[*](slowly_boiling_the_frog.md) +[*](cpu.md) +[*](cancer.md) +[*](frameless.md) +[*](turing_machine.md) +[*](rgb565.md) +[*](npc.md) +[*](backpropagation.md) +[*](cloud.md) +[*](steganography.md) +[*](os.md) +[*](avpd.md) +[*](tas.md) +[*](neural_network.md) +[*](docker.md) +[*](anorexia.md) +[*](pseudoleft.md) +[*](quantum_gate.md) +[*](web.md) +[*](kids_these_days.md) +[*](wiki_pages.md) +[*](de_facto.md) +[*](lil.md) +[*](stereotype.md) +[*](right.md) +[*](cpp.md) +[*](sanism.md) +[*](data_hoarding.md) +[*](integral.md) +[*](flatland.md) +[*](downto.md) +[*](tangram.md) +[*](fractal.md) +[*](dinosaur.md) +[*](npc.md) +[*](float.md) +[*](esolang.md) +[*](golang.md) +[*](kiwifarms.md) +[*](log.md) +[*](hw.md) +[*](needed.md) +[*](plusnigger.md) +[*](comun.md) +[*](attribution.md) +[*](game_of_life.md) +[*](hero.md) +[*](tinyphysicsengine.md) +[*](esolang.md) +[*](humorwashing.md) +[*](information.md) +[*](football.md) +[*](gender_studies.md) +[*](jargon_file.md) +[*](easy_to_learn_hard_to_master.md) +[*](homelessness.md) +[*](world_broadcast.md) +[*](drummyfish.md) +[*](pseudo3d.md) +[*](java.md) +[*](adam_smith.md) +[*](resnicks_termite.md) +[*](digital_signature.md) +[*](demo.md) +[*](great_trap.md) +[*](good_enough.md) +[*](build_engine.md) +[*](progress.md) +[*](democracy.md) +[*](kids_these_days.md) +[*](demoscene.md) +[*](troll.md) +[*](troll.md) +[*](pseudo3d.md) +[*](coding.md) +[*](semiconductor.md) +[*](optimism.md) +[*](chasm_the_rift.md) +[*](chinese.md) +[*](unicode.md) +[*](hack.md) +[*](free_speech.md) +[*](memory_management.md) +[*](cyber.md) +[*](axiom_of_choice.md) +[*](work.md) +[*](binary.md) +[*](digital.md) +[*](femoid.md) +[*](wizard.md) +[*](digital.md) +[*](math.md) +[*](patent.md) +[*](ssao.md) +[*](smol_internet.md) +[*](bazaar.md) +[*](app.md) +[*](consumerism.md) +[*](ted_kaczynski.md) +[*](deferred_shading.md) +[*](open_source.md) +[*](egg_code.md) +[*](disease.md) +[*](fourier_transform.md) +[*](thrembo.md) +[*](marketing.md) +[*](lrs.md) +[*](function.md) +[*](technology.md) +[*](dick_reveal.md) +[*](hero_culture.md) +[*](autostereogram.md) +[*](less_retarded_society.md) +[*](maintenance.md) +[*](world_broadcast.md) +[*](computer.md) +[*](bit_hack.md) +[*](marxism.md) +[*](wow.md) +[*](pi.md) +[*](fail_ab.md) +[*](proof.md) +[*](smallchesslib.md) +[*](float.md) +[*](niger.md) +[*](project.md) +[*](complexity.md) +[*](racism.md) +[*](iq.md) +[*](programming_tips.md) +[*](acronym.md) +[*](fqa.md) +[*](bit.md) +[*](cancel_culture.md) +[*](neural_network.md) +[*](90s.md) +[*](competition.md) +[*](compiler_bomb.md) +[*](harry_potter.md) +[*](less_retarded_software.md) +[*](xxiivv.md) +[*](audiophilia.md) +[*](human_language.md) +[*](usenet.md) +[*](noise.md) +[*](cyberbullying.md) +[*](randomness.md) +[*](yes_they_can.md) +[*](wikiwikiweb.md) +[*](downto.md) +[*](assertiveness.md) +[*](sjw.md) +[*](programming.md) +[*](trash_magic.md) +[*](pseudorandomness.md) +[*](c_sharp.md) +[*](vim.md) +[*](pseudoleft.md) +[*](capitalist_singularity.md) +[*](friend_detox.md) +[*](left_right.md) +[*](quaternion.md) +[*](chaos.md) +[*](collision.md) +[*](qubit.md) +[*](wavelet_transform.md) +[*](quake.md) +[*](modern_software.md) +[*](operating_system.md) +[*](faggot.md) +[*](trolling.md) +[*](rationalwiki.md) +[*](jedi_engine.md) +[*](free_universe.md) +[*](tech.md) +[*](smart.md) +[*](encyclopedia.md) +[*](tom_scott.md) +[*](feminism.md) +[*](egoism.md) +[*](lrs_wiki.md) +[*](python.md) +[*](real_number.md) +[*](kek.md) +[*](nigger.md) +[*](sqrt.md) +[*](coding.md) +[*](zero.md) +[*](technology.md) +[*](sub_rosa.md) +[*](ssao.md) +[*](flatland.md) +[*](framework.md) +[*](optimization.md) +[*](anticompany.md) +[*](pseudominimalism.md) +[*](comun.md) +[*](fork.md) +[*](unicode.md) +[*](nord_vpn.md) +[*](proof.md) +[*](cloudflare.md) +[*](free_software.md) +[*](trump.md) +[*](microtheft.md) +[*](unfuck.md) +[*](turing_machine.md) +[*](nokia.md) +[*](fixed_point.md) +[*](sdf.md) +[*](transistor.md) +[*](humidity.md) +[*](newspeak.md) +[*](emoticon.md) +[*](football.md) +[*](atan.md) +[*](bitreich.md) +[*](altruism.md) +[*](less_retarded_software.md) +[*](collision.md) +[*](money.md) +[*](global_discussion.md) +[*](bilinear.md) +[*](lotr.md) +[*](atheism.md) +[*](liberalism.md) +[*](dungeons_and_dragons.md) +[*](political_correctness.md) +[*](ui.md) +[*](english.md) +[*](science.md) +[*](nigeria.md) +[*](analog.md) +[*](future_proof.md) +[*](nigger.md) +[*](slowly_boiling_the_frog.md) +[*](interplanetary_internet.md) +[*](p_vs_np.md) +[*](one.md) +[*](consumerism.md) +[*](copyleft.md) +[*](popularization.md) +[*](countercomplex.md) +[*](thrembo.md) +[*](game_engine.md) +[*](shit.md) +[*](x86.md) +[*](discalimer.md) +[*](usenet.md) +[*](blender.md) +[*](toxic.md) +[*](project.md) +[*](smart.md) +[*](suicide.md) +[*](lrs.md) +[*](c_pitfalls.md) +[*](web.md) +[*](patent.md) +[*](woman.md) +[*](anal_bead.md) +[*](raylib.md) +[*](optimization.md) +[*](forth.md) +[*](encyclopedia.md) +[*](cyberbullying.md) +[*](demo.md) +[*](conum.md) +[*](good_enough.md) +[*](john_carmack.md) +[*](tensor_product.md) +[*](bytecode.md) +[*](selflessness.md) +[*](selflessness.md) +[*](john_carmack.md) +[*](hardware.md) +[*](lrs_wiki.md) +[*](firmware.md) +[*](build_engine.md) +[*](shitword.md) +[*](loc.md) +[*](bloat_monopoly.md) +[*](people.md) +[*](number.md) +[*](wiby.md) +[*](shit.md) +[*](dynamic_programming.md) +[*](wiki_pages.md) +[*](wiki_rights.md) +[*](julia_set.md) +[*](fuck.md) +[*](physics.md) +[*](nonogram.md) +[*](autoupdate.md) +[*](conum.md) +[*](hash.md) +[*](abstraction.md) +[*](woman.md) +[*](rule110.md) +[*](foss.md) +[*](permacomputing_wiki.md) +[*](jesus.md) +[*](4chan.md) +[*](books.md) +[*](nigeria.md) +[*](arduboy.md) +[*](youtube.md) +[*](kek.md) +[*](myths.md) +[*](calculus.md) +[*](nord_vpn.md) +[*](implicit.md) +[*](world_broadcast.md) +[*](ascii.md) +[*](free_body.md) +[*](programming_tips.md) +[*](bit_hack.md) +[*](bytebeat.md) +[*](openai.md) +[*](web.md) +[*](fun.md) +[*](rights_culture.md) +[*](acronym.md) +[*](wiby.md) +[*](comment.md) +[*](wow.md) +[*](wiki_rights.md) +[*](jokes.md) +[*](raycasting.md) +[*](blender.md) +[*](microtheft.md) +[*](js.md) +[*](interesting.md) +[*](tranny_software.md) +[*](main.md) +[*](library.md) +[*](line.md) +[*](3d_modeling.md) +[*](jokes.md) +[*](dynamic_programming.md) +[*](ronja.md) +[*](90s.md) +[*](c_tutorial.md) +[*](art.md) +[*](rock.md) +[*](modern.md) +[*](idiot_fallacy.md) +[*](unfuck.md) +[*](future.md) +[*](shitword.md) +[*](marxism.md) +[*](creative_commons.md) +[*](tas.md) +[*](freedom_distance.md) +[*](see_through_clothes.md) +[*](sudoku.md) +[*](luke_smith.md) +[*](turing_machine.md) +[*](c_tutorial.md) +[*](no_knowledge_proof.md) +[*](go.md) +[*](compression.md) +[*](git.md) +[*](tranny_software.md) +[*](distrohopping.md) +[*](cat_v.md) +[*](saf.md) +[*](saf.md) +[*](compsci.md) +[*](unix.md) +[*](reddit.md) +[*](drummyfish.md) +[*](update_culture.md) +[*](fsf.md) +[*](work.md) +[*](hack.md) +[*](microtransaction.md) +[*](fear_culture.md) +[*](used.md) +[*](settled.md) +[*](elo.md) +[*](sw_rendering.md) +[*](idiot_fallacy.md) +[*](paywall.md) +[*](history.md) +[*](openai.md) +[*](avpd.md) +[*](boat.md) +[*](zuckerberg.md) +[*](mainstream.md) +[*](interplanetary_internet.md) +[*](pseudorandomness.md) +[*](randomness.md) +[*](bilinear.md) +[*](znk.md) +[*](dynamic_programming.md) +[*](microtransaction.md) +[*](cpu.md) +[*](collision.md) +[*](kwangmyong.md) +[*](lrs_dictionary.md) +[*](compiler_bomb.md) +[*](future_proof.md) +[*](fail_ab.md) +[*](phd.md) +[*](anpac.md) +[*](rgb332.md) +[*](magic.md) +[*](antialiasing.md) +[*](formal_language.md) +[*](ancap.md) +[*](work.md) +[*](wiki_tldr.md) +[*](compsci.md) +[*](suckless.md) +[*](de_facto.md) +[*](cloud.md) +[*](cope.md) +[*](freedom.md) +[*](frameless.md) +[*](corporation.md) +[*](permacomputing.md) +[*](brain_software.md) +[*](free_universe.md) +[*](firmware.md) +[*](quaternion.md) +[*](interpolation.md) +[*](mud.md) +[*](free_body.md) +[*](cracking.md) +[*](atheism.md) +[*](formal_language.md) +[*](windows.md) +[*](hacking.md) +[*](doom.md) +[*](trash_magic.md) +[*](tensor_product.md) +[*](dungeons_and_dragons.md) +[*](arch.md) +[*](rule110.md) +[*](arduboy.md) +[*](brain_software.md) +[*](racetrack.md) +[*](used.md) +[*](quake.md) +[*](README.md) +[*](people.md) +[*](linear_algebra.md) +[*](permacomputing_wiki.md) +[*](girl.md) +[*](optimization.md) +[*](trom.md) +[*](justice.md) +[*](terry_davis.md) +[*](free_culture.md) +[*](social_inertia.md) +[*](bullshit.md) +[*](forth.md) +[*](right.md) +[*](cos.md) +[*](less_retarded_society.md) +[*](raycastlib.md) +[*](bloat.md) +[*](computational_complexity.md) +[*](google.md) +[*](hw.md) +[*](infinity.md) +[*](hardware.md) +[*](jedi_engine.md) +[*](pascal.md) +[*](productivity_cult.md) +[*](crow_funding.md) +[*](robot.md) +[*](holy_war.md) +[*](90s.md) +[*](zoomer.md) +[*](proprietary_software.md) +[*](logic_circuit.md) +[*](unary.md) +[*](byte.md) +[*](shogi.md) +[*](ted_kaczynski.md) +[*](zen.md) +[*](pascal.md) +[*](backgammon.md) +[*](cache.md) +[*](bootstrap.md) +[*](library.md) +[*](antivirus_paradox.md) +[*](easy_to_learn_hard_to_master.md) +[*](ram.md) +[*](facebook.md) +[*](moderation.md) +[*](libre.md) +[*](znk.md) +[*](wiki_style.md) +[*](zero.md) +[*](computational_complexity.md) +[*](great_trap.md) +[*](internet.md) +[*](mipmap.md) +[*](gigachad.md) +[*](paradigm.md) +[*](plan9.md) +[*](corporation.md) +[*](computer.md) +[*](free_software.md) +[*](proof.md) +[*](bs.md) +[*](double_buffering.md) +[*](optimism.md) +[*](marble_race.md) +[*](faq.md) +[*](history.md) +[*](political_correctness.md) +[*](kiss.md) +[*](egg_code.md) +[*](analog.md) +[*](color.md) +[*](os.md) +[*](wiki_post_mortem.md) +[*](coc.md) +[*](everyone_does_it.md) +[*](democracy.md) +[*](complexity.md) +[*](programming.md) +[*](ancap.md) +[*](tree.md) +[*](shortcut_thinking.md) +[*](rationalization.md) +[*](antivirus_paradox.md) +[*](vector.md) +[*](social_inertia.md) +[*](tensor_product.md) +[*](smallchesslib.md) +[*](byte.md) +[*](e.md) +[*](youtube.md) +[*](docker.md) +[*](entropy.md) +[*](software.md) +[*](atheism.md) +[*](anarchism.md) +[*](bs.md) +[*](femoid.md) +[*](justice.md) +[*](tpe.md) +[*](double_buffering.md) +[*](speech_synthesis.md) +[*](21st_century.md) +[*](free_hardware.md) +[*](lmao.md) +[*](race.md) +[*](political_correctness.md) +[*](floss.md) +[*](gui.md) +[*](freedom.md) +[*](name_is_important.md) +[*](pride.md) +[*](books.md) +[*](x86.md) +[*](transistor.md) +[*](music.md) +[*](free_hardware.md) +[*](harry_potter.md) +[*](pedophilia.md) +[*](hacker_culture.md) +[*](soyence.md) +[*](yes_they_can.md) +[*](portability.md) +[*](minimalism.md) +[*](copyfree.md) +[*](progress.md) +[*](mouse.md) +[*](hash.md) +[*](easy_to_learn_hard_to_master.md) +[*](suicide.md) +[*](comment.md) +[*](firmware.md) +[*](javascript.md) +[*](approximation.md) +[*](proprietary_software.md) +[*](fizzbuzz.md) +[*](boot.md) +[*](billboard.md) +[*](openai.md) +[*](programming_language.md) +[*](anpac.md) +[*](raylib.md) +[*](vector.md) +[*](network.md) +[*](public_domain_computer.md) +[*](rgb565.md) +[*](3d_rendering.md) +[*](how_to.md) +[*](love.md) +[*](gnu.md) +[*](aliasing.md) +[*](fourier_transform.md) +[*](macrofucker.md) +[*](whale.md) +[*](cloud.md) +[*](plusnigger.md) +[*](capitalism.md) +[*](distrohopping.md) +[*](cheating.md) +[*](gay.md) +[*](robot.md) +[*](graveyard.md) +[*](luke_smith.md) +[*](markov_chain.md) +[*](stereotype.md) +[*](3d_modeling.md) +[*](rapeware.md) +[*](mob_software.md) +[*](cracker.md) +[*](libre.md) +[*](nc.md) +[*](golang.md) +[*](julia_set.md) +[*](beauty.md) +[*](hexadecimal.md) +[*](devuan.md) +[*](deferred_shading.md) +[*](cpp.md) +[*](splinternet.md) +[*](fractal.md) +[*](rust.md) +[*](oop.md) +[*](interplanetary_internet.md) +[*](mandelbrot_set.md) +[*](deep_blue.md) +[*](doom.md) +[*](football.md) +[*](pokitto.md) +[*](jargon_file.md) +[*](unretard.md) +[*](sigbovik.md) +[*](bootstrap.md) +[*](ronja.md) +[*](ioccc.md) +[*](3d_model.md) +[*](cracker.md) +[*](README.md) +[*](game.md) +[*](democracy.md) +[*](duskos.md) +[*](floss.md) +[*](rights_culture.md) +[*](patent.md) +[*](wiki_style.md) +[*](autostereogram.md) +[*](derivative.md) +[*](mouse.md) +[*](c.md) +[*](kiss.md) +[*](egg_code.md) +[*](f2p.md) +[*](loquendo.md) +[*](c_sharp.md) +[*](oop.md) +[*](app.md) +[*](capitalist_software.md) +[*](transsexual.md) +[*](wiki_stats.md) +[*](dog.md) +[*](racetrack.md) +[*](zoomer.md) +[*](de_facto.md) +[*](throwaway_script.md) +[*](anpac.md) +[*](coc.md) +[*](universe.md) +[*](reactionary_software.md) +[*](privacy.md) +[*](3d_modeling.md) +[*](autoupdate.md) +[*](or.md) +[*](abstraction.md) +[*](tech.md) +[*](toxic.md) +[*](money.md) +[*](often_misunderstood.md) +[*](palette.md) +[*](viznut.md) +[*](unary.md) +[*](flatland.md) +[*](czechia.md) +[*](version_numbering.md) +[*](sdf.md) +[*](living.md) +[*](hyperoperation.md) +[*](atan.md) +[*](backgammon.md) +[*](twos_complement.md) +[*](smallchesslib.md) +[*](suckless.md) +[*](crypto.md) +[*](compression.md) +[*](chaos.md) +[*](moderation.md) +[*](gnu.md) +[*](consumerism.md) +[*](fourier_transform.md) +[*](tangram.md) +[*](thrembo.md) +[*](chess.md) +[*](entrepreneur.md) +[*](chinese.md) +[*](hitler.md) +[*](loquendo.md) +[*](quine.md) +[*](githopping.md) +[*](triangle.md) +[*](hw.md) +[*](tor.md) +[*](sw.md) +[*](or.md) +[*](zoomer.md) +[*](faq.md) +[*](trash_magic.md) +[*](open_source.md) +[*](portability.md) +[*](science.md) +[*](project.md) +[*](html.md) +[*](kek.md) +[*](law.md) +[*](unfuck.md) +[*](double_buffering.md) +[*](privacy.md) +[*](marketing.md) +[*](analytic_geometry.md) +[*](public_domain_computer.md) +[*](algorithm.md) +[*](rms.md) +[*](rock.md) +[*](21st_century.md) +[*](langtons_ant.md) +[*](graphics.md) +[*](systemd.md) +[*](fascist.md) +[*](permacomputing_wiki.md) +[*](rapeware.md) +[*](io.md) +[*](cracking.md) +[*](bloat.md) +[*](tranny.md) +[*](yes_they_can.md) +[*](wizard.md) +[*](anarch.md) +[*](capitalism.md) +[*](marble_race.md) +[*](shit.md) +[*](myths.md) +[*](attribution.md) +[*](math.md) +[*](linear_algebra.md) +[*](racism.md) +[*](information.md) +[*](monad.md) +[*](pokitto.md) +[*](www.md) +[*](temple_os.md) +[*](old.md) +[*](small3dlib.md) +[*](foss.md) +[*](lisp.md) +[*](xor.md) +[*](nigger.md) +[*](ubi.md) +[*](uxn.md) +[*](finished.md) +[*](recursion.md) +[*](lrs_dictionary.md) +[*](openarena.md) +[*](computer.md) +[*](viznut.md) +[*](just_werks.md) +[*](altruism.md) +[*](furry.md) +[*](rgb565.md) +[*](boat.md) +[*](kids_these_days.md) +[*](fascist.md) +[*](prime.md) +[*](rationalwiki.md) +[*](raycasting.md) +[*](dramatica.md) +[*](beauty.md) +[*](evil.md) +[*](entropy.md) +[*](probability.md) +[*](nanogenmo.md) +[*](boat.md) +[*](terry_davis.md) +[*](tpe.md) +[*](assembly.md) +[*](os.md) +[*](free_universe.md) +[*](game_of_life.md) +[*](wirtual.md) +[*](small3dlib.md) +[*](main.md) +[*](ubi.md) +[*](analog.md) +[*](anarchism.md) +[*](wikipedia.md) +[*](cracking.md) +[*](logic_circuit.md) +[*](palette.md) +[*](memory_management.md) +[*](pd.md) +[*](humidity.md) +[*](security.md) +[*](john_carmack.md) +[*](wow.md) +[*](motivation.md) +[*](jesus.md) +[*](fight.md) +[*](girl.md) +[*](pokitto.md) +[*](murderer.md) +[*](js.md) +[*](science.md) +[*](analytic_geometry.md) +[*](fantasy_console.md) +[*](license.md) +[*](trump.md) +[*](crime_against_economy.md) +[*](programming.md) +[*](black.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) +[*](hacking.md) +[*](less_retarded_software.md) +[*](public_domain.md) +[*](competition.md) +[*](licar.md) +[*](gaywashing.md) [*](distance.md) -[*](czechia.md) -[*](digital.md) +[*](antialiasing.md) +[*](fight_culture.md) +[*](wikidata.md) +[*](e.md) +[*](no_knowledge_proof.md) +[*](gaywashing.md) +[*](asexuality.md) +[*](sanism.md) +[*](security.md) +[*](teletext.md) +[*](hexadecimal.md) +[*](ioccc.md) +[*](old.md) +[*](paywall.md) +[*](bytecode.md) +[*](dodleston.md) +[*](name_is_important.md) +[*](rock.md) +[*](tranny.md) diff --git a/unix.md b/unix.md index 229eca8..f151c3e 100644 --- a/unix.md +++ b/unix.md @@ -23,7 +23,7 @@ In the 1960s, Bell Labs along with other groups were developing [Multics](multic In the early 1970s the system got funding as well as its name Unix (a pun on Multix). By now Thompson and Richie were developing a new language for Unix which would eventually become the [C](c.md) language. In version 4 (1973) Unix was rewritten in C. -Unix then started being sold commercially. This led to its fragmentation into different versions such as the [BSD](bsd.md) or [Solaris](solaris.md). In 1983 a version called System V was released which would become one of the most successful. The fragmentation and a lack of a unified standard led to so called [Unix Wars](unix_wars.md) in the late 1980s, which led to a few Unix standards such as [POSIX](posix.md) and Single Unix Specification. +Unix then started to be sold commercially, consequence of which was its fragmentation into different versions such as the [BSD](bsd.md) or [Solaris](solaris.md). In 1983 a version called System V was released which would become one of the most successful. This fragmentation along with the lack of a unified standard led to so called [Unix Wars](unix_wars.md) in the late 1980s, which in turn spawned a few Unix standards such as [POSIX](posix.md) and Single Unix Specification. For [zoomers](genz.md) and other noobs: Unix wasn't like [Windows](windows.md), it was more like [DOS](dos.md), things were done in [text interface](cli.md) only (even a [TUI](tui.md) or just colorful text was a luxury) -- if you use the command line in "[Linux](linux.md)" nowadays, you'll get an idea of what it was like, except it was all even more primitive. Things we take for granted such as a [mouse](mouse.md), [copy-pastes](copy_paste.md), interactive text editors, having multiple user accounts or [running multiple programs at once](multitasking.md) were either non-existent or advanced features in the early days. There weren't even personal computers back then, people accessed share computers over terminals. Anything these guys did you have to see as done with stone tools -- they didn't have GPUs, gigaherts CPUs, gigabytes of RAM, scripting languages like Python or JavaScript, Google, stack overflow, wifi, mice, IDEs, multiple HD screens all around, none of that -- and yet they programmed faster, less buggy software that was much more efficient. If this doesn't make you think, then probably nothing will. @@ -31,7 +31,7 @@ For [zoomers](genz.md) and other noobs: Unix wasn't like [Windows](windows.md), UNDER CONSTRUCTION -*Note: here by "Unix" we will more or less assume a system conforming to some version of the POSIX standard.* +*Note: here by "Unix" we will more or less assume a system conforming to some version of the POSIX standard. To view POSIX standard yourself, refer to the web (e.g. https://pubs.opengroup.org/onlinepubs/9699919799.2018edition/) or install the POSIX manual pages on your system (e.g. `apt-get install manpages-posix`)* This should help complete noobs kickstart their journey with a Unix-like system such as [GNU](gnu.md)/[Linux](linux.md) or [BSD](bsd.md). Please be aware that each system has its additional specifics, for example [package managers](package_manager.md), init systems, [GUI](gui.md) and so on -- these you must learn about elsewhere as here we may only cover the core parts those systems inherited from the original Unix. Having learned this though you should be able to somewhat fly any Unix like system. Obviously we'll be making some simplifications here too, don't be too pedantic if you're a pro Unix guru please. diff --git a/wiki_pages.md b/wiki_pages.md index ff10c25..0668f25 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)** (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 +**[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)** (75) -- **[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)** (82) -- **[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)** (258) -- **[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)** (160) -- **[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)** (577) -- **[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 1c5dad3..bb6c419 100644 --- a/wiki_stats.md +++ b/wiki_stats.md @@ -3,9 +3,9 @@ This is an autogenerated article holding stats about this wiki. - number of articles: 644 -- number of commits: 1052 -- total size of all texts in bytes: 5689964 -- total number of lines of article texts: 40795 +- number of commits: 1053 +- total size of all texts in bytes: 5698732 +- total number of lines of article texts: 40899 - number of script lines: 324 - occurrences of the word "person": 10 - occurrences of the word "nigger": 174 @@ -18,8 +18,8 @@ longest articles: - [number](number.md): 88K - [how_to](how_to.md): 80K - [capitalism](capitalism.md): 76K +- [less_retarded_society](less_retarded_society.md): 76K - [faq](faq.md): 76K -- [less_retarded_society](less_retarded_society.md): 72K - [woman](woman.md): 60K - [3d_rendering](3d_rendering.md): 56K - [main](main.md): 56K @@ -35,60 +35,73 @@ longest articles: top 50 5+ letter words: -- which (3036) -- there (2401) +- which (3040) +- there (2402) - people (2258) -- example (1960) -- other (1740) -- about (1551) -- number (1484) +- example (1961) +- other (1743) +- about (1552) +- number (1485) - software (1342) -- because (1284) -- their (1207) -- something (1195) +- because (1285) +- their (1209) +- something (1196) - would (1170) -- being (1142) +- being (1143) - program (1094) - language (1077) - called (1018) -- things (961) -- without (944) +- things (962) +- without (945) - simple (914) - function (888) +- numbers (885) - computer (885) -- numbers (884) -- different (868) +- different (869) - world (840) -- these (825) +- these (826) - however (816) - programming (815) -- should (796) -- still (795) -- system (782) +- should (797) +- still (796) +- system (783) - doesn (761) - always (754) - drummyfish (749) - games (746) - possible (742) -- https (730) -- point (725) +- https (732) +- point (726) - probably (715) -- society (703) +- society (707) - simply (701) - while (699) -- using (672) +- using (673) - someone (665) -- course (658) +- course (659) - similar (647) -- actually (642) -- first (633) +- actually (644) +- first (634) - value (621) -- really (602) +- really (603) - though (600) latest changes: ``` +Date: Tue Sep 23 22:07:11 2025 +0200 + compression.md + css.md + git.md + less_retarded_society.md + lrs.md + lrs_dictionary.md + main.md + random_page.md + stereotype.md + wiki_pages.md + wiki_stats.md + woman.md Date: Sat Sep 20 17:33:12 2025 +0200 3d_model.md acronym.md @@ -115,19 +128,6 @@ Date: Sat Sep 20 17:33:12 2025 +0200 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 - acronym.md - communism.md - culture.md - lrs_dictionary.md - money.md - nigger.md - often_confused.md ``` most wanted pages: @@ -174,7 +174,7 @@ most popular and lonely pages: - [programming](programming.md) (121) - [woman](woman.md) (118) - [art](art.md) (116) -- [history](history.md) (111) +- [history](history.md) (112) - [gnu](gnu.md) (110) - [linux](linux.md) (108) - [bullshit](bullshit.md) (108)