diff --git a/compression.md b/compression.md index 2deb84b..58a23ba 100644 --- a/compression.md +++ b/compression.md @@ -12,6 +12,8 @@ Compression means encoding [data](data.md) (such as images or texts) in a differ We should also mention compression is not applied just to files on hard drives, it may just as well be used let's say in [RAM](ram.md) to utilize it more efficiently. [OpenGL](opengl.md) for instance offers the option to compress textures uploaded to the [GPU](gpu.md) to save space. +As for computational [complexity](complexity.md), it is mostly safe to assume that compression will be more demanding than decompression in terms of resources, and sometimes it's possible to dedicate more resources (time, memory, electricity, ...) to achieve a better compression ratio, i.e. we can "try harder" to "compress the file more". Whereas a compressed file can always be decoded only in one way (to obtain the original file) and the decompression process is normally quite fast and straightforward (e.g. "replace symbols with words from a dictionary"), it happens often that a file can be compressed in many different ways, some of which are better (smaller), and seldom there is another way but [brute force](brute_force.md) to find the best one. This asymmetry in cost of compression and decompression can be advantageous though, considering typical scenarios such as distributing compressed video over the Internet: we have to dedicate a lot of [CPU](cpu.md) time to compress the video well, but only once. The video will then be distributed to many clients and we are benefiting from saved bandwidth on every single copy we transfer, and thanks to simplicity of decompression the clients (of which there are many) aren't bothered nearly as much -- the total cost we're collectively paying is much smaller than if compression was cheap and decompression expensive. + Why don't we compress everything? Firstly because compressed data is slow to work with, it requires significant [CPU](cpu.md) time to compress and decompress data, it's a kind of a space-time tradeoff (we gain more storage space for the cost of CPU time). Compression also [obscures](obscurity.md) data, for example compressed text file will typically no longer be human readable, any code wanting to work with such data will have to include the nontrivial decompression code. Compressed data is also more prone to [corruption](corruption.md) because redundant information (which can help restoring corrupted data) is removed from it -- in fact we sometimes purposefully do the opposite of compression and make our data bigger to protect it from corruption (see e.g. [error correcting](error_correction.md) codes, [RAID](raid.md) etc.). And last but not least, many data can hardly be compressed or are so small it's not even worth it. The basic division of compression methods is to: diff --git a/gopher.md b/gopher.md index a4d48dd..92af440 100644 --- a/gopher.md +++ b/gopher.md @@ -8,6 +8,8 @@ Gopher **doesn't use any [encryption](encryption.md)** (though some servers allo **How big is/was gopherspace?** In 1994 there were over 1300 gopher servers (source: 1994 book *Finding it on the Internet"*), around 1995 there were already more than 6000 (source: 1995 video *Searching the Internet - Gopher | The Internet Revealed*). Most of them are now gone, in 2005 there were only 145 servers reported by Veronica search engine (source: *2007 gopher archive*), though Gopher recently saw a new wave of popularity. As of 2023 the Veronica search engine reported 315 gopher servers in the world with 5+ million indexed selectors, which they estimated was 83% of the whole gopherspace (the peak server count was in 2020 at almost 400). Quarry search engine reports 369 servers and 1+ million indexed selectors. Contrition search engine reported even 495 servers and 7+ million selectors. The "grawler" crawler of gopherspace.de reported 192 active servers at the beginning of 2016, 182 in 2020, 413 in 2023 (bumped its search list) and 380 in 2024. Gopher LAWN directory (made by [bitreich](bitreich.md)) contains 281 selected quality gopher holes. +{ PRO TIP: **Do you want to make your own gopher index?** You can easily use FOSS web crawlers such as [Yacy](yacy.md) and some kind of gopher web proxy. I tried it and it works, just remember to tell the crawler to not obey robots.txt as the proxies usually don't want to be crawled, just shit on them. This can not only give you a map of the gopherspace but also fulltext search. ~drummyfish } + From the user's perspective **the most important distinction from the Web** is that gopher is based on **menus** instead of "webpages"; a menu is simply a column of items of different predefined types, most importantly e.g. a *text file* (which clients can directly display), *directory* (link to another menu), *text label* (just shows some text), *binary file* etc. A menu can't be formatted or visually changed, there are no colors, images, scripts or [hypertext](hypertext.md) -- a menu is not a presentation tool, it is simply a navigation node towards files users are searching for (but the mentioned ASCII art and label items allow for somewhat mimicking "websites" anyway). Gopher is also often **browsed from the [command line](cli.md)**, though graphical clients are a thing too. Addressing works with [URLs](url.md) just as the Web, the URLs just differ by the protocol part (`gopher://` instead of `http://`), e.g.: `gopher://gopher.floodgap.com:70/1/gstats`. What on Web is called a "website" on gopher we call a **gopherhole** or just *hole* (i.e. a collection of resources usually under a single [domain](domain.md)) and the whole gopher network is called a **gopherspace**. [Blogs](blog.md) are common on gopher and are called **phlogs** (collectively a *phlogosphere*). As menus can refer to one another, gopher creates something akin to a **global [file system](file_system.md)**, so browsing gopher is like browsing folders and can comfortably be handled with just 4 arrow keys. Note that as menus can link to any other menu freely, the structure of the "file system" is not a [tree](tree.md) but rather a general [graph](graph.md). Another difference from the Web is gopher's great emphasis on **[plaintext](plaintext.md) and [ASCII art](ascii_art.md)** as it cannot embed images and other media in the menus (even though of course the menus can link to them). There is also a support for sending text to a server so it is possible to implement [search engines](search_engine.md), guest books, [games](game.md) etc. Gopher is just an [application layer](l7.md) [protocol](protocol.md) (officially running on [port](port.md) 70 assigned by [IANA](iana.md)), i.e it sits above lower layer protocols like [TCP](tcp.md) and takes the same role as [HTTP](http.md) on the Web and so only defines how clients and servers talk to each other -- the gopher protocol doesn't say how menus are written or stored on servers. Nevertheless for the creation of menus so called **gophermaps** have been established, which is a simple format for writing menus and are the gopher equivalent of Web's [HTML](html.md) files (just much simpler, basically just menu items on separate lines, the exact syntax is ultimately defined by server implementation). A server doesn't have to use gophermaps, it may be e.g. configured to create menus automatically from directories and files stored on the server, however gophermaps allow users to write custom menus manually. Typically in someone's gopherhole you'll be served a welcoming intro menu similar to a personal webpage that's been written as a gophermap, which may then link to directories storing personal files or other hand written menus. Some gopher servers also allow creating dynamic content with scripts called **moles**. diff --git a/hitler.md b/hitler.md index e634287..6fa1bf5 100644 --- a/hitler.md +++ b/hitler.md @@ -4,7 +4,7 @@ Adolf Hitler was a painter who killed several million [Jews](jew.md).^([citation needed]) Widely regarded as the absolute worst human in whole [history](history.md), his name itself has become a common insult, argument fallacy, synonym of [evil](evil.md), cruelty and satanic behavior. He is best known for having been the leader of [Nazis](nazi.md), starting World War II, conducting genocide of Jews ([Holocaust](holocaust.md)) and starring as final boss in [Wolfenstein 3D](wolf3D.md) (spoiler alert). The most memorable part of his image was definitely the toothbrush moustache he wore, undercut hair and strong voice he combined with theatrical performance to deliver speeches that captured crowds of millions (basically like today's [TikTok](tiktok.md) celebrities, but he did it all real time and without the [Internet](internet.md)). -How many jews exactly he killed is a subject of very controversial debates, but for example in many parts of [Europe](europe.md) it is now REQUIRED BY [LAW](law.md) to acknowledge at least 6 million OR ELSE -- if you argue it was fewer, even by ONE jew, you are officially committing the crime of "Holocaust denial" (see also [wrongthink](wrongthink.md)). In any case the facts speak that he was the **head of the [Nazi](nazi.md) party** (NSDAP) -- which openly fanatically hated Jews -- later on also the head of whole Germany -- there he was called *Fuhrer* ("[leader](hero_culture.md)") -- and, most importantly, **started [World War II](ww2.md)**, the deadliest conflict in whole [history](history.md) with countless millions of victims on all sides; he was a [militant](military.md) [nationalist](nationalism.md) [fascist](fascism.md), [racist](racism.md) (in the TRUE sense of the world) and a state [capitalist](capitalism.md) -- i.e. probably an incarnation of devil himself. In reality he was no different from an average [CEO](ceo.md) in our [current days](21st_century.md): the word "impossible" didn't exist in Hitler's dictionary. He was a great, highly respected [leader](hero_culture.md), patriot loving his country above all, an amazing inspirational speaker with unique, memorable image, a charismatic, confident, [productive](productivity_cult.md) and [assertive](assertiveness.md) psychopath chasing his goal tirelessly by any means necessary, who dedicated everything to his vision and worked day and night to achieve it, who created order by force, brought what he perceived as [justice](justice.md), who gave people great many [jobs](work.md) and achieved unprecedented technological [progress](progress.md), created many industries and on top he was a [war](war.md) [hero](hero_culture.md.md) -- this in essence is what every [American](usa.md) ever strives to be. He really was just like Churchill with only one difference: he lost the war. His methods for maximizing self interest through populism, force, [fear](fear_culture.md) and political flexibility were so successful in fact that they were subsequently adopted by the whole western world, our [current society](21st_century.md) can now be viewed as consisting solely of aspiring Hitlers: everyone who means anything in our highly [competitive](competition.md) [capitalist](capitalism.md) society has to master the essential skills of lying, manipulation, populist rhetoric, abuse of power, dirty political games, [propaganda](marketing.md), scaremongering and a myriad of others. In this Hitler was very ahead of his time and did away with all the naive thinkers who thought it was possible to achieve things by legitimate, even ethical means. +How many jews exactly he killed is a subject of very controversial debates, but for example in many parts of [Europe](europe.md) it is now REQUIRED BY [LAW](law.md) to acknowledge at least 6 million OR ELSE -- if you argue it was fewer, even by ONE jew, you are officially committing the crime of "Holocaust denial" (see also [wrongthink](wrongthink.md)). In any case the facts speak that he was the **head of the [Nazi](nazi.md) party** (NSDAP) -- which openly fanatically hated Jews -- later on also the head of whole Germany -- there he was called *Fuhrer* ("[leader](hero_culture.md)") -- and, most importantly, **started [World War II](ww2.md)**, the deadliest conflict in whole [history](history.md) with countless millions of victims on all sides; he was a [militant](military.md) [nationalist](nationalism.md) [fascist](fascism.md), [racist](racism.md) (in the TRUE sense of the world) and a state [capitalist](capitalism.md) -- i.e. probably an incarnation of devil himself. In reality he was no different from an average [CEO](ceo.md) in our [current days](21st_century.md): the word "impossible" didn't exist in Hitler's dictionary. He was a great, highly respected [leader](hero_culture.md), patriot loving his country above all, an amazing inspirational speaker with unique, memorable image, a charismatic, confident, [productive](productivity_cult.md) and [assertive](assertiveness.md) psychopath chasing his goal tirelessly by any means necessary, who dedicated his soul to a vision and worked day and night to achieve it, who created order with [law](law.md), brought what he perceived as [justice](justice.md), who gave people great many [jobs](work.md) and achieved unprecedented technological [progress](progress.md), created many industries and on top he was a [war](war.md) [hero](hero_culture.md.md) -- this in essence embodies what every [American](usa.md) ever strives to be. He really was just like Churchill with only one difference: he lost the war. His methods for maximizing self interest through populism, force, [fear](fear_culture.md) and political flexibility were so successful in fact that they were subsequently adopted by the whole western world, our [current society](21st_century.md) can now be viewed as consisting solely of aspiring Hitlers: everyone who means anything in our highly [competitive](competition.md) [capitalist](capitalism.md) society has to master the essential skills of lying, manipulation, populist rhetoric, abuse of power, dirty political games, [propaganda](marketing.md), scaremongering and a myriad of others. In this Hitler was very ahead of his time and did away with all the naive thinkers who thought it was possible to achieve things by legitimate, even ethical means. Hitler indeed believed that [greed is good](capitalism.md) and you should never give up. ``` _.-.._ @@ -18,12 +18,12 @@ How many jews exactly he killed is a subject of very controversial debates, but *Hitler* -Just like every capitalist/leader/entrepreneur/etc. he only lived thinking about [competition](competition.md) and showed us what is needed if you take competing seriously and truly WANT to win, not just participate. Hitler was basically a **[pseudoleftist](pseudoleft.md)** and **his methods are mimicked by modern pseudoleft, most notably [LGBT](lgbt.md) and [feminism](feminism.md)**. For example: +Just like every capitalist/leader/entrepreneur/etc. he only lived thinking about [competition](competition.md) and showed us what is needed if you take competing seriously and truly WANT to win, not just participate -- he lost his biggest game but indeed, in the meantime, achieved victories that most will only ever dream of. Hitler was basically a **[pseudoleftist](pseudoleft.md)** and **his methods are mimicked by modern pseudoleft, most notably [LGBT](lgbt.md) and [feminism](feminism.md)**. For example: -- He misleadingly called himself a "[socialist](socialism.md)" (his party was called "National Socialist German Workers' Party") despite being a pure example of rightism (e.g. by arguing for strong hierarchies everywhere in society: in state, among races, in military etc.), a [fascist](fascism.md) aiming to benefit the group he belonged to (Germans, white [race](race.md)), just as LGBT/feminists call themselves "leftist" and "socialist" despite actually being fascists who want to benefit the group they belong to (gays/females). -- He brainwashed children: see Hitlerjugend. He knew children are an easy target for propaganda and that they would grow up to be soldiers [fighting](fight_culture.md) for whatever they were taught as young. This is what LGBT/feminism does nowadays with all the woke children fairytales etc. +- He deceivingly called himself a "[socialist](socialism.md)" (his party was called "National Socialist German Workers' Party") despite being a pure example of rightism (e.g. by arguing for strong hierarchies everywhere in society: in state, among [races](race.md), in military etc.), a [fascist](fascism.md) aiming to benefit the group he belonged to (Germans, white [race](race.md)), just as LGBT/feminists call themselves "leftist" and "socialist" despite actually being fascists who want to benefit the group they belong to (gays/females). +- He brainwashed children: see Hitlerjugend. He knew children pose an easy target for propaganda and that they'd grow up to become soldiers [fighting](fight_culture.md) for whatever they were taught as young. This is what LGBT/feminism does nowadays with all the woke children fairytales etc. - He manipulated [science](science.md), for example he refused discoveries made by Jewish scientists. Similar things are happening with [soyence](soyence.md). See [gender studies](gender_studies.md). -- He absolutely loved propaganda, especially movies, he knew that's how you brainwash the masses very effectively. This is exactly what LGBT/feminism does with all the woke movies etc. +- He absolutely loved propaganda, especially movies, he knew that insofar as manipulating the masses goes, mass media brainwashing always falls on a fertile ground. This is exactly what LGBT/feminism does with all the woke movies and shit. - He practiced hardcore [censorship](censorship.md) and ritual destruction of works deemed "harmful" to the regime, famously supporting public burning of books that were not aligned with his ideology, such as those written by Jews. This is the same as what LGBT/feminists nowadays do with old works that are "too focused on white men" etc. - He loved [military](military.md) parades, demonstrations of power, waving flags and creating [fear](fear_culture.md) -- again, just like what we see with all the gay parades, gay flags, [cancel culture](cancel_culture.md) etc. - ... @@ -34,8 +34,10 @@ Numerous "conspiracy theories" revolve around Hitler, to name just some: - Was he a jew? - Was he an alien? -- Was his death only faked and is he still alive? Possible places of hiding include: Argentina, another planet, inside of [Earth](earth.md) (the Hollow Earth theory), ... -- Did he actually ever give order for the Holocaust? +- Was he an incarnation of devil? +- Was he worse than [Elon Musk](elon_musk.md)? +- Was his death faked and does he still in fact live? Possible hiding places include: Argentina, another planet, another dimension or inside of the [Earth](earth.md) (assumes the Hollow Earth model). +- Did he actually ever directly order the Holocaust? ## See Also diff --git a/lrs_dictionary.md b/lrs_dictionary.md index 2ed0434..b9a04bf 100644 --- a/lrs_dictionary.md +++ b/lrs_dictionary.md @@ -63,6 +63,7 @@ | [Hyperbola](hyperbola.md) | Hyperbloat | | [identity](identity.md) | pose | | Immanuel Kant | Immanuel Cunt, Immanuel Can't (sorry, just too obvious :D) | +| [incest](incest.md) | wincest | | influencer | manipulator | | [Intel](intel.md) | [Incel](incel.md) | | [interactive](interactivity.md) | hyperactive | diff --git a/luke_smith.md b/luke_smith.md index 59ad771..41b6c78 100644 --- a/luke_smith.md +++ b/luke_smith.md @@ -1,16 +1,18 @@ # Luke Smith -Luke Smith was -- before becoming [crypto](crypto.md) [influencer](influencer.md), scam promoter and a generic turd in a suit (around 2022) -- an [American](usa.md) [Internet](internet.md) tech mini pseudocelebrity known for making videos about [suckless](suckless.md) software, independent living in the woods and here and there about [historical](history.md), political, linguistic and religious topics. He played a big role in making suckless more popular, however he later started to behave in hugely retarded ways and now isn't worth following anymore. +Noteworthy to [suckless](suckless.md) lore, Luke Smith was (prior to becoming a [crypto](crypto.md) [influencer](influencer.md), scam promoter and a generic turd in a suit, circa 2022) an [American](usa.md) [Internet](internet.md) tech mini pseudocelebrity known for making videos about suckless software, independent living in the woods and here and there about [historical](history.md), political, linguistic and religious topics. He played a big role in making suckless more popular and is known as its most well known promoter, however he later on started to behave in hugely retarded ways and now isn't worth following anymore. -His look has been described as the *default Runescape character* (UPDATE: now adopted a Charles Darwin image): he is bald, over 30 years old (probably born around 1990) and lives in a rural location in Florida (exact coordinates have been doxxed but legally can't be shared here, but let's just say the road around his house bears his name). He is a [Christian](christianity.md) (well, the [militant](military.md) [fascist](fascism.md) USA "Christian") he goes to the church etc. He has a podcast called *Not Related!* (https://notrelated.xyz/) in which he discusses things such as alternative historical theories -- actually a great podcast. He has a minimalist [90s](90s.md) style website https://lukesmith.xyz/ and his own [peertube](peertube.md) instance where his videos can be watched if one doesn't want to watch them on [YouTube](youtube.md). He is the author of [LARBS](larbs.md) and minimalist recipe site https://based.cooking/ (recently he spoiled the site with some shitty web framework lol). +It's been stated in his comment section that he looks like the *default Runescape character* (UPDATE: now adopted a Charles Darwin image): he is bald, over 30 years old (probably born around 1990) and lives in a rural location in Florida (exact coordinates have been doxxed but legally can't be shared here, but let's just say the road around his house bears his name). He is a [Christian](christianity.md) (well, the [militant](military.md) [fascist](fascism.md) USA "Christian") he goes to the church etc. He has a podcast called *Not Related!* (https://notrelated.xyz/) in which he discusses things such as alternative historical theories -- actually a great podcast. He has a minimalist [90s](90s.md) style website https://lukesmith.xyz/ and his own [peertube](peertube.md) instance where his videos can be watched if one doesn't want to watch them on [YouTube](youtube.md). He is the author of [LARBS](larbs.md) and minimalist recipe site https://based.cooking/ (recently he spoiled the site with some shitty web framework lol). -He used to be kind of [based](based.md) in things like identifying harmfulness of [bloat](bloat.md) and [soyence](soyence.md), but also retarded to a very high level other times, for example he used to shill the [Brave](brave.md) browser pretty hard before he realized it was actually a huge scam all along xD He's openly a rightist fascist, [capitalist](capitalism.md), also probably a Nazi etc. In July 2022 **he started promoting some bloody [bloated](bloat.md) [modern](modern.md) [tranny](tranny_software.md) website generator that literally uses [JavaScript](js.md)**? WHAT THE FUCK. Like a good [capitalist](capitalism.md) (to which he self admitted in his podcast) he instantly turned 180 degrees against his own teaching as soon as he smelled the promotion money. Also he's shilling [crypto](crypto.md), he lets himself be paid for promoting extremely shitty webhosts in his web tutorials, he's anti-[porn](porn.md), anti-[games](game.md), anti-fun and leans towards medieval ideas such as "imagination and boredom being [harmful](harmful.md) because it makes you watch porn" etc. He went to huge [shit](shit.md), you wouldn't even believe. Though he even now still probably promotes [suckless](suckless.md) somehow, he isn't a programmer (shell scripting isn't programming) and sometimes doesn't seem to understand basic programming ideas (such as branchless programming), he's more of a typical [productivity](productivity_cult.md) retard. For Luke suckless is something more akin to a brand he associated himself with, something he plays a mascot for because it provided him with a bit of personal convenience, this guy doesn't even care about deeper values it seems. As of 2023 he seems to have become obsessed with adopting a new identity of a turd in a very cheap suit, he literally looks like the door-to-door scam seller lol. All in all, a huge letdown. Of course, Luke is a [type B fail](fail_ab.md). +Great many things Luke has rambled about turned out to be absolutely [based](based.md) and true, especially in his beginnings: he identified and revealed the harmfulness of [shit](shit.md) such as [bloat](bloat.md) and [soyence](soyence.md), and communicated it well to the common folk, but other times he's been highly retarded too, for example he used to shill the [Brave](brave.md) browser pretty hard before he realized it was actually a huge scam all along xD He's openly a rightist fascist, [capitalist](capitalism.md), also probably a Nazi etc. In July 2022 **he started promoting some bloody [bloated](bloat.md) [modern](modern.md) [tranny](tranny_software.md) website generator that literally uses [JavaScript](js.md)**? WHAT THE FUCK. Like a good [capitalist](capitalism.md) (to which he self admitted in his podcast) he instantly turned 180 degrees against his own teaching as soon as he smelled the promotion money. Also he's shilling [crypto](crypto.md), he lets himself be paid for promoting extremely shitty webhosts in his web tutorials, he's anti-[porn](porn.md), anti-[games](game.md), anti-fun and leans towards medieval ideas such as "imagination and boredom being [harmful](harmful.md) because it makes you watch porn" etc. He went to huge [shit](shit.md), you wouldn't even believe. Though he even now still probably promotes [suckless](suckless.md) somehow, he isn't a programmer (shell scripting isn't programming) and sometimes doesn't seem to understand basic programming ideas (such as branchless programming), he's more of a typical [productivity](productivity_cult.md) retard. For Luke suckless is something more akin to a brand he associated himself with, something he plays a mascot for because it provided him with a bit of personal convenience, this guy doesn't even care about deeper values it seems. As of 2023 he seems to have become obsessed with adopting a new identity of a turd in a very cheap suit, he literally looks like the door-to-door scam seller lol. All in all, a huge letdown. Of course, Luke is a [type B fail](fail_ab.md). -His videos consisted of normie-friendly tutorials on suckless software, rants, independent living, live-streams and podcasts. The typical Luke Smith video is him walking somewhere in the middle of a jungle talking about how retarded modern technology is and how everyone should move to the woods. +Go and watch a few of his videos if you will, but prefer the older ones. They mostly consisted of normie-friendly tutorials on suckless software, rants and ramblings around independent living and even live streams and podcasts. The typical Luke Smith video is him walking somewhere in the middle of a jungle talking about how retarded and bloated modern technology is and how everyone should move to the woods. -Luke studies [PhD](phd.md) in linguistics but is very critical of academia -- he "speaks" several languages (including [Latin](latin.md)), though many of them to a low level with bad American accent and he can't sometimes even speak English correctly (using phrases such as "the reason is because", "less people" etc.). He is a self described [right-winder](left_right.md), retarded [capitalist](capitalism.md) and talks in meme phrases which makes his "content" kind of enjoyable. He despises such things as [soydevry](soydev.md), [bloat](bloat.md), "consoomerism" (though he loves money he makes off of it) and [soyence](soyence.md). +Earlier in his videos Luke mentioned he studied [PhD](phd.md) in linguistics (maybe he already has it?) but was very critical of [academia](academia.md) -- he "speaks" several languages (including [Latin](latin.md)), though many of them to a low level with bad American accent and he can't sometimes even speak English correctly (using phrases such as "the reason is because", "less people" etc.). He is a self described [right-winder](left_right.md), retarded [capitalist](capitalism.md) and talks in meme phrases which makes his "content" kind of enjoyable. He despises such things as [soydevry](soydev.md), [bloat](bloat.md), "consoomerism" (though he loves money he makes off of it) and [soyence](soyence.md). -There seems to be a guy who could very well be Luke's brother, Jacob W Smith -- he has a website at https://jacobwsmith.xyz/index.html, he shares many Luke's opinions, writes about him, is a member of Christian webring, seems of similar age, also the name etcetc. +Rather [interesting](interesting.md) was also the discovery of a website of someone who might be Luke's brother, Jacob W Smith -- he has a website at https://jacobwsmith.xyz/index.html, he shares many Luke's opinions, writes about him, is a member of Christian webring, seems of similar age, also the name etcetc. + +{ Note to self: make sure the starting paragraph letters stay the same. ~drummyfish } So for realz, is he retarded or based? Both: when talking about his field of expertise -- linguistics/history -- he's quite good; when talking about technology, you have to do a lot of filtering and once he goes on about political opinions, you just cover your ears and go NANANANANANA. diff --git a/main.md b/main.md index 7c71610..d811c4e 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), [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://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://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), [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://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), [nixers.net](nixers.net), [https://oeis.org/OEIS_pics.html](https://oeis.org/OEIS_pics.html), [https://superpredator.zone](https://superpredator.zone), [http://www.mrob.com](http://www.mrob.com), [https://ncatlab.org](https://ncatlab.org), [https://leakjunky.site](https://leakjunky.site), [https://www.gutenberg.org](https://www.gutenberg.org), [https://skibidifarms.st](https://skibidifarms.st), [http://web1.0hosting.net](http://web1.0hosting.net), [https://www.onionfarms.com/](https://www.onionfarms.com/), [https://librivox.org](https://librivox.org), [https://hoaxes.org](https://hoaxes.org), [https://screamer.wiki](https://screamer.wiki), [https://www.chiark.greenend.org.uk/~sgtatham/puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles), [https://golem.ph.utexas.edu](https://golem.ph.utexas.edu), [https://libregamewiki.org](https://libregamewiki.org), [https://pantsuprophet.xyz](https://pantsuprophet.xyz), [https://duion.com](https://duion.com), [http://digdeeper.club](http://digdeeper.club), [https://www.answering-christianity.com](https://www.answering-christianity.com), [https://www.chimpout.com](https://www.chimpout.com), [http://floodgap.com](http://floodgap.com), [https://en.metapedia.org](https://en.metapedia.org), [https://www.vidlii.com](https://www.vidlii.com), [https://wikiindex.org](https://wikiindex.org), [https://saidit.net](https://saidit.net), [https://www.newworldencyclopedia.org](https://www.newworldencyclopedia.org), [http://progopedia.com](http://progopedia.com), [http://techrights.org](http://techrights.org), [https://landsofgames.com](https://landsofgames.com), [https://randomwaffle.gbs.fm](https://randomwaffle.gbs.fm), [http://www.macroevolution.net](http://www.macroevolution.net), [http://macrochan.org](http://macrochan.org), [https://blog.plover.com](https://blog.plover.com), [https://hub.darcs.net](https://hub.darcs.net), [https://repo.or.cz](https://repo.or.cz), [https://templeos.org](https://templeos.org), [http://cidoku.net](http://cidoku.net), [http://z00m.ws](http://z00m.ws), [https://www.gnu.org](https://www.gnu.org), [https://kiwifarms.st](https://kiwifarms.st), [https://circumlunar.space](https://circumlunar.space), [http://www.nigger.org](http://www.nigger.org), [https://forums.somethingawful.com](https://forums.somethingawful.com), [https://the-eye.eu/redarcs](https://the-eye.eu/redarcs), [https://notabug.org](https://notabug.org), [https://gopherproxy.meulie.net](https://gopherproxy.meulie.net), [http://www.reactionary.software](http://www.reactionary.software), [https://libre.video](https://libre.video), [https://wiki.soyjak.st](https://wiki.soyjak.st), [https://scumgames.neocities.org](https://scumgames.neocities.org), [https://preservetube.com](https://preservetube.com), [http://textfiles.com](http://textfiles.com), [https://esolangs.org](https://esolangs.org), [http://www.ioccc.org](http://www.ioccc.org), [https://solar.lowtechmagazine.com](https://solar.lowtechmagazine.com), [http://www.calresco.org](http://www.calresco.org), [http://edramatica.com](http://edramatica.com), [https://infogalactic.com](https://infogalactic.com), [https://www.icechewing.com](https://www.icechewing.com), [http://www.alexchiu.com](http://www.alexchiu.com), [http://www.nigrapedia.com](http://www.nigrapedia.com), [http://whale.to](http://whale.to), [https://www.rouming.cz](https://www.rouming.cz), [https://crazyshit.com/category/celebrities](https://crazyshit.com/category/celebrities), [http://wermenh.com/index.html](http://wermenh.com/index.html), [https://www.thevenusproject.com](https://www.thevenusproject.com), [http://www.somaligov.net](http://www.somaligov.net), [https://stocksnap.io](https://stocksnap.io), [http://www.bentoandstarchky.com/dec/rants.htm](http://www.bentoandstarchky.com/dec/rants.htm), [https://doxbin.org](https://doxbin.org), [https://frogesay.neocities.org (archived because went full furry)](https://web.archive.org/web/20240206194418/https://frogesay.neocities.org/), [https://www.debunkingskeptics.com](https://www.debunkingskeptics.com), [https://stallman.org](https://stallman.org), [http://keypad.org/bunnies](http://keypad.org/bunnies), [https://8kun.top](https://8kun.top), [https://annas-archive.org](https://annas-archive.org), [http://icculus.org/piga](http://icculus.org/piga), [https://4chan.org/an](https://4chan.org/an), [https://forum.freegamedev.net](https://forum.freegamedev.net), [https://fediverse.wiki](https://fediverse.wiki), [https://dolphinana.codeberg.page](https://dolphinana.codeberg.page), [http://www.niggermania.com](http://www.niggermania.com), [https://watchpeopledie.tv](https://watchpeopledie.tv), [https://flarerpg.org](https://flarerpg.org), [https://copyfree.org](https://copyfree.org), [https://wiki.bibanon.org](https://wiki.bibanon.org), [https://www.chessprogramming.org](https://www.chessprogramming.org), [https://neolurk.org](https://neolurk.org), [https://zerocontradictions.net/FAQs/race-FAQs](https://zerocontradictions.net/FAQs/race-FAQs), [https://projectoberon.net](https://projectoberon.net), [http://bitreich.org](http://bitreich.org), [https://tcrf.net](https://tcrf.net), [http://www.humanbiologicaldiversity.com](http://www.humanbiologicaldiversity.com), [https://incels.wiki](https://incels.wiki), [https://www.nearlyfreespeech.net](https://www.nearlyfreespeech.net), [https://softpanorama.org](https://softpanorama.org), [https://retrobrewcomputers.org/doku.php](https://retrobrewcomputers.org/doku.php), [http://humanknowledge.net](http://humanknowledge.net), [https://wrongthink.link](https://wrongthink.link), [http://tastyfish.w10.site](http://tastyfish.w10.site), [https://wiki.leftypol.org](https://wiki.leftypol.org), [https://mdfs.net](https://mdfs.net), [https://bienvenidoainternet.org](https://bienvenidoainternet.org), [https://leftychan.net](https://leftychan.net), [https://leftypol.org](https://leftypol.org), [https://postbox.garden](https://postbox.garden), [https://www.lord-enki.net](https://www.lord-enki.net), [https://r.sine.com](https://r.sine.com), [https://sanctioned-suicide.net](https://sanctioned-suicide.net), [http://www.tastyfish.cz](http://www.tastyfish.cz), [https://simplifier.neocities.org](https://simplifier.neocities.org), [http://datamath.org](http://datamath.org), [http://www.armory.com/~crisper/Scorch/index.html](http://www.armory.com/~crisper/Scorch/index.html), [https://www.lixgame.com](https://www.lixgame.com), [https://obsoletemedia.org](https://obsoletemedia.org), [http://www.doshaven.eu](http://www.doshaven.eu), [https://omick.net](https://omick.net), [http://countercomplex.blogspot.com](http://countercomplex.blogspot.com), [http://batheinmymilk.com](http://batheinmymilk.com), [http://users.rcn.com/hgomberg/boys.html](http://users.rcn.com/hgomberg/boys.html), [https://wiki.thingsandstuff.org](https://wiki.thingsandstuff.org), [https://tinfoil-hat.net](https://tinfoil-hat.net), [https://search.marginalia.nu](https://search.marginalia.nu), [http://wiby.me](http://wiby.me), [https://57296.neocities.org](https://57296.neocities.org), [https://coom.tech](https://coom.tech), [https://rightdao.com](https://rightdao.com), [https://www.alexandria.org](https://www.alexandria.org), [https://allthetropes.org](https://allthetropes.org), [http://dunfield.classiccmp.org](http://dunfield.classiccmp.org/), [https://nanochess.org](https://nanochess.org), [https://namelessrumia.heliohost.org/w/doku.php?id=start](https://namelessrumia.heliohost.org/w/doku.php?id=start), [http://afternoon.dynu.com](http://afternoon.dynu.com/), [https://searchlores.nickifaulk.com](https://searchlores.nickifaulk.com), [https://senseis.xmp.net](https://senseis.xmp.net/), [https://www.pgdp.net](https://www.pgdp.net), [https://planetmath.org](https://planetmath.org), [https://www.otrr.org](https://www.otrr.org), [https://texteditors.org](https://texteditors.org), [https://www.trade-free.org](https://www.trade-free.org), [https://www.spi-inc.org](https://www.spi-inc.org), [http://runtimeterror.com](http://runtimeterror.com), [https://wiki.archiveteam.org](https://wiki.archiveteam.org), [https://www.expedition-atlantis.com/](https://www.expedition-atlantis.com/), [https://piracy.vercel.app](https://piracy.vercel.app), [https://wiki.tuhs.org](https://wiki.tuhs.org), [http://stupidctf.ddns.net](http://stupidctf.ddns.net), [http://cyber.dabamos.de](http://cyber.dabamos.de), [https://eldritchdata.neocities.org](https://eldritchdata.neocities.org), [https://bellard.org](https://bellard.org), [https://gcide.gnu.org.ua](https://gcide.gnu.org.ua), [https://2bit.neocities.org](https://2bit.neocities.org), [https://planecrashinfo.com](https://planecrashinfo.com), [https://www.tvnoe.cz](https://www.tvnoe.cz), [http://choice.tiepi.it/~matteobin](http://choice.tiepi.it/~matteobin), [https://repomansez.xyz](https://repomansez.xyz), [https://www.appropedia.org](https://www.appropedia.org), [http://mathlair.allfunandgames.ca](http://mathlair.allfunandgames.ca), [https://classicdoom.com](https://classicdoom.com), [http://www.planix.com/~woods/ms-word.sucks.html](http://www.planix.com/~woods/ms-word.sucks.html), [http://cumallover.me](http://cumallover.me), [http://www.trashrobot.org](http://www.trashrobot.org), [http://horsefucker.org](http://horsefucker.org), [http://washedashore.com](http://washedashore.com), [https://colfax.site/books/trashrobot](https://colfax.site/books/trashrobot), [https://forum.agoraroad.com/index.php](https://forum.agoraroad.com/index.php), [https://archive.org/details/@autism_personified127](https://archive.org/details/@autism_personified127), [https://allchans.org](https://allchans.org), [https://doomwiki.org](https://doomwiki.org), [https://ludicrital.neocities.org](https://ludicrital.neocities.org), [https://codemadness.org](https://codemadness.org), [https://jacobsm.com](https://jacobsm.com), [https://lolcow.wiki (archived because of censorship)](https://web.archive.org/web/20190214020652/https://lolcow.wiki/wiki/Main_Page), [http://www.peacefulhippo.info](http://www.peacefulhippo.info), [http://ronja.twibright.com](http://ronja.twibright.com), [https://dwarffortresswiki.org](https://dwarffortresswiki.org), [https://chan.city](https://chan.city), [https://rmitz.org/bbsloser.html](https://rmitz.org/bbsloser.html), [https://posting.cool/index.php](https://posting.cool/index.php), [https://conspiracies.win](https://conspiracies.win), [http://www.twibright.com/hw.php](http://www.twibright.com/hw.php), [https://urinal.net](https://urinal.net), [http://im.snibgo.com](http://im.snibgo.com), [http://zimage.com/~ant](http://zimage.com/~ant), [https://www.fsfla.org/~lxoliva](https://www.fsfla.org/~lxoliva), [http://www.billwallchess.com](http://www.billwallchess.com), [http://fier.me](http://fier.me), [http://uglynigger.com](http://uglynigger.com), [https://kb.speeddemosarchive.com/SDA_Strategy_Wiki](https://kb.speeddemosarchive.com/SDA_Strategy_Wiki), [https://www.doomworld.com/pageofdoom/index.shtml](https://www.doomworld.com/pageofdoom/index.shtml), [https://commons.miraheze.org/](https://commons.miraheze.org/), [https://www.consentingjuveniles.com](https://www.consentingjuveniles.com), [https://lolcow.farm](https://lolcow.farm), [https://codecaveman.neocities.org/](https://codecaveman.neocities.org/), [https://jeffhuang.com/designed_to_last](https://jeffhuang.com/designed_to_last), [https://phillfromgchq.co.uk/?phill=1](https://phillfromgchq.co.uk/?phill=1), [https://commons.wikimannia.org](https://commons.wikimannia.org), [https://www.old-games.com](https://www.old-games.com), [https://wikilivres.org/](https://wikilivres.org/), [https://fstube.net](https://fstube.net), [https://wiki.yesmap.net](https://wiki.yesmap.net), [https://kassy.neocities.org](https://kassy.neocities.org), [http://frogfind.com](http://frogfind.com), [https://www.theoldrobots.com](https://www.theoldrobots.com), [https://lotanstomb.nfshost.com](https://lotanstomb.nfshost.com), [https://x64x2.neocities.org](https://x64x2.neocities.org), [https://www.boywiki.org](https://www.boywiki.org), [https://git.coom.tech/hermian/unixtopia_wiki](https://git.coom.tech/hermian/unixtopia_wiki), [https://maniacsvault.net/ecwolf/wiki/Main_Page](https://maniacsvault.net/ecwolf/wiki/Main_Page), [https://megaglest.org](https://megaglest.org), [http://oldavista.com/](http://oldavista.com/), [https://wikitia.com](https://wikitia.com), [https://youtuube.neocities.org/homepage](https://youtuube.neocities.org/homepage), [https://lyricaltokarev.com/home](https://lyricaltokarev.com/home), [https://psychonautwiki.org](https://psychonautwiki.org), [https://www.eskimo.com/~billb/billb.html](https://www.eskimo.com/~billb/billb.html), [https://t3x.org/index.html](https://t3x.org/index.html), [https://dukenukemis.cool](https://dukenukemis.cool), [https://blitz.serveo.net](https://blitz.serveo.net), [https://911research.wtc7.net](https://911research.wtc7.net), [https://educate-yourself.org](https://educate-yourself.org), [https://www.lightparty.com](https://www.lightparty.com) diff --git a/random_page.md b/random_page.md index 5c39283..eb50807 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1929 +2,1929 @@ Please kindly click random link. -[*](wiki_post_mortem.md) -[*](approximation.md) -[*](fantasy_console.md) -[*](raycasting.md) -[*](smart.md) -[*](bilinear.md) -[*](reddit.md) -[*](ethics.md) -[*](pseudoleft.md) -[*](microtheft.md) -[*](githopping.md) -[*](easier_done_than_said.md) -[*](recursion.md) -[*](hexadecimal.md) -[*](acronym.md) -[*](aliasing.md) -[*](proprietary_software.md) -[*](atheism.md) -[*](binary.md) -[*](normalization.md) -[*](gigachad.md) -[*](devuan.md) -[*](fourier_transform.md) -[*](systemd.md) -[*](explicit.md) -[*](cloudflare.md) -[*](xxiivv.md) -[*](floss.md) -[*](color.md) -[*](fight_culture.md) -[*](and.md) -[*](murderer.md) -[*](chinese.md) -[*](racetrack.md) -[*](copyleft.md) -[*](free_hardware.md) -[*](hacking.md) -[*](creative_commons.md) -[*](motivation.md) -[*](microsoft.md) -[*](microtransaction.md) -[*](openarena.md) -[*](avpd.md) -[*](censorship.md) -[*](military.md) -[*](pseudorandomness.md) -[*](bill_gates.md) -[*](gui.md) -[*](free.md) -[*](io.md) -[*](smol_internet.md) -[*](computational_complexity.md) -[*](data_structure.md) -[*](mental_outlaw.md) -[*](sdf.md) -[*](rapeware.md) -[*](copyright.md) -[*](mental_outlaw.md) -[*](mipmap.md) -[*](ted_kaczynski.md) -[*](collision.md) -[*](modern_software.md) -[*](dynamic_programming.md) -[*](trolling.md) -[*](hash.md) -[*](portal_rendering.md) -[*](goodbye_world.md) -[*](earth.md) -[*](racism.md) -[*](deep_blue.md) -[*](wiki_style.md) -[*](shitpress.md) -[*](greenwashing.md) -[*](charity_sex.md) -[*](lotr.md) -[*](security.md) -[*](network.md) -[*](public_domain.md) -[*](forth.md) -[*](cos.md) -[*](mud.md) -[*](lrs_wiki.md) -[*](mob_software.md) -[*](temple_os.md) -[*](black.md) -[*](gay.md) -[*](body_shaming.md) -[*](capitalism.md) -[*](recursion.md) -[*](public_domain.md) -[*](productivity_cult.md) -[*](selflessness.md) -[*](nd.md) -[*](often_confused.md) -[*](fantasy_console.md) -[*](internet.md) -[*](corporation.md) -[*](zuckerberg.md) -[*](football.md) -[*](yes_they_can.md) -[*](unix.md) -[*](doom.md) -[*](nationalism.md) -[*](tor.md) -[*](bootstrap.md) -[*](political_correctness.md) -[*](integral.md) -[*](life.md) -[*](wiki_rights.md) -[*](shortcut_thinking.md) -[*](cc.md) -[*](furry.md) -[*](project.md) -[*](pi.md) -[*](wikidata.md) -[*](debugging.md) -[*](usa.md) -[*](foss.md) -[*](interpolation.md) -[*](hash.md) -[*](hyperoperation.md) -[*](robot.md) -[*](intellectual_property.md) -[*](nigeria.md) -[*](coc.md) -[*](technology.md) -[*](popularization.md) -[*](langtons_ant.md) -[*](finished.md) -[*](hero.md) -[*](cyberbullying.md) -[*](steve_jobs.md) -[*](gnu.md) -[*](twos_complement.md) -[*](books.md) -[*](deferred_shading.md) -[*](mainstream.md) -[*](quine.md) -[*](geek.md) -[*](entrepreneur.md) -[*](money.md) -[*](calculus.md) -[*](collision_detection.md) -[*](wiki_style.md) -[*](english.md) -[*](reactionary_software.md) -[*](backpropagation.md) -[*](stereotype.md) -[*](turing_machine.md) -[*](autostereogram.md) -[*](fediverse.md) -[*](c_sharp.md) -[*](hero_culture.md) -[*](line.md) -[*](prime.md) -[*](cheating.md) -[*](linear_algebra.md) -[*](productivity_cult.md) -[*](competition.md) -[*](copyfree.md) -[*](cope.md) -[*](collision.md) -[*](entrepreneur.md) -[*](palette.md) -[*](mouse.md) -[*](less_retarded_society.md) -[*](data_hoarding.md) -[*](name_is_important.md) +[*](plusnigger.md) +[*](tangram.md) [*](antivirus_paradox.md) -[*](cc.md) -[*](right.md) -[*](microtheft.md) -[*](dramatica.md) -[*](nationalism.md) -[*](sjw.md) -[*](trump.md) -[*](npc.md) -[*](app.md) -[*](de_facto.md) -[*](infinity.md) -[*](assembly.md) -[*](explicit.md) -[*](nanogenmo.md) -[*](nc.md) -[*](sdf.md) -[*](liberalism.md) -[*](wirtual.md) -[*](piracy.md) -[*](backpropagation.md) -[*](sw.md) -[*](shit.md) -[*](java.md) -[*](racism.md) -[*](rgb565.md) -[*](rgb565.md) -[*](smallchesslib.md) -[*](lrs_dictionary.md) -[*](dog.md) -[*](fractal.md) -[*](niger.md) -[*](bullshit.md) -[*](os.md) -[*](egg_code.md) -[*](wow.md) -[*](faq.md) -[*](windows.md) -[*](axiom_of_choice.md) -[*](rsa.md) -[*](cc.md) -[*](antialiasing.md) -[*](dog.md) -[*](dick_reveal.md) -[*](lrs.md) -[*](paywall.md) -[*](ethics.md) -[*](neural_network.md) -[*](game_of_life.md) -[*](or.md) -[*](calculus.md) -[*](rights_culture.md) -[*](proof.md) -[*](easy_to_learn_hard_to_master.md) -[*](dog.md) -[*](dick_reveal.md) -[*](blender.md) -[*](good_enough.md) -[*](fourier_transform.md) -[*](fixed_point.md) -[*](progress.md) -[*](tinyphysicsengine.md) -[*](langtons_ant.md) -[*](black.md) -[*](xd.md) -[*](bytecode.md) -[*](friend_detox.md) -[*](lisp.md) -[*](zuckerberg.md) -[*](wiki_tldr.md) -[*](racetrack.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](thrembo.md) -[*](triangle.md) -[*](programming.md) -[*](bazaar.md) -[*](foss.md) -[*](dungeons_and_dragons.md) -[*](less_retarded_society.md) -[*](rust.md) -[*](rock.md) -[*](yes_they_can.md) -[*](attribution.md) -[*](unix_philosophy.md) -[*](tattoo.md) -[*](youtube.md) -[*](arch.md) -[*](unary.md) -[*](logic.md) -[*](cope.md) -[*](easy_to_learn_hard_to_master.md) -[*](security.md) -[*](xonotic.md) -[*](analytic_geometry.md) -[*](backpropagation.md) -[*](pd.md) -[*](freedom_distance.md) -[*](holy_war.md) -[*](raylib.md) -[*](future_proof.md) -[*](nigger.md) -[*](niggercoin.md) -[*](hexadecimal.md) -[*](4chan.md) -[*](ethics.md) -[*](education.md) -[*](collision_detection.md) -[*](emoticon.md) -[*](sorting.md) -[*](distrohopping.md) -[*](crime_against_economy.md) -[*](kiss.md) -[*](ascii_art.md) -[*](probability.md) -[*](exercises.md) -[*](docker.md) -[*](openarena.md) -[*](suckless.md) -[*](hack.md) -[*](information.md) -[*](project.md) -[*](reactionary_software.md) -[*](people.md) -[*](assertiveness.md) -[*](transistor.md) -[*](zoomer.md) -[*](discalimer.md) -[*](marble_race.md) -[*](ioccc.md) -[*](unretard.md) -[*](ted_kaczynski.md) -[*](graphics.md) -[*](or.md) -[*](apple.md) -[*](sqrt.md) -[*](smol_internet.md) -[*](javascript.md) -[*](nigeria.md) -[*](cope.md) -[*](unretard.md) -[*](logic.md) -[*](fqa.md) -[*](soyence.md) -[*](cracker.md) -[*](splinternet.md) -[*](democracy.md) -[*](brain_software.md) -[*](hard_to_learn_easy_to_master.md) +[*](boat.md) +[*](quantum_gate.md) +[*](maintenance.md) [*](compiler_bomb.md) -[*](rule110.md) -[*](shitword.md) +[*](cyberbullying.md) +[*](woman.md) +[*](app.md) [*](anorexia.md) -[*](free_body.md) -[*](nc.md) -[*](cancel_culture.md) -[*](nigger.md) -[*](minesweeper.md) -[*](lambda_calculus.md) -[*](holy_war.md) -[*](earth.md) -[*](xonotic.md) -[*](piracy.md) -[*](unix.md) -[*](computer.md) [*](jargon_file.md) -[*](tool_slave.md) -[*](programming_tips.md) -[*](3d_modeling.md) -[*](humidity.md) -[*](morality.md) -[*](mechanical.md) -[*](open_console.md) -[*](analog.md) -[*](hash.md) -[*](work.md) -[*](football.md) -[*](semiconductor.md) -[*](gender_studies.md) -[*](licar.md) -[*](90s.md) -[*](proof.md) -[*](permacomputing.md) -[*](public_domain_computer.md) -[*](soydev.md) -[*](complexity.md) -[*](ai.md) -[*](ssao.md) -[*](fantasy_console.md) -[*](real_number.md) -[*](wiki_tldr.md) -[*](used.md) -[*](float.md) -[*](lrs_dictionary.md) -[*](finished.md) -[*](cpp.md) -[*](lotr.md) -[*](boot.md) -[*](implicit.md) -[*](malware.md) -[*](qubit.md) -[*](history.md) -[*](free_will.md) -[*](langtons_ant.md) -[*](kek.md) -[*](island.md) -[*](privacy.md) -[*](cloud.md) -[*](corporation.md) -[*](great_trap.md) -[*](niggercoin.md) -[*](c_pitfalls.md) -[*](intellectual_property.md) -[*](hardware.md) -[*](capitalist_software.md) -[*](dinosaur.md) -[*](wirtual.md) -[*](twos_complement.md) -[*](entropy.md) -[*](aliasing.md) -[*](comun.md) -[*](sudoku.md) -[*](wiki_pages.md) -[*](intellectual_property.md) -[*](jedi_engine.md) -[*](interaction_net.md) -[*](approximation.md) -[*](bs.md) -[*](mental_outlaw.md) -[*](tree.md) -[*](cyber.md) -[*](entropy.md) -[*](hero.md) -[*](freedom.md) -[*](exercises.md) -[*](optimization.md) -[*](fear_culture.md) -[*](disease.md) -[*](art.md) -[*](suicide.md) -[*](suckless.md) -[*](egg_code.md) -[*](boot.md) -[*](democracy.md) -[*](wiki_post_mortem.md) -[*](black.md) -[*](anticompany.md) -[*](racetrack.md) -[*](coding.md) -[*](hack.md) -[*](programming_style.md) -[*](nigger.md) -[*](ashley_jones.md) -[*](pascal.md) -[*](ascii.md) -[*](security.md) -[*](docker.md) -[*](idiot_fallacy.md) -[*](hitler.md) -[*](jokes.md) -[*](randomness.md) -[*](go.md) -[*](firmware.md) -[*](geek.md) -[*](git.md) -[*](version_numbering.md) -[*](interesting.md) -[*](universe.md) -[*](see_through_clothes.md) -[*](cracking.md) -[*](procgen.md) -[*](io.md) -[*](asexuality.md) -[*](line.md) -[*](bazaar.md) -[*](brainfuck.md) -[*](left_right.md) -[*](viznut.md) -[*](double_buffering.md) -[*](nord_vpn.md) -[*](hero_culture.md) -[*](3d_rendering.md) -[*](speech_synthesis.md) -[*](rule110.md) -[*](asmr.md) -[*](mouse.md) -[*](ted_kaczynski.md) -[*](how_to.md) -[*](free_universe.md) -[*](coding.md) -[*](education.md) -[*](data_hoarding.md) -[*](flatland.md) -[*](one.md) -[*](left.md) -[*](proof.md) -[*](analog.md) -[*](permacomputing_wiki.md) -[*](demoscene.md) -[*](plusnigger.md) -[*](quake.md) -[*](how_to.md) -[*](demo.md) -[*](plusnigger.md) -[*](sjw.md) -[*](teletext.md) -[*](sanism.md) -[*](python.md) -[*](function.md) -[*](freemasonry.md) -[*](e.md) -[*](math.md) -[*](dependency.md) -[*](reactionary_software.md) -[*](c_tutorial.md) -[*](vector.md) -[*](oop.md) -[*](magic.md) -[*](tranny.md) -[*](lil.md) -[*](palette.md) -[*](copyright.md) -[*](asexuality.md) -[*](human_language.md) -[*](programming_style.md) -[*](geek.md) -[*](tranny_software.md) -[*](less_retarded_hardware.md) -[*](sin.md) -[*](splinternet.md) -[*](free_culture.md) -[*](cache.md) -[*](money.md) -[*](watchdog.md) -[*](proprietary_software.md) -[*](analog.md) -[*](lisp.md) -[*](pd.md) -[*](elon_musk.md) -[*](computer.md) -[*](trom.md) -[*](usa.md) -[*](rock.md) -[*](asexuality.md) -[*](based.md) -[*](just_werks.md) -[*](mainstream.md) -[*](byte.md) -[*](90s.md) -[*](nord_vpn.md) -[*](dynamic_programming.md) [*](wikidata.md) -[*](capitalism.md) -[*](data_structure.md) -[*](unix_philosophy.md) -[*](noise.md) -[*](viznut.md) -[*](reddit.md) -[*](fsf.md) [*](distance.md) -[*](downto.md) -[*](3d_model.md) -[*](downto.md) -[*](humorwashing.md) -[*](billboard.md) -[*](often_confused.md) -[*](programming.md) -[*](trusting_trust.md) -[*](fuck.md) -[*](tech.md) -[*](free_software.md) -[*](prime.md) -[*](chasm_the_rift.md) -[*](newspeak.md) -[*](float.md) -[*](normalization.md) -[*](terry_davis.md) -[*](open_console.md) -[*](implicit.md) -[*](unix_philosophy.md) -[*](anarch.md) -[*](trom.md) -[*](crow_funding.md) -[*](technology.md) -[*](xor.md) -[*](f2p.md) -[*](evil.md) -[*](shit.md) -[*](trolling.md) -[*](anarchism.md) -[*](100r.md) -[*](liberalism.md) -[*](assertiveness.md) -[*](apple.md) -[*](sorting.md) -[*](math.md) -[*](formal_language.md) -[*](assembly.md) -[*](trom.md) -[*](tranny_software.md) -[*](easier_done_than_said.md) -[*](microtheft.md) -[*](pride.md) -[*](resnicks_termite.md) -[*](wizard.md) -[*](compsci.md) -[*](90s.md) -[*](sigbovik.md) -[*](usenet.md) -[*](left_right.md) -[*](double_buffering.md) -[*](aliasing.md) -[*](small3dlib.md) -[*](mud.md) -[*](normalization.md) -[*](fascist.md) -[*](deep_blue.md) -[*](xxiivv.md) -[*](suicide.md) -[*](island.md) -[*](one.md) -[*](duskos.md) -[*](markov_chain.md) -[*](wolf3d.md) -[*](right.md) -[*](low_poly.md) -[*](minimalism.md) -[*](turing_machine.md) -[*](wavelet_transform.md) -[*](cracker.md) -[*](furry.md) -[*](wiki_authors.md) -[*](easier_done_than_said.md) -[*](integral.md) -[*](proprietary.md) -[*](library.md) -[*](english.md) -[*](c_tutorial.md) -[*](sorting.md) -[*](tool_slave.md) -[*](assembly.md) -[*](pascal.md) -[*](loc.md) -[*](firmware.md) -[*](chaos.md) -[*](whale.md) -[*](copyfree.md) -[*](java.md) -[*](algorithm.md) -[*](venus_project.md) -[*](kwangmyong.md) -[*](tensor_product.md) -[*](rapeware.md) -[*](bitreich.md) -[*](kiss.md) -[*](consumerism.md) -[*](fediverse.md) -[*](temple_os.md) -[*](foss.md) -[*](old.md) -[*](zen.md) -[*](free_culture.md) -[*](cracker.md) -[*](pseudo3d.md) -[*](jesus.md) -[*](mechanical.md) -[*](libre.md) -[*](fascist.md) -[*](culture.md) -[*](copyfree.md) -[*](social_inertia.md) -[*](hacker_culture.md) -[*](steganography.md) -[*](everyone_does_it.md) -[*](p_vs_np.md) -[*](dependency.md) -[*](magic.md) -[*](zero.md) -[*](game_engine.md) -[*](freemasonry.md) -[*](memory_management.md) -[*](mipmap.md) -[*](optimism.md) -[*](drummyfish.md) -[*](memory_management.md) -[*](frameless.md) -[*](antivirus_paradox.md) -[*](yes_they_can.md) -[*](proprietary_software.md) -[*](needed.md) -[*](troll.md) -[*](web.md) -[*](21st_century.md) -[*](42.md) -[*](shader.md) -[*](freemasonry.md) -[*](wizard.md) -[*](analytic_geometry.md) -[*](wiby.md) -[*](soydev.md) +[*](hacking.md) +[*](minigame.md) [*](cpp.md) -[*](hero_culture.md) -[*](robot.md) -[*](tpe.md) -[*](sub_rosa.md) -[*](pseudorandomness.md) -[*](version_numbering.md) -[*](pseudoleft.md) -[*](sw_rendering.md) -[*](p_vs_np.md) -[*](ubi.md) -[*](js.md) -[*](quake.md) -[*](bullshit.md) -[*](monad.md) -[*](smallchesslib.md) -[*](newspeak.md) -[*](fight.md) -[*](creative_commons.md) -[*](ai.md) -[*](number.md) -[*](cpu.md) -[*](audiophilia.md) -[*](derivative.md) -[*](soydev.md) -[*](licar.md) -[*](just_werks.md) -[*](kwangmyong.md) -[*](elo.md) -[*](xd.md) -[*](color.md) -[*](transistor.md) -[*](anal_bead.md) -[*](bilinear.md) -[*](love.md) -[*](bbs.md) -[*](shogi.md) -[*](work.md) -[*](portability.md) -[*](wolf3d.md) -[*](bytebeat.md) -[*](physics.md) -[*](living.md) -[*](cloud.md) -[*](trash_magic.md) -[*](deferred_shading.md) -[*](optimization.md) -[*](pedophilia.md) -[*](fight_culture.md) -[*](shit.md) -[*](greenwashing.md) -[*](gui.md) -[*](easy_to_learn_hard_to_master.md) -[*](malware.md) -[*](lil.md) -[*](justice.md) -[*](altruism.md) -[*](binary.md) -[*](autoupdate.md) -[*](smol_internet.md) -[*](jedi_engine.md) -[*](pseudominimalism.md) -[*](wolf3d.md) -[*](marxism.md) -[*](minimalism.md) -[*](game_design.md) -[*](gemini.md) -[*](distrohopping.md) -[*](interesting.md) -[*](shogi.md) -[*](see_through_clothes.md) -[*](free_will.md) -[*](prime.md) -[*](gigachad.md) -[*](political_correctness.md) -[*](rust.md) -[*](bs.md) -[*](sin.md) -[*](humorwashing.md) +[*](fun.md) [*](html.md) -[*](tom_scott.md) -[*](unretard.md) -[*](primitive_3d.md) -[*](blender.md) +[*](wavelet_transform.md) +[*](rust.md) +[*](freemasonry.md) +[*](sub_rosa.md) +[*](cache.md) +[*](conum.md) +[*](steganography.md) +[*](copyfree.md) [*](phd.md) -[*](proprietary.md) -[*](tor.md) -[*](wikiwikiweb.md) -[*](derivative.md) -[*](selflessness.md) -[*](usa.md) -[*](rgb565.md) -[*](license.md) -[*](game.md) +[*](zen.md) +[*](minimalism.md) +[*](discalimer.md) +[*](mouse.md) +[*](feminism.md) [*](gender_studies.md) -[*](universe.md) -[*](portability.md) -[*](free_speech.md) -[*](disease.md) -[*](modern.md) [*](avpd.md) [*](wiki_rights.md) -[*](gaywashing.md) -[*](steve_jobs.md) -[*](js.md) -[*](saf.md) -[*](quaternion.md) -[*](myths.md) -[*](pascal.md) -[*](digital.md) -[*](gopher.md) -[*](usenet.md) -[*](murderer.md) -[*](old.md) -[*](windows.md) -[*](moderation.md) -[*](egoism.md) -[*](small3dlib.md) -[*](lisp.md) -[*](compression.md) -[*](sub_rosa.md) -[*](woman.md) -[*](and.md) -[*](ui.md) -[*](future_proof.md) -[*](steganography.md) -[*](hyperoperation.md) -[*](dodleston.md) -[*](gaywashing.md) -[*](game.md) -[*](licar.md) -[*](free_body.md) -[*](chasm_the_rift.md) -[*](bloat.md) -[*](doom.md) -[*](fascism.md) -[*](acronym.md) -[*](loquendo.md) -[*](rationalwiki.md) -[*](nokia.md) -[*](no_knowledge_proof.md) -[*](suicide.md) -[*](assertiveness.md) -[*](fascism.md) -[*](ui.md) -[*](collapse.md) -[*](law.md) -[*](markov_chain.md) -[*](watchdog.md) -[*](fsf.md) -[*](pseudo3d.md) -[*](open_source.md) -[*](humidity.md) -[*](crypto.md) -[*](everyone_does_it.md) -[*](usenet.md) -[*](future_proof.md) -[*](software.md) -[*](pride.md) -[*](quaternion.md) -[*](iq.md) -[*](consumerism.md) -[*](sw_rendering.md) -[*](aaron_swartz.md) -[*](combinatorics.md) -[*](permacomputing.md) -[*](freedom_distance.md) -[*](finished.md) -[*](rights_culture.md) -[*](pride.md) -[*](rights_culture.md) -[*](unicode.md) -[*](golang.md) -[*](programming_tips.md) -[*](moderation.md) -[*](tangram.md) -[*](based.md) -[*](free_will.md) -[*](sanism.md) -[*](trusting_trust.md) -[*](frameless.md) -[*](free_software.md) -[*](ascii.md) -[*](vim.md) -[*](fail_ab.md) -[*](ram.md) -[*](gopher.md) -[*](gender_studies.md) -[*](jargon_file.md) -[*](woman.md) -[*](low_poly.md) -[*](charity_sex.md) -[*](c_tutorial.md) -[*](gui.md) -[*](determinism.md) -[*](data_hoarding.md) -[*](whale.md) -[*](optimism.md) -[*](wiki_tldr.md) -[*](free_hardware.md) -[*](operating_system.md) -[*](world_broadcast.md) -[*](gigachad.md) -[*](double_buffering.md) -[*](byte.md) -[*](social_inertia.md) -[*](fascism.md) -[*](settled.md) -[*](operating_system.md) -[*](gnu.md) -[*](graveyard.md) -[*](procgen.md) -[*](raycastlib.md) -[*](interplanetary_internet.md) -[*](minigame.md) -[*](bit_hack.md) -[*](zuckerberg.md) -[*](hacking.md) -[*](digital.md) -[*](transsexual.md) -[*](log.md) -[*](left_right.md) -[*](capitalism.md) -[*](game_of_life.md) -[*](probability.md) -[*](go.md) -[*](wow.md) -[*](microsoft.md) -[*](nd.md) -[*](main.md) -[*](settled.md) -[*](soyence.md) -[*](downto.md) -[*](programming_style.md) -[*](crime_against_economy.md) -[*](shader.md) -[*](3d_rendering.md) -[*](democracy.md) -[*](markov_chain.md) -[*](military.md) -[*](great_trap.md) -[*](lambda_calculus.md) -[*](demoscene.md) -[*](graveyard.md) -[*](loquendo.md) -[*](faq.md) -[*](aaron_swartz.md) -[*](linear_algebra.md) -[*](pseudominimalism.md) -[*](arduboy.md) -[*](often_misunderstood.md) -[*](name_is_important.md) -[*](logic_circuit.md) -[*](cpu.md) -[*](x86.md) -[*](youtube.md) -[*](boat.md) -[*](unicode.md) -[*](duke3d.md) -[*](competition.md) -[*](cc0.md) -[*](logic_gate.md) -[*](bit.md) -[*](evil.md) -[*](compression.md) -[*](cache.md) -[*](bit_hack.md) -[*](bill_gates.md) -[*](needed.md) -[*](exercises.md) -[*](cloudflare.md) -[*](freedom.md) -[*](copyright.md) -[*](css.md) -[*](zen.md) -[*](love.md) -[*](less_retarded_hardware.md) -[*](number.md) -[*](uxn.md) -[*](robot.md) -[*](implicit.md) -[*](netstalking.md) -[*](girl.md) -[*](global_discussion.md) -[*](lrs_dictionary.md) -[*](cos.md) -[*](goodbye_world.md) -[*](open_source.md) -[*](motivation.md) -[*](feminism.md) -[*](wikipedia.md) -[*](shitpress.md) -[*](nationalism.md) -[*](update_culture.md) -[*](analytic_geometry.md) -[*](saf.md) -[*](zero.md) -[*](sqrt.md) [*](anal_bead.md) -[*](compiler_bomb.md) -[*](friend_detox.md) -[*](web.md) -[*](charity_sex.md) -[*](cancer.md) -[*](explicit.md) -[*](thrembo.md) -[*](internet.md) -[*](jokes.md) -[*](license.md) -[*](plan9.md) -[*](optimism.md) -[*](sudoku.md) -[*](bitreich.md) -[*](turing_machine.md) -[*](atan.md) -[*](README.md) -[*](capitalist_singularity.md) -[*](100r.md) -[*](everyone_does_it.md) -[*](countercomplex.md) -[*](living.md) -[*](idiot_fallacy.md) -[*](encyclopedia.md) -[*](moderation.md) -[*](toxic.md) -[*](tor.md) -[*](elo.md) -[*](cyber.md) -[*](jargon_file.md) -[*](game_engine.md) -[*](line.md) -[*](julia_set.md) -[*](tech.md) -[*](billboard.md) -[*](entrepreneur.md) -[*](stereotype.md) -[*](library.md) -[*](bloat_monopoly.md) -[*](triangle.md) -[*](maintenance.md) -[*](czechia.md) -[*](beauty.md) -[*](name_is_important.md) -[*](nd.md) -[*](shitword.md) -[*](life.md) -[*](demo.md) -[*](shortcut_thinking.md) -[*](sqrt.md) -[*](people.md) -[*](www.md) -[*](island.md) -[*](anticompany.md) -[*](README.md) -[*](often_misunderstood.md) -[*](logic_gate.md) -[*](demo.md) -[*](slowly_boiling_the_frog.md) -[*](greenwashing.md) -[*](xd.md) -[*](coc.md) -[*](fuck.md) -[*](world_broadcast.md) -[*](jesus.md) -[*](tpe.md) -[*](lrs.md) -[*](harry_potter.md) -[*](cracking.md) -[*](trash_magic.md) -[*](lmao.md) -[*](ashley_jones.md) -[*](nc.md) -[*](smallchesslib.md) -[*](phd.md) -[*](function.md) -[*](communism.md) -[*](python.md) -[*](unary.md) -[*](bilinear.md) -[*](paradigm.md) -[*](splinternet.md) -[*](freedom_distance.md) -[*](nigeria.md) -[*](watchdog.md) -[*](cracking.md) -[*](cheating.md) -[*](myths.md) -[*](comun.md) -[*](proprietary.md) -[*](compsci.md) -[*](old.md) -[*](tangram.md) -[*](f2p.md) -[*](bill_gates.md) -[*](interesting.md) -[*](bloat_monopoly.md) -[*](patent.md) -[*](egoism.md) -[*](data_structure.md) -[*](abstraction.md) -[*](cancel_culture.md) -[*](lotr.md) -[*](nonogram.md) -[*](duskos.md) -[*](drummyfish.md) -[*](rationalwiki.md) -[*](algorithm.md) -[*](css.md) -[*](fight_culture.md) -[*](consumerism.md) -[*](fork.md) -[*](cache.md) -[*](software.md) -[*](people.md) -[*](palette.md) -[*](trash_magic.md) -[*](dramatica.md) -[*](library.md) -[*](tas.md) -[*](justice.md) -[*](devuan.md) -[*](vector.md) -[*](lgbt.md) -[*](debugging.md) -[*](qubit.md) -[*](music.md) -[*](loquendo.md) -[*](open_source.md) -[*](21st_century.md) -[*](left.md) -[*](bbs.md) -[*](jokes.md) -[*](unfuck.md) -[*](dodleston.md) -[*](wikiwikiweb.md) -[*](probability.md) -[*](entropy.md) -[*](free_culture.md) -[*](primitive_3d.md) -[*](dramatica.md) -[*](marketing.md) -[*](network.md) -[*](cyberbullying.md) -[*](log.md) -[*](gay.md) -[*](rgb332.md) -[*](collapse.md) -[*](arch.md) -[*](iq.md) -[*](lmao.md) -[*](used.md) -[*](communism.md) -[*](google.md) -[*](holy_war.md) -[*](combinatorics.md) -[*](fixed_point.md) -[*](dependency.md) -[*](vim.md) -[*](hw.md) -[*](bytebeat.md) -[*](graphics.md) -[*](evil.md) -[*](complexity.md) -[*](version_numbering.md) -[*](sw.md) -[*](comment.md) -[*](less_retarded_software.md) -[*](toxic.md) -[*](fun.md) -[*](linux.md) -[*](copyleft.md) -[*](see_through_clothes.md) -[*](minigame.md) -[*](wiki_post_mortem.md) -[*](chinese.md) -[*](used.md) -[*](computer.md) -[*](communism.md) -[*](fqa.md) -[*](youtube.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](free_speech.md) -[*](teletext.md) -[*](lgbt.md) -[*](football.md) -[*](malware.md) -[*](coc.md) -[*](atheism.md) -[*](how_to.md) -[*](chinese.md) -[*](compression.md) -[*](t3x.md) -[*](digital_signature.md) -[*](kiwifarms.md) -[*](pi.md) -[*](unicode.md) -[*](fear_culture.md) -[*](interaction_net.md) -[*](loc.md) -[*](unary.md) -[*](permacomputing_wiki.md) -[*](t3x.md) -[*](cyberbullying.md) -[*](quantum_gate.md) -[*](love.md) -[*](no_knowledge_proof.md) -[*](harry_potter.md) -[*](capitalist_singularity.md) -[*](ram.md) -[*](body_shaming.md) -[*](mandelbrot_set.md) -[*](javascript.md) -[*](linux.md) -[*](anarch.md) -[*](future.md) -[*](nanogenmo.md) -[*](elon_musk.md) -[*](windows.md) -[*](logic_circuit.md) -[*](quine.md) -[*](c.md) -[*](nonogram.md) -[*](3d_modeling.md) -[*](boot.md) -[*](good_enough.md) -[*](tinyphysicsengine.md) -[*](steve_jobs.md) -[*](harry_potter.md) -[*](kek.md) -[*](kids_these_days.md) -[*](pokitto.md) -[*](duke3d.md) -[*](public_domain_computer.md) -[*](21st_century.md) -[*](anpac.md) -[*](tensor_product.md) -[*](bs.md) -[*](human_language.md) -[*](public_domain_computer.md) -[*](duke3d.md) -[*](deep_blue.md) -[*](morality.md) -[*](nanogenmo.md) -[*](troll.md) -[*](jesus.md) -[*](marketing.md) -[*](technology.md) -[*](throwaway_script.md) -[*](libre.md) -[*](hack.md) -[*](os.md) -[*](computational_complexity.md) -[*](lil.md) -[*](modern.md) -[*](computational_complexity.md) -[*](privacy.md) -[*](recursion.md) -[*](sigbovik.md) -[*](frameless.md) -[*](distance.md) -[*](byte.md) -[*](needed.md) -[*](terry_davis.md) -[*](rust.md) -[*](tool_slave.md) -[*](hacker_culture.md) -[*](ancap.md) -[*](brainfuck.md) -[*](mob_software.md) -[*](bytecode.md) -[*](facebook.md) -[*](tas.md) -[*](build_engine.md) -[*](sin.md) -[*](rms.md) -[*](john_carmack.md) -[*](software.md) -[*](culture.md) -[*](wizard.md) -[*](monad.md) -[*](free_body.md) -[*](cpu.md) -[*](ashley_jones.md) -[*](color.md) -[*](wikipedia.md) -[*](books.md) -[*](discalimer.md) -[*](de_facto.md) -[*](shader.md) -[*](physics_engine.md) -[*](modern_software.md) -[*](autoupdate.md) -[*](paradigm.md) -[*](bazaar.md) -[*](encryption.md) -[*](4chan.md) -[*](lrs_wiki.md) -[*](cancer.md) -[*](wikipedia.md) -[*](raycastlib.md) -[*](oop.md) -[*](programming_tips.md) -[*](facebook.md) -[*](hardware.md) -[*](de_facto.md) -[*](logic.md) -[*](luke_smith.md) -[*](conum.md) -[*](social_inertia.md) -[*](luke_smith.md) -[*](luke_smith.md) -[*](ronja.md) -[*](wiki_authors.md) -[*](phd.md) -[*](femoid.md) -[*](digital.md) -[*](nokia.md) -[*](cloud.md) -[*](paradigm.md) -[*](audiophilia.md) -[*](forth.md) -[*](lambda_calculus.md) -[*](trump.md) -[*](netstalking.md) -[*](shogi.md) -[*](sdf.md) -[*](saf.md) -[*](libre.md) -[*](diogenes.md) -[*](vim.md) -[*](kwangmyong.md) -[*](approximation.md) -[*](toxic.md) -[*](hard_to_learn_easy_to_master.md) -[*](science.md) -[*](fizzbuzz.md) -[*](race.md) -[*](capitalist_singularity.md) -[*](cyber.md) -[*](netstalking.md) -[*](collapse.md) -[*](future.md) -[*](encyclopedia.md) -[*](fixed_point.md) -[*](infinity.md) -[*](pseudoleft.md) -[*](wiki_stats.md) -[*](encryption.md) -[*](fractal.md) -[*](permacomputing.md) -[*](logic_circuit.md) -[*](float.md) -[*](history.md) -[*](creative_commons.md) -[*](mandelbrot_set.md) -[*](backgammon.md) -[*](determinism.md) -[*](homelessness.md) -[*](c_sharp.md) -[*](raylib.md) -[*](fork.md) -[*](wikidata.md) -[*](distrohopping.md) -[*](mandelbrot_set.md) -[*](os.md) -[*](free_speech.md) -[*](quine.md) -[*](deferred_shading.md) -[*](rationalwiki.md) -[*](procgen.md) -[*](justice.md) -[*](maintenance.md) -[*](chess.md) -[*](universe.md) -[*](hexadecimal.md) -[*](gay.md) -[*](microtransaction.md) -[*](free_universe.md) -[*](derivative.md) -[*](crow_funding.md) -[*](smart.md) -[*](minesweeper.md) -[*](fork.md) -[*](reddit.md) -[*](quaternion.md) -[*](fun.md) -[*](patent.md) -[*](goodbye_world.md) -[*](fail_ab.md) -[*](macrofucker.md) -[*](john_carmack.md) -[*](science.md) -[*](cat_v.md) -[*](minigame.md) -[*](esolang.md) -[*](minesweeper.md) -[*](girl.md) -[*](tangram.md) -[*](ui.md) -[*](golang.md) -[*](marble_race.md) -[*](gaywashing.md) -[*](cancel_culture.md) -[*](kiwifarms.md) -[*](floss.md) -[*](chasm_the_rift.md) -[*](military.md) -[*](progress.md) -[*](copyleft.md) -[*](lrs_wiki.md) -[*](books.md) -[*](complexity.md) -[*](quantum_gate.md) -[*](ioccc.md) -[*](p_vs_np.md) -[*](update_culture.md) -[*](wiki_stats.md) -[*](free_universe.md) -[*](humidity.md) -[*](niger.md) -[*](wiby.md) -[*](tinyphysicsengine.md) -[*](gopher.md) -[*](adam_smith.md) -[*](dinosaur.md) -[*](music.md) -[*](conum.md) -[*](optimization.md) -[*](corporation.md) -[*](sw.md) -[*](faggot.md) -[*](antivirus_paradox.md) -[*](often_confused.md) [*](minimalism.md) -[*](and.md) -[*](kiss.md) -[*](free.md) -[*](mouse.md) -[*](less_retarded_software.md) -[*](esolang.md) -[*](raycasting.md) -[*](countercomplex.md) -[*](avpd.md) -[*](egoism.md) -[*](autostereogram.md) -[*](free_software.md) -[*](boat.md) -[*](dynamic_programming.md) -[*](culture.md) -[*](cat_v.md) -[*](fuck.md) -[*](gnu.md) -[*](femoid.md) -[*](neural_network.md) -[*](regex.md) -[*](nord_vpn.md) -[*](altruism.md) -[*](t3x.md) -[*](python.md) -[*](trump.md) -[*](unix.md) -[*](abstraction.md) -[*](x86.md) -[*](e.md) -[*](boat.md) -[*](pi.md) -[*](progress.md) -[*](flatland.md) -[*](raycasting.md) -[*](sanism.md) -[*](portal_rendering.md) -[*](throwaway_script.md) -[*](game.md) -[*](game_of_life.md) -[*](newspeak.md) -[*](abstraction.md) -[*](pokitto.md) -[*](dungeons_and_dragons.md) -[*](xxiivv.md) -[*](README.md) -[*](wirtual.md) -[*](game_design.md) -[*](wavelet_transform.md) -[*](feminism.md) -[*](doom.md) -[*](physics_engine.md) -[*](cloudflare.md) -[*](chaos.md) -[*](marble_race.md) -[*](xonotic.md) -[*](paywall.md) -[*](lmao.md) -[*](drummyfish.md) -[*](fight.md) -[*](body_shaming.md) -[*](42.md) -[*](woman.md) -[*](regex.md) -[*](comun.md) -[*](girl.md) -[*](autoupdate.md) -[*](semiconductor.md) -[*](wiki_rights.md) -[*](rms.md) -[*](gemini.md) -[*](marxism.md) -[*](shitpress.md) -[*](x86.md) -[*](modern_software.md) -[*](art.md) -[*](debugging.md) -[*](qubit.md) -[*](io.md) -[*](productivity_cult.md) -[*](fourier_transform.md) -[*](compsci.md) -[*](macrofucker.md) -[*](bytecode.md) -[*](rationalization.md) -[*](race.md) -[*](venus_project.md) -[*](fizzbuzz.md) -[*](hitler.md) -[*](c.md) -[*](systemd.md) -[*](ubi.md) -[*](systemd.md) -[*](pseudorandomness.md) -[*](openai.md) -[*](collision.md) -[*](graphics.md) -[*](encryption.md) -[*](cat_v.md) -[*](microtransaction.md) -[*](ai.md) -[*](real_number.md) -[*](network.md) -[*](framework.md) -[*](kids_these_days.md) -[*](chess.md) -[*](rms.md) -[*](atan.md) -[*](hw.md) -[*](murderer.md) -[*](hacker_culture.md) -[*](build_engine.md) -[*](soyence.md) -[*](tranny.md) -[*](diogenes.md) -[*](fear_culture.md) -[*](java.md) -[*](demoscene.md) -[*](anpac.md) -[*](patent.md) -[*](education.md) -[*](www.md) -[*](racism.md) -[*](faggot.md) -[*](comment.md) -[*](mipmap.md) -[*](backgammon.md) -[*](wiki_pages.md) -[*](music.md) -[*](global_discussion.md) -[*](c.md) -[*](hard_to_learn_easy_to_master.md) -[*](js.md) -[*](pseudo3d.md) -[*](homelessness.md) -[*](marketing.md) -[*](money.md) -[*](fight.md) -[*](wiki_pages.md) -[*](math.md) -[*](javascript.md) -[*](low_poly.md) -[*](ancap.md) -[*](fun.md) -[*](beauty.md) -[*](speech_synthesis.md) -[*](pd.md) -[*](duskos.md) -[*](interplanetary_internet.md) -[*](fediverse.md) -[*](life.md) -[*](no_knowledge_proof.md) -[*](shitword.md) -[*](ioccc.md) -[*](steganography.md) -[*](cos.md) -[*](dick_reveal.md) -[*](egg_code.md) -[*](dodleston.md) -[*](tom_scott.md) -[*](quake.md) -[*](fractal.md) -[*](sigbovik.md) -[*](framework.md) -[*](npc.md) -[*](coding.md) -[*](crow_funding.md) -[*](sub_rosa.md) -[*](binary.md) -[*](game_engine.md) -[*](capitalist_software.md) -[*](app.md) -[*](morality.md) +[*](rgb565.md) [*](tattoo.md) -[*](transsexual.md) -[*](license.md) -[*](programming.md) -[*](free.md) -[*](less_retarded_software.md) -[*](neural_network.md) -[*](project.md) -[*](compiler_bomb.md) -[*](crime_against_economy.md) -[*](world_broadcast.md) -[*](microsoft.md) -[*](tpe.md) -[*](hardware.md) -[*](randomness.md) -[*](science.md) -[*](mud.md) -[*](githopping.md) -[*](bytebeat.md) -[*](tranny.md) -[*](f2p.md) -[*](dungeons_and_dragons.md) -[*](billboard.md) -[*](modern.md) -[*](esolang.md) -[*](web.md) -[*](fail_ab.md) -[*](temple_os.md) -[*](pokitto.md) -[*](transistor.md) -[*](ronja.md) -[*](homelessness.md) -[*](google.md) -[*](git.md) -[*](jedi_engine.md) -[*](forth.md) -[*](collision_detection.md) -[*](adam_smith.md) -[*](cancer.md) -[*](popularization.md) -[*](freedom.md) -[*](speech_synthesis.md) -[*](rgb332.md) -[*](backgammon.md) -[*](whale.md) -[*](or.md) -[*](selflessness.md) -[*](free_hardware.md) -[*](human_language.md) -[*](wavelet_transform.md) -[*](tech.md) -[*](resnicks_termite.md) -[*](lgbt.md) -[*](small3dlib.md) -[*](gemini.md) -[*](physics_engine.md) -[*](libertarianism.md) -[*](idiot_fallacy.md) -[*](elo.md) -[*](css.md) -[*](sw_rendering.md) -[*](czechia.md) -[*](bit.md) -[*](countercomplex.md) -[*](law.md) -[*](openai.md) -[*](wiki_style.md) -[*](semiconductor.md) -[*](acronym.md) -[*](mainstream.md) -[*](facebook.md) -[*](work.md) -[*](arduboy.md) -[*](e.md) -[*](mob_software.md) -[*](teletext.md) -[*](history.md) -[*](bloat_monopoly.md) -[*](dinosaur.md) -[*](triangle.md) -[*](integral.md) -[*](attribution.md) -[*](programming_language.md) -[*](bootstrap.md) -[*](tranny_software.md) -[*](cheating.md) -[*](randomness.md) -[*](competition.md) -[*](libertarianism.md) -[*](marxism.md) -[*](encyclopedia.md) -[*](elon_musk.md) -[*](tree.md) -[*](go.md) -[*](sjw.md) -[*](troll.md) -[*](audiophilia.md) -[*](aaron_swartz.md) -[*](anal_bead.md) -[*](hw.md) -[*](brainfuck.md) -[*](tattoo.md) -[*](often_misunderstood.md) -[*](c_sharp.md) -[*](motivation.md) -[*](devuan.md) -[*](slowly_boiling_the_frog.md) -[*](popularization.md) -[*](xor.md) -[*](brain_software.md) -[*](antialiasing.md) -[*](rsa.md) -[*](wow.md) -[*](main.md) -[*](tree.md) -[*](venus_project.md) -[*](hero.md) -[*](determinism.md) -[*](monad.md) -[*](autostereogram.md) -[*](capitalist_software.md) -[*](anarchism.md) -[*](sudoku.md) -[*](libertarianism.md) -[*](emoticon.md) -[*](operating_system.md) -[*](cc0.md) -[*](myths.md) -[*](asmr.md) -[*](nokia.md) -[*](ascii_art.md) -[*](plan9.md) -[*](tom_scott.md) -[*](4chan.md) -[*](oop.md) -[*](atan.md) -[*](interpolation.md) -[*](html.md) -[*](privacy.md) [*](less_retarded_hardware.md) -[*](chess.md) -[*](openai.md) -[*](arch.md) -[*](wiki_stats.md) -[*](combinatorics.md) -[*](memory_management.md) -[*](faggot.md) -[*](axiom_of_choice.md) -[*](bbs.md) -[*](tas.md) -[*](pedophilia.md) -[*](comment.md) -[*](law.md) -[*](number.md) -[*](smart.md) -[*](iq.md) -[*](left.md) -[*](anorexia.md) -[*](anarchism.md) -[*](raycastlib.md) -[*](distance.md) -[*](political_correctness.md) -[*](brain_software.md) -[*](wikiwikiweb.md) -[*](mechanical.md) -[*](zoomer.md) -[*](information.md) -[*](race.md) -[*](function.md) -[*](3d_model.md) -[*](update_culture.md) -[*](stereotype.md) -[*](digital_signature.md) -[*](thrembo.md) -[*](physics.md) -[*](firmware.md) -[*](disease.md) -[*](ronja.md) -[*](loc.md) -[*](based.md) -[*](censorship.md) -[*](c_pitfalls.md) -[*](english.md) -[*](hyperoperation.md) -[*](great_trap.md) -[*](liberalism.md) -[*](bloat.md) -[*](graveyard.md) -[*](raylib.md) -[*](uxn.md) -[*](julia_set.md) -[*](git.md) -[*](attribution.md) -[*](unfuck.md) -[*](digital_signature.md) -[*](interplanetary_internet.md) -[*](faq.md) -[*](rule110.md) -[*](rationalization.md) -[*](zen.md) -[*](zero.md) -[*](42.md) -[*](less_retarded_society.md) -[*](magic.md) -[*](uxn.md) -[*](earth.md) -[*](just_werks.md) -[*](formal_language.md) -[*](blender.md) -[*](rgb332.md) -[*](fascist.md) -[*](linear_algebra.md) -[*](quantum_gate.md) -[*](fqa.md) -[*](plusnigger.md) -[*](framework.md) -[*](bitreich.md) -[*](beauty.md) -[*](terry_davis.md) -[*](czechia.md) -[*](art.md) -[*](hitler.md) -[*](real_number.md) -[*](bloat.md) -[*](ram.md) -[*](golang.md) -[*](main.md) -[*](furry.md) -[*](macrofucker.md) -[*](www.md) -[*](portal_rendering.md) -[*](rapeware.md) -[*](cc0.md) -[*](fizzbuzz.md) -[*](fsf.md) -[*](transsexual.md) -[*](rationalization.md) -[*](niger.md) -[*](3d_model.md) -[*](kek.md) -[*](githopping.md) -[*](google.md) -[*](trolling.md) -[*](throwaway_script.md) -[*](right.md) -[*](friend_detox.md) -[*](nonogram.md) -[*](regex.md) -[*](antialiasing.md) -[*](settled.md) -[*](crypto.md) -[*](ubi.md) -[*](algorithm.md) -[*](slowly_boiling_the_frog.md) -[*](rock.md) -[*](niggercoin.md) -[*](viznut.md) -[*](build_engine.md) -[*](c_pitfalls.md) -[*](programming_language.md) -[*](html.md) -[*](julia_set.md) -[*](openarena.md) -[*](apple.md) -[*](log.md) -[*](emoticon.md) -[*](interpolation.md) -[*](piracy.md) -[*](humorwashing.md) -[*](bootstrap.md) -[*](xor.md) -[*](one.md) -[*](adam_smith.md) -[*](interaction_net.md) -[*](ancap.md) -[*](anpac.md) -[*](pseudominimalism.md) -[*](formal_language.md) -[*](vector.md) -[*](suckless.md) -[*](bit.md) -[*](primitive_3d.md) -[*](kiwifarms.md) -[*](arduboy.md) -[*](living.md) -[*](anorexia.md) -[*](bit_hack.md) -[*](3d_rendering.md) -[*](physics.md) -[*](john_carmack.md) -[*](portability.md) -[*](ssao.md) -[*](game_design.md) -[*](bullshit.md) -[*](censorship.md) -[*](global_discussion.md) -[*](wiby.md) -[*](flatland.md) -[*](zoomer.md) -[*](resnicks_termite.md) -[*](twos_complement.md) -[*](future.md) -[*](chaos.md) -[*](ascii.md) -[*](plan9.md) -[*](logic_gate.md) -[*](cpp.md) -[*](open_console.md) -[*](calculus.md) -[*](altruism.md) -[*](feminism.md) -[*](trusting_trust.md) -[*](docker.md) -[*](linux.md) -[*](kids_these_days.md) -[*](noise.md) -[*](hacking.md) -[*](crypto.md) -[*](shortcut_thinking.md) -[*](information.md) -[*](paywall.md) -[*](conum.md) -[*](good_enough.md) -[*](wiki_authors.md) -[*](atheism.md) -[*](lrs.md) -[*](tensor_product.md) -[*](asmr.md) -[*](axiom_of_choice.md) -[*](femoid.md) -[*](permacomputing_wiki.md) -[*](programming_language.md) -[*](floss.md) -[*](rsa.md) -[*](100r.md) -[*](discalimer.md) -[*](anticompany.md) -[*](ascii_art.md) -[*](infinity.md) -[*](unfuck.md) -[*](anarch.md) -[*](public_domain.md) -[*](ssao.md) -[*](internet.md) -[*](maintenance.md) -[*](pedophilia.md) +[*](fourier_transform.md) +[*](universe.md) +[*](fractal.md) [*](app.md) -[*](noise.md) -[*](diogenes.md) -[*](3d_modeling.md) +[*](distrohopping.md) +[*](used.md) +[*](nord_vpn.md) +[*](luke_smith.md) +[*](consumerism.md) +[*](newspeak.md) +[*](fun.md) +[*](technology.md) +[*](asmr.md) +[*](ascii.md) +[*](xd.md) +[*](cloudflare.md) +[*](pride.md) +[*](float.md) +[*](see_through_clothes.md) +[*](ronja.md) +[*](left_right.md) +[*](graveyard.md) +[*](slowly_boiling_the_frog.md) +[*](systemd.md) +[*](copyfree.md) +[*](dog.md) +[*](deferred_shading.md) +[*](forth.md) +[*](music.md) +[*](bit_hack.md) +[*](humorwashing.md) +[*](chasm_the_rift.md) +[*](21st_century.md) +[*](iq.md) +[*](smol_internet.md) +[*](backgammon.md) +[*](future.md) +[*](xxiivv.md) +[*](shortcut_thinking.md) +[*](javascript.md) +[*](proprietary.md) +[*](lisp.md) +[*](exercises.md) +[*](coding.md) +[*](global_discussion.md) +[*](bootstrap.md) +[*](interpolation.md) +[*](rock.md) +[*](backpropagation.md) +[*](nord_vpn.md) +[*](double_buffering.md) +[*](intellectual_property.md) +[*](soyence.md) +[*](wow.md) +[*](democracy.md) +[*](collapse.md) +[*](interpolation.md) +[*](pi.md) +[*](qubit.md) +[*](dodleston.md) +[*](left_right.md) +[*](anpac.md) +[*](dinosaur.md) +[*](smol_internet.md) +[*](fail_ab.md) +[*](cpp.md) +[*](often_confused.md) +[*](political_correctness.md) +[*](technology.md) +[*](interesting.md) +[*](bootstrap.md) +[*](float.md) +[*](derivative.md) +[*](lmao.md) +[*](julia_set.md) +[*](os.md) +[*](shogi.md) +[*](liberalism.md) +[*](troll.md) +[*](humidity.md) +[*](fascism.md) +[*](algorithm.md) +[*](fascist.md) +[*](facebook.md) +[*](copyleft.md) +[*](cpu.md) +[*](debugging.md) +[*](ashley_jones.md) +[*](comment.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](niggercoin.md) +[*](mud.md) +[*](approximation.md) +[*](paywall.md) +[*](education.md) +[*](living.md) +[*](sorting.md) +[*](magic.md) +[*](shogi.md) +[*](quaternion.md) +[*](dependency.md) +[*](permacomputing.md) +[*](pseudo3d.md) +[*](bytebeat.md) +[*](quine.md) +[*](deep_blue.md) +[*](emoticon.md) +[*](speech_synthesis.md) +[*](autostereogram.md) +[*](anarchism.md) +[*](wikiwikiweb.md) +[*](cat_v.md) +[*](fizzbuzz.md) +[*](jesus.md) +[*](devuan.md) +[*](autoupdate.md) +[*](capitalism.md) +[*](mob_software.md) +[*](dramatica.md) +[*](jokes.md) +[*](bill_gates.md) +[*](programming_style.md) +[*](explicit.md) +[*](cope.md) +[*](pride.md) +[*](demoscene.md) +[*](loquendo.md) +[*](creative_commons.md) +[*](kek.md) +[*](paradigm.md) +[*](wow.md) +[*](rationalization.md) +[*](unix_philosophy.md) +[*](nanogenmo.md) +[*](ai.md) +[*](optimism.md) +[*](permacomputing_wiki.md) +[*](history.md) +[*](langtons_ant.md) +[*](slowly_boiling_the_frog.md) +[*](wiki_authors.md) +[*](duke3d.md) +[*](proof.md) +[*](bit.md) +[*](facebook.md) +[*](history.md) +[*](fourier_transform.md) +[*](antialiasing.md) +[*](law.md) +[*](doom.md) +[*](unfuck.md) +[*](cloudflare.md) +[*](rights_culture.md) +[*](optimism.md) +[*](splinternet.md) +[*](terry_davis.md) +[*](hardware.md) +[*](or.md) +[*](determinism.md) +[*](kek.md) +[*](free_body.md) +[*](linux.md) +[*](drummyfish.md) +[*](duskos.md) +[*](kids_these_days.md) +[*](golang.md) +[*](piracy.md) +[*](crypto.md) +[*](library.md) +[*](function.md) +[*](pseudominimalism.md) +[*](censorship.md) +[*](freemasonry.md) +[*](rule110.md) +[*](patent.md) +[*](bloat_monopoly.md) +[*](public_domain_computer.md) +[*](newspeak.md) +[*](hash.md) +[*](gnu.md) +[*](infinity.md) +[*](ethics.md) +[*](shitword.md) +[*](pedophilia.md) +[*](programming_tips.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](duke3d.md) +[*](docker.md) +[*](collapse.md) +[*](deep_blue.md) +[*](sin.md) +[*](harry_potter.md) +[*](twos_complement.md) +[*](ronja.md) +[*](malware.md) +[*](cheating.md) +[*](hero_culture.md) +[*](trump.md) +[*](js.md) +[*](anarchism.md) +[*](toxic.md) +[*](software.md) +[*](terry_davis.md) +[*](evil.md) +[*](fight_culture.md) +[*](law.md) +[*](game.md) +[*](living.md) +[*](gopher.md) +[*](3d_model.md) +[*](bloat.md) +[*](entrepreneur.md) +[*](html.md) +[*](throwaway_script.md) +[*](sjw.md) +[*](asmr.md) +[*](reactionary_software.md) +[*](microtransaction.md) +[*](fascist.md) +[*](newspeak.md) +[*](charity_sex.md) +[*](programming_style.md) +[*](computer.md) +[*](determinism.md) +[*](autostereogram.md) +[*](unary.md) +[*](twos_complement.md) +[*](exercises.md) +[*](often_misunderstood.md) +[*](copyright.md) +[*](cc0.md) +[*](logic_circuit.md) +[*](wiki_pages.md) +[*](interpolation.md) +[*](mouse.md) +[*](hero.md) +[*](terry_davis.md) +[*](windows.md) +[*](nigeria.md) +[*](zuckerberg.md) +[*](axiom_of_choice.md) +[*](free_universe.md) +[*](t3x.md) +[*](trolling.md) +[*](sudoku.md) +[*](based.md) +[*](binary.md) +[*](microsoft.md) +[*](cloudflare.md) +[*](plusnigger.md) +[*](communism.md) +[*](settled.md) +[*](selflessness.md) +[*](less_retarded_society.md) +[*](integral.md) +[*](rule110.md) +[*](saf.md) +[*](regex.md) +[*](cancel_culture.md) +[*](regex.md) +[*](science.md) +[*](resnicks_termite.md) +[*](physics_engine.md) +[*](bill_gates.md) +[*](free_speech.md) +[*](woman.md) +[*](de_facto.md) +[*](collision.md) +[*](popularization.md) +[*](beauty.md) +[*](binary.md) +[*](less_retarded_hardware.md) +[*](throwaway_script.md) +[*](gui.md) +[*](openarena.md) [*](npc.md) +[*](minesweeper.md) +[*](binary.md) +[*](geek.md) +[*](de_facto.md) +[*](beauty.md) +[*](fight.md) +[*](and.md) +[*](io.md) +[*](www.md) +[*](computational_complexity.md) +[*](c_pitfalls.md) +[*](compression.md) +[*](css.md) +[*](bitreich.md) +[*](resnicks_termite.md) +[*](c_tutorial.md) +[*](modern_software.md) +[*](smart.md) +[*](docker.md) +[*](popularization.md) +[*](collision.md) +[*](speech_synthesis.md) +[*](dodleston.md) +[*](fuck.md) +[*](hyperoperation.md) +[*](t3x.md) +[*](work.md) +[*](license.md) +[*](bill_gates.md) +[*](pseudo3d.md) +[*](pascal.md) +[*](wiki_post_mortem.md) +[*](proprietary.md) +[*](apple.md) +[*](fantasy_console.md) +[*](rationalwiki.md) +[*](mainstream.md) +[*](hyperoperation.md) +[*](exercises.md) +[*](entrepreneur.md) +[*](analytic_geometry.md) +[*](communism.md) +[*](build_engine.md) +[*](42.md) +[*](books.md) +[*](myths.md) +[*](jesus.md) +[*](open_console.md) +[*](rationalization.md) +[*](temple_os.md) +[*](free_speech.md) +[*](kids_these_days.md) +[*](fediverse.md) +[*](turing_machine.md) +[*](countercomplex.md) +[*](ram.md) +[*](microtheft.md) +[*](downto.md) +[*](old.md) +[*](hexadecimal.md) +[*](patent.md) +[*](progress.md) +[*](or.md) +[*](rsa.md) +[*](macrofucker.md) +[*](anal_bead.md) +[*](internet.md) +[*](unretard.md) +[*](gnu.md) +[*](assertiveness.md) +[*](bbs.md) +[*](randomness.md) +[*](google.md) +[*](hero.md) +[*](woman.md) +[*](memory_management.md) +[*](body_shaming.md) +[*](future.md) +[*](lrs_dictionary.md) +[*](oop.md) +[*](fear_culture.md) +[*](lrs_wiki.md) +[*](fun.md) +[*](cheating.md) +[*](cracking.md) +[*](analytic_geometry.md) +[*](sanism.md) +[*](less_retarded_hardware.md) +[*](boot.md) +[*](everyone_does_it.md) +[*](and.md) +[*](and.md) +[*](censorship.md) +[*](wiki_stats.md) +[*](uxn.md) +[*](billboard.md) +[*](work.md) +[*](living.md) +[*](evil.md) +[*](integral.md) +[*](copyleft.md) +[*](femoid.md) +[*](e.md) +[*](cyber.md) +[*](murderer.md) +[*](capitalist_software.md) +[*](political_correctness.md) +[*](ascii.md) +[*](computational_complexity.md) +[*](gigachad.md) +[*](brain_software.md) +[*](chess.md) +[*](youtube.md) +[*](sigbovik.md) +[*](geek.md) +[*](calculus.md) +[*](zoomer.md) +[*](3d_model.md) +[*](physics.md) +[*](cc.md) +[*](faq.md) +[*](distrohopping.md) +[*](iq.md) +[*](programming_tips.md) +[*](operating_system.md) +[*](hack.md) +[*](creative_commons.md) +[*](pseudorandomness.md) +[*](golang.md) +[*](hacking.md) +[*](freedom.md) +[*](hardware.md) +[*](mental_outlaw.md) +[*](fsf.md) +[*](backgammon.md) +[*](homelessness.md) +[*](rsa.md) +[*](shitword.md) +[*](work.md) +[*](README.md) +[*](gaywashing.md) +[*](mechanical.md) +[*](lotr.md) +[*](consumerism.md) +[*](nd.md) +[*](chaos.md) +[*](linear_algebra.md) +[*](mob_software.md) +[*](usenet.md) +[*](whale.md) +[*](island.md) +[*](npc.md) +[*](css.md) +[*](boot.md) +[*](tom_scott.md) +[*](ram.md) +[*](privacy.md) +[*](lisp.md) +[*](programming.md) +[*](rgb332.md) +[*](arduboy.md) +[*](trash_magic.md) +[*](graveyard.md) +[*](debugging.md) +[*](progress.md) +[*](gaywashing.md) +[*](sdf.md) +[*](game_of_life.md) +[*](tensor_product.md) +[*](egoism.md) +[*](czechia.md) +[*](needed.md) +[*](harry_potter.md) +[*](black.md) +[*](unix_philosophy.md) +[*](ted_kaczynski.md) +[*](project.md) +[*](hero.md) +[*](apple.md) +[*](portal_rendering.md) +[*](downto.md) +[*](how_to.md) +[*](wirtual.md) +[*](analog.md) +[*](gemini.md) +[*](open_console.md) +[*](ioccc.md) +[*](pride.md) +[*](google.md) +[*](log.md) +[*](firmware.md) +[*](less_retarded_software.md) +[*](palette.md) +[*](3d_rendering.md) +[*](wizard.md) +[*](money.md) +[*](smart.md) +[*](transsexual.md) +[*](tom_scott.md) +[*](internet.md) +[*](tree.md) +[*](quaternion.md) +[*](paradigm.md) +[*](open_console.md) +[*](nonogram.md) +[*](optimization.md) +[*](fizzbuzz.md) +[*](explicit.md) +[*](doom.md) +[*](raycastlib.md) +[*](dynamic_programming.md) +[*](c_tutorial.md) +[*](steganography.md) +[*](football.md) +[*](digital.md) +[*](ancap.md) +[*](disease.md) +[*](marxism.md) +[*](hw.md) +[*](fsf.md) +[*](cpu.md) +[*](egg_code.md) +[*](human_language.md) +[*](cloud.md) +[*](3d_modeling.md) +[*](programming.md) +[*](www.md) +[*](openarena.md) +[*](world_broadcast.md) +[*](logic_gate.md) +[*](race.md) +[*](raycastlib.md) +[*](nokia.md) +[*](bitreich.md) +[*](loc.md) +[*](consumerism.md) +[*](licar.md) +[*](easy_to_learn_hard_to_master.md) +[*](yes_they_can.md) +[*](xd.md) +[*](shortcut_thinking.md) +[*](free_body.md) +[*](3d_modeling.md) +[*](asmr.md) +[*](rms.md) +[*](abstraction.md) +[*](shader.md) +[*](low_poly.md) +[*](brainfuck.md) +[*](determinism.md) +[*](wiki_stats.md) +[*](security.md) +[*](palette.md) +[*](brainfuck.md) +[*](bytebeat.md) +[*](troll.md) +[*](axiom_of_choice.md) +[*](science.md) +[*](quaternion.md) +[*](entropy.md) +[*](function.md) +[*](framework.md) +[*](arch.md) +[*](fear_culture.md) +[*](music.md) +[*](licar.md) +[*](public_domain_computer.md) +[*](selflessness.md) +[*](coc.md) +[*](neural_network.md) +[*](entropy.md) +[*](rationalization.md) +[*](sanism.md) +[*](democracy.md) +[*](english.md) +[*](wikidata.md) +[*](mandelbrot_set.md) +[*](marble_race.md) +[*](lotr.md) +[*](faggot.md) +[*](procgen.md) +[*](monad.md) +[*](pd.md) +[*](bytecode.md) +[*](portability.md) +[*](tranny_software.md) +[*](game_engine.md) +[*](cracker.md) +[*](attribution.md) +[*](markov_chain.md) +[*](free_software.md) +[*](trom.md) +[*](duke3d.md) +[*](c_pitfalls.md) +[*](lambda_calculus.md) +[*](niggercoin.md) +[*](billboard.md) +[*](asexuality.md) +[*](wiby.md) +[*](wiby.md) +[*](npc.md) +[*](plan9.md) +[*](fuck.md) +[*](fractal.md) +[*](adam_smith.md) +[*](devuan.md) +[*](thrembo.md) +[*](competition.md) +[*](cpu.md) +[*](love.md) +[*](ubi.md) +[*](hacking.md) +[*](boat.md) +[*](raylib.md) +[*](sudoku.md) +[*](trusting_trust.md) +[*](usenet.md) +[*](physics.md) +[*](git.md) +[*](build_engine.md) +[*](build_engine.md) +[*](humorwashing.md) +[*](atheism.md) +[*](intellectual_property.md) +[*](forth.md) +[*](ted_kaczynski.md) +[*](old.md) +[*](anarchism.md) +[*](cope.md) +[*](tranny_software.md) +[*](good_enough.md) +[*](backpropagation.md) +[*](rapeware.md) +[*](4chan.md) +[*](less_retarded_software.md) +[*](digital_signature.md) +[*](corporation.md) +[*](jesus.md) +[*](transsexual.md) +[*](nc.md) +[*](dungeons_and_dragons.md) +[*](lrs.md) +[*](julia_set.md) +[*](often_misunderstood.md) +[*](capitalist_singularity.md) +[*](shader.md) +[*](wiki_stats.md) +[*](soydev.md) +[*](moderation.md) +[*](trusting_trust.md) +[*](kiwifarms.md) +[*](tensor_product.md) +[*](free_hardware.md) +[*](linux.md) +[*](hash.md) +[*](data_structure.md) +[*](primitive_3d.md) +[*](see_through_clothes.md) +[*](ssao.md) +[*](entrepreneur.md) +[*](toxic.md) +[*](law.md) +[*](jargon_file.md) +[*](girl.md) +[*](ascii.md) +[*](finished.md) +[*](90s.md) +[*](nigger.md) +[*](copyfree.md) +[*](fuck.md) +[*](wizard.md) +[*](lrs_dictionary.md) +[*](youtube.md) +[*](firmware.md) +[*](paywall.md) +[*](distance.md) +[*](suckless.md) +[*](uxn.md) +[*](speech_synthesis.md) +[*](hacker_culture.md) +[*](wiki_rights.md) +[*](used.md) +[*](people.md) +[*](probability.md) +[*](distrohopping.md) +[*](english.md) +[*](openarena.md) +[*](zero.md) +[*](tensor_product.md) +[*](troll.md) +[*](free_will.md) +[*](lgbt.md) +[*](wikidata.md) +[*](freedom_distance.md) +[*](cpp.md) +[*](unicode.md) +[*](intellectual_property.md) +[*](right.md) +[*](unretard.md) +[*](future_proof.md) +[*](just_werks.md) +[*](bilinear.md) +[*](fediverse.md) +[*](fail_ab.md) +[*](diogenes.md) +[*](cos.md) +[*](nigeria.md) +[*](netstalking.md) +[*](lgbt.md) +[*](xxiivv.md) +[*](lmao.md) +[*](mandelbrot_set.md) +[*](modern_software.md) +[*](cos.md) +[*](windows.md) +[*](viznut.md) +[*](markov_chain.md) +[*](football.md) +[*](antialiasing.md) +[*](xor.md) +[*](tor.md) +[*](deferred_shading.md) +[*](watchdog.md) +[*](just_werks.md) +[*](gopher.md) +[*](unary.md) +[*](demo.md) +[*](quantum_gate.md) +[*](tom_scott.md) +[*](number.md) +[*](kiwifarms.md) +[*](plan9.md) +[*](bloat_monopoly.md) +[*](ashley_jones.md) +[*](libre.md) +[*](left.md) +[*](wirtual.md) +[*](lambda_calculus.md) +[*](paradigm.md) +[*](ancap.md) +[*](faggot.md) +[*](xonotic.md) +[*](approximation.md) +[*](libertarianism.md) +[*](copyright.md) +[*](chess.md) +[*](java.md) +[*](egg_code.md) +[*](harry_potter.md) +[*](furry.md) +[*](malware.md) +[*](paywall.md) +[*](dependency.md) +[*](linear_algebra.md) +[*](brain_software.md) +[*](ronja.md) +[*](digital_signature.md) +[*](chaos.md) +[*](tinyphysicsengine.md) +[*](trump.md) +[*](complexity.md) +[*](trom.md) +[*](hacker_culture.md) +[*](bbs.md) +[*](smart.md) +[*](bit.md) +[*](regex.md) +[*](rgb565.md) +[*](physics_engine.md) +[*](elon_musk.md) +[*](python.md) +[*](e.md) +[*](temple_os.md) +[*](motivation.md) +[*](encyclopedia.md) +[*](css.md) +[*](fixed_point.md) +[*](black.md) +[*](shogi.md) +[*](trusting_trust.md) +[*](3d_rendering.md) +[*](rock.md) +[*](usa.md) +[*](smallchesslib.md) +[*](update_culture.md) +[*](atheism.md) +[*](crime_against_economy.md) +[*](everyone_does_it.md) +[*](permacomputing_wiki.md) +[*](humorwashing.md) +[*](public_domain.md) +[*](splinternet.md) +[*](docker.md) +[*](web.md) +[*](coc.md) +[*](implicit.md) +[*](p_vs_np.md) +[*](altruism.md) +[*](optimism.md) +[*](microtheft.md) +[*](zero.md) +[*](zuckerberg.md) +[*](neural_network.md) +[*](graveyard.md) +[*](countercomplex.md) +[*](cat_v.md) +[*](kiwifarms.md) +[*](raycasting.md) +[*](discalimer.md) +[*](frameless.md) +[*](asexuality.md) +[*](assertiveness.md) +[*](tor.md) +[*](tranny.md) +[*](anorexia.md) +[*](memory_management.md) +[*](vector.md) +[*](money.md) +[*](nc.md) +[*](derivative.md) +[*](bit.md) +[*](graphics.md) +[*](free_will.md) +[*](how_to.md) +[*](monad.md) +[*](art.md) +[*](semiconductor.md) +[*](sin.md) +[*](c.md) +[*](everyone_does_it.md) +[*](free_software.md) +[*](game_of_life.md) +[*](anarch.md) +[*](czechia.md) +[*](normalization.md) +[*](hw.md) +[*](html.md) +[*](anorexia.md) +[*](line.md) +[*](freedom_distance.md) +[*](human_language.md) +[*](feminism.md) +[*](fail_ab.md) +[*](hitler.md) +[*](macrofucker.md) +[*](sw.md) +[*](privacy.md) +[*](programming_style.md) +[*](libertarianism.md) +[*](logic_gate.md) +[*](love.md) +[*](atheism.md) +[*](game_engine.md) +[*](ssao.md) +[*](rgb332.md) +[*](langtons_ant.md) +[*](vim.md) +[*](life.md) +[*](kek.md) +[*](bs.md) +[*](c_sharp.md) +[*](turing_machine.md) +[*](jedi_engine.md) +[*](dynamic_programming.md) +[*](patent.md) +[*](rights_culture.md) +[*](recursion.md) +[*](c_tutorial.md) +[*](used.md) +[*](interplanetary_internet.md) +[*](ai.md) +[*](greenwashing.md) +[*](mud.md) +[*](free_culture.md) +[*](billboard.md) +[*](fediverse.md) +[*](countercomplex.md) +[*](bytebeat.md) +[*](proprietary.md) +[*](abstraction.md) +[*](normalization.md) +[*](quine.md) +[*](rust.md) +[*](pi.md) +[*](yes_they_can.md) +[*](duskos.md) +[*](wiki_tldr.md) +[*](competition.md) +[*](fascist.md) +[*](just_werks.md) +[*](egoism.md) +[*](floss.md) +[*](social_inertia.md) +[*](web.md) +[*](main.md) +[*](czechia.md) +[*](ui.md) +[*](java.md) +[*](lil.md) +[*](pokitto.md) +[*](saf.md) +[*](drummyfish.md) +[*](unicode.md) +[*](lambda_calculus.md) +[*](justice.md) +[*](f2p.md) +[*](framework.md) +[*](randomness.md) +[*](information.md) +[*](interesting.md) +[*](trom.md) +[*](fantasy_console.md) +[*](attribution.md) +[*](niger.md) +[*](infinity.md) +[*](jargon_file.md) +[*](microsoft.md) +[*](assembly.md) +[*](derivative.md) +[*](rsa.md) +[*](ascii_art.md) +[*](tattoo.md) +[*](art.md) +[*](loquendo.md) +[*](tranny.md) +[*](mob_software.md) +[*](faq.md) +[*](c.md) +[*](python.md) +[*](communism.md) +[*](money.md) +[*](bullshit.md) +[*](randomness.md) +[*](dinosaur.md) +[*](marble_race.md) +[*](left.md) +[*](art.md) +[*](myths.md) +[*](murderer.md) +[*](neural_network.md) +[*](rock.md) +[*](english.md) +[*](idiot_fallacy.md) +[*](network.md) +[*](name_is_important.md) +[*](memory_management.md) +[*](dungeons_and_dragons.md) +[*](wiki_style.md) +[*](soyence.md) +[*](rapeware.md) +[*](smallchesslib.md) +[*](infinity.md) +[*](gemini.md) +[*](one.md) +[*](wolf3d.md) +[*](capitalist_singularity.md) +[*](holy_war.md) +[*](cope.md) +[*](kids_these_days.md) +[*](malware.md) +[*](old.md) +[*](assertiveness.md) +[*](downto.md) +[*](right.md) +[*](public_domain_computer.md) +[*](fight_culture.md) +[*](reddit.md) +[*](zen.md) +[*](21st_century.md) +[*](turing_machine.md) +[*](bloat_monopoly.md) +[*](girl.md) +[*](pseudominimalism.md) +[*](math.md) +[*](free_body.md) +[*](java.md) +[*](line.md) +[*](disease.md) +[*](fixed_point.md) +[*](racetrack.md) +[*](see_through_clothes.md) +[*](implicit.md) +[*](faq.md) +[*](xor.md) +[*](sdf.md) +[*](dick_reveal.md) +[*](logic_circuit.md) +[*](yes_they_can.md) +[*](moderation.md) +[*](game.md) +[*](open_source.md) +[*](freedom_distance.md) +[*](tangram.md) +[*](unfuck.md) +[*](cheating.md) +[*](hyperoperation.md) +[*](pseudoleft.md) +[*](settled.md) +[*](color.md) +[*](human_language.md) +[*](political_correctness.md) +[*](name_is_important.md) +[*](trump.md) +[*](tool_slave.md) +[*](update_culture.md) +[*](crow_funding.md) +[*](bloat.md) +[*](nigger.md) +[*](game_of_life.md) +[*](wavelet_transform.md) +[*](compsci.md) +[*](black.md) +[*](real_number.md) +[*](fight.md) +[*](bit_hack.md) +[*](aliasing.md) +[*](liberalism.md) +[*](jedi_engine.md) +[*](io.md) +[*](furry.md) +[*](assembly.md) +[*](justice.md) +[*](chinese.md) +[*](foss.md) +[*](racism.md) +[*](privacy.md) +[*](holy_war.md) +[*](100r.md) +[*](README.md) +[*](x86.md) +[*](real_number.md) +[*](fork.md) +[*](anpac.md) +[*](thrembo.md) +[*](cloud.md) +[*](hexadecimal.md) +[*](nonogram.md) +[*](open_source.md) +[*](suicide.md) +[*](ubi.md) +[*](gopher.md) +[*](sigbovik.md) +[*](culture.md) +[*](90s.md) +[*](4chan.md) +[*](unary.md) +[*](cloud.md) +[*](comun.md) +[*](cancer.md) +[*](hitler.md) +[*](earth.md) +[*](c_pitfalls.md) +[*](corporation.md) +[*](atan.md) +[*](kiss.md) +[*](tas.md) +[*](acronym.md) +[*](trash_magic.md) +[*](wikiwikiweb.md) +[*](moderation.md) +[*](systemd.md) +[*](anticompany.md) +[*](shitpress.md) +[*](project.md) +[*](friend_detox.md) +[*](quake.md) +[*](library.md) +[*](phd.md) +[*](wiki_tldr.md) +[*](byte.md) +[*](lisp.md) +[*](fantasy_console.md) +[*](lil.md) +[*](asexuality.md) +[*](antialiasing.md) +[*](cache.md) +[*](anarch.md) +[*](ashley_jones.md) +[*](nationalism.md) +[*](tpe.md) +[*](assembly.md) +[*](cache.md) +[*](diogenes.md) +[*](python.md) +[*](sw_rendering.md) +[*](ted_kaczynski.md) +[*](linear_algebra.md) +[*](one.md) +[*](tpe.md) +[*](primitive_3d.md) +[*](chasm_the_rift.md) +[*](lrs_wiki.md) +[*](race.md) +[*](no_knowledge_proof.md) +[*](love.md) +[*](combinatorics.md) +[*](rapeware.md) +[*](raycastlib.md) +[*](project.md) +[*](proprietary_software.md) +[*](cos.md) +[*](optimization.md) +[*](sin.md) +[*](sdf.md) +[*](anticompany.md) +[*](smol_internet.md) +[*](kwangmyong.md) +[*](bullshit.md) +[*](collision_detection.md) +[*](discalimer.md) +[*](diogenes.md) +[*](windows.md) +[*](wizard.md) +[*](saf.md) +[*](software.md) +[*](altruism.md) +[*](suicide.md) +[*](cracker.md) +[*](wikipedia.md) +[*](comun.md) +[*](homelessness.md) +[*](hacker_culture.md) +[*](flatland.md) +[*](free_speech.md) +[*](dramatica.md) +[*](physics.md) +[*](watchdog.md) +[*](nc.md) +[*](gigachad.md) +[*](c.md) +[*](hero_culture.md) +[*](racetrack.md) +[*](small3dlib.md) +[*](sqrt.md) +[*](brain_software.md) +[*](triangle.md) +[*](fight.md) +[*](morality.md) +[*](needed.md) +[*](go.md) +[*](javascript.md) +[*](pi.md) +[*](nationalism.md) +[*](race.md) +[*](distance.md) +[*](antivirus_paradox.md) +[*](approximation.md) +[*](egg_code.md) +[*](double_buffering.md) +[*](future_proof.md) +[*](sorting.md) +[*](game_engine.md) +[*](democracy.md) +[*](hitler.md) +[*](reactionary_software.md) +[*](attribution.md) +[*](sanism.md) +[*](morality.md) +[*](compression.md) +[*](copyleft.md) +[*](unix.md) +[*](censorship.md) +[*](analog.md) +[*](often_confused.md) +[*](log.md) +[*](portability.md) +[*](anpac.md) +[*](autoupdate.md) +[*](devuan.md) +[*](left.md) +[*](network.md) +[*](wiki_pages.md) +[*](friend_detox.md) +[*](capitalist_software.md) +[*](teletext.md) +[*](quake.md) +[*](computational_complexity.md) +[*](complexity.md) +[*](finished.md) +[*](fear_culture.md) +[*](sigbovik.md) +[*](humidity.md) +[*](langtons_ant.md) +[*](programming_language.md) +[*](hexadecimal.md) +[*](formal_language.md) +[*](apple.md) +[*](steve_jobs.md) +[*](suicide.md) +[*](lrs.md) +[*](pseudoleft.md) +[*](robot.md) +[*](chess.md) +[*](io.md) +[*](dynamic_programming.md) +[*](flatland.md) +[*](tool_slave.md) +[*](freedom.md) +[*](gay.md) +[*](fork.md) +[*](kiss.md) +[*](dungeons_and_dragons.md) +[*](copyright.md) +[*](pd.md) +[*](cyberbullying.md) +[*](vector.md) +[*](competition.md) +[*](cyber.md) +[*](lrs.md) +[*](abstraction.md) +[*](adam_smith.md) +[*](no_knowledge_proof.md) +[*](algorithm.md) +[*](jedi_engine.md) +[*](physics_engine.md) +[*](gay.md) +[*](earth.md) +[*](raycasting.md) +[*](lrs_wiki.md) +[*](homelessness.md) +[*](tinyphysicsengine.md) +[*](goodbye_world.md) +[*](f2p.md) +[*](pseudorandomness.md) +[*](arduboy.md) +[*](wikipedia.md) +[*](fractal.md) +[*](small3dlib.md) +[*](altruism.md) +[*](capitalist_software.md) +[*](gemini.md) +[*](framework.md) +[*](formal_language.md) +[*](marketing.md) +[*](public_domain.md) +[*](marketing.md) +[*](quine.md) +[*](great_trap.md) +[*](mandelbrot_set.md) +[*](collapse.md) +[*](aliasing.md) +[*](tranny.md) +[*](magic.md) +[*](tor.md) +[*](library.md) +[*](less_retarded_society.md) +[*](cracker.md) +[*](zero.md) +[*](soydev.md) +[*](tinyphysicsengine.md) +[*](hardware.md) +[*](youtube.md) +[*](cc0.md) +[*](avpd.md) +[*](maintenance.md) +[*](motivation.md) +[*](island.md) +[*](logic_circuit.md) +[*](john_carmack.md) +[*](demo.md) +[*](function.md) +[*](unix.md) +[*](jokes.md) +[*](atan.md) +[*](sub_rosa.md) +[*](noise.md) +[*](palette.md) +[*](progress.md) +[*](easy_to_learn_hard_to_master.md) +[*](bullshit.md) +[*](raylib.md) +[*](mipmap.md) +[*](nigeria.md) +[*](bitreich.md) +[*](quantum_gate.md) +[*](linux.md) +[*](graphics.md) +[*](bazaar.md) +[*](demo.md) +[*](people.md) +[*](c_sharp.md) +[*](procgen.md) +[*](unfuck.md) +[*](esolang.md) +[*](qubit.md) +[*](permacomputing.md) +[*](piracy.md) +[*](color.md) +[*](great_trap.md) +[*](gigachad.md) +[*](bilinear.md) +[*](idiot_fallacy.md) +[*](probability.md) +[*](john_carmack.md) +[*](zen.md) +[*](cc.md) +[*](cyber.md) +[*](crime_against_economy.md) +[*](bytecode.md) +[*](anticompany.md) +[*](acronym.md) +[*](shit.md) +[*](security.md) +[*](math.md) +[*](macrofucker.md) +[*](bloat.md) +[*](version_numbering.md) +[*](oop.md) +[*](operating_system.md) +[*](xxiivv.md) +[*](encryption.md) +[*](gnu.md) +[*](venus_project.md) +[*](military.md) +[*](dependency.md) +[*](lrs_dictionary.md) +[*](boat.md) +[*](vim.md) +[*](logic.md) +[*](wikiwikiweb.md) +[*](doom.md) +[*](slowly_boiling_the_frog.md) +[*](pascal.md) +[*](vim.md) +[*](free.md) +[*](cancer.md) +[*](number.md) +[*](sw_rendering.md) +[*](sudoku.md) +[*](free_hardware.md) +[*](island.md) +[*](debugging.md) +[*](pokitto.md) +[*](netstalking.md) +[*](resnicks_termite.md) +[*](complexity.md) +[*](data_structure.md) +[*](ubi.md) +[*](girl.md) +[*](racism.md) +[*](gui.md) +[*](systemd.md) +[*](suckless.md) +[*](luke_smith.md) +[*](modern.md) +[*](world_broadcast.md) +[*](permacomputing_wiki.md) +[*](avpd.md) +[*](education.md) +[*](kwangmyong.md) +[*](wiki_tldr.md) +[*](low_poly.md) +[*](README.md) +[*](sw_rendering.md) +[*](normalization.md) +[*](openai.md) +[*](nanogenmo.md) +[*](piracy.md) +[*](rust.md) +[*](easier_done_than_said.md) +[*](free_will.md) +[*](smallchesslib.md) +[*](hash.md) +[*](tangram.md) +[*](coding.md) +[*](whale.md) +[*](js.md) +[*](drummyfish.md) +[*](cyberbullying.md) +[*](bs.md) +[*](axiom_of_choice.md) +[*](wiby.md) +[*](logic.md) +[*](hack.md) +[*](nd.md) +[*](aaron_swartz.md) +[*](wolf3d.md) +[*](transsexual.md) +[*](settled.md) +[*](compsci.md) +[*](wow.md) +[*](steve_jobs.md) +[*](update_culture.md) +[*](proprietary_software.md) +[*](gui.md) +[*](global_discussion.md) +[*](encryption.md) +[*](military.md) +[*](corporation.md) +[*](arch.md) +[*](pseudorandomness.md) +[*](atan.md) +[*](marketing.md) +[*](foss.md) +[*](rule110.md) +[*](game_design.md) +[*](lil.md) +[*](3d_modeling.md) +[*](graphics.md) +[*](interaction_net.md) +[*](sorting.md) +[*](culture.md) +[*](wiki_authors.md) +[*](zoomer.md) +[*](wiki_post_mortem.md) +[*](john_carmack.md) +[*](bazaar.md) +[*](ram.md) +[*](security.md) +[*](robot.md) +[*](mainstream.md) +[*](deep_blue.md) +[*](frameless.md) +[*](mainstream.md) +[*](capitalism.md) +[*](marxism.md) +[*](loquendo.md) +[*](transistor.md) +[*](tattoo.md) +[*](compsci.md) +[*](ancap.md) +[*](firmware.md) +[*](kiss.md) +[*](loc.md) +[*](rgb332.md) +[*](military.md) +[*](formal_language.md) +[*](unretard.md) +[*](elo.md) +[*](cracking.md) +[*](mechanical.md) +[*](ethics.md) +[*](collision.md) +[*](version_numbering.md) +[*](42.md) +[*](holy_war.md) +[*](goodbye_world.md) +[*](logic_gate.md) +[*](lmao.md) +[*](mental_outlaw.md) +[*](facebook.md) +[*](app.md) +[*](rms.md) +[*](programming_language.md) +[*](game_design.md) +[*](90s.md) +[*](easier_done_than_said.md) +[*](transistor.md) +[*](nigger.md) +[*](bazaar.md) +[*](freemasonry.md) +[*](shit.md) +[*](julia_set.md) +[*](capitalist_singularity.md) +[*](acronym.md) +[*](os.md) +[*](watchdog.md) +[*](fqa.md) +[*](recursion.md) +[*](liberalism.md) +[*](hard_to_learn_easy_to_master.md) +[*](sjw.md) +[*](chinese.md) +[*](left_right.md) +[*](public_domain.md) +[*](tree.md) +[*](steganography.md) +[*](earth.md) +[*](unicode.md) +[*](viznut.md) +[*](idiot_fallacy.md) +[*](rationalwiki.md) +[*](evil.md) +[*](life.md) +[*](ssao.md) +[*](prime.md) +[*](zuckerberg.md) +[*](wiki_authors.md) +[*](arch.md) +[*](pedophilia.md) +[*](number.md) +[*](pd.md) +[*](popularization.md) +[*](cancel_culture.md) +[*](blender.md) +[*](iq.md) +[*](fsf.md) +[*](implicit.md) +[*](beauty.md) +[*](aliasing.md) +[*](thrembo.md) +[*](less_retarded_software.md) +[*](encryption.md) +[*](steve_jobs.md) +[*](www.md) +[*](bit_hack.md) +[*](raycasting.md) +[*](plusnigger.md) +[*](combinatorics.md) +[*](culture.md) +[*](antivirus_paradox.md) +[*](femoid.md) +[*](shitword.md) +[*](rights_culture.md) +[*](nonogram.md) +[*](interaction_net.md) +[*](one.md) +[*](libre.md) +[*](prime.md) +[*](cracking.md) +[*](venus_project.md) +[*](shitpress.md) +[*](license.md) +[*](murderer.md) +[*](raylib.md) +[*](twos_complement.md) +[*](tech.md) +[*](nokia.md) +[*](proof.md) +[*](100r.md) +[*](e.md) +[*](plan9.md) +[*](demoscene.md) +[*](flatland.md) +[*](git.md) +[*](fascism.md) +[*](elo.md) +[*](open_source.md) +[*](qubit.md) +[*](minigame.md) +[*](libertarianism.md) +[*](compiler_bomb.md) +[*](transistor.md) +[*](free_universe.md) +[*](licar.md) +[*](morality.md) +[*](google.md) +[*](ascii_art.md) +[*](vector.md) +[*](p_vs_np.md) +[*](fascism.md) +[*](justice.md) +[*](calculus.md) +[*](no_knowledge_proof.md) +[*](3d_rendering.md) +[*](emoticon.md) +[*](rationalwiki.md) +[*](noise.md) +[*](elon_musk.md) +[*](science.md) +[*](go.md) +[*](combinatorics.md) +[*](ui.md) +[*](boot.md) +[*](robot.md) +[*](dog.md) +[*](pseudo3d.md) +[*](ui.md) +[*](minesweeper.md) +[*](computer.md) +[*](future_proof.md) +[*](floss.md) +[*](main.md) +[*](x86.md) +[*](productivity_cult.md) +[*](t3x.md) +[*](hard_to_learn_easy_to_master.md) +[*](semiconductor.md) +[*](explicit.md) +[*](shader.md) +[*](sw.md) +[*](nokia.md) +[*](magic.md) +[*](unix.md) +[*](main.md) +[*](wavelet_transform.md) +[*](modern_software.md) +[*](good_enough.md) +[*](often_confused.md) +[*](microtransaction.md) +[*](p_vs_np.md) +[*](emoticon.md) +[*](marxism.md) +[*](soyence.md) +[*](stereotype.md) +[*](hw.md) +[*](hard_to_learn_easy_to_master.md) +[*](mud.md) +[*](reddit.md) +[*](microtheft.md) +[*](reddit.md) +[*](audiophilia.md) +[*](blender.md) +[*](quake.md) +[*](fqa.md) +[*](chaos.md) +[*](hack.md) +[*](pedophilia.md) +[*](sw.md) +[*](cat_v.md) +[*](software.md) +[*](comment.md) +[*](githopping.md) +[*](real_number.md) +[*](computer.md) +[*](rgb565.md) +[*](aaron_swartz.md) +[*](free_culture.md) +[*](needed.md) +[*](luke_smith.md) +[*](sub_rosa.md) +[*](javascript.md) +[*](fork.md) +[*](gender_studies.md) +[*](crow_funding.md) +[*](football.md) +[*](float.md) +[*](jokes.md) +[*](compiler_bomb.md) +[*](git.md) +[*](charity_sex.md) +[*](programming_language.md) +[*](integral.md) +[*](small3dlib.md) +[*](pokitto.md) +[*](operating_system.md) +[*](history.md) +[*](interaction_net.md) +[*](foss.md) +[*](mouse.md) +[*](forth.md) +[*](line.md) +[*](interplanetary_internet.md) +[*](sqrt.md) +[*](whale.md) +[*](ioccc.md) +[*](universe.md) +[*](racetrack.md) +[*](femoid.md) +[*](data_hoarding.md) +[*](tas.md) +[*](freedom.md) +[*](productivity_cult.md) +[*](esolang.md) +[*](coc.md) +[*](bytecode.md) +[*](dick_reveal.md) +[*](conum.md) +[*](aaron_swartz.md) +[*](chasm_the_rift.md) +[*](c_sharp.md) +[*](myths.md) +[*](minimalism.md) +[*](interesting.md) +[*](blender.md) +[*](digital.md) +[*](data_hoarding.md) +[*](adam_smith.md) +[*](free_culture.md) +[*](double_buffering.md) +[*](wolf3d.md) +[*](digital.md) +[*](algorithm.md) +[*](music.md) +[*](trolling.md) +[*](floss.md) +[*](3d_model.md) +[*](niggercoin.md) +[*](netstalking.md) +[*](ethics.md) +[*](name_is_important.md) +[*](esolang.md) +[*](triangle.md) +[*](audiophilia.md) +[*](free.md) +[*](xor.md) +[*](crime_against_economy.md) +[*](data_hoarding.md) +[*](goodbye_world.md) +[*](byte.md) +[*](nationalism.md) +[*](trash_magic.md) +[*](dog.md) +[*](shit.md) +[*](tree.md) +[*](body_shaming.md) +[*](nord_vpn.md) +[*](greenwashing.md) +[*](tool_slave.md) +[*](sjw.md) +[*](wiki_style.md) +[*](wikipedia.md) +[*](mental_outlaw.md) +[*](reactionary_software.md) +[*](social_inertia.md) +[*](marble_race.md) +[*](cancer.md) +[*](capitalism.md) +[*](hero_culture.md) +[*](phd.md) +[*](faggot.md) +[*](uxn.md) +[*](fizzbuzz.md) +[*](usenet.md) +[*](21st_century.md) +[*](people.md) +[*](4chan.md) +[*](ascii_art.md) +[*](usa.md) +[*](gay.md) +[*](feminism.md) +[*](xd.md) +[*](motivation.md) +[*](free.md) +[*](interplanetary_internet.md) +[*](global_discussion.md) +[*](racism.md) +[*](stereotype.md) +[*](cc0.md) +[*](openai.md) +[*](ioccc.md) +[*](toxic.md) +[*](logic.md) +[*](selflessness.md) +[*](version_numbering.md) +[*](stereotype.md) +[*](dramatica.md) +[*](triangle.md) +[*](x86.md) +[*](data_structure.md) +[*](anal_bead.md) +[*](pseudominimalism.md) +[*](proprietary_software.md) +[*](lgbt.md) +[*](demoscene.md) +[*](gaywashing.md) +[*](shitpress.md) +[*](less_retarded_society.md) +[*](modern.md) +[*](wirtual.md) +[*](microtransaction.md) +[*](portability.md) +[*](rms.md) +[*](nanogenmo.md) +[*](dodleston.md) +[*](teletext.md) +[*](log.md) +[*](suckless.md) +[*](xonotic.md) +[*](100r.md) +[*](game_design.md) +[*](web.md) +[*](geek.md) +[*](fourier_transform.md) +[*](mipmap.md) +[*](minigame.md) +[*](furry.md) +[*](portal_rendering.md) +[*](books.md) +[*](tech.md) +[*](loc.md) +[*](comun.md) +[*](based.md) +[*](dinosaur.md) +[*](free_software.md) +[*](elo.md) +[*](information.md) +[*](entropy.md) +[*](great_trap.md) +[*](cc.md) +[*](information.md) +[*](minesweeper.md) +[*](unix_philosophy.md) +[*](analog.md) +[*](mipmap.md) +[*](teletext.md) +[*](de_facto.md) +[*](wiki_pages.md) +[*](audiophilia.md) +[*](lotr.md) +[*](viznut.md) +[*](productivity_cult.md) +[*](byte.md) +[*](splinternet.md) +[*](collision_detection.md) +[*](openai.md) +[*](friend_detox.md) +[*](shortcut_thinking.md) +[*](xonotic.md) +[*](coding.md) +[*](f2p.md) +[*](cancel_culture.md) +[*](gender_studies.md) +[*](maintenance.md) +[*](technology.md) +[*](wiki_style.md) +[*](nd.md) +[*](digital_signature.md) +[*](zoomer.md) +[*](pascal.md) +[*](tas.md) +[*](good_enough.md) +[*](life.md) +[*](42.md) +[*](usa.md) +[*](future.md) +[*](free_universe.md) +[*](golang.md) +[*](crypto.md) +[*](encyclopedia.md) +[*](modern.md) +[*](world_broadcast.md) +[*](autostereogram.md) +[*](color.md) +[*](bootstrap.md) +[*](kwangmyong.md) +[*](proof.md) +[*](sqrt.md) +[*](easy_to_learn_hard_to_master.md) +[*](network.md) +[*](autoupdate.md) +[*](monad.md) +[*](tech.md) +[*](wiki_post_mortem.md) +[*](disease.md) +[*](js.md) +[*](deferred_shading.md) +[*](temple_os.md) +[*](universe.md) +[*](programming.md) +[*](fight_culture.md) +[*](encyclopedia.md) +[*](social_inertia.md) +[*](programming_tips.md) +[*](backpropagation.md) +[*](pseudoleft.md) +[*](bilinear.md) +[*](libre.md) +[*](right.md) +[*](elon_musk.md) +[*](ai.md) +[*](duskos.md) +[*](low_poly.md) +[*](portal_rendering.md) +[*](markov_chain.md) +[*](collision_detection.md) +[*](noise.md) +[*](niger.md) +[*](conum.md) +[*](humidity.md) +[*](optimization.md) +[*](go.md) +[*](oop.md) +[*](fqa.md) +[*](body_shaming.md) +[*](recursion.md) +[*](os.md) +[*](trolling.md) +[*](permacomputing.md) +[*](bbs.md) +[*](crypto.md) +[*](prime.md) +[*](tranny_software.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](license.md) +[*](backgammon.md) +[*](niger.md) +[*](how_to.md) +[*](math.md) +[*](procgen.md) +[*](analytic_geometry.md) +[*](githopping.md) +[*](dick_reveal.md) +[*](internet.md) +[*](or.md) +[*](wiki_rights.md) +[*](soydev.md) +[*](brainfuck.md) +[*](easier_done_than_said.md) +[*](finished.md) +[*](compression.md) +[*](primitive_3d.md) +[*](charity_sex.md) +[*](bs.md) +[*](comment.md) +[*](books.md) +[*](based.md) +[*](greenwashing.md) +[*](anarch.md) +[*](semiconductor.md) +[*](calculus.md) +[*](crow_funding.md) +[*](frameless.md) +[*](mechanical.md) +[*](githopping.md) +[*](fixed_point.md) +[*](venus_project.md) +[*](education.md) +[*](egoism.md) +[*](often_misunderstood.md) +[*](game.md) +[*](creative_commons.md) +[*](probability.md) +[*](chinese.md) +[*](arduboy.md) +[*](tpe.md) +[*](microsoft.md) +[*](throwaway_script.md) +[*](free_hardware.md) diff --git a/stereotype.md b/stereotype.md index 5154074..a209fdc 100644 --- a/stereotype.md +++ b/stereotype.md @@ -349,13 +349,14 @@ Some stereotypes are: - privileged, rich, go to prestigious universities, wear suits, play golf, are members of VIP clubs - sometimes supremacists, "oppress" other [races](race.md) (knowingly or not) - not many strong stereotypes as whiteness is seen as the default, the norm to which others are compared -- **by sex/gender/orientation**: +- **by sex/gender/orientation/natural social role**: - **[gays](gay.md)**: - - men act feminine, are good at [art](art.md) and women jobs, like pink color, fashion, cooking and cleaning, extroverted - - there are two types: the feminine sissy and the big hairy bear biker, in a pair one does mommy and the other one daddy + - there are two types of gay men: + - the sissy: easily recognizable, act feminine and theatrical, are good at [art](art.md) and woman jobs like ballet and organizing weddings, like pink color, fashion, cooking and cleaning, are extroverted and social, love parties and talking on phone for hours, in a pair plays the mommy + - the big hairy bear biker, [tattooed](tattoo.md) with beard, is silent and never smiles, in a pair plays the daddy, harder to recognize as gay - love to wear latex and leather - - women (lesbian) are masculine, ugly with short pink hair - - spread [AIDS](aids.md) + - women (lesbian) are masculine, muscular, have deep voice, ugly with short pink hair, behave a lot like men (are tough, like cars, wear pants, ...) + - spread [AIDS](aids.md) or a similar [disease](disease.md) - **[men](man.md)**: - direct, strong, decisive, stubborn, overconfident, primitive, irresponsible, conservative, when provoked may easily become rude and aggressive, beat their wives - [competitive](competition.md) @@ -369,23 +370,28 @@ Some stereotypes are: - "racist", no political correctness - like games such as bingo, crosswords and [sudoku](sudoku.md) - pants pulled up high, newsboy cap + - **[transsexual](transsexual.md)**: + - always male to female + - always a [programmer](programming.md) (or rather "[coder](coding.md)", there exists nothing else a tranny can do + - 100% insane, depressed, [suicidal](suicide.md), self harm scars, no transsexual ever died of old age + - either a cute trap or absolutely disgusting and hilariously failed transition - **[women](woman.md)** (may also apply to gay men): - bad at driving, bad spatial skills - - bad at logical thinking and [math](math.md) + - bad at [logical](logic.md) thinking and [math](math.md) - manipulative, calculating, acting and pretending - passive aggressive - whores - bitches - - good at [multitasking](multitasking.md) + - good at [multitasking](multitasking.md), also potentially good "soft skills" like organizing people - gossip - gold diggers - don't know what they want, "no" can mean "yes" and vice versa - too emotional, especially on period - constantly talk and talk but if they get silent, you're in trouble - - attracted to douchebags, assholes and money, golddigging, avoid nice guys + - attracted to douchebags, assholes and [money](money.md), golddigging, avoid nice guys - can distinguish and name different shades of similar [colors](color.md) - on board of a ship bring bad luck - - love fashion, the color pink, Barbie dolls, cleaning, ironing, cooking etc. + - love fashion, the color pink, romantic comedies, Barbie dolls, cleaning, ironing, cooking etc. - get good grades at school because of tryharding, memorization (without deep understanding), following rules and diligence, i.e. conformance (which the corrupt system rewards before talent and actual skill), but still can't catch up to men at math - secretly want to have sex with [dogs](dog.md) rather than men - read manuals diff --git a/usa.md b/usa.md index 01d08ec..0d6db6a 100644 --- a/usa.md +++ b/usa.md @@ -77,6 +77,8 @@ To touch on another subject Americans would rather love the world to forget abou Alright so now that we're done with the important, we might as well relax and examine a more lighthearted stuff: what are the things typical of the big shiny USA (see also [stereotypes](stereotype.md))? **It's the little differences**. For example: driving a bicycle and throwing newspapers onto houses of other people who all have a [dog](dog.md) trained to catch and bring the newspaper in the house (stopping the bike would mean losing time and time is [money](money.md)). Or school buses. State borders, roads and city layouts are always rectangular and perpendicular, no organic or curved shapes. Road signs and traffic lights are also all slightly wrong, for example the lines on roads are yellow instead of white, your lights are on the OPPOSITE side of the crossroad etc. Little children are required to dissect frogs at school. Additionally they have to memorize names of all the presidents and salute the flag to the sound of national anthem every morning so that they can grow up to be unbiased, independently thinking adults. For some reason child abduction is part of American culture, as well as people randomly going missing or casually disappearing for decades -- whenever you step into a super market, walls are covered by photos of missing people. It's unbelievable and something hard to understand for a European. Toilets are always in bathroom, which Europeans find DISGUSTING. In shops you will meet "baggers" -- employees paid to put your groceries in your bag, you can't make this up. Everyone is suing everyone constantly, no divorce or even a minor traffic incident is complete without a lawsuit over horrendous sums, that's why it's completely normal to be a billionaire for a week and then live another week as a hobo under a bridge because you slapped your secretary's ass, then next week you become a millionaire because you were lucky to be hit by a car and sue the driver and so on, and extremes like this are completely normal: criminals for example get sentences to hundreds or thousands of years in jail plus several lifetimes on top just to make it more dramatic, whole cities catch fire or get swallowed by sinkholes, tornadoes routinely disrupt school classes etc. In general everything is much more extreme in America, roads and sidewalks are wider because cars, as well as people, are larger, skyscrapers start to reach outer space now, crazy people are REALLY crazy, loud people are REALLY loud, the gap between rich and poor is larger and more noticeable than anywhere else in the world. Next are disgusting manners in eating, roasting marshmallows, drinking wine from plastic cups, putting peanut butter and jam on everything and having all food, including bread, sweetened to just short of lethal dosage, to a degree that would unironically be illegal in the EU, that's all very typical of the US (it is by the way also why gargantuously fat people are a real issue there, they must have special toilets, special seats on a plane and so on). { I don't even fkn know what peanut butter tastes like, no one eats that shit in Europe lol. ~drummyfish } Also weird pseudosports and illogical measurement units. In the US dentists don't give you anesthetics before a surgery like one would expect from a sane doctor, probably because that would be too expensive and not entertaining enough for the customer -- no, they rather give you LSD or some kinda similar shit after which you get high as a kite, you can literally find footage of people going from the dentist being drugged like a street whore, this is not normal. Everyone makes such a big deal of high school graduation and the "prom", it's unreal -- everywhere else in the world no one gives a single shit about high school graduation because it's what everyone above 80 IQ will do, at best people are happy to finally get outta the shithole, but in the US it's like your bar micva or wedding. Smaller children are selling lemonade and cookies to random strangers in the streets, learning the filthy capitalist practices even before they learn to read; garage sales are typical and very popular also. There is too much over the top friendliness, emotion, anger, agreement and disagreement: everyone is very vocal about what's currently on his mind and has to signal it with exaggerated body language, happy people are hugging each other, kissing, singing and dancing, annoyed people are waving guns and flags and shouting at each other over the street, traffic jams are a shitfest of car horns and people shouting and shooting guns, and then sometimes in the streets complete strangers will smile at you and talk to you for no reason. In USA no one is truly American because people came to steal the land just recently, so everybody is in fact some kind of Euro or Asian degenerate, everyone's like "hey bro, I'm Italian Irish and Portuguese from mother's side but I'm actually 1/17th Polish Jew so I'm very, VERY sensitive to discussing the Holocaust". People are so lazy they can't even get out of their car to pick up their food and they LITERALLY have cinemas for cars so that people do not have to get out of a car and walk to the seat, all of which further contributes to the obesity of the American nation. Americans are also close to monkeys in their behavior: as an example when an American experiences even minor success, he starts dancing and jumping around, doing what's called a "victory dance", it's something extremely cringe to behold, literally an adult behaving like a 3 year old. Everything is very far apart in the US and people commonly travel from state to state and coast to coast just cause they feel like it or out of boredom, to get to the shop you must first drive 3 hours through barren desert by a completely straight road, people travel hundreds and thousands of kilometers (sorry, miles!) -- upon settling in a new place one must go and greet all the neighbors and inform them that he's a convicted [pedophile](pedophilia.md) while bringing cake as a welcome gift. In bigger cities you also cannot live without a car because even though shops are relatively near, there are NO SIDEWALKS leading to them, they literally cannot be accessed on foot, building sidewalks that could be used even by poor people FOR FREE would be seen as [communism](communism.md). Yes, this is absolutely ridiculous, but completely normal in the USA. EVERY SINGLE house must have American flag in front -- the bigger, the better -- [fascism](fascism.md) is completely normal, people don't even see it as weird. Nomadic life, temporary homelessness, living in a caravan or just in your car on a parking lot -- that's nothing uncommon either, but a [homeless](homelessness.md) in America is much different from European hobo: in America homelessness is like catching cold, it just happens from time to time to everyone, even to a CEO or rich lawyer, but it literally only means you have no house, you just go sleep in your car instead of your home, but that's not much of an issue because you live at work anyway, so a homeless guy is still a slave, he goes to [slavery](work.md) like he would if he had a house -- that is very stupid and weird. Houses in America look luxurious but it's fake as everything else, they are built with no solid foundation and have walls made of cardboard and polystyrene that a slightly stronger breeze will destroy, it's all just about the external look, like the whole glorious US. +Also [LMAO](lmao.md), in normal countries you get to a university when you're smart and have good grades -- smart people should study and do some intellectual work, makes sense, right? But not so in America. There you get to a university if you're A) rich, or B) good at some sport (see also [Forrest Gump](forrest_gump.md)). WTF is this? Imagine a brain surgeon is gonna operate on you and you're like "Doc, how good were you at school?" and he replies "I was pretty stupid and barely passed with Es, but I was really good at handegg." They'll make people study history of poetry because they're good at weightlifting? Fucking greatest country ever :D + { I gotta say now I came to know more than one, or even two people from the US who are exceptions from all the, well, "negativity" I've just written (but only because I couldn't write anything positive), in fact they often leave me speechless with how fantastic and amazing they are, who absolutely make me wish I could be more like them. No words can adequately describe it -- anyway my point is your country of origin cannot stop you from being good, I rely on the basic sense of reason that no one can possibly take everything I write as an unbreakable fundamental law of nature -- I dislike pointing this out because it should be obvious by logic, but I really hope it's pretty clear sometimes I use hyperbole, irony and similar devices to get some points across. But then again please don't take the article as a joke, it IS absolutely serious, USA is a dystopia and hell on Earth. ~drummyfish } ## See Also diff --git a/wiki_pages.md b/wiki_pages.md index 9515689..a25225e 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)** (401) -- **[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)** (94) -- **[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)** (534) -- **[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)** (235) -- **[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)** (66) -- **[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)** (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)** (21) -- **[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)** (25) -- **[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)** (71) -- **[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)** (44) -- **[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)** (143) -- **[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)** (18) -- **[lotr](lotr.md)** (20) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (34) -- **[lrs](lrs.md)** (173) -- **[lrs_dictionary](lrs_dictionary.md)** (150) -- **[lrs_wiki](lrs_wiki.md)** (46) -- **[luke_smith](luke_smith.md)** (20) -- **[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)** (506) -- **[often_confused](often_confused.md)** (190) -- **[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)** (1930) -- **[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)** (4) -- **[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)** (98) -- **[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)** (514) -- **[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)** (12) -- **[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)** (68) -- **[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)** (204) -- **[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) -- **[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)** (401) -- **[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)** (94) -- **[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)** (534) -- **[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)** (235) -- **[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)** (66) -- **[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)** (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)** (71) -- **[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)** (44) -- **[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)** (143) -- **[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)** (18) -- **[lotr](lotr.md)** (20) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (34) -- **[lrs](lrs.md)** (173) -- **[lrs_dictionary](lrs_dictionary.md)** (150) -- **[lrs_wiki](lrs_wiki.md)** (46) -- **[luke_smith](luke_smith.md)** (20) -- **[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)** (506) -- **[often_confused](often_confused.md)** (193) -- **[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)** (1930) -- **[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)** (4) -- **[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)** (98) -- **[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)** (514) -- **[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)** (12) -- **[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)** (85) -- **[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)** (218) -- **[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)** (210) -- **[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) -- **[zoomer](zoomer.md)** (46) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file diff --git a/wiki_stats.md b/wiki_stats.md index 5921ff0..1b52255 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: 643 -- number of commits: 1027 -- total size of all texts in bytes: 5571776 -- total number of lines of article texts: 40057 +- number of commits: 1028 +- total size of all texts in bytes: 5577082 +- total number of lines of article texts: 40087 - number of script lines: 324 - occurrences of the word "person": 10 - occurrences of the word "nigger": 155 @@ -35,60 +35,79 @@ longest articles: top 50 5+ letter words: -- which (2996) -- there (2363) -- people (2233) -- example (1938) -- other (1710) -- about (1530) -- number (1472) +- which (2998) +- there (2364) +- people (2236) +- example (1939) +- other (1713) +- about (1529) +- number (1471) - software (1326) - because (1260) -- their (1180) -- something (1165) -- would (1147) -- being (1125) -- program (1084) +- their (1183) +- something (1167) +- would (1148) +- being (1126) +- program (1085) - language (1034) - called (1008) -- things (956) -- without (931) +- things (957) +- without (932) - simple (902) -- numbers (882) +- numbers (883) - function (882) -- computer (875) +- computer (876) - different (846) -- world (817) +- world (822) - these (813) - programming (812) -- however (808) -- should (784) +- however (809) +- should (786) - still (781) - system (777) - doesn (752) - games (740) - drummyfish (730) +- always (724) - possible (723) -- always (722) -- point (712) -- probably (705) -- while (697) -- society (695) -- https (693) -- simply (691) -- using (665) -- someone (650) +- point (713) +- probably (704) +- society (697) +- while (696) +- https (695) +- simply (689) +- using (664) +- someone (651) - course (646) -- actually (639) -- similar (633) -- first (622) +- actually (640) +- similar (635) +- first (624) - value (617) -- though (598) -- really (594) +- though (599) +- really (596) latest changes: ``` +Date: Wed Jun 4 13:17:53 2025 +0200 + 3d_model.md + bilinear.md + free_will.md + furry.md + lgbt.md + lrs_dictionary.md + main.md + often_confused.md + programming_style.md + random_page.md + shitword.md + trolling.md + unretard.md + usa.md + wiki_pages.md + wiki_stats.md + woman.md + work.md Date: Thu May 29 17:30:19 2025 +0200 ai.md backgammon.md @@ -108,24 +127,6 @@ Date: Thu May 29 17:30:19 2025 +0200 usa.md wiki_pages.md wiki_stats.md -Date: Mon May 26 19:29:00 2025 +0200 - ai.md - color.md - discalimer.md - drummyfish.md - humidity.md - lgbt.md - lrs_dictionary.md - number.md - often_confused.md - random_page.md - rgb332.md - rgb565.md - shitword.md - stereotype.md - wiki_pages.md - wiki_stats.md - woman.md ``` most wanted pages: @@ -154,7 +155,7 @@ most wanted pages: most popular and lonely pages: - [lrs](lrs.md) (352) -- [capitalism](capitalism.md) (326) +- [capitalism](capitalism.md) (328) - [bloat](bloat.md) (252) - [c](c.md) (249) - [free_software](free_software.md) (211) @@ -171,14 +172,14 @@ most popular and lonely pages: - [shit](shit.md) (119) - [programming](programming.md) (119) - [woman](woman.md) (116) -- [art](art.md) (109) +- [art](art.md) (110) +- [history](history.md) (108) - [gnu](gnu.md) (108) -- [history](history.md) (107) - [bullshit](bullshit.md) (107) - [linux](linux.md) (106) -- [corporation](corporation.md) (105) +- [corporation](corporation.md) (106) - [fight_culture](fight_culture.md) (101) -- [work](work.md) (98) +- [work](work.md) (99) - [hacking](hacking.md) (97) - [internet](internet.md) (95) - [less_retarded_society](less_retarded_society.md) (94)