From 669ad27adbae2096cb9ebc2f073e310b244289cf Mon Sep 17 00:00:00 2001 From: Miloslav Ciz Date: Sun, 22 Jun 2025 21:07:42 +0200 Subject: [PATCH] Update --- 90s.md | 2 +- acronym.md | 1 + approximation.md | 6 +- free_software.md | 41 + lotr.md | 2 + main.md | 2 +- netstalking.md | 2 +- oop.md | 2 +- programming.md | 8 +- random_page.md | 3786 +++++++++++++++++++++++----------------------- rust.md | 9 +- wiki_pages.md | 2 +- wiki_stats.md | 88 +- 13 files changed, 2005 insertions(+), 1946 deletions(-) diff --git a/90s.md b/90s.md index d65ac75..b1fa7db 100644 --- a/90s.md +++ b/90s.md @@ -2,7 +2,7 @@ { Zoomers! Read carefully. You must not forget that times used to be better. The dystopia we live in now is not what we should settle for. ~drummyfish } -It is now confirmed that 1990s (or just 90s, but NEVER "90's") were almost definitely the best decade in recent written [history](history.md), at least in [Europe](europe.md) (the main continent of [Earth](earth.md)) but to a certain extent also in other, less significant parts of the world ([USA](usa.md) etc.). The decade saw a peak of civilization before the [collapse](collapse.md) quickly brought by the symbolic [turn of the millennium](21st_century.md). The bygone era of the 90s still left behind reverbing echoes of its greatness which slowly died out during the subsequent [2000-2010](2000s) decade -- according to some still the better times -- but then it all started to quickly plummet downhill regardless. 90s followed the [80s](80s.md) (quite logically, at least to those of above [Trump](trump.md) intellect), a decade that was itself also pretty good, and so in a similar fashion some good old 80s vibes likewise carried on to the 90s. Sadly this is all just a fondly remembered distant past now. +1990s (or just 90s, even '90s, possibly 90s' but NEVER "90's") are now most definitely confirmed as the best decade in recent written [history](history.md), at least in [Europe](europe.md) (the main continent of [Earth](earth.md)) but to a certain extent also in other, less significant parts of the world ([USA](usa.md) etc.). The decade saw a peak of civilization before the [collapse](collapse.md) quickly brought by the symbolic [turn of the millennium](21st_century.md). The bygone era of the 90s still left behind reverbing echoes of its greatness which slowly died out during the subsequent [2000-2010](2000s) decade -- according to some still the better times -- but then it all started to quickly plummet downhill regardless. 90s followed the [80s](80s.md) (quite logically, at least to those of above [Trump](trump.md) intellect), a decade that was itself also pretty good, and so in a similar fashion some good old 80s vibes likewise carried on to the 90s. Sadly this is all just a fondly remembered distant past now. During the 90s [millennials](millennial.md) (also called gen Y) were born, as well as some of the oldest [zoomers](zoomer.md). The decade was characterized for example by sagging trousers, loose and torn clothes in general, jeans and hoodies, baseball caps turned backwards, vibrant pastel [colors](color.md), optimistic and cheerful mood, [real life](irl.md) friends and sleepovers, [Tamagotchi](tamagotchi.md) and [Pokemon](pokemon.md), cool [digital](digital.md) watches (non-smart), [GameBoy](gameboy.md), [PlayStation](ps1.md), TV sitcoms, [CRT](crt.md) monitors, [floppy](floppy.md) disks, ball [mice](mouse.md), archaic [Internet](internet.md) and [web](www.md) 1.0 through slow dial-up, cassette tapes and walkmans { is it walkmans or walkmen lol? ~drummyfish }, bizarre button cellphones, phone booths in the streets, boybands, MTV music, movies on [VHS](vhs.md) (and VHS rental stores), soulful non-[furry](furry.md) cartoons aired only early on Saturday mornings and many other wonderful things. diff --git a/acronym.md b/acronym.md index ebd18f9..86fbff9 100644 --- a/acronym.md +++ b/acronym.md @@ -352,6 +352,7 @@ Here is a list of some acronyms: - **[TCP](tcp.md)** (transmission control protocol) - **[TFT](tft.md)** (thin filter transistor) - **[TFW](tfw.md)** (that face when) +- **TITS** (there is this saying) - **[TL;DR](tldr.md)** (too long, didn't read) - **[TLA](tla.md)** (three letter acronym) - **[TM](tm.md)** ([trademark](trademark.md), [Turing machine](turing_machine.md)) diff --git a/approximation.md b/approximation.md index d02f20d..7b7fc3a 100644 --- a/approximation.md +++ b/approximation.md @@ -1,6 +1,6 @@ # Approximation -Approximating means calculating or representing something with lesser than best possible precision -- estimating -- purposefully allowing some margin of error in results and using simpler mathematical models than the most accurate ones: this is typically done in order to save resources (CPU cycles, memory etc.) and reduce [complexity](complexity.md) so that our projects and analysis stay manageable. Simulating [real world](irl.md) on a [computer](computer.md) is always an approximation as we cannot capture the infinitely complex and fine nature of the real world with a machine of limited resources, but even within this we need to consider how much, in what ways and where to simplify. +Approximating (close to terms such as "estimating", "guessing", "guesstimating", "approaching", ...) means calculating or representing something with lesser than best possible precision -- estimating -- purposefully allowing some margin of error in results and using simpler mathematical models than the most accurate ones: this is typically done in order to save resources (CPU cycles, memory etc.) and reduce [complexity](complexity.md) so that our projects and analysis stay manageable. Simulating [real world](irl.md) on a [computer](computer.md) is always an approximation as we cannot capture the infinitely complex and fine nature of the real world with a machine of limited resources, but even within this we need to consider how much, in what ways and where to simplify. Using approximations however doesn't have to imply decrease in precision of the final result -- approximations very well serve [optimization](optimization.md). E.g. approximate metrics help in [heuristic](heuristic.md) algorithms such as [A*](a_star.md). Another use of approximations in optimization is as a quick preliminary check for the expensive precise algorithms: e.g. using bounding spheres helps speed up collision detection (if bounding spheres of two objects don't collide, we know they can't possibly collide and don't have to expensively check this). @@ -9,12 +9,12 @@ With approximations we're often interested in the **[error](error.md)** against Examples of approximations are: - **[Distances](distance.md)**: instead of expensive **Euclidean** distance (`sqrt(dx^2 + dy^2)`) we may use **Chebyshev** distance (`dx + dy`) or **Taxicab** distance (`max(dx,dy)`). -- **[interpolation](interpolation.md) and [extrapolation](extrapolation.md)**: ways of constructing missing data points from known ones. +- **[interpolation](interpolation.md) and [extrapolation](extrapolation.md)**: ways of constructing missing data points from known ones, see also [regression](regression.md). - **Engineering approximations** ("guesstimations"): e.g. **sin(x) = x** for "small" values of *x* or **[pi](pi.md) = 3** (integer instead of float). - **[Physics engines](physics_engine.md)**: complex triangle meshes are approximated with simple analytical shapes such as **[spheres](sphere.md)**, **cuboids** and **capsules** or at least **convex hulls** which are much easier and faster to deal with. They also approximate **relativistic** physics with **Newtonian**. - **[Factorial](factorial.md)** can be approximated by Stirling's approximation, which is pretty accurate and computationally cheaper. - **Addition/subtraction** (of integers) can sometimes be approximated with logical [OR](or.md)/[AND](and.md) operations, as they behave a bit similarly. This can be used e.g. for brightening/darkening of pixel colors in [332](rgb332.md) or [565](rgb565.md) format -- without the approximation addition of colors in these formats is very expensive (basically requires conversion to RGB, addition, clamping and a conversion back). -- **Division**: dividing by arbitrary number is often a slow operation, however dividing by powers of two is fast because it can be done with a simple bit shift -- so if we need to divide *x* let's say by 3, it may be faster to approximate by averaging *x* divided by 2 and *x* divided by 4 (both powers of two, computing average also needs just division by 2), i.e *x / 3 ~= ((x / 2) + (x / 4)) / 2 = 3/8 * x = (x + x + x) / 8* -- indeed, 3/8 is almost 1/3. +- **Division**: dividing by arbitrary number is often a slow operation, however dividing by powers of two is fast because it can be done with a simple bit shift -- so should we need to divide *x* by, let's say, 3, it may be faster to approximate by averaging *x* divided by 2 and *x* divided by 4 (both powers of two, computing average also needs just division by 2), i.e *x / 3 ~= ((x / 2) + (x / 4)) / 2 = 3/8 * x = (x + x + x) / 8* -- indeed, 3/8 is almost 1/3. - **[Square root](sqrt.md)/square** (integer) can be roughly approximated too. E.g. to get a quick "almost square" of a number you can try something like doubling each binary digit and shifting everything right, e.g. `101` -> `11001` -- it's not very accurate but may be [good enough](good_enough.md) e.g. for some graphics effects and may be especially effective as hardware implementation as it works instantly and uses literally no [logic gates](logic_gate.md) (you just reorder bits)! A bit improved version may construct a pair of digits from each digit as logical AND (upper bit) and logical OR (lower bit) of the bit with its lower neighbor (lowest bit may still just be doubled), e.g. `1101` -> `11010111`. Square root can similarly be roughly estimated by reducing each pair of bits with logical OR down to a single bit (e.g. `101100` -> `110`). { Dunno if this is actually used anywhere, I came up with this once before I fell asleep. ~drummyfish } A famous hack in Quake, called *fast inverse square root*, uses a similar approximation in [floating point](float.md). - **[3D graphics](3d_rendering.md)** revolves around believable approximations, for example all shapes are normally approximated with triangle meshes or [sprites](sprite.md), [screen space](screen_space.md) effects (like [SSAO](ssao.md)) fake global illumination, reflections and so forth. Similarly [ray tracing](ray_tracing.md) neglects indirect lighting etcetc. - **[Real numbers](real_number.md)** are practically always approximated with [floating point](floating_point.md) or [fixed point](fixed_point.md) (rational numbers). diff --git a/free_software.md b/free_software.md index 6bee2b1..192b2ef 100644 --- a/free_software.md +++ b/free_software.md @@ -8,6 +8,45 @@ Free software is also known as *free as in freedom*, *free as in speech* softwar **Examples of free software** include the [GNU](gnu.md) operating system (also known as "[Linux](linux.md)"), [GIMP](gimp.md) (image editor), [Stockfish](stockfish.md) chess engine, or games such as [Xonotic](xonotic.md) and [Anarch](anarch.md). Free software is actually what runs the world, it is a standard among experts and it is possible to do computing with exclusively free software (though this may depend on how far you stretch the definition), even though most normal people don't even know the term free software exists because they only ever come in contact with abusive [proprietary](proprietary.md) consumer software such as [Windows](windows.md) and capitalist [games](game.md). There also exists a lot of big and successful software, such as [Firefox](firefox.md), [Linux](linux.md) (the kernel) or [Blender](blender.md), that's often spoken of as free software which may however be only technically true or true only to a big (but not full) degree: for example even though [Linux](linux.md) is 99% free, in its [vanilla](vanilla.md) version it comes with [proprietary](proprietary.md) [binary blobs](binary_blob.md) which breaks the rules of free software. [Blender](blender.md) is technically free but it is also [capitalist software](capitalist_software.md) which doesn't really care about freedom and may de-facto limit some freedoms required by free software, even if they are granted legally by Blender's license. Such software is better called "[open source](open_source.md)" or [FOSS](foss.md) because it doesn't meet the high standards of free software. This issue of technically-but-not-really free software is addressed by some newer movements and philosophies such as [suckless](suckless.md) and our [less retarded software](lrs.md) who usually also aim for [unbloating](bloat.md) technology so as to make it more free in practice. +``` + ____________________ + .------------------------>| public source code |<-----. defined + ; .---------------->|____________________| ; always mainly _____ + ; ; .------^ ; has ALL by | FSF | + ; ; "should"; _______________________ ; ,-->|_____| + ; ; have; | unlimited | ; ; + ;doesn't; "most"; | use+stud+modify+share | ; _______ ; _________ high focus on + ;have ; _____ ; |_______________________| ; | libre | ; main_.>| freedom |<------------. + ; ; | OSI | ; ^ allows ^. ; |_______| ; goal_.' |_________| ; + ; has; |_____| ; ; by allows'. ; ^ ; is_.' ______________ ; + ; ; ^ ; ; license by'. ; AKA ; ; _.' | free culture |generalizes ; + ; ; ;defined ; ____;___ license '.;______;_;_.' __..--|______________|<--. _.-' + ; ; ;by '--| open | | free |<--''generalizes ___;_.-'' + ; ; '-----------| source |<----------------->| software |<-------------------------| LRS |--. + ___;____ ;__________ .--|________| legally very |__________|<-..__ generalizes |_____| ; +| closed | | source | ; ^ ; ^. similar to .^ ; ^._ ''--_ ; ; ; primary +| source | | available | ; ; ; neutral'. _________ .'neutral ; '. ;is ; ; ; focus +|________| |___________| ; ; ; synonm '| F(L)OSS |'synonym ;is ; ;subset ; ; ; on + ; ; ; ; ; for |_________| for ;always ; ;of generalizes; ; _v_________ + ; is; ; ; ; ______________ ; ; ___;______ ; ; | happiness | + ; subset; main ; ; '------>| free of cost |<---------' ; | suckless |<---------' ; | of all | + ; of; goal is ; ; is |______________|<-._ ________ ; |__________| ; | life | + ; ; ; ; always ^ ^. AKA'->| gratis | ; ; high ; |___________| + ;is ; _______v ; ; '.AKA |________| ; ;primary focus ; + ;subset ; | profit | ; ; 'v __________ ^ ; ;focus on on ; + ;of ; |________| ; is ; | freeware | AKA ; ; ___v________ ; + ; ; ^ ; opposite ; |__________|<----' ; | simplicity |<---------' + ; ; main ; ; of ; ; |____________| + ; ; goal is ; ; ; may be is ; + ; ; ; '----------. ; opposite ; + ; ; '----------. ; ; of ; + ; ; _;__v_____;___________ ; + ; '------------------>| proprietary software |<--------------' + '---------------------------->|______________________| +``` + +*Knowledge graph illustrating basic relationships between various terms and groups related to free software.* + Though unknown to common people, the invention and adoption of free software has been **one the most important events in the [history](history.md) of computers** -- mere technology consumers nowadays don't even realize (and aren't told) that what they're using consists and has been enabled possibly mostly by software written non-commercially, by volunteers for free, **basically on [communist](communism.md) principles**. Even if [consumer](consumerism.md) technology is unethical because the underlying free technology has been modified by [corporations](corporation.md) to abuse the users, without free software the situation would have been yet incomparably worse if [Richard Stallman](rms.md) hadn't achieved the small miracle of establishing the free software movement. Without it there would probably be practically no alternative to abusive technology nowadays, everything would be much more closed, there would probably be no "[open source](open_source.md)", "[open hardware](open_hardware.md)" such as [Arduino](arduino.md) and things such as [Wikipedia](wikipedia.md). If the danger of [intellectual property](intellectual_property.md) in software wasn't foreseen and countered by Richard Stallman right in the start, the corporations' push of legislation would probably have continued and copyright [laws](law.md) might have been many times worse today, to the point of not even being able to legally write free software nowadays. We have to be very grateful that this happened and continue to support free software. [Richard Stallman](rms.md), the inventor of the concept and the term "free software", says free software is about ensuring the freedom of computer users, i.e. people truly owning their tools -- he points out that unless people have complete control over their tools, they don't truly own them and will instead become controlled and abused by the makers (true owners) of those tools, which in [capitalism](capitalism.md) are [corporations](corporation.md). Richard Stallman stressed that **there is no such thing as partially free software** -- it takes only a single line of code to take away the user's freedom and therefore if software is to be free, it has to be free as a whole. This is in direct contrast with [open source](open_source.md) (a term discourages by Stallman himself) which happily tolerates for example [Windows](windows.md) only programs and accepts them as "open source", even though such a program cannot be run without the underlying proprietary code of the platform. It is therefore important to support free software rather than the business spoiled open source. @@ -99,4 +138,6 @@ After some years dealing with software freedom (in serious ways, making money do - [copyfree](copyfree.md) - [freedom distance](freedom_distance.md) - [FreeLore](freelore.md) +- [freeware](freeware.md) +- [shareware](shareware.md) - [kosher software](kosher_software.md) diff --git a/lotr.md b/lotr.md index 34b2768..3d99d7a 100644 --- a/lotr.md +++ b/lotr.md @@ -1,5 +1,7 @@ # Lord of the Rings +*You will NEVER understand LotR unless you read Silmarillion.* --FACT + Lord of the Rings (LOTR) is a an [epic](epic.md) fantasy book trilogy by J. R. R. Tolkien (1892-1973), one of the best literary works ever made, released in 1954, followed by very well made movies in 2001, 2002 and 2003; the books are legendary not just for having started the whole modern fantasy genre, but simply for their sheer gigantic volume of lore and detail, including additional books and stories, detailed geography of the fantasy world, its [history](history.md), mythology and several [constructed languages](conlang.md), into which the author, a university professor, poured his whole life, heart, knowledge and wisdom. Before Tolkien's work fantasy books were very different, not as popular, usually just shorter fairytales and stories for children based off of real history or existing mythology and stories; Tolkien took it all much further by inventing his own "universe" to set his stories in, with very realistic, deep history (in the sense that reading Silmarillion for example you could really accept it's a mythology recorded by a REAL civilization, including blank spots, contradicting witness testimonies, exaggerated narration and so on), historical figures, battles, epic songs in languages of the fictional people and so on, and this is what every new fantasy basically copies ever since. Unfortunately for their immense popularity the works have been seized and absolutely raped by [capitalism](capitalism.md), nowadays they have become a vehicle for propaganda -- it's incredibly sad but true; the rape began in 2012 by filming the Hobbit movies (a short children book was made into a whole trilogy of movies, for more moneis, furthermore extremely badly made), and continues today by yet much worse consumerist, absolutely disgusting McDonalds style crap stuffed with lesbians and [liberalism](liberalism.md) and shit. The original books are still [proprietary](proprietary.md), but their entering to [public domain](public_domain.md) is at least on the horizon -- unlike most modern fantasy works, Lord of the Rings should enter the public domain relatively "soon": in 2044. Besides the main LOTR trilogy Tolkien also wrote several related works, such as *The Hobbit* (the prequel, more of a children book, but still very good to read) and *The Silmarillion* (kind of "Bible", recounting history and mythology of the world, origin of the races etc.). NOTE: **Anything post 2005 is NOT part of Lord of the Rings.** It's very important to note this because the franchise became one of the most raped milking cows of [capitalist](capitalism.md), [pseudoleft](pseudoleft.md), [SJWs](sjw.md) and other evil. Only look for pre-2005 stuff. diff --git a/main.md b/main.md index 651d975..47860a1 100644 --- a/main.md +++ b/main.md @@ -180,4 +180,4 @@ Here there are quick directions to some relevant topics; for more see the links Feel free to ignore this. Here we'll put links to help them being promoted, to help small search engines connect the non-mainstream web and so on. Please note that we don't necessarily agree with or promote what's on these sites, we just feel it's good if they get a bump for whatever reason (e.g. being censored by mainstream, containing some useful stuff, having good web design, provoking thought, demonstrating something good, demonstrating something bad and so on). If you feel brave you can try randomly clicking something, we put quite interesting sites here, it's a good starting point for internet digging. The links follow. { Let me know if you want to suggest addition or removal of some link. If some site turns 404, woke, capitalist or employs adds, I'll probably take it down. ~drummyfish } -[http://collapseos.org](http://collapseos.org), [https://suckless.org](https://suckless.org), [http://duskos.org](http://duskos.org), [https://wiki.osdev.org](https://wiki.osdev.org), [https://braphogs.com](https://braphogs.com), [http://lolwut.info](http://lolwut.info), [http://cat-v.org](http://cat-v.org), [http://search.somsab.com](http://search.somsab.com), [https://zoophilia.wiki](https://zoophilia.wiki), [https://confluence.org](https://confluence.org), [https://zxaaa.net/view_demo.php?id=12444](https://zxaaa.net/view_demo.php?id=12444), [https://tubgurl.com/catalog.html](https://tubgurl.com/catalog.html), [https://wikiless.tiekoetter.com/wiki/?lang=nostalgia](https://wikiless.tiekoetter.com/wiki/?lang=nostalgia), [http://www.rsdb.org](http://www.rsdb.org), [http://forbiddentruth.mysite.com](http://forbiddentruth.mysite.com), [https://opengameart.org](https://opengameart.org), [https://www.sudosatirical.com](https://www.sudosatirical.com), [https://webwizard.ichi.city](https://webwizard.ichi.city), [http://www.polytope.net/hedrondude/bnc.htm](http://www.polytope.net/hedrondude/bnc.htm), [https://4get.bloat.cat](https://4get.bloat.cat), [https://www.memeatlas.com](https://www.memeatlas.com), [https://search.cdev.nexus](https://search.cdev.nexus), [https://nixers.net](https://nixers.net), [https://oeis.org/OEIS_pics.html](https://oeis.org/OEIS_pics.html), [https://superpredator.zone](https://superpredator.zone), [http://www.mrob.com](http://www.mrob.com), [https://ncatlab.org](https://ncatlab.org), [https://leakjunky.site](https://leakjunky.site), [https://www.gutenberg.org](https://www.gutenberg.org), [https://skibidifarms.st](https://skibidifarms.st), [http://web1.0hosting.net](http://web1.0hosting.net), [https://www.onionfarms.com/](https://www.onionfarms.com/), [https://librivox.org](https://librivox.org), [https://hoaxes.org](https://hoaxes.org), [https://screamer.wiki](https://screamer.wiki), [https://www.chiark.greenend.org.uk/~sgtatham/puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles), [https://golem.ph.utexas.edu](https://golem.ph.utexas.edu), [https://libregamewiki.org](https://libregamewiki.org), [https://pantsuprophet.xyz](https://pantsuprophet.xyz), [https://duion.com](https://duion.com), [http://digdeeper.club](http://digdeeper.club), [https://www.answering-christianity.com](https://www.answering-christianity.com), [https://www.chimpout.com](https://www.chimpout.com), [http://floodgap.com](http://floodgap.com), [https://en.metapedia.org](https://en.metapedia.org), [https://www.vidlii.com](https://www.vidlii.com), [https://wikiindex.org](https://wikiindex.org), [https://saidit.net](https://saidit.net), [https://www.newworldencyclopedia.org](https://www.newworldencyclopedia.org), [http://progopedia.com](http://progopedia.com), [http://techrights.org](http://techrights.org), [https://landsofgames.com](https://landsofgames.com), [https://randomwaffle.gbs.fm](https://randomwaffle.gbs.fm), [http://www.macroevolution.net](http://www.macroevolution.net), [http://macrochan.org](http://macrochan.org), [https://blog.plover.com](https://blog.plover.com), [https://hub.darcs.net](https://hub.darcs.net), [https://repo.or.cz](https://repo.or.cz), [https://templeos.org](https://templeos.org), [http://cidoku.net](http://cidoku.net), [http://z00m.ws](http://z00m.ws), [https://www.gnu.org](https://www.gnu.org), [https://kiwifarms.st](https://kiwifarms.st), [https://circumlunar.space](https://circumlunar.space), [http://www.nigger.org](http://www.nigger.org), [https://forums.somethingawful.com](https://forums.somethingawful.com), [https://the-eye.eu/redarcs](https://the-eye.eu/redarcs), [https://notabug.org](https://notabug.org), [https://gopherproxy.meulie.net](https://gopherproxy.meulie.net), [http://www.reactionary.software](http://www.reactionary.software), [https://libre.video](https://libre.video), [https://wiki.soyjak.st](https://wiki.soyjak.st), [https://scumgames.neocities.org](https://scumgames.neocities.org), [https://preservetube.com](https://preservetube.com), [http://textfiles.com](http://textfiles.com), [https://esolangs.org](https://esolangs.org), [http://www.ioccc.org](http://www.ioccc.org), [https://solar.lowtechmagazine.com](https://solar.lowtechmagazine.com), [http://www.calresco.org](http://www.calresco.org), [http://edramatica.com](http://edramatica.com), [https://infogalactic.com](https://infogalactic.com), [https://www.icechewing.com](https://www.icechewing.com), [http://www.alexchiu.com](http://www.alexchiu.com), [http://www.nigrapedia.com](http://www.nigrapedia.com), [http://whale.to](http://whale.to), [https://www.rouming.cz](https://www.rouming.cz), [https://crazyshit.com/category/celebrities](https://crazyshit.com/category/celebrities), [http://wermenh.com/index.html](http://wermenh.com/index.html), [https://www.thevenusproject.com](https://www.thevenusproject.com), [http://www.somaligov.net](http://www.somaligov.net), [https://stocksnap.io](https://stocksnap.io), [http://www.bentoandstarchky.com/dec/rants.htm](http://www.bentoandstarchky.com/dec/rants.htm), [https://doxbin.org](https://doxbin.org), [https://frogesay.neocities.org (archived because went full furry)](https://web.archive.org/web/20240206194418/https://frogesay.neocities.org/), [https://www.debunkingskeptics.com](https://www.debunkingskeptics.com), [https://stallman.org](https://stallman.org), [http://keypad.org/bunnies](http://keypad.org/bunnies), [https://8kun.top](https://8kun.top), [https://annas-archive.org](https://annas-archive.org), [http://icculus.org/piga](http://icculus.org/piga), [https://4chan.org/an](https://4chan.org/an), [https://forum.freegamedev.net](https://forum.freegamedev.net), [https://fediverse.wiki](https://fediverse.wiki), [https://dolphinana.codeberg.page](https://dolphinana.codeberg.page), [http://www.niggermania.com](http://www.niggermania.com), [https://watchpeopledie.tv](https://watchpeopledie.tv), [https://flarerpg.org](https://flarerpg.org), [https://copyfree.org](https://copyfree.org), [https://wiki.bibanon.org](https://wiki.bibanon.org), [https://www.chessprogramming.org](https://www.chessprogramming.org), [https://neolurk.org](https://neolurk.org), [https://zerocontradictions.net/FAQs/race-FAQs](https://zerocontradictions.net/FAQs/race-FAQs), [https://projectoberon.net](https://projectoberon.net), [http://bitreich.org](http://bitreich.org), [https://tcrf.net](https://tcrf.net), [http://www.humanbiologicaldiversity.com](http://www.humanbiologicaldiversity.com), [https://incels.wiki](https://incels.wiki), [https://www.nearlyfreespeech.net](https://www.nearlyfreespeech.net), [https://softpanorama.org](https://softpanorama.org), [https://retrobrewcomputers.org/doku.php](https://retrobrewcomputers.org/doku.php), [http://humanknowledge.net](http://humanknowledge.net), [https://wrongthink.link](https://wrongthink.link), [http://tastyfish.w10.site](http://tastyfish.w10.site), [https://wiki.leftypol.org](https://wiki.leftypol.org), [https://mdfs.net](https://mdfs.net), [https://bienvenidoainternet.org](https://bienvenidoainternet.org), [https://leftychan.net](https://leftychan.net), [https://leftypol.org](https://leftypol.org), [https://postbox.garden](https://postbox.garden), [https://www.lord-enki.net](https://www.lord-enki.net), [https://r.sine.com](https://r.sine.com), [https://sanctioned-suicide.net](https://sanctioned-suicide.net), [http://www.tastyfish.cz](http://www.tastyfish.cz), [https://simplifier.neocities.org](https://simplifier.neocities.org), [http://datamath.org](http://datamath.org), [http://www.armory.com/~crisper/Scorch/index.html](http://www.armory.com/~crisper/Scorch/index.html), [https://www.lixgame.com](https://www.lixgame.com), [https://obsoletemedia.org](https://obsoletemedia.org), [http://www.doshaven.eu](http://www.doshaven.eu), [https://omick.net](https://omick.net), [http://countercomplex.blogspot.com](http://countercomplex.blogspot.com), [http://batheinmymilk.com](http://batheinmymilk.com), [http://users.rcn.com/hgomberg/boys.html](http://users.rcn.com/hgomberg/boys.html), [https://wiki.thingsandstuff.org](https://wiki.thingsandstuff.org), [https://tinfoil-hat.net](https://tinfoil-hat.net), [https://search.marginalia.nu](https://search.marginalia.nu), [http://wiby.me](http://wiby.me), [https://57296.neocities.org](https://57296.neocities.org), [https://coom.tech](https://coom.tech), [https://rightdao.com](https://rightdao.com), [https://www.alexandria.org](https://www.alexandria.org), [https://allthetropes.org](https://allthetropes.org), [http://dunfield.classiccmp.org](http://dunfield.classiccmp.org/), [https://nanochess.org](https://nanochess.org), [https://namelessrumia.heliohost.org/w/doku.php?id=start](https://namelessrumia.heliohost.org/w/doku.php?id=start), [http://afternoon.dynu.com](http://afternoon.dynu.com/), [https://searchlores.nickifaulk.com](https://searchlores.nickifaulk.com), [https://senseis.xmp.net](https://senseis.xmp.net/), [https://www.pgdp.net](https://www.pgdp.net), [https://planetmath.org](https://planetmath.org), [https://www.otrr.org](https://www.otrr.org), [https://texteditors.org](https://texteditors.org), [https://www.trade-free.org](https://www.trade-free.org), [https://www.spi-inc.org](https://www.spi-inc.org), [http://runtimeterror.com](http://runtimeterror.com), [https://wiki.archiveteam.org](https://wiki.archiveteam.org), [https://www.expedition-atlantis.com/](https://www.expedition-atlantis.com/), [https://piracy.vercel.app](https://piracy.vercel.app), [https://wiki.tuhs.org](https://wiki.tuhs.org), [http://stupidctf.ddns.net](http://stupidctf.ddns.net), [http://cyber.dabamos.de](http://cyber.dabamos.de), [https://eldritchdata.neocities.org](https://eldritchdata.neocities.org), [https://bellard.org](https://bellard.org), [https://gcide.gnu.org.ua](https://gcide.gnu.org.ua), [https://2bit.neocities.org](https://2bit.neocities.org), [https://planecrashinfo.com](https://planecrashinfo.com), [https://www.tvnoe.cz](https://www.tvnoe.cz), [http://choice.tiepi.it/~matteobin](http://choice.tiepi.it/~matteobin), [https://repomansez.xyz](https://repomansez.xyz), [https://www.appropedia.org](https://www.appropedia.org), [http://mathlair.allfunandgames.ca](http://mathlair.allfunandgames.ca), [https://classicdoom.com](https://classicdoom.com), [http://www.planix.com/~woods/ms-word.sucks.html](http://www.planix.com/~woods/ms-word.sucks.html), [http://cumallover.me](http://cumallover.me), [http://www.trashrobot.org](http://www.trashrobot.org), [http://horsefucker.org](http://horsefucker.org), [http://washedashore.com](http://washedashore.com), [https://colfax.site/books/trashrobot](https://colfax.site/books/trashrobot), [https://forum.agoraroad.com/index.php](https://forum.agoraroad.com/index.php), [https://archive.org/details/@autism_personified127](https://archive.org/details/@autism_personified127), [https://allchans.org](https://allchans.org), [https://doomwiki.org](https://doomwiki.org), [https://ludicrital.neocities.org](https://ludicrital.neocities.org), [https://codemadness.org](https://codemadness.org), [https://jacobsm.com](https://jacobsm.com), [https://lolcow.wiki (archived because of censorship)](https://web.archive.org/web/20190214020652/https://lolcow.wiki/wiki/Main_Page), [http://www.peacefulhippo.info](http://www.peacefulhippo.info), [http://ronja.twibright.com](http://ronja.twibright.com), [https://dwarffortresswiki.org](https://dwarffortresswiki.org), [https://chan.city](https://chan.city), [https://rmitz.org/bbsloser.html](https://rmitz.org/bbsloser.html), [https://posting.cool/index.php](https://posting.cool/index.php), [https://conspiracies.win](https://conspiracies.win), [http://www.twibright.com/hw.php](http://www.twibright.com/hw.php), [https://urinal.net](https://urinal.net), [http://im.snibgo.com](http://im.snibgo.com), [http://zimage.com/~ant](http://zimage.com/~ant), [https://www.fsfla.org/~lxoliva](https://www.fsfla.org/~lxoliva), [http://www.billwallchess.com](http://www.billwallchess.com), [http://fier.me](http://fier.me), [http://uglynigger.com](http://uglynigger.com), [https://kb.speeddemosarchive.com/SDA_Strategy_Wiki](https://kb.speeddemosarchive.com/SDA_Strategy_Wiki), [https://www.doomworld.com/pageofdoom/index.shtml](https://www.doomworld.com/pageofdoom/index.shtml), [https://commons.miraheze.org/](https://commons.miraheze.org/), [https://www.consentingjuveniles.com](https://www.consentingjuveniles.com), [https://lolcow.farm](https://lolcow.farm), [https://codecaveman.neocities.org/](https://codecaveman.neocities.org/), [https://jeffhuang.com/designed_to_last](https://jeffhuang.com/designed_to_last), [https://phillfromgchq.co.uk/?phill=1](https://phillfromgchq.co.uk/?phill=1), [https://commons.wikimannia.org](https://commons.wikimannia.org), [https://www.old-games.com](https://www.old-games.com), [https://wikilivres.org/](https://wikilivres.org/), [https://fstube.net](https://fstube.net), [https://wiki.yesmap.net](https://wiki.yesmap.net), [https://kassy.neocities.org](https://kassy.neocities.org), [http://frogfind.com](http://frogfind.com), [https://www.theoldrobots.com](https://www.theoldrobots.com), [https://lotanstomb.nfshost.com](https://lotanstomb.nfshost.com), [https://x64x2.neocities.org](https://x64x2.neocities.org), [https://www.boywiki.org](https://www.boywiki.org), [https://git.coom.tech/hermian/unixtopia_wiki](https://git.coom.tech/hermian/unixtopia_wiki), [https://maniacsvault.net/ecwolf/wiki/Main_Page](https://maniacsvault.net/ecwolf/wiki/Main_Page), [https://megaglest.org](https://megaglest.org), [http://oldavista.com/](http://oldavista.com/), [https://wikitia.com](https://wikitia.com), [https://youtuube.neocities.org/homepage](https://youtuube.neocities.org/homepage), [https://lyricaltokarev.com/home](https://lyricaltokarev.com/home), [https://psychonautwiki.org](https://psychonautwiki.org), [https://www.eskimo.com/~billb/billb.html](https://www.eskimo.com/~billb/billb.html), [https://t3x.org/index.html](https://t3x.org/index.html), [https://dukenukemis.cool](https://dukenukemis.cool), [https://blitz.serveo.net](https://blitz.serveo.net), [https://911research.wtc7.net](https://911research.wtc7.net), [https://educate-yourself.org](https://educate-yourself.org), [https://www.lightparty.com](https://www.lightparty.com) +[http://collapseos.org](http://collapseos.org), [https://suckless.org](https://suckless.org), [http://duskos.org](http://duskos.org), [https://wiki.osdev.org](https://wiki.osdev.org), [https://braphogs.com](https://braphogs.com), [http://lolwut.info](http://lolwut.info), [http://cat-v.org](http://cat-v.org), [http://search.somsab.com](http://search.somsab.com), [https://zoophilia.wiki](https://zoophilia.wiki), [https://confluence.org](https://confluence.org), [https://zxaaa.net/view_demo.php?id=12444](https://zxaaa.net/view_demo.php?id=12444), [https://tubgurl.com/catalog.html](https://tubgurl.com/catalog.html), [https://wikiless.tiekoetter.com/wiki/?lang=nostalgia](https://wikiless.tiekoetter.com/wiki/?lang=nostalgia), [http://www.rsdb.org](http://www.rsdb.org), [http://forbiddentruth.mysite.com](http://forbiddentruth.mysite.com), [https://opengameart.org](https://opengameart.org), [https://www.sudosatirical.com](https://www.sudosatirical.com), [https://elisiei.obiente.com](https://elisiei.obiente.com), [https://webwizard.ichi.city](https://webwizard.ichi.city), [http://www.polytope.net/hedrondude/bnc.htm](http://www.polytope.net/hedrondude/bnc.htm), [https://4get.bloat.cat](https://4get.bloat.cat), [https://www.memeatlas.com](https://www.memeatlas.com), [https://search.cdev.nexus](https://search.cdev.nexus), [https://nixers.net](https://nixers.net), [https://oeis.org/OEIS_pics.html](https://oeis.org/OEIS_pics.html), [https://superpredator.zone](https://superpredator.zone), [http://www.mrob.com](http://www.mrob.com), [https://ncatlab.org](https://ncatlab.org), [https://leakjunky.site](https://leakjunky.site), [https://www.gutenberg.org](https://www.gutenberg.org), [https://skibidifarms.st](https://skibidifarms.st), [http://web1.0hosting.net](http://web1.0hosting.net), [https://www.onionfarms.com/](https://www.onionfarms.com/), [https://librivox.org](https://librivox.org), [https://hoaxes.org](https://hoaxes.org), [https://screamer.wiki](https://screamer.wiki), [https://www.chiark.greenend.org.uk/~sgtatham/puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles), [https://golem.ph.utexas.edu](https://golem.ph.utexas.edu), [https://libregamewiki.org](https://libregamewiki.org), [https://pantsuprophet.xyz](https://pantsuprophet.xyz), [https://duion.com](https://duion.com), [http://digdeeper.club](http://digdeeper.club), [https://www.answering-christianity.com](https://www.answering-christianity.com), [https://www.chimpout.com](https://www.chimpout.com), [http://floodgap.com](http://floodgap.com), [https://en.metapedia.org](https://en.metapedia.org), [https://www.vidlii.com](https://www.vidlii.com), [https://wikiindex.org](https://wikiindex.org), [https://saidit.net](https://saidit.net), [https://www.newworldencyclopedia.org](https://www.newworldencyclopedia.org), [http://progopedia.com](http://progopedia.com), [http://techrights.org](http://techrights.org), [https://landsofgames.com](https://landsofgames.com), [https://randomwaffle.gbs.fm](https://randomwaffle.gbs.fm), [http://www.macroevolution.net](http://www.macroevolution.net), [http://macrochan.org](http://macrochan.org), [https://blog.plover.com](https://blog.plover.com), [https://hub.darcs.net](https://hub.darcs.net), [https://repo.or.cz](https://repo.or.cz), [https://templeos.org](https://templeos.org), [http://cidoku.net](http://cidoku.net), [http://z00m.ws](http://z00m.ws), [https://www.gnu.org](https://www.gnu.org), [https://kiwifarms.st](https://kiwifarms.st), [https://circumlunar.space](https://circumlunar.space), [http://www.nigger.org](http://www.nigger.org), [https://forums.somethingawful.com](https://forums.somethingawful.com), [https://the-eye.eu/redarcs](https://the-eye.eu/redarcs), [https://notabug.org](https://notabug.org), [https://gopherproxy.meulie.net](https://gopherproxy.meulie.net), [http://www.reactionary.software](http://www.reactionary.software), [https://libre.video](https://libre.video), [https://wiki.soyjak.st](https://wiki.soyjak.st), [https://scumgames.neocities.org](https://scumgames.neocities.org), [https://preservetube.com](https://preservetube.com), [http://textfiles.com](http://textfiles.com), [https://esolangs.org](https://esolangs.org), [http://www.ioccc.org](http://www.ioccc.org), [https://solar.lowtechmagazine.com](https://solar.lowtechmagazine.com), [http://www.calresco.org](http://www.calresco.org), [http://edramatica.com](http://edramatica.com), [https://infogalactic.com](https://infogalactic.com), [https://www.icechewing.com](https://www.icechewing.com), [http://www.alexchiu.com](http://www.alexchiu.com), [http://www.nigrapedia.com](http://www.nigrapedia.com), [http://whale.to](http://whale.to), [https://www.rouming.cz](https://www.rouming.cz), [https://crazyshit.com/category/celebrities](https://crazyshit.com/category/celebrities), [http://wermenh.com/index.html](http://wermenh.com/index.html), [https://www.thevenusproject.com](https://www.thevenusproject.com), [http://www.somaligov.net](http://www.somaligov.net), [https://stocksnap.io](https://stocksnap.io), [http://www.bentoandstarchky.com/dec/rants.htm](http://www.bentoandstarchky.com/dec/rants.htm), [https://doxbin.org](https://doxbin.org), [https://frogesay.neocities.org (archived because went full furry)](https://web.archive.org/web/20240206194418/https://frogesay.neocities.org/), [https://www.debunkingskeptics.com](https://www.debunkingskeptics.com), [https://stallman.org](https://stallman.org), [http://keypad.org/bunnies](http://keypad.org/bunnies), [https://8kun.top](https://8kun.top), [https://annas-archive.org](https://annas-archive.org), [http://icculus.org/piga](http://icculus.org/piga), [https://4chan.org/an](https://4chan.org/an), [https://forum.freegamedev.net](https://forum.freegamedev.net), [https://fediverse.wiki](https://fediverse.wiki), [https://dolphinana.codeberg.page](https://dolphinana.codeberg.page), [http://www.niggermania.com](http://www.niggermania.com), [https://watchpeopledie.tv](https://watchpeopledie.tv), [https://flarerpg.org](https://flarerpg.org), [https://copyfree.org](https://copyfree.org), [https://wiki.bibanon.org](https://wiki.bibanon.org), [https://www.chessprogramming.org](https://www.chessprogramming.org), [https://neolurk.org](https://neolurk.org), [https://zerocontradictions.net/FAQs/race-FAQs](https://zerocontradictions.net/FAQs/race-FAQs), [https://projectoberon.net](https://projectoberon.net), [http://bitreich.org](http://bitreich.org), [https://tcrf.net](https://tcrf.net), [http://www.humanbiologicaldiversity.com](http://www.humanbiologicaldiversity.com), [https://incels.wiki](https://incels.wiki), [https://www.nearlyfreespeech.net](https://www.nearlyfreespeech.net), [https://softpanorama.org](https://softpanorama.org), [https://retrobrewcomputers.org/doku.php](https://retrobrewcomputers.org/doku.php), [http://humanknowledge.net](http://humanknowledge.net), [https://wrongthink.link](https://wrongthink.link), [http://tastyfish.w10.site](http://tastyfish.w10.site), [https://wiki.leftypol.org](https://wiki.leftypol.org), [https://mdfs.net](https://mdfs.net), [https://bienvenidoainternet.org](https://bienvenidoainternet.org), [https://leftychan.net](https://leftychan.net), [https://leftypol.org](https://leftypol.org), [https://postbox.garden](https://postbox.garden), [https://www.lord-enki.net](https://www.lord-enki.net), [https://r.sine.com](https://r.sine.com), [https://sanctioned-suicide.net](https://sanctioned-suicide.net), [http://www.tastyfish.cz](http://www.tastyfish.cz), [https://simplifier.neocities.org](https://simplifier.neocities.org), [http://datamath.org](http://datamath.org), [http://www.armory.com/~crisper/Scorch/index.html](http://www.armory.com/~crisper/Scorch/index.html), [https://www.lixgame.com](https://www.lixgame.com), [https://obsoletemedia.org](https://obsoletemedia.org), [http://www.doshaven.eu](http://www.doshaven.eu), [https://omick.net](https://omick.net), [http://countercomplex.blogspot.com](http://countercomplex.blogspot.com), [http://batheinmymilk.com](http://batheinmymilk.com), [http://users.rcn.com/hgomberg/boys.html](http://users.rcn.com/hgomberg/boys.html), [https://wiki.thingsandstuff.org](https://wiki.thingsandstuff.org), [https://tinfoil-hat.net](https://tinfoil-hat.net), [https://search.marginalia.nu](https://search.marginalia.nu), [http://wiby.me](http://wiby.me), [https://57296.neocities.org](https://57296.neocities.org), [https://coom.tech](https://coom.tech), [https://rightdao.com](https://rightdao.com), [https://www.alexandria.org](https://www.alexandria.org), [https://allthetropes.org](https://allthetropes.org), [http://dunfield.classiccmp.org](http://dunfield.classiccmp.org/), [https://nanochess.org](https://nanochess.org), [https://namelessrumia.heliohost.org/w/doku.php?id=start](https://namelessrumia.heliohost.org/w/doku.php?id=start), [http://afternoon.dynu.com](http://afternoon.dynu.com/), [https://searchlores.nickifaulk.com](https://searchlores.nickifaulk.com), [https://senseis.xmp.net](https://senseis.xmp.net/), [https://www.pgdp.net](https://www.pgdp.net), [https://planetmath.org](https://planetmath.org), [https://www.otrr.org](https://www.otrr.org), [https://texteditors.org](https://texteditors.org), [https://www.trade-free.org](https://www.trade-free.org), [https://www.spi-inc.org](https://www.spi-inc.org), [http://runtimeterror.com](http://runtimeterror.com), [https://wiki.archiveteam.org](https://wiki.archiveteam.org), [https://www.expedition-atlantis.com/](https://www.expedition-atlantis.com/), [https://piracy.vercel.app](https://piracy.vercel.app), [https://wiki.tuhs.org](https://wiki.tuhs.org), [http://stupidctf.ddns.net](http://stupidctf.ddns.net), [http://cyber.dabamos.de](http://cyber.dabamos.de), [https://eldritchdata.neocities.org](https://eldritchdata.neocities.org), [https://bellard.org](https://bellard.org), [https://gcide.gnu.org.ua](https://gcide.gnu.org.ua), [https://2bit.neocities.org](https://2bit.neocities.org), [https://planecrashinfo.com](https://planecrashinfo.com), [https://www.tvnoe.cz](https://www.tvnoe.cz), [http://choice.tiepi.it/~matteobin](http://choice.tiepi.it/~matteobin), [https://repomansez.xyz](https://repomansez.xyz), [https://www.appropedia.org](https://www.appropedia.org), [http://mathlair.allfunandgames.ca](http://mathlair.allfunandgames.ca), [https://classicdoom.com](https://classicdoom.com), [http://www.planix.com/~woods/ms-word.sucks.html](http://www.planix.com/~woods/ms-word.sucks.html), [http://cumallover.me](http://cumallover.me), [http://www.trashrobot.org](http://www.trashrobot.org), [http://horsefucker.org](http://horsefucker.org), [http://washedashore.com](http://washedashore.com), [https://colfax.site/books/trashrobot](https://colfax.site/books/trashrobot), [https://forum.agoraroad.com/index.php](https://forum.agoraroad.com/index.php), [https://archive.org/details/@autism_personified127](https://archive.org/details/@autism_personified127), [https://allchans.org](https://allchans.org), [https://doomwiki.org](https://doomwiki.org), [https://ludicrital.neocities.org](https://ludicrital.neocities.org), [https://codemadness.org](https://codemadness.org), [https://jacobsm.com](https://jacobsm.com), [https://lolcow.wiki (archived because of censorship)](https://web.archive.org/web/20190214020652/https://lolcow.wiki/wiki/Main_Page), [http://www.peacefulhippo.info](http://www.peacefulhippo.info), [http://ronja.twibright.com](http://ronja.twibright.com), [https://dwarffortresswiki.org](https://dwarffortresswiki.org), [https://chan.city](https://chan.city), [https://rmitz.org/bbsloser.html](https://rmitz.org/bbsloser.html), [https://posting.cool/index.php](https://posting.cool/index.php), [https://conspiracies.win](https://conspiracies.win), [http://www.twibright.com/hw.php](http://www.twibright.com/hw.php), [https://urinal.net](https://urinal.net), [http://im.snibgo.com](http://im.snibgo.com), [http://zimage.com/~ant](http://zimage.com/~ant), [https://www.fsfla.org/~lxoliva](https://www.fsfla.org/~lxoliva), [http://www.billwallchess.com](http://www.billwallchess.com), [http://fier.me](http://fier.me), [http://uglynigger.com](http://uglynigger.com), [https://kb.speeddemosarchive.com/SDA_Strategy_Wiki](https://kb.speeddemosarchive.com/SDA_Strategy_Wiki), [https://www.doomworld.com/pageofdoom/index.shtml](https://www.doomworld.com/pageofdoom/index.shtml), [https://commons.miraheze.org/](https://commons.miraheze.org/), [https://www.consentingjuveniles.com](https://www.consentingjuveniles.com), [https://lolcow.farm](https://lolcow.farm), [https://codecaveman.neocities.org/](https://codecaveman.neocities.org/), [https://jeffhuang.com/designed_to_last](https://jeffhuang.com/designed_to_last), [https://phillfromgchq.co.uk/?phill=1](https://phillfromgchq.co.uk/?phill=1), [https://commons.wikimannia.org](https://commons.wikimannia.org), [https://www.old-games.com](https://www.old-games.com), [https://wikilivres.org/](https://wikilivres.org/), [https://fstube.net](https://fstube.net), [https://wiki.yesmap.net](https://wiki.yesmap.net), [https://kassy.neocities.org](https://kassy.neocities.org), [http://frogfind.com](http://frogfind.com), [https://www.theoldrobots.com](https://www.theoldrobots.com), [https://lotanstomb.nfshost.com](https://lotanstomb.nfshost.com), [https://x64x2.neocities.org](https://x64x2.neocities.org), [https://www.boywiki.org](https://www.boywiki.org), [https://git.coom.tech/hermian/unixtopia_wiki](https://git.coom.tech/hermian/unixtopia_wiki), [https://maniacsvault.net/ecwolf/wiki/Main_Page](https://maniacsvault.net/ecwolf/wiki/Main_Page), [https://megaglest.org](https://megaglest.org), [http://oldavista.com/](http://oldavista.com/), [https://wikitia.com](https://wikitia.com), [https://youtuube.neocities.org/homepage](https://youtuube.neocities.org/homepage), [https://lyricaltokarev.com/home](https://lyricaltokarev.com/home), [https://psychonautwiki.org](https://psychonautwiki.org), [https://www.eskimo.com/~billb/billb.html](https://www.eskimo.com/~billb/billb.html), [https://t3x.org/index.html](https://t3x.org/index.html), [https://dukenukemis.cool](https://dukenukemis.cool), [https://blitz.serveo.net](https://blitz.serveo.net), [https://911research.wtc7.net](https://911research.wtc7.net), [https://educate-yourself.org](https://educate-yourself.org), [https://www.lightparty.com](https://www.lightparty.com) diff --git a/netstalking.md b/netstalking.md index f461b0d..bf87901 100644 --- a/netstalking.md +++ b/netstalking.md @@ -31,7 +31,7 @@ Techniques of netstalking include port scanning, randomly generating web domains - **Find lists of obscure sites and other people who search for them.** A sizable number of small sites now like to post links to other interesting sites, it's enough to find one and then you just start following the links, you find more links etc. This can never end. Some communities like to share lulzy links, e.g. [4chan](4chan.md), kiwifarms, ... Don't forget to contribute back and publish the list of your findings too ;) - **Analyze data.** There are tons of publicly accessible, but yet undigested data about the web -- for example Internet Archive's crawl data, [WikiData](wikidata.md), the Yacy index and so on. You may try your luck sniffing here. - **Filtering**: today the issue of finding something of value has turned from discovering paths to rather filtering out all the countless surrounding [noise](noise.md). There is so much data we get lost in it, so the focus shifts to clever filtering. For example on YouTube all the weird, cool videos are accessible, they're just buried and the algorithm never recommends them, the search never finds them. A way to get to quality videos is for example searching older videos (`before:2015`) which also have subtitles (this is usually a sign of high quality videos, no one bothers with subtitles on crappy videos). -- **Get creative.** You may want to try to search for transcripts, logs, weird combinations of phrases such as "[open source](open_source.md)" and "murder", viewing buried sites by skipping the first million search results, exact phrases such as "what's your emergency" can find emergency hotline transcripts, searching a number of lulzy 4chan thread or [hash](hash.md) of a famous shock image may reveal cool sites linking to fun stuff, searching for the name of a file that was part of some source code leak can find sites posting, archiving or analyzing such leaks, searching for sites that together contain the word "[nigger](nigger.md)" in 10 different languages could lead somewhere interesting too, and so on and so forth. +- **Get creative.** You may want to try to search for transcripts, logs, weird combinations of phrases such as "[open source](open_source.md)" and "murder", viewing buried sites by skipping the first million search results, exact phrases such as "what's your emergency" or "(inaudible)" can find emergency hotline transcripts, searching a number of lulzy 4chan thread or [hash](hash.md) of a famous shock image may reveal cool sites linking to fun stuff, searching for the name of a file that was part of some source code leak can find sites posting, archiving or analyzing such leaks, searching for sites that together contain the word "[nigger](nigger.md)" in 10 different languages could lead somewhere interesting too, and so on and so forth. - **Be reasonably careful.** Normies get scared shitless to even peek on the darkweb, which is completely ridiculous, just looking and searching publicly available data is practically always 100% legal and even if it wasn't, literally no one gives a single shit. However you might get into trouble if you'd for example reverse search literal child porn, as you're uploading the stuff to someone's server and thus technically distributing CP, putting the server owner in trouble. Still not much would happen probably, maybe you'd get blocked, but you're gonna get yourself on the FBI list. Just use your brain. As long as you're not stepping on someone's toe (doxxing, DDOSing, spamming, ...), no one cares what you're doing. - ... diff --git a/oop.md b/oop.md index 9006c13..544e99f 100644 --- a/oop.md +++ b/oop.md @@ -42,7 +42,7 @@ Just a brief summary of why the mainstream OOP is a fail: - It generalizes and simplifies programming into a few rules of thumb such as encapsulation, again for the sake of inexperienced noobs. However there are no simple rules for how to program well, good programming requires a huge amount of experience and as in any art, good programmer knows when breaking the general rules is good. OOP doesn't let good programmers do this, it preaches things like "global variables bad" which is just too oversimplified and hurts good programming. - ... -**But why is it so popular if it's so shit then?** Once again: popularity is never the measure of how good something is, it's usually quite the opposite, take a look at whole technology basically: Why is [web](www.md) so shitty when we literally saw it can be nice? Why are games so shitty, slow, buggy, ugly and hostile when we saw games CAN be done well? Why does everything break so quickly when back in the day things lasted very long? Anywhere you look you will see that as something gets more mainstream and attention of [capitalism](capitalism.md), it gets shittier and shittier, so you can't argue something is good because it's popular or adopted by the industry: programming became more mainstream and so it naturally turned more shitty, OOP was just the specific way that made it shittier. Was Justin Bieber so popular because he made excellent music? Are unskippable [ads](marketing.md) in videos good because corporations do it? Remember that the industry maximizes profit, NOT quality or efficiency or elegance or joy of programming or any other value you'd like to care about. So to make it clear: OOP is shit, there is no doubt, the debate can only be about the specific historical events that led to it becoming the mainstream, and of course here opinions always differ, but basically some may say it was an "innocent accident", that people sincerely believed in it and thought it would be good but once it turned out to not be so, it was too late to go back because it already infected everything -- this is naive though, experts can spot bad ideas in their infancy and will always warn about them, it's just that retards and managers never listen to them, and the history repeats over and over -- the same is happening with forcing [Rust](rust.md) into everything nowadays; that's another extremely bad idea that's criticized but which wins by having a billion more supporters in the retarded camp. Most likely it is the case that [corporations](corporation.md) just pushed OOP because it's lucrative: it allows more people to do brainless programming slavery and even though it limits the expert programmer, it's economically worth to gain so many new slaves for hurting a few experts; it also creates [bloat](bloat.md) and bloat is good for the corporation, it creates a [bloat monopoly](bloat_monopoly.md), more jobs (more slaves to steal the surplus from), new areas of bullshit business etcetc. +**But why is it so popular if it's so shit then?** Once again: popularity has never been the measure of how good something is, it's usually quite the opposite, take a look at whole technology basically: Why is the [web](www.md) so shitty when we literally saw it could be nice? Why are games so shitty, slow, buggy, ugly and hostile when we saw games CAN be done well? Why does everything break so quickly when back in the day things lasted very long? Anywhere you look you will see that as something gets more [mainstream](mainstream.md) and attention of [capitalism](capitalism.md), it gets shittier and shittier, so you can't argue something is good because it's popular or adopted by the industry: programming became more mainstream and so it naturally turned more shitty, OOP was just the specific way that made it shittier. Was Justin Bieber so popular because he made excellent music? Are unskippable [ads](marketing.md) in videos good because corporations do it? Newcomers to programming (and literally every other area of study) almost universally fall victim to the illusion the field is somehow so full of brilliant people, so logical and mathematically precise that things are nearly perfect, close to optimal, fine tuned to be objectively good and very well implemented, but like anywhere else the deeper you go, the more you realize it's just a facade, that cults exist, politics and corruption are destroying great things and promoting cancer, that business and relics of the past complicate everything and that human stupidity is present just like anywhere else. Remember that the industry maximizes profit, NOT quality or efficiency or elegance or joy of programming or any other value you'd like to care about. So to make it clear: OOP is shit, there is no doubt, the debate can only be about the specific historical events that led to it becoming the mainstream, and of course here opinions always differ, but basically some may say it was an "innocent accident", that people sincerely believed in it and thought it would be good but once it turned out to not be so, it was too late to go back because it already infected everything -- this is naive though, experts can spot bad ideas in their infancy and will always warn about them, it's just that retards and managers never listen to them, and the history repeats over and over -- the same is happening with forcing [Rust](rust.md) into everything nowadays; that's another extremely bad idea that's criticized but which wins by having a billion more supporters in the retarded camp. Most likely it is the case that [corporations](corporation.md) just pushed OOP because it's lucrative: it allows more people to do brainless programming slavery and even though it limits the expert programmer, it's economically worth to gain so many new slaves for hurting a few experts; it also creates [bloat](bloat.md) and bloat is good for the corporation, it creates a [bloat monopoly](bloat_monopoly.md), more jobs (more slaves to steal the surplus from), new areas of bullshit business etcetc. ## Pure OOP (The "Legit" But Unused Kind Of OOP) diff --git a/programming.md b/programming.md index d5f6469..72dc023 100644 --- a/programming.md +++ b/programming.md @@ -60,7 +60,13 @@ This section will contain additional useful tips for programming. - By [Unix philosophy](unix_philosophy.md) **don't be afraid to throw away your code and start over and better** -- next time you'll most likely write the same program a lot better and if you're a Unix programmer, your programs are small, possible to be reimplemented quicky. This has even been generalized into a wisdom that says "plan to throw away one", i.e. when approaching a new issue, you quite frequently start writing a program you know you will throw away when it's finished, just to start over and better; the first program just serves to help you understand the true essence of the problem and foresee the real problems you will face. - **Go out!** This is related to the other point -- you shouldn't just sit at the computer when programming, get up and go for a walk, do something else, take a shower, go swim, do something in the garden, repair some stuff or something like that. Fresh air and sunlight helps the brain, it makes you feel better and it's been shown that walking helps activate some important brain centers, many people [actually](ackchyually.md) say they have to walk when thinking hard { Can confirm. ~drummyfish } Changing your environment and getting out of the current focus on the letter on the screen can kick off some real great idea, seeing seemingly unrelated things in nature can spark some inspiration. If you're stuck, take a day off, just sleeping and approaching the problem fresh does miracles. This really does help. It may help to **carry around a blog for taking notes** so that you don't have to stress about forgetting the ideas -- prefer paper blog, leave all electronics at home. - Insert funny [hexadecimal](hexadecimal.md) constant in your program such as `0xED1B1EFAECE5`. -- TODO: moar +- Add this to you C/C++ programs: + +``` +#if defined(_WIN32) || defined(WIN32) || defined(__WIN32__) || defined(__NT__) || defined(__APPLE__) + #warning Your OS sucks, go fuck yourself. +#endif +``` ## See Also diff --git a/random_page.md b/random_page.md index 9a7fec0..d692c5b 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1932 +2,1932 @@ Please kindly click random link. -[*](fixed_point.md) -[*](antivirus_paradox.md) -[*](gaywashing.md) -[*](pride.md) -[*](cracker.md) -[*](entrepreneur.md) -[*](fail_ab.md) -[*](main.md) -[*](good_enough.md) -[*](shogi.md) -[*](bit.md) -[*](suckless.md) -[*](pseudo3d.md) -[*](faggot.md) -[*](cancer.md) -[*](sqrt.md) -[*](ancap.md) -[*](needed.md) -[*](free_speech.md) -[*](or.md) -[*](future_proof.md) -[*](murderer.md) -[*](tangram.md) -[*](digital.md) -[*](lotr.md) -[*](books.md) -[*](mental_outlaw.md) -[*](communism.md) -[*](plusnigger.md) -[*](open_source.md) -[*](saf.md) -[*](shader.md) -[*](newspeak.md) -[*](sjw.md) -[*](fqa.md) -[*](unix_philosophy.md) -[*](permacomputing.md) -[*](git.md) -[*](fediverse.md) -[*](john_carmack.md) -[*](neural_network.md) -[*](dynamic_programming.md) -[*](black.md) -[*](mud.md) -[*](42.md) -[*](rms.md) -[*](doom.md) -[*](interplanetary_internet.md) -[*](pedophilia.md) -[*](charity_sex.md) -[*](feminism.md) -[*](cc.md) -[*](license.md) -[*](apple.md) -[*](asmr.md) -[*](woman.md) -[*](brainfuck.md) -[*](xor.md) -[*](dick_reveal.md) -[*](crypto.md) -[*](luke_smith.md) -[*](sub_rosa.md) -[*](wiki_pages.md) -[*](selflessness.md) -[*](maintenance.md) -[*](lgbt.md) -[*](czechia.md) -[*](analytic_geometry.md) -[*](rgb332.md) -[*](distrohopping.md) -[*](jesus.md) -[*](hash.md) -[*](bootstrap.md) -[*](os.md) -[*](free_speech.md) -[*](cc0.md) -[*](femoid.md) -[*](pedophilia.md) -[*](loc.md) -[*](analog.md) -[*](hard_to_learn_easy_to_master.md) -[*](os.md) -[*](communism.md) -[*](turing_machine.md) -[*](global_discussion.md) -[*](often_confused.md) -[*](nd.md) -[*](ancap.md) -[*](chaos.md) -[*](plan9.md) -[*](app.md) -[*](implicit.md) -[*](rapeware.md) -[*](ai.md) -[*](distance.md) -[*](game_of_life.md) -[*](competition.md) -[*](approximation.md) -[*](intellectual_property.md) -[*](troll.md) -[*](normalization.md) -[*](foss.md) -[*](wikidata.md) -[*](physics_engine.md) -[*](float.md) -[*](dramatica.md) -[*](slowly_boiling_the_frog.md) -[*](social_inertia.md) -[*](netstalking.md) -[*](optimization.md) -[*](gaywashing.md) -[*](proprietary_software.md) -[*](permacomputing_wiki.md) -[*](3d_rendering.md) -[*](dinosaur.md) -[*](gemini.md) -[*](attribution.md) -[*](capitalist_singularity.md) -[*](compression.md) -[*](elo.md) -[*](future.md) -[*](boot.md) -[*](zen.md) -[*](wiki_post_mortem.md) -[*](gay.md) -[*](unix.md) -[*](tattoo.md) -[*](shitword.md) -[*](licar.md) -[*](hard_to_learn_easy_to_master.md) -[*](ram.md) -[*](everyone_does_it.md) -[*](black.md) -[*](systemd.md) -[*](determinism.md) -[*](plan9.md) -[*](noise.md) -[*](p_vs_np.md) -[*](fractal.md) -[*](gemini.md) -[*](tree.md) -[*](log.md) -[*](fizzbuzz.md) -[*](line.md) -[*](small3dlib.md) -[*](bloat_monopoly.md) -[*](wiki_authors.md) -[*](acronym.md) -[*](copyright.md) -[*](color.md) -[*](elo.md) -[*](langtons_ant.md) -[*](phd.md) -[*](harry_potter.md) -[*](acronym.md) -[*](os.md) -[*](love.md) -[*](bbs.md) -[*](minimalism.md) -[*](fixed_point.md) -[*](go.md) -[*](100r.md) -[*](cheating.md) -[*](unary.md) -[*](unix.md) -[*](xor.md) -[*](entropy.md) -[*](esolang.md) -[*](wirtual.md) -[*](chinese.md) -[*](anticompany.md) -[*](suicide.md) -[*](nc.md) -[*](lil.md) -[*](democracy.md) -[*](lmao.md) -[*](mob_software.md) -[*](piracy.md) -[*](hardware.md) -[*](julia_set.md) -[*](antialiasing.md) -[*](esolang.md) -[*](rust.md) -[*](nigeria.md) -[*](programming_style.md) -[*](flatland.md) -[*](npc.md) -[*](popularization.md) -[*](troll.md) -[*](ai.md) -[*](tech.md) -[*](axiom_of_choice.md) -[*](minesweeper.md) -[*](soydev.md) -[*](proof.md) -[*](justice.md) -[*](beauty.md) -[*](boot.md) -[*](ui.md) -[*](monad.md) -[*](trusting_trust.md) -[*](libre.md) -[*](antialiasing.md) -[*](fascism.md) -[*](privacy.md) -[*](abstraction.md) -[*](programming_tips.md) -[*](human_language.md) -[*](rights_culture.md) -[*](microtransaction.md) -[*](smallchesslib.md) -[*](chess.md) -[*](pseudo3d.md) -[*](ioccc.md) -[*](duke3d.md) -[*](frameless.md) -[*](proprietary.md) -[*](float.md) -[*](mechanical.md) -[*](fuck.md) -[*](soydev.md) -[*](racism.md) -[*](feminism.md) -[*](phd.md) -[*](combinatorics.md) -[*](autostereogram.md) -[*](nokia.md) -[*](bilinear.md) -[*](patent.md) -[*](pseudominimalism.md) -[*](malware.md) -[*](gnu.md) -[*](emoticon.md) -[*](egg_code.md) -[*](anpac.md) -[*](interpolation.md) -[*](kiss.md) -[*](build_engine.md) -[*](fractal.md) -[*](murderer.md) -[*](terry_davis.md) -[*](arduboy.md) -[*](windows.md) -[*](oop.md) -[*](democracy.md) -[*](sudoku.md) -[*](encyclopedia.md) -[*](web.md) -[*](4chan.md) -[*](adam_smith.md) +[*](deep_blue.md) +[*](openarena.md) +[*](earth.md) [*](nonogram.md) -[*](capitalist_singularity.md) -[*](whale.md) -[*](unretard.md) -[*](markov_chain.md) -[*](zero.md) -[*](proprietary.md) -[*](unfuck.md) -[*](nigger.md) -[*](no_knowledge_proof.md) -[*](zuckerberg.md) -[*](assertiveness.md) -[*](progress.md) -[*](xonotic.md) +[*](throwaway_script.md) [*](kids_these_days.md) -[*](wirtual.md) -[*](or.md) -[*](physics_engine.md) -[*](jargon_file.md) -[*](homelessness.md) -[*](sw_rendering.md) -[*](tor.md) -[*](assertiveness.md) -[*](rationalization.md) -[*](f2p.md) -[*](macrofucker.md) -[*](temple_os.md) -[*](free_universe.md) -[*](chinese.md) -[*](crypto.md) -[*](ashley_jones.md) -[*](steve_jobs.md) -[*](fail_ab.md) -[*](fascism.md) -[*](twos_complement.md) -[*](unfuck.md) -[*](blender.md) -[*](ted_kaczynski.md) -[*](tranny.md) -[*](computational_complexity.md) -[*](dodleston.md) -[*](raylib.md) -[*](collapse.md) -[*](raylib.md) -[*](needed.md) -[*](dependency.md) -[*](cpp.md) -[*](hitler.md) [*](uxn.md) -[*](binary.md) -[*](hacker_culture.md) -[*](humorwashing.md) -[*](smol_internet.md) -[*](coding.md) -[*](open_console.md) -[*](rgb565.md) -[*](humidity.md) -[*](altruism.md) -[*](githopping.md) -[*](finished.md) -[*](integral.md) -[*](unicode.md) -[*](libre.md) -[*](avpd.md) -[*](trump.md) -[*](e.md) -[*](football.md) -[*](google.md) -[*](calculus.md) -[*](speech_synthesis.md) -[*](education.md) -[*](paywall.md) -[*](permacomputing.md) -[*](proprietary.md) -[*](gui.md) -[*](cancer.md) -[*](wiki_stats.md) -[*](infinity.md) -[*](free_will.md) -[*](settled.md) -[*](moderation.md) -[*](exercises.md) -[*](lotr.md) -[*](implicit.md) -[*](raycasting.md) -[*](free_software.md) -[*](bitreich.md) -[*](duskos.md) -[*](drummyfish.md) -[*](wikidata.md) -[*](john_carmack.md) -[*](friend_detox.md) -[*](wikipedia.md) -[*](apple.md) -[*](countercomplex.md) -[*](popularization.md) -[*](furry.md) -[*](lmao.md) -[*](mouse.md) -[*](dog.md) -[*](derivative.md) -[*](unicode.md) -[*](project.md) -[*](lambda_calculus.md) -[*](javascript.md) -[*](sdf.md) -[*](youtube.md) -[*](game.md) -[*](html.md) -[*](tensor_product.md) -[*](quake.md) -[*](harry_potter.md) -[*](firmware.md) -[*](fractal.md) -[*](open_source.md) -[*](project.md) -[*](goodbye_world.md) -[*](www.md) -[*](bit_hack.md) -[*](hyperoperation.md) -[*](cyberbullying.md) -[*](life.md) -[*](femoid.md) -[*](c_tutorial.md) -[*](computer.md) -[*](computer.md) -[*](xxiivv.md) -[*](cope.md) -[*](hack.md) -[*](racism.md) -[*](name_is_important.md) -[*](assembly.md) -[*](nc.md) -[*](3d_rendering.md) -[*](rock.md) -[*](robot.md) -[*](turing_machine.md) -[*](island.md) -[*](viznut.md) -[*](rsa.md) -[*](body_shaming.md) -[*](bazaar.md) -[*](formal_language.md) -[*](communism.md) -[*](fear_culture.md) -[*](audiophilia.md) -[*](jedi_engine.md) -[*](jokes.md) -[*](shit.md) -[*](finished.md) -[*](work.md) -[*](faq.md) -[*](nord_vpn.md) -[*](productivity_cult.md) -[*](copyfree.md) -[*](libre.md) -[*](how_to.md) -[*](idiot_fallacy.md) -[*](jargon_file.md) -[*](sin.md) -[*](feminism.md) -[*](lgbt.md) -[*](political_correctness.md) -[*](modern.md) -[*](crime_against_economy.md) -[*](reddit.md) -[*](earth.md) -[*](memory_management.md) -[*](creative_commons.md) -[*](number.md) -[*](czechia.md) -[*](public_domain.md) -[*](algorithm.md) -[*](steganography.md) -[*](anarch.md) -[*](dynamic_programming.md) -[*](hacking.md) -[*](sdf.md) -[*](tech.md) -[*](gigachad.md) -[*](rapeware.md) -[*](assembly.md) -[*](wikiwikiweb.md) -[*](fsf.md) -[*](military.md) -[*](sanism.md) -[*](githopping.md) -[*](toxic.md) -[*](collapse.md) -[*](data_hoarding.md) -[*](smart.md) -[*](deep_blue.md) -[*](hack.md) -[*](left_right.md) -[*](pride.md) -[*](less_retarded_software.md) -[*](sanism.md) -[*](mandelbrot_set.md) -[*](exercises.md) -[*](io.md) -[*](human_language.md) -[*](entropy.md) -[*](gnu.md) -[*](based.md) -[*](arduboy.md) -[*](fight_culture.md) -[*](morality.md) -[*](tom_scott.md) -[*](soyence.md) -[*](openai.md) -[*](fqa.md) -[*](aliasing.md) -[*](island.md) -[*](real_number.md) -[*](e.md) -[*](primitive_3d.md) -[*](hitler.md) -[*](gnu.md) -[*](programming_language.md) -[*](go.md) -[*](paradigm.md) -[*](wiki_stats.md) -[*](lrs.md) -[*](world_broadcast.md) -[*](hard_to_learn_easy_to_master.md) -[*](cloudflare.md) -[*](21st_century.md) -[*](triangle.md) -[*](cat_v.md) -[*](computational_complexity.md) -[*](kiwifarms.md) -[*](kek.md) -[*](shit.md) -[*](collision_detection.md) -[*](byte.md) -[*](gui.md) -[*](interplanetary_internet.md) -[*](faggot.md) -[*](color.md) -[*](microsoft.md) -[*](anorexia.md) -[*](deep_blue.md) -[*](sorting.md) -[*](library.md) -[*](hyperoperation.md) -[*](billboard.md) -[*](ethics.md) -[*](free_software.md) -[*](shitword.md) +[*](wiki_tldr.md) +[*](social_inertia.md) +[*](software.md) +[*](nonogram.md) +[*](unary.md) [*](fourier_transform.md) -[*](anarchism.md) -[*](zoomer.md) -[*](game_design.md) -[*](freemasonry.md) -[*](coc.md) -[*](microtheft.md) -[*](algorithm.md) -[*](quaternion.md) -[*](de_facto.md) -[*](pascal.md) -[*](toxic.md) -[*](pseudorandomness.md) -[*](integral.md) -[*](linux.md) -[*](julia_set.md) -[*](coc.md) -[*](tangram.md) -[*](jokes.md) -[*](rust.md) -[*](speech_synthesis.md) -[*](trash_magic.md) -[*](library.md) -[*](consumerism.md) -[*](build_engine.md) -[*](README.md) -[*](countercomplex.md) -[*](fun.md) -[*](privacy.md) -[*](cancer.md) -[*](openarena.md) -[*](public_domain.md) -[*](logic_gate.md) -[*](free.md) -[*](ethics.md) -[*](www.md) -[*](internet.md) -[*](flatland.md) -[*](collision.md) -[*](programming_tips.md) -[*](semiconductor.md) -[*](loc.md) -[*](fizzbuzz.md) -[*](antivirus_paradox.md) -[*](elon_musk.md) -[*](universe.md) -[*](flatland.md) -[*](global_discussion.md) -[*](wirtual.md) -[*](rapeware.md) -[*](entropy.md) -[*](earth.md) -[*](rationalization.md) -[*](neural_network.md) -[*](pd.md) -[*](firmware.md) -[*](discalimer.md) -[*](woman.md) -[*](wizard.md) -[*](kids_these_days.md) -[*](racetrack.md) -[*](x86.md) -[*](tattoo.md) -[*](de_facto.md) -[*](duskos.md) -[*](libertarianism.md) -[*](derivative.md) -[*](jedi_engine.md) -[*](free_culture.md) -[*](lmao.md) -[*](often_confused.md) -[*](culture.md) -[*](hacking.md) -[*](data_hoarding.md) -[*](mental_outlaw.md) -[*](cancel_culture.md) +[*](dependency.md) [*](transsexual.md) -[*](tree.md) -[*](moderation.md) -[*](loc.md) -[*](collision_detection.md) -[*](deferred_shading.md) -[*](library.md) -[*](moderation.md) -[*](backpropagation.md) -[*](ascii_art.md) -[*](culture.md) -[*](history.md) -[*](google.md) -[*](graveyard.md) -[*](compsci.md) -[*](motivation.md) -[*](distance.md) -[*](procgen.md) -[*](game.md) -[*](steganography.md) -[*](disease.md) -[*](data_hoarding.md) -[*](ronja.md) -[*](steve_jobs.md) -[*](zoomer.md) -[*](algorithm.md) -[*](capitalism.md) -[*](floss.md) -[*](suicide.md) -[*](fizzbuzz.md) -[*](ronja.md) -[*](brainfuck.md) -[*](ioccc.md) -[*](programming_style.md) -[*](tensor_product.md) -[*](qubit.md) -[*](great_trap.md) -[*](chasm_the_rift.md) -[*](iq.md) -[*](evil.md) -[*](unicode.md) -[*](demo.md) -[*](charity_sex.md) -[*](update_culture.md) -[*](90s.md) -[*](doom.md) -[*](openai.md) -[*](antialiasing.md) -[*](discalimer.md) -[*](fascist.md) -[*](rgb565.md) -[*](ssao.md) -[*](anpac.md) -[*](old.md) -[*](graphics.md) -[*](music.md) -[*](line.md) -[*](randomness.md) -[*](tpe.md) -[*](easier_done_than_said.md) -[*](rationalwiki.md) -[*](wiki_pages.md) -[*](boat.md) -[*](42.md) -[*](youtube.md) -[*](shitword.md) -[*](arduboy.md) -[*](charity_sex.md) -[*](phd.md) -[*](capitalist_singularity.md) -[*](minigame.md) -[*](lrs_dictionary.md) -[*](cpu.md) -[*](go.md) -[*](tpe.md) -[*](foss.md) -[*](zen.md) -[*](programming.md) -[*](e.md) -[*](human_language.md) -[*](demoscene.md) -[*](public_domain_computer.md) -[*](girl.md) -[*](wiby.md) -[*](free.md) -[*](combinatorics.md) -[*](formal_language.md) -[*](dynamic_programming.md) -[*](dodleston.md) -[*](tranny_software.md) -[*](tas.md) -[*](malware.md) -[*](wavelet_transform.md) -[*](fun.md) -[*](shader.md) -[*](www.md) -[*](cyber.md) -[*](project.md) -[*](egoism.md) -[*](used.md) -[*](cat_v.md) -[*](chinese.md) -[*](bbs.md) -[*](twos_complement.md) -[*](tom_scott.md) -[*](jesus.md) -[*](music.md) -[*](mainstream.md) -[*](books.md) -[*](marketing.md) -[*](adam_smith.md) -[*](or.md) -[*](terry_davis.md) -[*](transistor.md) -[*](compiler_bomb.md) -[*](game_engine.md) -[*](love.md) -[*](fight.md) -[*](function.md) -[*](troll.md) -[*](lil.md) -[*](dungeons_and_dragons.md) -[*](deferred_shading.md) -[*](murderer.md) -[*](web.md) -[*](modern_software.md) -[*](python.md) -[*](science.md) -[*](conum.md) -[*](double_buffering.md) -[*](unretard.md) -[*](lrs.md) -[*](lrs_wiki.md) -[*](kwangmyong.md) -[*](technology.md) -[*](fork.md) -[*](productivity_cult.md) -[*](shortcut_thinking.md) -[*](atheism.md) -[*](znk.md) -[*](less_retarded_hardware.md) -[*](c_pitfalls.md) -[*](sudoku.md) -[*](game_engine.md) -[*](100r.md) -[*](sqrt.md) -[*](gender_studies.md) -[*](sw_rendering.md) -[*](langtons_ant.md) -[*](interesting.md) -[*](duke3d.md) -[*](optimization.md) -[*](faq.md) -[*](deep_blue.md) -[*](windows.md) -[*](smallchesslib.md) -[*](sorting.md) -[*](semiconductor.md) -[*](venus_project.md) -[*](backgammon.md) -[*](wikiwikiweb.md) -[*](universe.md) -[*](color.md) -[*](explicit.md) -[*](body_shaming.md) -[*](openai.md) -[*](3d_model.md) -[*](internet.md) -[*](trolling.md) -[*](computer.md) -[*](explicit.md) -[*](blender.md) -[*](floss.md) -[*](paywall.md) -[*](crypto.md) -[*](qubit.md) -[*](forth.md) -[*](fascist.md) -[*](probability.md) -[*](forth.md) -[*](bloat.md) -[*](art.md) -[*](tattoo.md) -[*](interaction_net.md) -[*](mainstream.md) -[*](pi.md) -[*](3d_modeling.md) -[*](quantum_gate.md) -[*](used.md) -[*](bloat.md) -[*](cracking.md) -[*](suckless.md) -[*](free.md) -[*](holy_war.md) -[*](wizard.md) -[*](bit_hack.md) -[*](demoscene.md) -[*](regex.md) -[*](femoid.md) -[*](science.md) -[*](trusting_trust.md) -[*](fail_ab.md) -[*](loquendo.md) -[*](maintenance.md) -[*](everyone_does_it.md) -[*](faq.md) -[*](sw.md) -[*](education.md) -[*](plusnigger.md) -[*](motivation.md) -[*](abstraction.md) -[*](tinyphysicsengine.md) -[*](minigame.md) -[*](math.md) -[*](soydev.md) -[*](cos.md) -[*](qubit.md) -[*](based.md) -[*](programming.md) -[*](social_inertia.md) -[*](foss.md) -[*](bill_gates.md) -[*](cheating.md) -[*](cyberbullying.md) -[*](shitpress.md) -[*](people.md) -[*](lisp.md) -[*](no_knowledge_proof.md) -[*](graveyard.md) -[*](abstraction.md) -[*](just_werks.md) -[*](no_knowledge_proof.md) -[*](public_domain_computer.md) -[*](bloat_monopoly.md) -[*](rsa.md) -[*](saf.md) -[*](one.md) -[*](capitalist_software.md) -[*](greenwashing.md) -[*](paywall.md) -[*](linux.md) -[*](framework.md) -[*](wolf3d.md) -[*](shortcut_thinking.md) -[*](doom.md) -[*](lisp.md) -[*](saf.md) -[*](iq.md) -[*](implicit.md) -[*](marxism.md) -[*](quine.md) -[*](smol_internet.md) -[*](steve_jobs.md) -[*](history.md) -[*](web.md) -[*](rms.md) -[*](art.md) -[*](viznut.md) -[*](netstalking.md) -[*](chaos.md) -[*](science.md) -[*](unary.md) -[*](t3x.md) -[*](how_to.md) -[*](hexadecimal.md) -[*](corporation.md) -[*](military.md) -[*](vector.md) -[*](freedom.md) -[*](island.md) -[*](geek.md) -[*](magic.md) -[*](atan.md) -[*](quine.md) -[*](iq.md) -[*](minimalism.md) -[*](pseudorandomness.md) -[*](palette.md) -[*](c_sharp.md) -[*](see_through_clothes.md) -[*](shitpress.md) -[*](gui.md) -[*](java.md) -[*](wavelet_transform.md) -[*](bullshit.md) -[*](attribution.md) -[*](less_retarded_society.md) -[*](logic_circuit.md) -[*](rule110.md) -[*](democracy.md) -[*](shogi.md) -[*](math.md) -[*](license.md) -[*](unix_philosophy.md) -[*](digital.md) -[*](law.md) -[*](collision.md) -[*](patent.md) -[*](ascii_art.md) -[*](wiki_rights.md) -[*](chasm_the_rift.md) -[*](open_source.md) -[*](build_engine.md) -[*](npc.md) -[*](pascal.md) -[*](distrohopping.md) -[*](cloudflare.md) -[*](selflessness.md) -[*](determinism.md) -[*](nigger.md) -[*](kek.md) -[*](piracy.md) -[*](c_sharp.md) -[*](cloud.md) -[*](universe.md) -[*](floss.md) -[*](myths.md) -[*](pseudominimalism.md) -[*](c.md) -[*](information.md) -[*](analytic_geometry.md) -[*](reactionary_software.md) -[*](kiss.md) -[*](easier_done_than_said.md) -[*](proprietary_software.md) -[*](asexuality.md) -[*](julia_set.md) -[*](bill_gates.md) -[*](left.md) -[*](cracking.md) -[*](public_domain_computer.md) -[*](luke_smith.md) -[*](terry_davis.md) -[*](security.md) -[*](java.md) -[*](reactionary_software.md) -[*](usa.md) -[*](sub_rosa.md) -[*](competition.md) -[*](liberalism.md) -[*](100r.md) -[*](css.md) -[*](consumerism.md) -[*](tom_scott.md) -[*](twos_complement.md) -[*](znk.md) -[*](interesting.md) -[*](jedi_engine.md) -[*](small3dlib.md) -[*](vector.md) -[*](pi.md) -[*](love.md) -[*](transistor.md) -[*](modern_software.md) -[*](splinternet.md) -[*](race.md) -[*](loquendo.md) -[*](homelessness.md) -[*](demo.md) -[*](and.md) -[*](software.md) -[*](css.md) -[*](unary.md) -[*](zoomer.md) -[*](wikiwikiweb.md) -[*](ancap.md) -[*](future_proof.md) -[*](bill_gates.md) -[*](combinatorics.md) -[*](znk.md) -[*](asmr.md) -[*](logic.md) -[*](ui.md) -[*](friend_detox.md) -[*](wow.md) -[*](line.md) -[*](compiler_bomb.md) -[*](fsf.md) -[*](encryption.md) -[*](bytebeat.md) -[*](probability.md) -[*](monad.md) -[*](sdf.md) -[*](creative_commons.md) -[*](asmr.md) -[*](crow_funding.md) -[*](procgen.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](diogenes.md) -[*](physics_engine.md) -[*](normalization.md) -[*](dungeons_and_dragons.md) -[*](digital_signature.md) -[*](autoupdate.md) -[*](recursion.md) -[*](autostereogram.md) -[*](brain_software.md) -[*](autoupdate.md) -[*](bytecode.md) -[*](tor.md) -[*](fun.md) -[*](censorship.md) -[*](duskos.md) -[*](license.md) -[*](golang.md) -[*](dungeons_and_dragons.md) -[*](rationalization.md) -[*](education.md) -[*](logic.md) -[*](ascii.md) -[*](holy_war.md) -[*](ubi.md) -[*](xonotic.md) -[*](githopping.md) -[*](math.md) -[*](disease.md) -[*](rust.md) -[*](marketing.md) -[*](digital_signature.md) -[*](pokitto.md) -[*](hacker_culture.md) -[*](censorship.md) -[*](pascal.md) -[*](operating_system.md) -[*](billboard.md) -[*](finished.md) -[*](technology.md) -[*](low_poly.md) -[*](calculus.md) -[*](motivation.md) -[*](less_retarded_hardware.md) -[*](niger.md) -[*](capitalist_software.md) -[*](software.md) -[*](social_inertia.md) -[*](cache.md) -[*](complexity.md) -[*](fixed_point.md) -[*](nationalism.md) -[*](reactionary_software.md) -[*](systemd.md) -[*](kiwifarms.md) -[*](3d_model.md) -[*](recursion.md) -[*](c_sharp.md) -[*](modern.md) -[*](p_vs_np.md) -[*](freedom_distance.md) -[*](bitreich.md) -[*](js.md) -[*](prime.md) -[*](pokitto.md) -[*](tool_slave.md) -[*](compiler_bomb.md) -[*](harry_potter.md) -[*](microsoft.md) -[*](number.md) -[*](autoupdate.md) -[*](copyleft.md) -[*](fascist.md) -[*](capitalist_software.md) -[*](backpropagation.md) -[*](dramatica.md) -[*](anarch.md) -[*](teletext.md) -[*](easy_to_learn_hard_to_master.md) -[*](ascii.md) -[*](xd.md) -[*](chess.md) -[*](collision_detection.md) -[*](x86.md) -[*](body_shaming.md) -[*](aaron_swartz.md) -[*](dinosaur.md) -[*](programming_language.md) -[*](often_confused.md) -[*](kwangmyong.md) -[*](tranny_software.md) -[*](teletext.md) -[*](x86.md) -[*](often_misunderstood.md) -[*](wiki_post_mortem.md) -[*](arch.md) -[*](adam_smith.md) -[*](free_will.md) -[*](interpolation.md) -[*](javascript.md) -[*](html.md) -[*](nd.md) -[*](hw.md) -[*](competition.md) -[*](niggercoin.md) -[*](game_of_life.md) -[*](racetrack.md) -[*](resnicks_termite.md) -[*](tas.md) -[*](minimalism.md) -[*](brain_software.md) -[*](ted_kaczynski.md) -[*](comun.md) -[*](emoticon.md) -[*](progress.md) -[*](apple.md) -[*](debugging.md) -[*](maintenance.md) -[*](tree.md) -[*](wiki_style.md) -[*](atheism.md) -[*](t3x.md) -[*](thrembo.md) -[*](left.md) -[*](framework.md) -[*](shortcut_thinking.md) -[*](rgb332.md) -[*](binary.md) -[*](settled.md) -[*](systemd.md) -[*](palette.md) -[*](ascii_art.md) -[*](slowly_boiling_the_frog.md) -[*](vim.md) -[*](smart.md) -[*](altruism.md) -[*](gaywashing.md) -[*](compression.md) -[*](analog.md) -[*](microtheft.md) -[*](libertarianism.md) -[*](acronym.md) -[*](easy_to_learn_hard_to_master.md) -[*](furry.md) -[*](21st_century.md) -[*](hero.md) -[*](t3x.md) -[*](distrohopping.md) -[*](memory_management.md) -[*](cache.md) -[*](backpropagation.md) -[*](uxn.md) -[*](hero_culture.md) -[*](oop.md) -[*](transsexual.md) -[*](gopher.md) -[*](ssao.md) -[*](throwaway_script.md) -[*](javascript.md) -[*](tool_slave.md) -[*](ubi.md) -[*](libertarianism.md) -[*](security.md) -[*](comun.md) -[*](nc.md) -[*](tranny_software.md) -[*](physics.md) -[*](ai.md) -[*](anarchism.md) -[*](atan.md) -[*](and.md) -[*](vector.md) -[*](devuan.md) -[*](intellectual_property.md) -[*](c.md) -[*](comun.md) -[*](backgammon.md) -[*](robot.md) -[*](ubi.md) -[*](ethics.md) -[*](anticompany.md) -[*](minesweeper.md) -[*](cpu.md) -[*](golang.md) -[*](pseudorandomness.md) -[*](copyleft.md) -[*](tangram.md) -[*](free_body.md) -[*](old.md) -[*](ssao.md) -[*](demo.md) -[*](football.md) -[*](jokes.md) -[*](lambda_calculus.md) -[*](bit_hack.md) -[*](windows.md) -[*](axiom_of_choice.md) -[*](anpac.md) -[*](low_poly.md) -[*](future.md) -[*](small3dlib.md) -[*](double_buffering.md) -[*](cloud.md) -[*](teletext.md) -[*](minesweeper.md) -[*](whale.md) -[*](robot.md) -[*](progress.md) -[*](sin.md) -[*](xxiivv.md) -[*](ashley_jones.md) -[*](comment.md) -[*](audiophilia.md) -[*](girl.md) -[*](ted_kaczynski.md) -[*](john_carmack.md) -[*](rights_culture.md) -[*](openarena.md) -[*](lotr.md) -[*](4chan.md) -[*](watchdog.md) -[*](brain_software.md) -[*](bytecode.md) -[*](cheating.md) -[*](popularization.md) -[*](de_facto.md) -[*](brainfuck.md) -[*](wikipedia.md) -[*](freedom_distance.md) -[*](trash_magic.md) -[*](wiby.md) -[*](hero.md) -[*](drummyfish.md) -[*](military.md) -[*](just_werks.md) -[*](consumerism.md) -[*](encyclopedia.md) -[*](pd.md) -[*](bullshit.md) -[*](graphics.md) -[*](reddit.md) -[*](forth.md) -[*](newspeak.md) -[*](niggercoin.md) -[*](idiot_fallacy.md) -[*](proof.md) -[*](integral.md) -[*](p_vs_np.md) -[*](update_culture.md) -[*](binary.md) -[*](dodleston.md) -[*](fqa.md) -[*](logic.md) -[*](people.md) -[*](gigachad.md) -[*](temple_os.md) -[*](hexadecimal.md) -[*](rsa.md) -[*](wiby.md) -[*](viznut.md) -[*](number.md) -[*](marble_race.md) -[*](free_universe.md) -[*](cope.md) -[*](network.md) -[*](markov_chain.md) +[*](float.md) +[*](byte.md) [*](unix.md) -[*](cpp.md) -[*](throwaway_script.md) -[*](downto.md) -[*](nd.md) -[*](free_universe.md) -[*](soyence.md) -[*](anorexia.md) -[*](lrs_wiki.md) -[*](culture.md) -[*](complexity.md) -[*](justice.md) -[*](xonotic.md) -[*](sanism.md) -[*](gigachad.md) -[*](work.md) -[*](morality.md) -[*](english.md) -[*](bit.md) -[*](interaction_net.md) -[*](see_through_clothes.md) -[*](world_broadcast.md) -[*](arch.md) -[*](liberalism.md) -[*](productivity_cult.md) +[*](axiom_of_choice.md) +[*](ancap.md) +[*](collision_detection.md) [*](git.md) -[*](hardware.md) -[*](liberalism.md) -[*](mipmap.md) -[*](modern_software.md) -[*](90s.md) -[*](smallchesslib.md) -[*](permacomputing_wiki.md) -[*](trump.md) -[*](hacking.md) -[*](function.md) -[*](entrepreneur.md) -[*](debugging.md) -[*](digital_signature.md) -[*](java.md) -[*](sjw.md) -[*](yes_they_can.md) -[*](kids_these_days.md) -[*](cache.md) -[*](ashley_jones.md) -[*](sigbovik.md) -[*](bbs.md) -[*](exercises.md) -[*](bootstrap.md) -[*](lrs_wiki.md) -[*](mob_software.md) -[*](wiki_authors.md) -[*](sqrt.md) -[*](how_to.md) -[*](needed.md) -[*](demoscene.md) -[*](anticompany.md) -[*](data_structure.md) -[*](esolang.md) -[*](nokia.md) -[*](life.md) [*](42.md) -[*](world_broadcast.md) -[*](programming_tips.md) -[*](money.md) -[*](anarchism.md) -[*](encryption.md) -[*](linear_algebra.md) -[*](duke3d.md) -[*](boat.md) -[*](bytebeat.md) -[*](permacomputing.md) -[*](stereotype.md) +[*](logic_circuit.md) +[*](pseudoleft.md) +[*](rgb332.md) +[*](web.md) +[*](libertarianism.md) +[*](duskos.md) +[*](old.md) +[*](function.md) +[*](teletext.md) +[*](proprietary_software.md) +[*](watchdog.md) +[*](adam_smith.md) +[*](based.md) +[*](evil.md) +[*](free_hardware.md) [*](bs.md) -[*](anal_bead.md) -[*](f2p.md) -[*](anorexia.md) -[*](lil.md) -[*](elon_musk.md) -[*](computational_complexity.md) -[*](antivirus_paradox.md) -[*](compsci.md) -[*](gay.md) -[*](software.md) -[*](idiot_fallacy.md) -[*](information.md) -[*](gopher.md) -[*](smol_internet.md) -[*](cc0.md) -[*](splinternet.md) -[*](trom.md) -[*](operating_system.md) -[*](cloud.md) -[*](mipmap.md) -[*](trolling.md) -[*](rock.md) -[*](good_enough.md) -[*](conum.md) +[*](marble_race.md) +[*](raylib.md) +[*](portal_rendering.md) +[*](langtons_ant.md) +[*](shortcut_thinking.md) +[*](iq.md) +[*](probability.md) +[*](freedom_distance.md) +[*](bloat.md) +[*](nonogram.md) +[*](marxism.md) +[*](c_sharp.md) +[*](permacomputing_wiki.md) +[*](xor.md) +[*](determinism.md) +[*](bytebeat.md) +[*](html.md) +[*](ted_kaczynski.md) +[*](combinatorics.md) +[*](apple.md) +[*](wolf3d.md) [*](emoticon.md) -[*](atheism.md) -[*](cope.md) -[*](21st_century.md) -[*](cancel_culture.md) -[*](sw.md) -[*](trusting_trust.md) -[*](coc.md) -[*](work.md) -[*](yes_they_can.md) -[*](law.md) -[*](pokitto.md) -[*](logic_circuit.md) -[*](mipmap.md) -[*](hw.md) -[*](3d_modeling.md) -[*](xd.md) -[*](newspeak.md) -[*](nationalism.md) -[*](art.md) -[*](fediverse.md) -[*](hyperoperation.md) -[*](analytic_geometry.md) -[*](debugging.md) -[*](logic_circuit.md) -[*](bitreich.md) -[*](fear_culture.md) -[*](cracker.md) -[*](graphics.md) -[*](hack.md) -[*](rule110.md) -[*](python.md) +[*](creative_commons.md) +[*](programming.md) +[*](mob_software.md) +[*](ancap.md) +[*](popularization.md) +[*](elon_musk.md) +[*](lisp.md) +[*](often_confused.md) +[*](rms.md) +[*](jokes.md) +[*](xor.md) +[*](free_software.md) +[*](good_enough.md) +[*](egg_code.md) +[*](morality.md) +[*](venus_project.md) +[*](mud.md) +[*](tpe.md) +[*](trump.md) +[*](sjw.md) +[*](duke3d.md) +[*](justice.md) +[*](thrembo.md) +[*](tensor_product.md) +[*](mandelbrot_set.md) +[*](youtube.md) +[*](devuan.md) +[*](liberalism.md) [*](fuck.md) +[*](beauty.md) +[*](aaron_swartz.md) +[*](kiwifarms.md) +[*](physics_engine.md) +[*](love.md) +[*](people.md) +[*](pseudominimalism.md) +[*](42.md) +[*](www.md) +[*](jesus.md) +[*](raycastlib.md) +[*](tensor_product.md) +[*](docker.md) +[*](compsci.md) +[*](graveyard.md) +[*](software.md) +[*](fork.md) +[*](collapse.md) +[*](friend_detox.md) +[*](freemasonry.md) +[*](e.md) +[*](microtheft.md) +[*](ui.md) +[*](kek.md) +[*](tas.md) +[*](julia_set.md) +[*](reddit.md) +[*](tool_slave.md) +[*](smallchesslib.md) +[*](tool_slave.md) +[*](one.md) +[*](shader.md) +[*](hardware.md) +[*](trom.md) +[*](unicode.md) +[*](cancer.md) +[*](diogenes.md) +[*](communism.md) +[*](conum.md) +[*](sw_rendering.md) +[*](lrs.md) +[*](idiot_fallacy.md) +[*](used.md) +[*](egoism.md) +[*](great_trap.md) +[*](dramatica.md) +[*](anticompany.md) +[*](low_poly.md) +[*](css.md) +[*](social_inertia.md) +[*](90s.md) +[*](fork.md) +[*](pride.md) +[*](frameless.md) +[*](phd.md) +[*](cpp.md) +[*](docker.md) +[*](nc.md) +[*](logic_gate.md) +[*](sudoku.md) +[*](bit_hack.md) +[*](forth.md) +[*](c_tutorial.md) +[*](antivirus_paradox.md) +[*](hash.md) +[*](free_body.md) +[*](youtube.md) +[*](myths.md) +[*](universe.md) +[*](saf.md) +[*](loc.md) +[*](nc.md) +[*](english.md) +[*](ioccc.md) +[*](free_software.md) +[*](float.md) +[*](data_hoarding.md) +[*](name_is_important.md) +[*](hack.md) +[*](fantasy_console.md) +[*](trom.md) +[*](probability.md) +[*](normalization.md) +[*](shortcut_thinking.md) +[*](githopping.md) +[*](zero.md) +[*](proof.md) +[*](dodleston.md) +[*](or.md) +[*](girl.md) +[*](drummyfish.md) +[*](money.md) +[*](patent.md) +[*](sw.md) +[*](sorting.md) +[*](unix_philosophy.md) +[*](newspeak.md) +[*](computational_complexity.md) +[*](double_buffering.md) +[*](wiki_style.md) +[*](boot.md) +[*](microtransaction.md) +[*](mouse.md) +[*](monad.md) +[*](interesting.md) +[*](backgammon.md) +[*](portability.md) +[*](libre.md) +[*](git.md) +[*](library.md) +[*](floss.md) +[*](marketing.md) +[*](idiot_fallacy.md) +[*](tpe.md) +[*](nanogenmo.md) +[*](wiby.md) +[*](dynamic_programming.md) +[*](cope.md) +[*](progress.md) +[*](rms.md) +[*](democracy.md) +[*](hacker_culture.md) +[*](fsf.md) +[*](tattoo.md) +[*](90s.md) +[*](minigame.md) +[*](encryption.md) +[*](quake.md) +[*](noise.md) +[*](lotr.md) +[*](nd.md) +[*](procgen.md) +[*](elon_musk.md) +[*](determinism.md) +[*](john_carmack.md) +[*](slowly_boiling_the_frog.md) +[*](dynamic_programming.md) +[*](nigeria.md) +[*](cc0.md) +[*](czechia.md) +[*](shitpress.md) +[*](compiler_bomb.md) +[*](asexuality.md) +[*](kwangmyong.md) +[*](speech_synthesis.md) +[*](duke3d.md) +[*](atheism.md) +[*](lambda_calculus.md) +[*](unary.md) +[*](pd.md) +[*](crypto.md) +[*](how_to.md) +[*](cc.md) +[*](ai.md) +[*](cloudflare.md) +[*](culture.md) +[*](ethics.md) +[*](copyleft.md) +[*](modern_software.md) +[*](dinosaur.md) +[*](number.md) +[*](avpd.md) +[*](proof.md) +[*](abstraction.md) +[*](function.md) +[*](chaos.md) +[*](sanism.md) +[*](adam_smith.md) +[*](competition.md) +[*](fun.md) +[*](furry.md) +[*](integral.md) +[*](trump.md) +[*](stereotype.md) +[*](4chan.md) +[*](digital_signature.md) +[*](security.md) +[*](progress.md) +[*](quantum_gate.md) +[*](kiwifarms.md) +[*](devuan.md) +[*](splinternet.md) +[*](xd.md) +[*](unix_philosophy.md) +[*](java.md) +[*](linear_algebra.md) +[*](hero_culture.md) +[*](lrs_dictionary.md) +[*](sigbovik.md) +[*](future.md) +[*](gemini.md) +[*](mipmap.md) +[*](troll.md) +[*](brain_software.md) +[*](42.md) +[*](sub_rosa.md) +[*](modern_software.md) +[*](faggot.md) +[*](bs.md) +[*](firmware.md) +[*](axiom_of_choice.md) +[*](permacomputing_wiki.md) +[*](wiki_post_mortem.md) +[*](public_domain_computer.md) +[*](primitive_3d.md) +[*](zuckerberg.md) +[*](usa.md) +[*](wiki_style.md) +[*](html.md) +[*](lmao.md) +[*](math.md) +[*](free.md) +[*](licar.md) +[*](hacking.md) +[*](asexuality.md) +[*](facebook.md) +[*](geek.md) +[*](x86.md) +[*](combinatorics.md) +[*](game_design.md) +[*](fail_ab.md) +[*](pedophilia.md) +[*](humidity.md) +[*](censorship.md) +[*](niger.md) +[*](downto.md) +[*](assertiveness.md) +[*](zero.md) +[*](capitalist_software.md) +[*](selflessness.md) +[*](unretard.md) +[*](tranny_software.md) +[*](football.md) +[*](computer.md) +[*](tech.md) +[*](ubi.md) +[*](dependency.md) +[*](right.md) +[*](wikidata.md) +[*](murderer.md) +[*](nigger.md) +[*](less_retarded_hardware.md) +[*](bytecode.md) +[*](aliasing.md) +[*](free_body.md) +[*](reddit.md) +[*](python.md) +[*](forth.md) +[*](entrepreneur.md) +[*](good_enough.md) +[*](pedophilia.md) +[*](programming_language.md) +[*](no_knowledge_proof.md) +[*](free_speech.md) +[*](game_engine.md) +[*](less_retarded_society.md) +[*](no_knowledge_proof.md) +[*](plan9.md) +[*](julia_set.md) +[*](modern_software.md) +[*](pokitto.md) +[*](wirtual.md) +[*](encryption.md) +[*](prime.md) +[*](free_will.md) +[*](interplanetary_internet.md) +[*](maintenance.md) +[*](rgb565.md) +[*](ancap.md) +[*](minesweeper.md) +[*](antialiasing.md) +[*](evil.md) +[*](wow.md) +[*](90s.md) +[*](p_vs_np.md) +[*](race.md) +[*](yes_they_can.md) +[*](x86.md) +[*](ssao.md) +[*](cloud.md) +[*](settled.md) +[*](robot.md) +[*](calculus.md) +[*](egg_code.md) +[*](dick_reveal.md) +[*](antivirus_paradox.md) +[*](fight.md) +[*](tattoo.md) +[*](niggercoin.md) +[*](throwaway_script.md) +[*](paywall.md) +[*](kiwifarms.md) +[*](love.md) +[*](autoupdate.md) +[*](watchdog.md) +[*](anpac.md) +[*](loquendo.md) +[*](cracker.md) +[*](README.md) +[*](zen.md) +[*](wiki_authors.md) +[*](de_facto.md) +[*](zero.md) +[*](javascript.md) +[*](minimalism.md) +[*](network.md) +[*](wiki_rights.md) +[*](line.md) +[*](bytebeat.md) +[*](pseudo3d.md) +[*](hexadecimal.md) +[*](rock.md) +[*](body_shaming.md) +[*](distance.md) +[*](wikipedia.md) +[*](zoomer.md) +[*](coc.md) +[*](cope.md) +[*](ssao.md) +[*](regex.md) +[*](regex.md) +[*](pi.md) +[*](c_tutorial.md) +[*](build_engine.md) +[*](soyence.md) +[*](diogenes.md) +[*](interplanetary_internet.md) +[*](freedom.md) +[*](woman.md) +[*](libre.md) +[*](lisp.md) +[*](coc.md) +[*](wikipedia.md) +[*](chinese.md) +[*](number.md) +[*](xonotic.md) +[*](game_design.md) +[*](just_werks.md) +[*](build_engine.md) +[*](web.md) +[*](javascript.md) +[*](lgbt.md) +[*](cloudflare.md) +[*](t3x.md) +[*](copyfree.md) +[*](floss.md) +[*](black.md) +[*](humorwashing.md) +[*](t3x.md) +[*](marxism.md) +[*](turing_machine.md) +[*](technology.md) +[*](free_universe.md) +[*](history.md) +[*](git.md) +[*](vim.md) +[*](kids_these_days.md) +[*](crime_against_economy.md) +[*](fight.md) +[*](3d_modeling.md) +[*](mud.md) +[*](dick_reveal.md) +[*](programming_tips.md) +[*](java.md) +[*](recursion.md) +[*](log.md) +[*](oop.md) +[*](arch.md) +[*](neural_network.md) +[*](attribution.md) +[*](determinism.md) +[*](lrs_dictionary.md) +[*](troll.md) +[*](recursion.md) +[*](atheism.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](cancer.md) +[*](esolang.md) +[*](deep_blue.md) +[*](anal_bead.md) +[*](lrs_dictionary.md) +[*](resnicks_termite.md) +[*](probability.md) +[*](complexity.md) +[*](cyber.md) +[*](physics.md) +[*](everyone_does_it.md) +[*](dramatica.md) +[*](lil.md) +[*](rule110.md) +[*](billboard.md) +[*](windows.md) +[*](quine.md) +[*](magic.md) +[*](body_shaming.md) +[*](privacy.md) +[*](one.md) +[*](ashley_jones.md) +[*](fight_culture.md) +[*](world_broadcast.md) +[*](left.md) +[*](free_software.md) +[*](fixed_point.md) +[*](gigachad.md) +[*](reactionary_software.md) +[*](assertiveness.md) +[*](infinity.md) +[*](demo.md) +[*](popularization.md) +[*](cpu.md) +[*](semiconductor.md) +[*](io.md) +[*](internet.md) +[*](capitalism.md) +[*](fascism.md) +[*](suckless.md) +[*](lrs.md) +[*](fixed_point.md) [*](game.md) [*](double_buffering.md) -[*](dependency.md) -[*](gender_studies.md) -[*](copyleft.md) -[*](selflessness.md) -[*](formal_language.md) -[*](bloat_monopoly.md) -[*](framework.md) -[*](wiki_tldr.md) -[*](censorship.md) -[*](probability.md) -[*](transistor.md) -[*](free_culture.md) -[*](wolf3d.md) -[*](mental_outlaw.md) -[*](transsexual.md) -[*](money.md) -[*](luke_smith.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](reddit.md) -[*](real_number.md) -[*](c_pitfalls.md) -[*](racetrack.md) -[*](README.md) -[*](geek.md) -[*](quantum_gate.md) -[*](trolling.md) -[*](pseudoleft.md) -[*](crow_funding.md) -[*](operating_system.md) [*](privacy.md) -[*](corporation.md) -[*](copyfree.md) -[*](dramatica.md) -[*](hero_culture.md) -[*](sjw.md) -[*](friend_detox.md) -[*](dog.md) -[*](README.md) -[*](audiophilia.md) -[*](comment.md) -[*](mechanical.md) -[*](wiki_style.md) -[*](rms.md) -[*](freedom_distance.md) -[*](faggot.md) -[*](lambda_calculus.md) -[*](fork.md) -[*](primitive_3d.md) -[*](modern.md) -[*](microtheft.md) -[*](whale.md) -[*](free_software.md) -[*](stereotype.md) -[*](loquendo.md) -[*](raycasting.md) -[*](nigeria.md) -[*](pedophilia.md) -[*](marble_race.md) -[*](turing_machine.md) -[*](lisp.md) -[*](right.md) -[*](fight_culture.md) -[*](free_hardware.md) -[*](trash_magic.md) -[*](pseudoleft.md) -[*](tinyphysicsengine.md) -[*](mandelbrot_set.md) -[*](nigeria.md) -[*](xor.md) -[*](future_proof.md) -[*](name_is_important.md) -[*](english.md) -[*](fight.md) -[*](xxiivv.md) -[*](compression.md) +[*](logic.md) +[*](arch.md) +[*](forth.md) +[*](cancel_culture.md) +[*](ethics.md) [*](fuck.md) -[*](anal_bead.md) -[*](homelessness.md) -[*](fsf.md) -[*](rgb565.md) -[*](macrofucker.md) -[*](morality.md) -[*](microsoft.md) -[*](lgbt.md) -[*](hero.md) -[*](byte.md) -[*](right.md) -[*](proof.md) -[*](unix_philosophy.md) -[*](coding.md) -[*](beauty.md) -[*](temple_os.md) -[*](throwaway_script.md) -[*](linux.md) -[*](one.md) -[*](permacomputing_wiki.md) -[*](wiki_rights.md) -[*](bytecode.md) -[*](hexadecimal.md) -[*](marxism.md) -[*](ui.md) -[*](hardware.md) -[*](nigger.md) -[*](zero.md) -[*](mechanical.md) -[*](sub_rosa.md) -[*](diogenes.md) -[*](assertiveness.md) -[*](fork.md) -[*](chasm_the_rift.md) -[*](minigame.md) -[*](optimism.md) -[*](langtons_ant.md) -[*](soyence.md) -[*](randomness.md) -[*](living.md) -[*](c_tutorial.md) -[*](furry.md) -[*](resnicks_termite.md) -[*](venus_project.md) -[*](docker.md) -[*](used.md) -[*](lrs_dictionary.md) -[*](free_speech.md) -[*](avpd.md) -[*](nanogenmo.md) -[*](myths.md) -[*](devuan.md) -[*](blender.md) -[*](suckless.md) -[*](right.md) -[*](racism.md) -[*](mob_software.md) -[*](bilinear.md) -[*](cpu.md) -[*](goodbye_world.md) -[*](woman.md) -[*](zen.md) -[*](avpd.md) -[*](css.md) -[*](kiwifarms.md) -[*](3d_modeling.md) -[*](copyfree.md) -[*](sigbovik.md) -[*](tech.md) -[*](docker.md) -[*](main.md) -[*](wiki_stats.md) -[*](aliasing.md) -[*](egoism.md) -[*](portal_rendering.md) -[*](justice.md) -[*](shogi.md) -[*](football.md) -[*](html.md) -[*](log.md) -[*](corporation.md) -[*](boot.md) -[*](copyright.md) -[*](splinternet.md) -[*](data_structure.md) -[*](zuckerberg.md) -[*](asexuality.md) -[*](js.md) -[*](graveyard.md) -[*](see_through_clothes.md) -[*](paradigm.md) -[*](technology.md) -[*](bs.md) -[*](macrofucker.md) -[*](c.md) -[*](crow_funding.md) -[*](less_retarded_society.md) -[*](niggercoin.md) -[*](open_console.md) -[*](calculus.md) -[*](complexity.md) -[*](anal_bead.md) -[*](venus_project.md) -[*](optimization.md) -[*](ram.md) -[*](gopher.md) -[*](raycastlib.md) -[*](pd.md) -[*](main.md) -[*](free_body.md) -[*](political_correctness.md) -[*](wiki_tldr.md) -[*](wiki_authors.md) -[*](elon_musk.md) -[*](security.md) -[*](goodbye_world.md) -[*](vim.md) -[*](wavelet_transform.md) -[*](law.md) -[*](firmware.md) -[*](less_retarded_software.md) -[*](shitpress.md) -[*](bullshit.md) -[*](plusnigger.md) -[*](hitler.md) -[*](sigbovik.md) -[*](rgb332.md) -[*](optimism.md) -[*](primitive_3d.md) -[*](myths.md) -[*](cat_v.md) -[*](evil.md) -[*](people.md) -[*](hash.md) -[*](float.md) -[*](toxic.md) -[*](greenwashing.md) [*](kiss.md) -[*](chess.md) -[*](game_design.md) -[*](hero_culture.md) -[*](free_hardware.md) -[*](low_poly.md) -[*](just_werks.md) -[*](wolf3d.md) -[*](ioccc.md) -[*](tor.md) -[*](easier_done_than_said.md) -[*](network.md) -[*](settled.md) -[*](cloudflare.md) -[*](recursion.md) -[*](wiki_pages.md) -[*](future.md) -[*](facebook.md) -[*](left_right.md) -[*](cc.md) -[*](internet.md) -[*](downto.md) -[*](oop.md) -[*](asexuality.md) -[*](diogenes.md) +[*](bit_hack.md) +[*](freemasonry.md) [*](mud.md) -[*](magic.md) -[*](trump.md) -[*](dinosaur.md) +[*](countercomplex.md) +[*](shader.md) +[*](cos.md) +[*](debugging.md) +[*](color.md) +[*](markov_chain.md) +[*](competition.md) +[*](wiki_post_mortem.md) +[*](unfuck.md) +[*](network.md) +[*](monad.md) +[*](lrs.md) +[*](wow.md) +[*](minigame.md) +[*](fuck.md) +[*](left.md) +[*](loquendo.md) +[*](lil.md) +[*](finished.md) +[*](fediverse.md) +[*](ubi.md) +[*](greenwashing.md) +[*](motivation.md) +[*](unfuck.md) +[*](marxism.md) +[*](qubit.md) +[*](optimism.md) +[*](mainstream.md) +[*](assembly.md) +[*](library.md) +[*](unfuck.md) +[*](anarchism.md) +[*](see_through_clothes.md) +[*](antialiasing.md) +[*](palette.md) +[*](avpd.md) +[*](framework.md) +[*](youtube.md) +[*](fixed_point.md) +[*](often_misunderstood.md) +[*](proprietary_software.md) +[*](memory_management.md) +[*](piracy.md) +[*](qubit.md) +[*](cancel_culture.md) +[*](game_of_life.md) +[*](chasm_the_rift.md) +[*](gigachad.md) +[*](english.md) +[*](temple_os.md) +[*](suckless.md) +[*](lmao.md) +[*](hexadecimal.md) +[*](twos_complement.md) +[*](optimization.md) +[*](pseudominimalism.md) +[*](f2p.md) +[*](loc.md) +[*](implicit.md) +[*](rationalwiki.md) +[*](permacomputing.md) +[*](steve_jobs.md) +[*](open_source.md) +[*](zen.md) +[*](hexadecimal.md) +[*](wavelet_transform.md) +[*](wiki_rights.md) +[*](update_culture.md) +[*](rsa.md) +[*](cpp.md) +[*](troll.md) +[*](trom.md) +[*](wikiwikiweb.md) +[*](free_hardware.md) +[*](proprietary.md) [*](resnicks_termite.md) +[*](c_pitfalls.md) +[*](21st_century.md) +[*](license.md) +[*](libertarianism.md) +[*](exercises.md) +[*](universe.md) +[*](sdf.md) +[*](thrembo.md) +[*](docker.md) +[*](sdf.md) +[*](interpolation.md) +[*](femoid.md) +[*](open_source.md) +[*](bazaar.md) +[*](resnicks_termite.md) +[*](everyone_does_it.md) +[*](f2p.md) +[*](e.md) +[*](real_number.md) +[*](marble_race.md) +[*](licar.md) +[*](smart.md) +[*](duskos.md) +[*](minigame.md) +[*](quine.md) +[*](copyleft.md) +[*](line.md) +[*](rms.md) +[*](floss.md) +[*](c_pitfalls.md) +[*](boat.md) +[*](css.md) +[*](capitalist_singularity.md) +[*](digital.md) +[*](hacker_culture.md) +[*](attribution.md) +[*](memory_management.md) +[*](racism.md) +[*](xor.md) +[*](optimization.md) +[*](abstraction.md) +[*](censorship.md) +[*](interaction_net.md) +[*](brainfuck.md) +[*](fsf.md) +[*](collision_detection.md) +[*](music.md) +[*](sw.md) +[*](game_engine.md) +[*](bbs.md) +[*](anarchism.md) +[*](coding.md) +[*](100r.md) +[*](real_number.md) +[*](turing_machine.md) +[*](humorwashing.md) +[*](shitword.md) +[*](steganography.md) +[*](autostereogram.md) +[*](anorexia.md) +[*](zuckerberg.md) +[*](bill_gates.md) +[*](netstalking.md) +[*](openarena.md) +[*](ascii.md) +[*](adam_smith.md) +[*](raycasting.md) +[*](game_design.md) +[*](humidity.md) +[*](wiki_stats.md) +[*](integral.md) +[*](faq.md) +[*](js.md) +[*](consumerism.md) +[*](real_number.md) +[*](bitreich.md) +[*](entrepreneur.md) +[*](culture.md) +[*](technology.md) +[*](magic.md) +[*](pascal.md) +[*](billboard.md) +[*](soydev.md) +[*](censorship.md) +[*](compiler_bomb.md) +[*](dependency.md) +[*](openai.md) +[*](dog.md) +[*](sqrt.md) +[*](fractal.md) +[*](football.md) +[*](shitword.md) +[*](bilinear.md) +[*](raycastlib.md) +[*](modern.md) +[*](nd.md) +[*](100r.md) +[*](saf.md) +[*](openai.md) +[*](primitive_3d.md) +[*](autoupdate.md) +[*](noise.md) +[*](just_werks.md) +[*](backpropagation.md) +[*](woman.md) +[*](digital.md) +[*](chinese.md) +[*](rights_culture.md) +[*](sorting.md) +[*](science.md) +[*](free_body.md) +[*](bit_hack.md) +[*](art.md) +[*](piracy.md) +[*](gay.md) +[*](demo.md) +[*](pseudominimalism.md) +[*](css.md) +[*](unretard.md) +[*](mob_software.md) +[*](game.md) +[*](tas.md) +[*](jokes.md) +[*](esolang.md) +[*](encyclopedia.md) +[*](crow_funding.md) +[*](znk.md) +[*](cpu.md) +[*](tom_scott.md) +[*](bit.md) +[*](t3x.md) +[*](fediverse.md) +[*](history.md) +[*](c_sharp.md) +[*](slowly_boiling_the_frog.md) +[*](public_domain.md) +[*](mainstream.md) +[*](iq.md) +[*](100r.md) +[*](kiss.md) +[*](dynamic_programming.md) +[*](feminism.md) +[*](rsa.md) +[*](hitler.md) +[*](cracking.md) +[*](fail_ab.md) +[*](devuan.md) +[*](interpolation.md) +[*](color.md) +[*](dungeons_and_dragons.md) +[*](triangle.md) +[*](randomness.md) +[*](brainfuck.md) +[*](reactionary_software.md) +[*](vim.md) +[*](3d_model.md) +[*](README.md) +[*](licar.md) +[*](programming_tips.md) +[*](programming.md) +[*](hack.md) [*](google.md) +[*](faggot.md) +[*](usa.md) +[*](dungeons_and_dragons.md) +[*](xd.md) +[*](logic.md) +[*](html.md) +[*](greenwashing.md) +[*](consumerism.md) +[*](mipmap.md) +[*](terry_davis.md) +[*](brain_software.md) +[*](combinatorics.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](beauty.md) +[*](black.md) +[*](4chan.md) +[*](backpropagation.md) +[*](based.md) +[*](cheating.md) +[*](logic.md) +[*](copyleft.md) +[*](great_trap.md) +[*](copyfree.md) +[*](used.md) +[*](logic_circuit.md) +[*](autoupdate.md) +[*](crypto.md) +[*](thrembo.md) +[*](books.md) +[*](mechanical.md) +[*](app.md) +[*](io.md) +[*](living.md) [*](piracy.md) [*](left_right.md) -[*](interaction_net.md) -[*](public_domain.md) -[*](jesus.md) -[*](log.md) -[*](git.md) -[*](music.md) -[*](bs.md) -[*](pi.md) -[*](countercomplex.md) -[*](wow.md) -[*](linear_algebra.md) -[*](bazaar.md) -[*](speech_synthesis.md) -[*](bit.md) -[*](io.md) -[*](quake.md) -[*](devuan.md) -[*](sudoku.md) -[*](fear_culture.md) -[*](disease.md) -[*](logic_gate.md) -[*](markov_chain.md) -[*](greenwashing.md) -[*](python.md) -[*](money.md) -[*](beauty.md) -[*](fight.md) -[*](pseudo3d.md) -[*](rationalwiki.md) -[*](prime.md) -[*](everyone_does_it.md) -[*](conum.md) -[*](usenet.md) -[*](entrepreneur.md) -[*](one.md) -[*](physics.md) -[*](fight_culture.md) -[*](memory_management.md) -[*](discalimer.md) -[*](zuckerberg.md) -[*](geek.md) -[*](suicide.md) -[*](fourier_transform.md) -[*](palette.md) -[*](downto.md) -[*](data_structure.md) -[*](collapse.md) -[*](frameless.md) -[*](nanogenmo.md) -[*](tranny.md) -[*](political_correctness.md) -[*](analog.md) -[*](and.md) -[*](facebook.md) -[*](life.md) -[*](youtube.md) -[*](girl.md) -[*](sorting.md) -[*](fantasy_console.md) -[*](openarena.md) -[*](fantasy_console.md) -[*](rule110.md) -[*](crime_against_economy.md) -[*](nord_vpn.md) -[*](cc.md) -[*](comment.md) -[*](wiki_tldr.md) -[*](good_enough.md) -[*](free_hardware.md) -[*](tensor_product.md) -[*](malware.md) -[*](proprietary_software.md) -[*](less_retarded_software.md) -[*](digital.md) -[*](tas.md) -[*](ronja.md) -[*](compsci.md) -[*](io.md) -[*](4chan.md) -[*](docker.md) -[*](hacker_culture.md) -[*](freemasonry.md) -[*](marxism.md) -[*](raylib.md) -[*](kwangmyong.md) -[*](bytebeat.md) -[*](usa.md) -[*](unfuck.md) -[*](trom.md) -[*](copyright.md) -[*](english.md) -[*](usenet.md) -[*](infinity.md) -[*](rock.md) -[*](programming_language.md) -[*](normalization.md) -[*](less_retarded_society.md) -[*](fascism.md) -[*](marble_race.md) -[*](pseudoleft.md) -[*](neural_network.md) -[*](unretard.md) -[*](intellectual_property.md) -[*](explicit.md) -[*](free_body.md) -[*](frameless.md) -[*](monad.md) -[*](microtransaction.md) -[*](golang.md) -[*](freemasonry.md) -[*](facebook.md) -[*](app.md) -[*](wizard.md) -[*](gemini.md) -[*](nord_vpn.md) -[*](history.md) -[*](cracker.md) -[*](linear_algebra.md) -[*](slowly_boiling_the_frog.md) -[*](cos.md) -[*](often_misunderstood.md) -[*](nationalism.md) -[*](smart.md) -[*](crime_against_economy.md) -[*](nokia.md) -[*](version_numbering.md) -[*](portal_rendering.md) -[*](licar.md) -[*](yes_they_can.md) -[*](3d_model.md) -[*](procgen.md) -[*](game_design.md) -[*](version_numbering.md) -[*](raycastlib.md) -[*](great_trap.md) -[*](dick_reveal.md) -[*](capitalism.md) -[*](cc0.md) -[*](3d_rendering.md) -[*](lrs.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](programming_style.md) -[*](regex.md) -[*](trom.md) -[*](niger.md) -[*](dependency.md) -[*](raycasting.md) -[*](approximation.md) -[*](arch.md) -[*](living.md) -[*](bazaar.md) -[*](infinity.md) -[*](raycastlib.md) -[*](freedom.md) -[*](nonogram.md) -[*](great_trap.md) -[*](watchdog.md) -[*](cyber.md) -[*](books.md) -[*](randomness.md) -[*](marketing.md) -[*](gay.md) -[*](vim.md) -[*](autostereogram.md) -[*](cracking.md) -[*](jargon_file.md) -[*](chaos.md) -[*](fantasy_console.md) -[*](holy_war.md) -[*](aliasing.md) -[*](creative_commons.md) -[*](portal_rendering.md) -[*](sw_rendering.md) -[*](nanogenmo.md) -[*](xd.md) -[*](noise.md) -[*](lrs_dictionary.md) -[*](mandelbrot_set.md) -[*](portability.md) -[*](atan.md) -[*](encryption.md) -[*](ascii.md) -[*](less_retarded_hardware.md) -[*](global_discussion.md) -[*](prime.md) -[*](physics.md) -[*](boat.md) -[*](bloat.md) -[*](name_is_important.md) -[*](egg_code.md) -[*](wiki_style.md) -[*](fourier_transform.md) -[*](bootstrap.md) -[*](mouse.md) -[*](mainstream.md) -[*](coding.md) -[*](fediverse.md) [*](czechia.md) -[*](bilinear.md) -[*](mouse.md) -[*](byte.md) -[*](humidity.md) -[*](rationalwiki.md) -[*](update_culture.md) -[*](optimism.md) -[*](drummyfish.md) +[*](hw.md) +[*](gnu.md) [*](shit.md) -[*](quantum_gate.md) -[*](cpp.md) -[*](encyclopedia.md) -[*](regex.md) -[*](left.md) -[*](assembly.md) +[*](egoism.md) +[*](humorwashing.md) [*](anarch.md) +[*](interaction_net.md) +[*](calculus.md) +[*](asmr.md) +[*](trash_magic.md) +[*](pi.md) +[*](c.md) +[*](hardware.md) +[*](interaction_net.md) +[*](productivity_cult.md) +[*](future_proof.md) +[*](mandelbrot_set.md) +[*](creative_commons.md) +[*](trump.md) +[*](paradigm.md) +[*](communism.md) +[*](elon_musk.md) +[*](sorting.md) +[*](fail_ab.md) +[*](encyclopedia.md) +[*](crow_funding.md) +[*](tattoo.md) +[*](normalization.md) +[*](e.md) +[*](githopping.md) +[*](hardware.md) +[*](holy_war.md) +[*](atan.md) +[*](smallchesslib.md) +[*](triangle.md) +[*](trolling.md) +[*](chinese.md) +[*](qubit.md) +[*](bbs.md) +[*](ascii_art.md) +[*](billboard.md) +[*](wiki_stats.md) +[*](competition.md) +[*](coding.md) +[*](gaywashing.md) +[*](capitalism.md) +[*](capitalist_singularity.md) +[*](free_culture.md) +[*](smallchesslib.md) +[*](f2p.md) +[*](cracking.md) +[*](crime_against_economy.md) +[*](bloat_monopoly.md) +[*](binary.md) +[*](bazaar.md) +[*](kwangmyong.md) +[*](regex.md) +[*](hero_culture.md) +[*](racetrack.md) +[*](rationalization.md) +[*](unix.md) +[*](universe.md) +[*](assembly.md) +[*](capitalist_singularity.md) +[*](cheating.md) +[*](proprietary.md) +[*](island.md) +[*](bootstrap.md) +[*](patent.md) +[*](macrofucker.md) +[*](unicode.md) +[*](jargon_file.md) +[*](deep_blue.md) +[*](tangram.md) +[*](island.md) +[*](programming.md) +[*](ioccc.md) +[*](esolang.md) +[*](sub_rosa.md) +[*](less_retarded_hardware.md) +[*](macrofucker.md) +[*](plan9.md) +[*](plusnigger.md) +[*](one.md) +[*](digital_signature.md) +[*](suicide.md) +[*](ascii_art.md) +[*](mob_software.md) +[*](disease.md) +[*](copyright.md) +[*](pride.md) +[*](oop.md) +[*](cheating.md) +[*](dodleston.md) +[*](mipmap.md) +[*](fascism.md) +[*](quake.md) +[*](island.md) +[*](google.md) +[*](zoomer.md) +[*](raylib.md) +[*](log.md) +[*](demoscene.md) +[*](robot.md) +[*](doom.md) +[*](lrs_wiki.md) +[*](nanogenmo.md) +[*](entropy.md) +[*](altruism.md) +[*](znk.md) +[*](microtheft.md) +[*](fractal.md) +[*](double_buffering.md) +[*](proprietary.md) +[*](viznut.md) +[*](phd.md) +[*](shogi.md) +[*](world_broadcast.md) +[*](rights_culture.md) +[*](rust.md) +[*](steganography.md) +[*](pokitto.md) +[*](license.md) +[*](analytic_geometry.md) +[*](algorithm.md) +[*](blender.md) +[*](compsci.md) +[*](minimalism.md) +[*](wavelet_transform.md) +[*](malware.md) +[*](left.md) +[*](derivative.md) +[*](freedom.md) +[*](shader.md) +[*](books.md) +[*](ted_kaczynski.md) +[*](friend_detox.md) +[*](elo.md) +[*](nokia.md) +[*](stereotype.md) +[*](wizard.md) +[*](marketing.md) +[*](znk.md) +[*](encyclopedia.md) +[*](jokes.md) +[*](cloud.md) +[*](palette.md) +[*](mainstream.md) +[*](or.md) +[*](geek.md) +[*](randomness.md) +[*](aliasing.md) +[*](analytic_geometry.md) +[*](niger.md) +[*](main.md) +[*](history.md) +[*](human_language.md) +[*](graveyard.md) +[*](music.md) +[*](femoid.md) +[*](lil.md) +[*](nord_vpn.md) +[*](security.md) +[*](friend_detox.md) +[*](often_confused.md) +[*](quine.md) +[*](productivity_cult.md) +[*](ubi.md) +[*](procgen.md) +[*](diogenes.md) +[*](libertarianism.md) +[*](gemini.md) +[*](prime.md) +[*](splinternet.md) +[*](fsf.md) +[*](minesweeper.md) +[*](newspeak.md) +[*](ronja.md) +[*](free_speech.md) +[*](unretard.md) +[*](optimism.md) +[*](countercomplex.md) +[*](hard_to_learn_easy_to_master.md) +[*](cyberbullying.md) +[*](jedi_engine.md) +[*](operating_system.md) +[*](logic_gate.md) +[*](microtransaction.md) +[*](homelessness.md) +[*](sqrt.md) +[*](brain_software.md) +[*](moderation.md) +[*](ronja.md) +[*](distance.md) +[*](operating_system.md) +[*](nigger.md) +[*](usa.md) +[*](boot.md) +[*](bazaar.md) +[*](pseudoleft.md) +[*](open_console.md) +[*](wiki_pages.md) +[*](hero.md) +[*](great_trap.md) +[*](wizard.md) +[*](crime_against_economy.md) +[*](world_broadcast.md) +[*](julia_set.md) +[*](fediverse.md) +[*](chasm_the_rift.md) +[*](conum.md) +[*](jesus.md) +[*](entropy.md) +[*](cyberbullying.md) +[*](viznut.md) +[*](wiki_tldr.md) +[*](shitpress.md) +[*](digital.md) +[*](acronym.md) +[*](c_sharp.md) +[*](liberalism.md) +[*](homelessness.md) +[*](lotr.md) +[*](recursion.md) +[*](hash.md) +[*](aaron_swartz.md) +[*](data_structure.md) +[*](free.md) +[*](vector.md) [*](elo.md) [*](collision.md) -[*](altruism.md) -[*](network.md) -[*](licar.md) -[*](information.md) -[*](function.md) -[*](cos.md) -[*](steganography.md) -[*](portability.md) -[*](black.md) -[*](determinism.md) -[*](race.md) -[*](usenet.md) -[*](wikipedia.md) -[*](sw.md) -[*](egg_code.md) -[*](aaron_swartz.md) -[*](wikidata.md) -[*](earth.md) -[*](90s.md) -[*](noise.md) -[*](plan9.md) -[*](dick_reveal.md) -[*](interpolation.md) -[*](npc.md) -[*](pride.md) -[*](c_tutorial.md) -[*](race.md) -[*](free_culture.md) -[*](portability.md) -[*](semiconductor.md) -[*](triangle.md) -[*](interplanetary_internet.md) -[*](quaternion.md) -[*](free_will.md) -[*](easy_to_learn_hard_to_master.md) -[*](dog.md) -[*](tpe.md) +[*](future_proof.md) +[*](ashley_jones.md) +[*](python.md) +[*](logic_gate.md) +[*](math.md) +[*](wiki_style.md) [*](axiom_of_choice.md) -[*](egoism.md) -[*](attribution.md) -[*](real_number.md) -[*](aaron_swartz.md) -[*](netstalking.md) +[*](money.md) +[*](complexity.md) +[*](easy_to_learn_hard_to_master.md) +[*](consumerism.md) +[*](linux.md) +[*](less_retarded_society.md) +[*](dodleston.md) +[*](wiki_pages.md) +[*](fqa.md) +[*](xxiivv.md) +[*](markov_chain.md) +[*](raycastlib.md) +[*](less_retarded_software.md) +[*](selflessness.md) [*](app.md) -[*](evil.md) -[*](wiki_rights.md) -[*](stereotype.md) -[*](billboard.md) -[*](magic.md) -[*](paradigm.md) -[*](interesting.md) -[*](f2p.md) -[*](distance.md) -[*](c_pitfalls.md) -[*](programming.md) +[*](pedophilia.md) +[*](information.md) +[*](portal_rendering.md) +[*](raycasting.md) +[*](tor.md) +[*](hacking.md) +[*](pride.md) +[*](anal_bead.md) +[*](gopher.md) +[*](anarchism.md) +[*](raycasting.md) +[*](compression.md) +[*](freedom_distance.md) +[*](low_poly.md) +[*](emoticon.md) +[*](fizzbuzz.md) +[*](military.md) +[*](football.md) +[*](crow_funding.md) +[*](racetrack.md) [*](kek.md) -[*](tranny.md) -[*](humorwashing.md) +[*](audiophilia.md) +[*](permacomputing.md) +[*](niggercoin.md) +[*](marketing.md) +[*](fun.md) +[*](sw_rendering.md) +[*](earth.md) +[*](3d_modeling.md) +[*](c_pitfalls.md) +[*](shogi.md) +[*](tree.md) +[*](unix_philosophy.md) +[*](ethics.md) +[*](anorexia.md) +[*](egg_code.md) +[*](living.md) +[*](mechanical.md) +[*](dog.md) +[*](marble_race.md) +[*](chess.md) +[*](procgen.md) +[*](speech_synthesis.md) +[*](os.md) +[*](hash.md) +[*](money.md) +[*](rationalwiki.md) +[*](21st_century.md) +[*](capitalist_software.md) +[*](intellectual_property.md) +[*](harry_potter.md) +[*](windows.md) +[*](pascal.md) +[*](morality.md) +[*](debugging.md) +[*](derivative.md) +[*](homelessness.md) +[*](quake.md) +[*](science.md) +[*](ronja.md) +[*](niggercoin.md) +[*](books.md) +[*](dinosaur.md) +[*](suckless.md) +[*](sigbovik.md) +[*](loquendo.md) +[*](compression.md) [*](version_numbering.md) -[*](wow.md) -[*](game_of_life.md) -[*](patent.md) -[*](humidity.md) +[*](sw.md) +[*](free_will.md) +[*](sjw.md) +[*](markov_chain.md) +[*](smart.md) +[*](how_to.md) +[*](anarch.md) +[*](wirtual.md) +[*](atan.md) +[*](exercises.md) +[*](black.md) +[*](sin.md) +[*](brainfuck.md) +[*](pseudorandomness.md) +[*](charity_sex.md) +[*](line.md) +[*](global_discussion.md) +[*](right.md) +[*](yes_they_can.md) +[*](terry_davis.md) +[*](less_retarded_software.md) +[*](hyperoperation.md) +[*](cpu.md) +[*](usenet.md) +[*](assertiveness.md) +[*](data_hoarding.md) +[*](wolf3d.md) +[*](framework.md) +[*](throwaway_script.md) +[*](holy_war.md) +[*](wiki_pages.md) +[*](furry.md) +[*](tangram.md) +[*](internet.md) +[*](collapse.md) +[*](nokia.md) +[*](moderation.md) +[*](number.md) +[*](ashley_jones.md) +[*](venus_project.md) +[*](information.md) +[*](coc.md) +[*](encryption.md) +[*](doom.md) +[*](ram.md) +[*](jedi_engine.md) +[*](complexity.md) +[*](apple.md) +[*](needed.md) +[*](nigeria.md) +[*](rapeware.md) +[*](freedom.md) +[*](permacomputing.md) +[*](byte.md) +[*](digital_signature.md) +[*](feminism.md) +[*](pascal.md) +[*](graveyard.md) +[*](openarena.md) +[*](fear_culture.md) +[*](teletext.md) +[*](golang.md) +[*](steve_jobs.md) +[*](dungeons_and_dragons.md) +[*](speech_synthesis.md) +[*](holy_war.md) +[*](rationalwiki.md) +[*](project.md) +[*](formal_language.md) +[*](lmao.md) +[*](rsa.md) +[*](asmr.md) +[*](maintenance.md) +[*](settled.md) +[*](cc.md) +[*](coding.md) +[*](morality.md) +[*](nationalism.md) +[*](myths.md) +[*](name_is_important.md) +[*](asmr.md) +[*](slowly_boiling_the_frog.md) +[*](law.md) +[*](open_source.md) +[*](disease.md) [*](microtransaction.md) -[*](based.md) +[*](shitword.md) +[*](cat_v.md) +[*](modern.md) +[*](boat.md) +[*](jedi_engine.md) +[*](python.md) +[*](c.md) +[*](mouse.md) +[*](motivation.md) +[*](english.md) +[*](attribution.md) +[*](minesweeper.md) +[*](cracker.md) +[*](cc0.md) +[*](whale.md) +[*](cache.md) +[*](rgb565.md) +[*](free_culture.md) +[*](motivation.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](fractal.md) +[*](compsci.md) +[*](arduboy.md) +[*](physics_engine.md) +[*](greenwashing.md) +[*](collapse.md) +[*](hero.md) +[*](algorithm.md) +[*](less_retarded_society.md) +[*](jargon_file.md) +[*](deferred_shading.md) +[*](3d_rendering.md) +[*](left_right.md) +[*](blender.md) +[*](luke_smith.md) +[*](tech.md) +[*](project.md) +[*](needed.md) +[*](hw.md) +[*](programming_language.md) +[*](semiconductor.md) +[*](internet.md) +[*](tinyphysicsengine.md) +[*](bitreich.md) +[*](lambda_calculus.md) +[*](creative_commons.md) +[*](rights_culture.md) +[*](just_werks.md) +[*](trusting_trust.md) +[*](programming_language.md) +[*](cc.md) +[*](gopher.md) +[*](discalimer.md) +[*](math.md) +[*](toxic.md) +[*](langtons_ant.md) +[*](sudoku.md) +[*](cos.md) +[*](love.md) +[*](noise.md) +[*](downto.md) +[*](go.md) +[*](explicit.md) +[*](lotr.md) +[*](graphics.md) +[*](paywall.md) +[*](easy_to_learn_hard_to_master.md) +[*](audiophilia.md) +[*](openai.md) +[*](ascii.md) +[*](turing_machine.md) +[*](finished.md) +[*](anorexia.md) +[*](prime.md) +[*](bytecode.md) +[*](cyber.md) +[*](lgbt.md) +[*](trusting_trust.md) +[*](and.md) +[*](pseudo3d.md) +[*](altruism.md) +[*](jargon_file.md) +[*](minimalism.md) +[*](firmware.md) +[*](fourier_transform.md) +[*](main.md) +[*](chasm_the_rift.md) +[*](js.md) +[*](programming_tips.md) +[*](charity_sex.md) +[*](justice.md) +[*](capitalism.md) +[*](flatland.md) +[*](sanism.md) +[*](popularization.md) +[*](military.md) +[*](npc.md) +[*](arduboy.md) +[*](facebook.md) +[*](rock.md) +[*](entrepreneur.md) +[*](explicit.md) +[*](distrohopping.md) +[*](netstalking.md) +[*](acronym.md) +[*](maintenance.md) +[*](microsoft.md) +[*](race.md) +[*](gnu.md) +[*](hw.md) +[*](google.md) +[*](linear_algebra.md) +[*](see_through_clothes.md) +[*](steganography.md) +[*](README.md) +[*](sjw.md) +[*](www.md) +[*](tranny.md) +[*](nationalism.md) +[*](pseudoleft.md) +[*](capitalist_software.md) +[*](netstalking.md) +[*](formal_language.md) +[*](bloat.md) +[*](human_language.md) +[*](rationalization.md) +[*](randomness.md) +[*](terry_davis.md) +[*](integral.md) +[*](easier_done_than_said.md) +[*](npc.md) +[*](mechanical.md) +[*](autostereogram.md) +[*](mandelbrot_set.md) +[*](bullshit.md) +[*](temple_os.md) +[*](work.md) +[*](flatland.md) +[*](anpac.md) +[*](infinity.md) +[*](bilinear.md) +[*](viznut.md) +[*](finished.md) +[*](sin.md) +[*](systemd.md) +[*](rapeware.md) +[*](doom.md) +[*](graphics.md) +[*](crypto.md) +[*](shitpress.md) +[*](tranny_software.md) +[*](wiki_authors.md) +[*](comment.md) +[*](wiki_tldr.md) +[*](racetrack.md) +[*](bit.md) +[*](nd.md) +[*](sdf.md) +[*](bitreich.md) +[*](dinosaur.md) +[*](freedom_distance.md) +[*](easier_done_than_said.md) +[*](zoomer.md) +[*](build_engine.md) +[*](harry_potter.md) +[*](lgbt.md) +[*](paradigm.md) +[*](backgammon.md) +[*](military.md) +[*](earth.md) +[*](tas.md) +[*](altruism.md) +[*](free_universe.md) +[*](linux.md) +[*](shortcut_thinking.md) +[*](wow.md) +[*](political_correctness.md) +[*](rgb565.md) +[*](microsoft.md) +[*](girl.md) +[*](avpd.md) +[*](nc.md) +[*](trusting_trust.md) +[*](analog.md) +[*](social_inertia.md) +[*](ui.md) +[*](body_shaming.md) +[*](tranny.md) +[*](computer.md) +[*](comment.md) +[*](no_knowledge_proof.md) +[*](go.md) +[*](productivity_cult.md) +[*](privacy.md) +[*](bill_gates.md) +[*](drummyfish.md) +[*](raylib.md) +[*](anarch.md) +[*](anal_bead.md) +[*](science.md) +[*](os.md) +[*](sw_rendering.md) +[*](communism.md) +[*](bytebeat.md) +[*](x86.md) +[*](life.md) +[*](transsexual.md) +[*](wirtual.md) +[*](cache.md) +[*](niger.md) +[*](nigger.md) +[*](derivative.md) +[*](law.md) +[*](tensor_product.md) +[*](fizzbuzz.md) +[*](bbs.md) +[*](easier_done_than_said.md) +[*](corporation.md) +[*](ai.md) +[*](exercises.md) +[*](optimization.md) +[*](foss.md) +[*](function.md) +[*](bullshit.md) +[*](femoid.md) +[*](lisp.md) +[*](democracy.md) +[*](hero.md) +[*](programming_style.md) +[*](or.md) +[*](tom_scott.md) +[*](comment.md) +[*](intellectual_property.md) +[*](living.md) +[*](aliasing.md) +[*](shogi.md) +[*](law.md) +[*](aaron_swartz.md) +[*](left_right.md) +[*](p_vs_np.md) +[*](trash_magic.md) +[*](golang.md) +[*](deferred_shading.md) +[*](atheism.md) +[*](gui.md) +[*](fantasy_console.md) +[*](people.md) +[*](portal_rendering.md) +[*](kwangmyong.md) +[*](microtheft.md) +[*](apple.md) +[*](tor.md) +[*](interesting.md) +[*](systemd.md) +[*](blender.md) +[*](racism.md) +[*](explicit.md) +[*](sin.md) +[*](pd.md) +[*](faggot.md) +[*](comun.md) +[*](cache.md) +[*](javascript.md) +[*](discalimer.md) +[*](gender_studies.md) +[*](transistor.md) +[*](lambda_calculus.md) +[*](demoscene.md) +[*](gopher.md) +[*](software.md) +[*](democracy.md) +[*](disease.md) +[*](ascii_art.md) +[*](fantasy_console.md) +[*](3d_model.md) +[*](fight.md) +[*](splinternet.md) +[*](wiki_rights.md) +[*](right.md) +[*](cyber.md) +[*](version_numbering.md) +[*](programming_style.md) +[*](low_poly.md) +[*](whale.md) +[*](xxiivv.md) +[*](gigachad.md) +[*](smol_internet.md) +[*](interpolation.md) +[*](wavelet_transform.md) +[*](antialiasing.md) +[*](rgb332.md) +[*](hack.md) +[*](neural_network.md) +[*](duskos.md) +[*](usenet.md) +[*](audiophilia.md) +[*](unix.md) +[*](dramatica.md) +[*](gender_studies.md) +[*](cpp.md) +[*](tpe.md) +[*](watchdog.md) +[*](future_proof.md) +[*](anticompany.md) +[*](racism.md) +[*](cracker.md) +[*](beauty.md) +[*](atan.md) +[*](ram.md) +[*](debugging.md) +[*](downto.md) +[*](often_misunderstood.md) +[*](de_facto.md) +[*](log.md) +[*](gemini.md) +[*](calculus.md) +[*](rust.md) +[*](bs.md) +[*](permacomputing_wiki.md) +[*](fun.md) +[*](gui.md) +[*](jesus.md) +[*](trolling.md) +[*](plusnigger.md) +[*](and.md) +[*](faq.md) +[*](wikidata.md) +[*](life.md) +[*](education.md) +[*](temple_os.md) +[*](pseudorandomness.md) +[*](goodbye_world.md) +[*](gaywashing.md) +[*](teletext.md) +[*](hitler.md) +[*](vector.md) +[*](wiby.md) +[*](reddit.md) +[*](soyence.md) +[*](life.md) +[*](windows.md) +[*](normalization.md) +[*](hacker_culture.md) +[*](soydev.md) +[*](rapeware.md) +[*](portability.md) +[*](progress.md) +[*](game_of_life.md) +[*](public_domain_computer.md) +[*](data_structure.md) +[*](xonotic.md) +[*](education.md) +[*](foss.md) +[*](xd.md) +[*](music.md) +[*](firmware.md) +[*](venus_project.md) +[*](backpropagation.md) +[*](semiconductor.md) +[*](analog.md) +[*](color.md) +[*](goodbye_world.md) +[*](geek.md) +[*](bootstrap.md) +[*](drummyfish.md) +[*](demoscene.md) +[*](wiby.md) +[*](gnu.md) +[*](pseudorandomness.md) +[*](analytic_geometry.md) +[*](future.md) +[*](sqrt.md) +[*](cope.md) +[*](twos_complement.md) +[*](approximation.md) +[*](transsexual.md) +[*](easy_to_learn_hard_to_master.md) +[*](web.md) +[*](game_of_life.md) [*](tool_slave.md) [*](old.md) -[*](usa.md) -[*](humorwashing.md) -[*](quake.md) -[*](thrembo.md) -[*](cyberbullying.md) -[*](wiki_post_mortem.md) -[*](approximation.md) -[*](game_engine.md) -[*](living.md) -[*](nonogram.md) -[*](rights_culture.md) -[*](cancel_culture.md) -[*](often_misunderstood.md) +[*](portability.md) +[*](golang.md) +[*](computational_complexity.md) +[*](ai.md) +[*](distance.md) +[*](cloud.md) +[*](small3dlib.md) +[*](stereotype.md) +[*](kids_these_days.md) +[*](xonotic.md) +[*](logic_circuit.md) +[*](fqa.md) +[*](myths.md) +[*](analog.md) +[*](hacking.md) +[*](data_hoarding.md) +[*](update_culture.md) +[*](4chan.md) +[*](work.md) +[*](whale.md) +[*](binary.md) +[*](bilinear.md) +[*](game.md) +[*](programming_style.md) [*](open_console.md) -[*](sin.md) -[*](quaternion.md) -[*](watchdog.md) -[*](deferred_shading.md) -[*](gender_studies.md) -[*](cyber.md) -[*](thrembo.md) -[*](backgammon.md) -[*](triangle.md) -[*](uxn.md) -[*](ram.md) +[*](murderer.md) +[*](paywall.md) +[*](linear_algebra.md) +[*](data_structure.md) +[*](physics.md) +[*](murderer.md) +[*](art.md) +[*](vim.md) +[*](wolf3d.md) +[*](pseudo3d.md) +[*](frameless.md) +[*](wizard.md) +[*](mental_outlaw.md) +[*](transistor.md) +[*](githopping.md) +[*](fourier_transform.md) +[*](tangram.md) +[*](chess.md) [*](js.md) -[*](logic_gate.md) -[*](quine.md) -[*](shader.md) -[*](derivative.md) -[*](capitalism.md) -[*](pseudominimalism.md) -[*](niger.md) +[*](computer.md) +[*](triangle.md) +[*](acronym.md) +[*](girl.md) +[*](demo.md) +[*](facebook.md) +[*](wikidata.md) +[*](ram.md) +[*](gui.md) +[*](zuckerberg.md) +[*](framework.md) +[*](patent.md) +[*](and.md) +[*](anpac.md) +[*](3d_rendering.md) +[*](twos_complement.md) +[*](rust.md) +[*](unary.md) +[*](boat.md) +[*](lrs_wiki.md) +[*](abstraction.md) +[*](proof.md) +[*](bloat_monopoly.md) +[*](free_hardware.md) +[*](asexuality.md) +[*](suicide.md) +[*](good_enough.md) +[*](backgammon.md) +[*](small3dlib.md) +[*](corporation.md) +[*](trash_magic.md) +[*](vector.md) +[*](information.md) +[*](tom_scott.md) +[*](political_correctness.md) +[*](tor.md) +[*](chaos.md) +[*](network.md) +[*](uxn.md) +[*](primitive_3d.md) +[*](infinity.md) +[*](robot.md) +[*](technology.md) +[*](intellectual_property.md) +[*](soydev.md) +[*](dog.md) +[*](idiot_fallacy.md) +[*](transistor.md) +[*](dick_reveal.md) +[*](flatland.md) +[*](computational_complexity.md) +[*](steve_jobs.md) +[*](c.md) +[*](goodbye_world.md) +[*](global_discussion.md) +[*](cos.md) [*](tinyphysicsengine.md) -[*](hw.md) -[*](freedom.md) -[*](mud.md) -[*](zero.md) -[*](hash.md) +[*](entropy.md) +[*](unicode.md) +[*](quantum_gate.md) +[*](antivirus_paradox.md) +[*](quantum_gate.md) +[*](sudoku.md) +[*](ssao.md) +[*](algorithm.md) +[*](cancer.md) +[*](everyone_does_it.md) +[*](quaternion.md) +[*](collision.md) +[*](langtons_ant.md) +[*](chess.md) +[*](evil.md) +[*](less_retarded_hardware.md) +[*](compiler_bomb.md) +[*](wikipedia.md) +[*](tree.md) +[*](elo.md) +[*](old.md) +[*](graphics.md) +[*](3d_modeling.md) +[*](cancel_culture.md) +[*](public_domain.md) +[*](deferred_shading.md) +[*](nationalism.md) +[*](collision.md) +[*](gaywashing.md) +[*](rule110.md) +[*](gay.md) +[*](newspeak.md) +[*](free.md) +[*](john_carmack.md) +[*](shit.md) +[*](21st_century.md) +[*](settled.md) +[*](global_discussion.md) +[*](bill_gates.md) +[*](fqa.md) +[*](physics.md) +[*](macrofucker.md) +[*](often_misunderstood.md) +[*](systemd.md) +[*](rationalization.md) +[*](copyright.md) +[*](compression.md) +[*](hard_to_learn_easy_to_master.md) +[*](version_numbering.md) +[*](name_is_important.md) +[*](magic.md) +[*](security.md) +[*](human_language.md) +[*](nokia.md) +[*](free_universe.md) +[*](io.md) +[*](optimism.md) +[*](suicide.md) +[*](cloudflare.md) +[*](p_vs_np.md) +[*](countercomplex.md) +[*](how_to.md) +[*](3d_model.md) +[*](operating_system.md) +[*](game_engine.md) +[*](wikiwikiweb.md) +[*](arch.md) +[*](rgb332.md) +[*](bloat.md) +[*](c_tutorial.md) +[*](malware.md) +[*](zen.md) +[*](usenet.md) +[*](paradigm.md) +[*](needed.md) +[*](pokitto.md) +[*](update_culture.md) +[*](feminism.md) +[*](selflessness.md) +[*](often_confused.md) +[*](mental_outlaw.md) +[*](moderation.md) +[*](free_speech.md) +[*](ted_kaczynski.md) +[*](political_correctness.md) +[*](nigeria.md) +[*](nord_vpn.md) +[*](formal_language.md) +[*](comun.md) +[*](os.md) +[*](tranny.md) +[*](linux.md) +[*](furry.md) +[*](open_console.md) +[*](ascii.md) +[*](quaternion.md) +[*](smol_internet.md) +[*](smol_internet.md) +[*](shit.md) +[*](bit.md) +[*](quaternion.md) +[*](java.md) +[*](mental_outlaw.md) +[*](go.md) +[*](modern.md) +[*](public_domain_computer.md) +[*](boot.md) +[*](sanism.md) +[*](bloat_monopoly.md) +[*](tech.md) +[*](liberalism.md) +[*](neural_network.md) +[*](proprietary_software.md) +[*](wiki_stats.md) +[*](fascist.md) +[*](interesting.md) +[*](tranny_software.md) +[*](czechia.md) +[*](float.md) +[*](hero_culture.md) +[*](project.md) +[*](physics_engine.md) +[*](foss.md) +[*](see_through_clothes.md) +[*](toxic.md) +[*](bootstrap.md) +[*](people.md) +[*](culture.md) +[*](www.md) +[*](chaos.md) +[*](cyberbullying.md) +[*](egoism.md) +[*](freemasonry.md) +[*](iq.md) +[*](mouse.md) +[*](emoticon.md) +[*](faq.md) +[*](xxiivv.md) +[*](anticompany.md) +[*](fight_culture.md) +[*](cracking.md) +[*](comun.md) +[*](autostereogram.md) +[*](wikiwikiweb.md) +[*](memory_management.md) +[*](humidity.md) +[*](app.md) +[*](saf.md) +[*](plan9.md) +[*](fight_culture.md) +[*](loc.md) +[*](luke_smith.md) +[*](approximation.md) +[*](oop.md) +[*](conum.md) +[*](discalimer.md) +[*](ioccc.md) +[*](uxn.md) +[*](hyperoperation.md) +[*](tinyphysicsengine.md) +[*](gay.md) +[*](kek.md) +[*](cat_v.md) +[*](kiss.md) +[*](less_retarded_software.md) +[*](binary.md) +[*](future.md) +[*](3d_rendering.md) +[*](charity_sex.md) +[*](fear_culture.md) +[*](phd.md) +[*](pi.md) +[*](hitler.md) +[*](license.md) +[*](justice.md) +[*](copyfree.md) +[*](fear_culture.md) +[*](assembly.md) +[*](implicit.md) +[*](used.md) +[*](soyence.md) +[*](frameless.md) +[*](trolling.md) +[*](arduboy.md) +[*](rule110.md) +[*](public_domain.md) +[*](bytecode.md) +[*](pd.md) +[*](wiki_authors.md) +[*](byte.md) +[*](library.md) +[*](copyright.md) +[*](collision_detection.md) +[*](small3dlib.md) +[*](sub_rosa.md) +[*](nanogenmo.md) +[*](sigbovik.md) +[*](main.md) +[*](monad.md) +[*](based.md) +[*](work.md) +[*](de_facto.md) +[*](art.md) +[*](cat_v.md) +[*](toxic.md) +[*](microsoft.md) +[*](libre.md) +[*](implicit.md) +[*](fascism.md) +[*](wiki_post_mortem.md) +[*](distrohopping.md) +[*](fork.md) +[*](fascist.md) +[*](fascist.md) +[*](free_culture.md) +[*](race.md) +[*](woman.md) +[*](distrohopping.md) +[*](lrs_wiki.md) +[*](ui.md) +[*](plusnigger.md) +[*](education.md) +[*](free_will.md) +[*](corporation.md) +[*](interplanetary_internet.md) +[*](hyperoperation.md) +[*](reactionary_software.md) +[*](fizzbuzz.md) +[*](palette.md) +[*](bullshit.md) +[*](yes_they_can.md) +[*](tree.md) +[*](smart.md) +[*](john_carmack.md) +[*](nord_vpn.md) +[*](duke3d.md) +[*](luke_smith.md) +[*](malware.md) +[*](npc.md) +[*](gender_studies.md) +[*](approximation.md) +[*](hard_to_learn_easy_to_master.md) +[*](cc0.md) +[*](rock.md) +[*](harry_potter.md) diff --git a/rust.md b/rust.md index e3ae295..1356fa8 100644 --- a/rust.md +++ b/rust.md @@ -21,4 +21,11 @@ First and foremost we must establish that **rust is [shit](shit.md)** AND **CANN - **It is completely unnecessary** in the first place, a good low level language already exists: [C](c.md). If anything, we need to improve C by making it [simpler](minimalism.md), but overcomplicated C also already exists for those who for some reason want to use a shit language: [C++](cpp.md), and there are of course also slow and safe language well suited for beginners, such as [Python](python.md). Rust is just flushing thousands of manhours (prolly rather soiboihours) down the toilet. - **Idiots (vast majority of people in technology) can't see why Rust presents a disaster for technology and so they don't protest it**, some even "like" the language because it's spoonfed to them by Jewgle, so it is spreading like a cancer through millions and millions of Google slaves. You can't easily explain to a beginner programmer why Rust is an absolute disaster so that he will understand it just like you can't explain to a beginner chess player why a grandmaster chose a specific variation of an opening or why it's not a good idea to install [Windows](windows.md) on your computer, a retard will not understand it, he will just install Windows because of "muh gaymes and everyone has windowz and everyone say it good", they will only consume [keywords](shortcut_thinking.md) like "memory safety", "[modern](modern.md)" and so on, they will never comprehend why [minimalism](minimalism.md) is important. - Also "rust", what a shitty name lol. It probably hints on the fact the language is something undesirable that slowly creeps in everywhere and takes big effort to get rid of. Who comes up with these stupid names? Are they literal children? It's like someone literally picked the first word he could think of because spending 2 seconds to think about it would have been too much lol. Why do [modern](modern.md) languages and libraries have to be called these shitty things like banana unicorn or hamburger kangaroo space shuttle and other childish shit like that. Maybe it's the womanization of tech? -- TODO: MORE, but you get the idea \ No newline at end of file +- TODO: MORE, but you get the idea + +## See Also + +- [tranny software](tranny_sw.md) +- [cancer](cancer.md) +- [idiotproof](idiotproof.md) +- [capitalist software](capitalist_software.md) \ No newline at end of file diff --git a/wiki_pages.md b/wiki_pages.md index 7e72c1d..6fac76e 100644 --- a/wiki_pages.md +++ b/wiki_pages.md @@ -2,4 +2,4 @@ This is an autogenerated page listing all pages. -**[100r](100r.md)** (10) -- **[21st_century](21st_century.md)** (62) -- **[3d_model](3d_model.md)** (258) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (592) -- **[42](42.md)** (16) -- **[4chan](4chan.md)** (33) -- **[90s](90s.md)** (60) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (22) -- **[acronym](acronym.md)** (403) -- **[adam_smith](adam_smith.md)** (37) -- **[ai](ai.md)** (33) -- **[algorithm](algorithm.md)** (365) -- **[aliasing](aliasing.md)** (60) -- **[altruism](altruism.md)** (12) -- **[anal_bead](anal_bead.md)** (8) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (135) -- **[anarchism](anarchism.md)** (21) -- **[ancap](ancap.md)** (31) -- **[and](and.md)** (2) -- **[anorexia](anorexia.md)** (110) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[anticompany](anticompany.md)** (15) -- **[antivirus_paradox](antivirus_paradox.md)** (12) -- **[app](app.md)** (10) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (29) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (20) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (224) -- **[asexuality](asexuality.md)** (7) -- **[ashley_jones](ashley_jones.md)** (38) -- **[asmr](asmr.md)** (2) -- **[assembly](assembly.md)** (264) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (31) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (6) -- **[autostereogram](autostereogram.md)** (120) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (13) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (62) -- **[backpropagation](backpropagation.md)** (87) -- **[based](based.md)** (3) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (29) -- **[beauty](beauty.md)** (33) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (35) -- **[billboard](billboard.md)** (57) -- **[binary](binary.md)** (143) -- **[bit](bit.md)** (11) -- **[bit_hack](bit_hack.md)** (173) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (203) -- **[bloat_monopoly](bloat_monopoly.md)** (14) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (95) -- **[books](books.md)** (36) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (51) -- **[byte](byte.md)** (23) -- **[bytebeat](bytebeat.md)** (157) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (385) -- **[c_pitfalls](c_pitfalls.md)** (160) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2159) -- **[cache](cache.md)** (27) -- **[calculus](calculus.md)** (320) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (31) -- **[capitalism](capitalism.md)** (166) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (32) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (15) -- **[censorship](censorship.md)** (61) -- **[chaos](chaos.md)** (113) -- **[charity_sex](charity_sex.md)** (10) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (67) -- **[chess](chess.md)** (539) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (27) -- **[coc](coc.md)** (23) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (38) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (199) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (20) -- **[communism](communism.md)** (29) -- **[competition](competition.md)** (19) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (237) -- **[compsci](compsci.md)** (23) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (183) -- **[consumerism](consumerism.md)** (18) -- **[conum](conum.md)** (74) -- **[cope](cope.md)** (29) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (121) -- **[corporation](corporation.md)** (37) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[cpu](cpu.md)** (95) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (32) -- **[crime_against_economy](crime_against_economy.md)** (17) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (38) -- **[css](css.md)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (6) -- **[cyberbullying](cyberbullying.md)** (8) -- **[czechia](czechia.md)** (67) -- **[data_hoarding](data_hoarding.md)** (33) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (138) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (21) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (54) -- **[derivative](derivative.md)** (2) -- **[determinism](determinism.md)** (33) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (18) -- **[digital_signature](digital_signature.md)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (40) -- **[discalimer](discalimer.md)** (26) -- **[disease](disease.md)** (68) -- **[distance](distance.md)** (129) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (36) -- **[doom](doom.md)** (80) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (32) -- **[drummyfish](drummyfish.md)** (114) -- **[duke3d](duke3d.md)** (32) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (34) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (27) -- **[earth](earth.md)** (78) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (16) -- **[education](education.md)** (4) -- **[egg_code](egg_code.md)** (7) -- **[egoism](egoism.md)** (26) -- **[elo](elo.md)** (155) -- **[elon_musk](elon_musk.md)** (18) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (10) -- **[encyclopedia](encyclopedia.md)** (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)** (691) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (10) -- **[fail_ab](fail_ab.md)** (47) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (366) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (8) -- **[fediverse](fediverse.md)** (17) -- **[feminism](feminism.md)** (68) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (12) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (155) -- **[fizzbuzz](fizzbuzz.md)** (232) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (125) -- **[floss](floss.md)** (2) -- **[football](football.md)** (57) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (155) -- **[frameless](frameless.md)** (14) -- **[framework](framework.md)** (7) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (41) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (102) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (12) -- **[free_will](free_will.md)** (23) -- **[freedom](freedom.md)** (30) -- **[freedom_distance](freedom_distance.md)** (4) -- **[freemasonry](freemasonry.md)** (27) -- **[friend_detox](friend_detox.md)** (2) -- **[fsf](fsf.md)** (33) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (67) -- **[function](function.md)** (142) -- **[furry](furry.md)** (27) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (46) -- **[game](game.md)** (163) -- **[game_design](game_design.md)** (9) -- **[game_engine](game_engine.md)** (58) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (41) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (8) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (79) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (66) -- **[go](go.md)** (113) -- **[golang](golang.md)** (20) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (12) -- **[google](google.md)** (16) -- **[gopher](gopher.md)** (73) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (36) -- **[great_trap](great_trap.md)** (14) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (33) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (84) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (9) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (18) -- **[hexadecimal](hexadecimal.md)** (38) -- **[history](history.md)** (112) -- **[hitler](hitler.md)** (46) -- **[holy_war](holy_war.md)** (31) -- **[homelessness](homelessness.md)** (111) -- **[how_to](how_to.md)** (232) -- **[html](html.md)** (89) -- **[human_language](human_language.md)** (149) -- **[humidity](humidity.md)** (8) -- **[humorwashing](humorwashing.md)** (33) -- **[hw](hw.md)** (7) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (25) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[integral](integral.md)** (2) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (33) -- **[internet](internet.md)** (126) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (35) -- **[iq](iq.md)** (145) -- **[island](island.md)** (76) -- **[jargon_file](jargon_file.md)** (13) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (161) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (102) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (136) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (24) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (8) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (48) -- **[kiwifarms](kiwifarms.md)** (11) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (10) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (56) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (164) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (137) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (35) -- **[libre](libre.md)** (2) -- **[licar](licar.md)** (6) -- **[license](license.md)** (57) -- **[life](life.md)** (20) -- **[lil](lil.md)** (22) -- **[line](line.md)** (153) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (74) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (38) -- **[lmao](lmao.md)** (62) -- **[loc](loc.md)** (12) -- **[log](log.md)** (223) -- **[logic](logic.md)** (18) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (202) -- **[loquendo](loquendo.md)** (19) -- **[lotr](lotr.md)** (20) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (34) -- **[lrs](lrs.md)** (173) -- **[lrs_dictionary](lrs_dictionary.md)** (153) -- **[lrs_wiki](lrs_wiki.md)** (46) -- **[luke_smith](luke_smith.md)** (22) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (11) -- **[main](main.md)** (183) -- **[mainstream](mainstream.md)** (10) -- **[maintenance](maintenance.md)** (9) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (10) -- **[marketing](marketing.md)** (35) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (12) -- **[math](math.md)** (42) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (8) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (64) -- **[minimalism](minimalism.md)** (83) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (40) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (23) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (61) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (27) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (87) -- **[netstalking](netstalking.md)** (45) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (13) -- **[niger](niger.md)** (11) -- **[nigeria](nigeria.md)** (11) -- **[nigger](nigger.md)** (130) -- **[niggercoin](niggercoin.md)** (7) -- **[no_knowledge_proof](no_knowledge_proof.md)** (20) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (14) -- **[nonogram](nonogram.md)** (43) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (9) -- **[npc](npc.md)** (22) -- **[number](number.md)** (507) -- **[often_confused](often_confused.md)** (200) -- **[often_misunderstood](often_misunderstood.md)** (24) -- **[old](old.md)** (4) -- **[one](one.md)** (13) -- **[oop](oop.md)** (389) -- **[open_console](open_console.md)** (70) -- **[open_source](open_source.md)** (40) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (74) -- **[optimism](optimism.md)** (9) -- **[optimization](optimization.md)** (105) -- **[or](or.md)** (6) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (63) -- **[paradigm](paradigm.md)** (27) -- **[pascal](pascal.md)** (83) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (68) -- **[people](people.md)** (78) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (155) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (93) -- **[popularization](popularization.md)** (2) -- **[portability](portability.md)** (188) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (6) -- **[prime](prime.md)** (166) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (44) -- **[probability](probability.md)** (87) -- **[procgen](procgen.md)** (516) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (68) -- **[programming_language](programming_language.md)** (175) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (2) -- **[progress](progress.md)** (33) -- **[project](project.md)** (42) -- **[proof](proof.md)** (10) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (12) -- **[pseudorandomness](pseudorandomness.md)** (153) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quake](quake.md)** (34) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (54) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1933) -- **[randomness](randomness.md)** (182) -- **[rapeware](rapeware.md)** (2) -- **[rationalization](rationalization.md)** (16) -- **[rationalwiki](rationalwiki.md)** (13) -- **[raycasting](raycasting.md)** (513) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (28) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (111) -- **[reddit](reddit.md)** (30) -- **[regex](regex.md)** (214) -- **[resnicks_termite](resnicks_termite.md)** (210) -- **[rgb332](rgb332.md)** (116) -- **[rgb565](rgb565.md)** (48) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (6) -- **[rms](rms.md)** (59) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (49) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (23) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (28) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (18) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (20) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (23) -- **[shit](shit.md)** (34) -- **[shitpress](shitpress.md)** (8) -- **[shitword](shitword.md)** (70) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (91) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (233) -- **[sjw](sjw.md)** (29) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (18) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (35) -- **[smart](smart.md)** (15) -- **[smol_internet](smol_internet.md)** (20) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (42) -- **[soyence](soyence.md)** (103) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (167) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (227) -- **[stereotype](stereotype.md)** (523) -- **[steve_jobs](steve_jobs.md)** (36) -- **[sub_rosa](sub_rosa.md)** (56) -- **[suckless](suckless.md)** (52) -- **[sudoku](sudoku.md)** (214) -- **[suicide](suicide.md)** (52) -- **[sw](sw.md)** (16) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[t3x](t3x.md)** (104) -- **[tangram](tangram.md)** (72) -- **[tas](tas.md)** (28) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (14) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (22) -- **[thrembo](thrembo.md)** (18) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tool_slave](tool_slave.md)** (14) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny](tranny.md)** (2) -- **[tranny_software](tranny_software.md)** (31) -- **[transistor](transistor.md)** (29) -- **[transsexual](transsexual.md)** (50) -- **[trash_magic](trash_magic.md)** (21) -- **[tree](tree.md)** (66) -- **[triangle](triangle.md)** (88) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (50) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (12) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (220) -- **[twos_complement](twos_complement.md)** (38) -- **[ubi](ubi.md)** (34) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (14) -- **[unfuck](unfuck.md)** (18) -- **[unicode](unicode.md)** (86) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (157) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (19) -- **[update_culture](update_culture.md)** (26) -- **[usa](usa.md)** (87) -- **[used](used.md)** (6) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (47) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (63) -- **[version_numbering](version_numbering.md)** (90) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (16) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (215) -- **[wiki_style](wiki_style.md)** (77) -- **[wiki_tldr](wiki_tldr.md)** (71) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (97) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (59) -- **[wirtual](wirtual.md)** (2) -- **[wizard](wizard.md)** (27) -- **[wolf3d](wolf3d.md)** (42) -- **[woman](woman.md)** (214) -- **[work](work.md)** (107) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (126) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (114) -- **[xor](xor.md)** (2) -- **[xxiivv](xxiivv.md)** (34) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (48) -- **[zen](zen.md)** (16) -- **[zero](zero.md)** (33) -- **[znk](znk.md)** (13) -- **[zoomer](zoomer.md)** (46) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file +**[100r](100r.md)** (10) -- **[21st_century](21st_century.md)** (62) -- **[3d_model](3d_model.md)** (258) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (592) -- **[42](42.md)** (16) -- **[4chan](4chan.md)** (33) -- **[90s](90s.md)** (60) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (22) -- **[acronym](acronym.md)** (403) -- **[adam_smith](adam_smith.md)** (37) -- **[ai](ai.md)** (33) -- **[algorithm](algorithm.md)** (365) -- **[aliasing](aliasing.md)** (60) -- **[altruism](altruism.md)** (12) -- **[anal_bead](anal_bead.md)** (8) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (135) -- **[anarchism](anarchism.md)** (21) -- **[ancap](ancap.md)** (31) -- **[and](and.md)** (2) -- **[anorexia](anorexia.md)** (110) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[anticompany](anticompany.md)** (15) -- **[antivirus_paradox](antivirus_paradox.md)** (12) -- **[app](app.md)** (10) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (29) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (20) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (224) -- **[asexuality](asexuality.md)** (7) -- **[ashley_jones](ashley_jones.md)** (38) -- **[asmr](asmr.md)** (2) -- **[assembly](assembly.md)** (264) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (31) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (6) -- **[autostereogram](autostereogram.md)** (120) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (13) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (62) -- **[backpropagation](backpropagation.md)** (87) -- **[based](based.md)** (3) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (29) -- **[beauty](beauty.md)** (33) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (35) -- **[billboard](billboard.md)** (57) -- **[binary](binary.md)** (143) -- **[bit](bit.md)** (11) -- **[bit_hack](bit_hack.md)** (173) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (203) -- **[bloat_monopoly](bloat_monopoly.md)** (14) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (95) -- **[books](books.md)** (36) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (51) -- **[byte](byte.md)** (23) -- **[bytebeat](bytebeat.md)** (157) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (385) -- **[c_pitfalls](c_pitfalls.md)** (160) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2159) -- **[cache](cache.md)** (27) -- **[calculus](calculus.md)** (320) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (31) -- **[capitalism](capitalism.md)** (166) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (32) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (15) -- **[censorship](censorship.md)** (61) -- **[chaos](chaos.md)** (113) -- **[charity_sex](charity_sex.md)** (10) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (67) -- **[chess](chess.md)** (539) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (27) -- **[coc](coc.md)** (23) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (38) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (199) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (20) -- **[communism](communism.md)** (29) -- **[competition](competition.md)** (19) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (237) -- **[compsci](compsci.md)** (23) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (183) -- **[consumerism](consumerism.md)** (18) -- **[conum](conum.md)** (74) -- **[cope](cope.md)** (29) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (121) -- **[corporation](corporation.md)** (37) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[cpu](cpu.md)** (95) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (32) -- **[crime_against_economy](crime_against_economy.md)** (17) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (38) -- **[css](css.md)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (6) -- **[cyberbullying](cyberbullying.md)** (8) -- **[czechia](czechia.md)** (87) -- **[data_hoarding](data_hoarding.md)** (33) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (138) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (21) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (54) -- **[derivative](derivative.md)** (2) -- **[determinism](determinism.md)** (33) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (18) -- **[digital_signature](digital_signature.md)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (40) -- **[discalimer](discalimer.md)** (26) -- **[disease](disease.md)** (68) -- **[distance](distance.md)** (171) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (36) -- **[doom](doom.md)** (80) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (32) -- **[drummyfish](drummyfish.md)** (114) -- **[duke3d](duke3d.md)** (32) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (34) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (27) -- **[earth](earth.md)** (78) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (16) -- **[education](education.md)** (4) -- **[egg_code](egg_code.md)** (7) -- **[egoism](egoism.md)** (26) -- **[elo](elo.md)** (155) -- **[elon_musk](elon_musk.md)** (18) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (10) -- **[encyclopedia](encyclopedia.md)** (76) -- **[english](english.md)** (21) -- **[entrepreneur](entrepreneur.md)** (4) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (18) -- **[evil](evil.md)** (75) -- **[exercises](exercises.md)** (691) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (10) -- **[fail_ab](fail_ab.md)** (47) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (366) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (8) -- **[fediverse](fediverse.md)** (17) -- **[feminism](feminism.md)** (68) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (12) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (155) -- **[fizzbuzz](fizzbuzz.md)** (232) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (125) -- **[floss](floss.md)** (2) -- **[football](football.md)** (57) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (155) -- **[frameless](frameless.md)** (14) -- **[framework](framework.md)** (7) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (41) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (102) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (12) -- **[free_will](free_will.md)** (23) -- **[freedom](freedom.md)** (30) -- **[freedom_distance](freedom_distance.md)** (4) -- **[freemasonry](freemasonry.md)** (27) -- **[friend_detox](friend_detox.md)** (2) -- **[fsf](fsf.md)** (33) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (67) -- **[function](function.md)** (142) -- **[furry](furry.md)** (27) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (46) -- **[game](game.md)** (163) -- **[game_design](game_design.md)** (9) -- **[game_engine](game_engine.md)** (58) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (41) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (8) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (79) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (66) -- **[go](go.md)** (113) -- **[golang](golang.md)** (20) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (12) -- **[google](google.md)** (16) -- **[gopher](gopher.md)** (73) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (36) -- **[great_trap](great_trap.md)** (14) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (33) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (84) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (9) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (18) -- **[hexadecimal](hexadecimal.md)** (38) -- **[history](history.md)** (112) -- **[hitler](hitler.md)** (46) -- **[holy_war](holy_war.md)** (31) -- **[homelessness](homelessness.md)** (111) -- **[how_to](how_to.md)** (232) -- **[html](html.md)** (89) -- **[human_language](human_language.md)** (149) -- **[humidity](humidity.md)** (8) -- **[humorwashing](humorwashing.md)** (33) -- **[hw](hw.md)** (7) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (25) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[integral](integral.md)** (2) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (33) -- **[internet](internet.md)** (126) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (35) -- **[iq](iq.md)** (145) -- **[island](island.md)** (76) -- **[jargon_file](jargon_file.md)** (13) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (161) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (102) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (136) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (24) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (8) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (48) -- **[kiwifarms](kiwifarms.md)** (11) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (10) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (56) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (164) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (137) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (35) -- **[libre](libre.md)** (2) -- **[licar](licar.md)** (6) -- **[license](license.md)** (57) -- **[life](life.md)** (20) -- **[lil](lil.md)** (22) -- **[line](line.md)** (153) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (74) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (38) -- **[lmao](lmao.md)** (62) -- **[loc](loc.md)** (12) -- **[log](log.md)** (223) -- **[logic](logic.md)** (18) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (202) -- **[loquendo](loquendo.md)** (19) -- **[lotr](lotr.md)** (20) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (34) -- **[lrs](lrs.md)** (173) -- **[lrs_dictionary](lrs_dictionary.md)** (153) -- **[lrs_wiki](lrs_wiki.md)** (46) -- **[luke_smith](luke_smith.md)** (22) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (11) -- **[main](main.md)** (183) -- **[mainstream](mainstream.md)** (10) -- **[maintenance](maintenance.md)** (9) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (10) -- **[marketing](marketing.md)** (35) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (12) -- **[math](math.md)** (42) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (8) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (64) -- **[minimalism](minimalism.md)** (83) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (40) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (23) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (61) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (27) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (87) -- **[netstalking](netstalking.md)** (45) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (13) -- **[niger](niger.md)** (11) -- **[nigeria](nigeria.md)** (11) -- **[nigger](nigger.md)** (130) -- **[niggercoin](niggercoin.md)** (7) -- **[no_knowledge_proof](no_knowledge_proof.md)** (20) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (14) -- **[nonogram](nonogram.md)** (43) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (9) -- **[npc](npc.md)** (22) -- **[number](number.md)** (507) -- **[often_confused](often_confused.md)** (200) -- **[often_misunderstood](often_misunderstood.md)** (24) -- **[old](old.md)** (4) -- **[one](one.md)** (13) -- **[oop](oop.md)** (389) -- **[open_console](open_console.md)** (70) -- **[open_source](open_source.md)** (40) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (74) -- **[optimism](optimism.md)** (9) -- **[optimization](optimization.md)** (105) -- **[or](or.md)** (6) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (63) -- **[paradigm](paradigm.md)** (27) -- **[pascal](pascal.md)** (83) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (68) -- **[people](people.md)** (78) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (155) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (93) -- **[popularization](popularization.md)** (2) -- **[portability](portability.md)** (188) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (6) -- **[prime](prime.md)** (166) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (44) -- **[probability](probability.md)** (87) -- **[procgen](procgen.md)** (516) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (68) -- **[programming_language](programming_language.md)** (175) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (2) -- **[progress](progress.md)** (33) -- **[project](project.md)** (42) -- **[proof](proof.md)** (10) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (12) -- **[pseudorandomness](pseudorandomness.md)** (153) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quake](quake.md)** (34) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (54) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1933) -- **[randomness](randomness.md)** (182) -- **[rapeware](rapeware.md)** (2) -- **[rationalization](rationalization.md)** (16) -- **[rationalwiki](rationalwiki.md)** (13) -- **[raycasting](raycasting.md)** (513) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (28) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (111) -- **[reddit](reddit.md)** (30) -- **[regex](regex.md)** (214) -- **[resnicks_termite](resnicks_termite.md)** (210) -- **[rgb332](rgb332.md)** (116) -- **[rgb565](rgb565.md)** (48) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (6) -- **[rms](rms.md)** (59) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (49) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (23) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (28) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (18) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (20) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (23) -- **[shit](shit.md)** (34) -- **[shitpress](shitpress.md)** (8) -- **[shitword](shitword.md)** (70) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (91) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (233) -- **[sjw](sjw.md)** (29) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (18) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (35) -- **[smart](smart.md)** (15) -- **[smol_internet](smol_internet.md)** (20) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (42) -- **[soyence](soyence.md)** (103) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (167) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (227) -- **[stereotype](stereotype.md)** (523) -- **[steve_jobs](steve_jobs.md)** (36) -- **[sub_rosa](sub_rosa.md)** (56) -- **[suckless](suckless.md)** (52) -- **[sudoku](sudoku.md)** (214) -- **[suicide](suicide.md)** (52) -- **[sw](sw.md)** (16) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[t3x](t3x.md)** (104) -- **[tangram](tangram.md)** (72) -- **[tas](tas.md)** (28) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (14) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (22) -- **[thrembo](thrembo.md)** (18) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tool_slave](tool_slave.md)** (14) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny](tranny.md)** (2) -- **[tranny_software](tranny_software.md)** (31) -- **[transistor](transistor.md)** (29) -- **[transsexual](transsexual.md)** (50) -- **[trash_magic](trash_magic.md)** (21) -- **[tree](tree.md)** (66) -- **[triangle](triangle.md)** (88) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (50) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (12) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (220) -- **[twos_complement](twos_complement.md)** (38) -- **[ubi](ubi.md)** (34) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (14) -- **[unfuck](unfuck.md)** (18) -- **[unicode](unicode.md)** (87) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (157) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (19) -- **[update_culture](update_culture.md)** (32) -- **[usa](usa.md)** (112) -- **[used](used.md)** (6) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (47) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (63) -- **[version_numbering](version_numbering.md)** (90) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (16) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (217) -- **[wiki_style](wiki_style.md)** (77) -- **[wiki_tldr](wiki_tldr.md)** (71) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (97) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (59) -- **[wirtual](wirtual.md)** (2) -- **[wizard](wizard.md)** (27) -- **[wolf3d](wolf3d.md)** (42) -- **[woman](woman.md)** (214) -- **[work](work.md)** (107) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (126) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (114) -- **[xor](xor.md)** (2) -- **[xxiivv](xxiivv.md)** (34) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (48) -- **[zen](zen.md)** (16) -- **[zero](zero.md)** (33) -- **[znk](znk.md)** (13) -- **[zoomer](zoomer.md)** (47) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file diff --git a/wiki_stats.md b/wiki_stats.md index 93221de..fdb3f67 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: 1031 -- total size of all texts in bytes: 5591029 -- total number of lines of article texts: 40159 +- number of commits: 1032 +- total size of all texts in bytes: 5597603 +- total number of lines of article texts: 40253 - number of script lines: 324 - occurrences of the word "person": 10 - occurrences of the word "nigger": 157 @@ -35,47 +35,47 @@ longest articles: top 50 5+ letter words: -- which (3002) -- there (2369) -- people (2244) +- which (3006) +- there (2370) +- people (2246) - example (1941) -- other (1714) -- about (1532) +- other (1715) +- about (1533) - number (1472) -- software (1326) -- because (1261) +- software (1329) +- because (1265) - their (1185) - something (1168) -- would (1149) -- being (1127) +- would (1150) +- being (1129) - program (1086) -- language (1034) +- language (1035) - called (1008) - things (957) -- without (934) +- without (936) - simple (902) - numbers (883) - function (882) -- computer (877) +- computer (878) - different (847) -- world (828) +- world (829) - these (814) - programming (812) - however (810) - should (788) - still (782) - system (776) -- doesn (752) +- doesn (753) - games (742) - drummyfish (735) -- always (729) -- possible (726) -- point (717) +- always (731) +- possible (727) +- point (718) - probably (708) - https (703) - while (698) - society (697) -- simply (691) +- simply (692) - using (664) - someone (651) - course (646) @@ -89,6 +89,25 @@ top 50 5+ letter words: latest changes: ``` +Date: Thu Jun 19 02:56:49 2025 +0200 + czechia.md + distance.md + drummyfish.md + encyclopedia.md + formal_language.md + kiwifarms.md + licar.md + noise.md + random_page.md + soyence.md + turing_machine.md + unicode.md + update_culture.md + usa.md + wiki_pages.md + wiki_stats.md + woman.md + zoomer.md Date: Tue Jun 17 18:35:49 2025 +0200 4chan.md acronym.md @@ -107,23 +126,6 @@ Date: Tue Jun 17 18:35:49 2025 +0200 wiki_stats.md woman.md znk.md -Date: Mon Jun 9 20:34:29 2025 +0200 - body_shaming.md - chess.md - lrs_dictionary.md - luke_smith.md - main.md - often_confused.md - random_page.md - soyence.md - stereotype.md - technology.md - usa.md - wiki_pages.md - wiki_stats.md - wirtual.md - woman.md -Date: Thu Jun 5 22:37:58 2025 +0200 ``` most wanted pages: @@ -151,7 +153,7 @@ most wanted pages: most popular and lonely pages: -- [lrs](lrs.md) (353) +- [lrs](lrs.md) (355) - [capitalism](capitalism.md) (329) - [bloat](bloat.md) (252) - [c](c.md) (249) @@ -164,12 +166,12 @@ most popular and lonely pages: - [computer](computer.md) (130) - [censorship](censorship.md) (128) - [kiss](kiss.md) (126) -- [fun](fun.md) (123) +- [fun](fun.md) (124) - [math](math.md) (122) -- [shit](shit.md) (120) +- [shit](shit.md) (121) - [programming](programming.md) (120) - [woman](woman.md) (116) -- [art](art.md) (111) +- [art](art.md) (112) - [history](history.md) (109) - [gnu](gnu.md) (108) - [bullshit](bullshit.md) (107) @@ -180,7 +182,7 @@ most popular and lonely pages: - [hacking](hacking.md) (97) - [internet](internet.md) (96) - [less_retarded_society](less_retarded_society.md) (94) -- [programming_language](programming_language.md) (93) +- [chess](chess.md) (94) - ... - [friend_detox](friend_detox.md) (5) - [free_body](free_body.md) (5)