diff --git a/capitalism.md b/capitalism.md index c627018..58da829 100644 --- a/capitalism.md +++ b/capitalism.md @@ -58,7 +58,7 @@ The following is a list of just SOME attributes of capitalism -- note that not a - **[fear culture](fear_culture.md)**: To keep people consuming and constantly engaged a tension has to be kept, comfortable people are undesirable in capitalism. So there is constantly a propaganda of some threat, be it viruses, terrorism, pedophiles on the internet, computer viruses, killing bees etc. - **[consumerism](consumerism.md)**: To keep businesses running people need to consume everything, even things that shouldn't be consumed and that could last for very long such as computers and cars. This leads to creation of hasted low quality products (even art such as TV series) that are meant to be used and thrown away, repairing is no longer considered. - **commerce infects absolutely everything**: In advanced capitalism there is no such thing as a commerce free zone, everything is privatized eventually and serves selfish interests. There is **nowhere to hide**, capitalism has to work towards eliminating escape places as abused people will want to naturally retreat from a place of abuse somewhere safe. Nowadays even such areas as health care, welfare or [education](education.md) of children is permeated by money, ads and corporate propaganda. Even [nonprofits](nonprofit.md) have to make money. Educational videos in schools are preceded with [ads](marketing.md) (as they are played on [YouTube](youtube.md)), propagandists even legally go to school and brainwash little children (they call it "education in financial literacy" and teach children that they should e.g. create bank accounts in the propagandist's specific bank). -- **destruction of life environment**: This is nowadays already pretty clear, [global heating](global_warming.md) is attributed mainly to capitalism and is seen as maybe the most likely doom that's probably already unavoidable. Lack of long term planning and any concern for anything but money, along with consumerism and extreme waste (of energy, physical waste such as plastic, toxic chemicals etc.) lead to building bullshit factories and performing unnecessary activity for economic reasons (e.g. transporting materials over the globe for assembly, then transporting it back), leading to extreme pollution of air (visible air smog already makes it hard to breathe in many cities), water (it is no longer safe to drink rain water as it used to be) and food (microplastic particles are already basically EVERYWHERE, eating them can't be avoided). Forests that are necessary for cleaning air, host many precious life forms and are overall a key part of ecosystem are being destroyed rapidly, entire species are disappearing very quickly. And that's just a quick sum up. +- **destruction of life environment**: This is nowadays already pretty clear, [global heating](global_warming.md) is attributed mainly to capitalism and is seen as maybe the most likely doom that's probably already unavoidable. Lack of long term planning and any concern for anything but money, along with consumerism and extreme waste (of energy, physical waste such as plastic, toxic chemicals etc.) lead to building bullshit factories and performing unnecessary activity for economic reasons (e.g. transporting materials over the globe for assembly, then transporting it back), leading to extreme pollution of air (visible air smog already makes it hard to breathe in many cities), water (it is no longer safe to drink rain water as it used to be) and food (microplastic particles are already basically EVERYWHERE, eating them can't be avoided). Forests that are necessary for cleaning air, host many precious life forms and are overall a key part of ecosystem are being destroyed rapidly, entire species are disappearing very quickly. To save the environment it's absolutely key to stop [consumerism](consumerism.md), something in direct conflict with capitalism -- how do you want people to stop having the urges to overly consume if every single minute of their lives they are bombarded with ads pressuring them to consume? And that's just a quick sum up. - **rule of idiots**: Under capitalism the incompetent become successful as success isn't a matter of competence at art but rather willingness to win for any cost, matter of persevering despite being untalented, succumbing to unethical behavior, investing into "promoting" oneself through marketing, social media etc. The truly skilled and intelligent often see the system is bullshit, the skilled are skilled before they want to do their art rather than engage in fights, so they get depressed and disgusted and leave to live in the underground, they live only for their art, opening the way for the unskilled, stupid and at best average thirsty for success. That's why there are so many "professional" wedding photographers who know absolutely nothing about photography, so many elementary school drop outs who become celebrities on TikTok and YouTube who go on to advise the masses on who to vote for in the elections, so many shitty movies, music and games, so many "programmers" and "security experts" who can't do elementary school math etc. - **loss of ethical and moral behavior**: Ethical behavior is a disadvantage in a competitive environment of the market, it is a limitation. Those trying to behave ethically (e.g. fair prices or good treatment of employees) will simply lose to the unethically behaving ones and be eliminated from the market. Eventually there only remain unethically behaving entities, which is exactly what we are seeing nowadays -- there basically doesn't exist a single ethically behaving corporation in the world (which has however already been normalized and is no longer seen as an issue). { Where I live there is an old proverb that says "self praise stinks", it's an old wisdom that correctly states people who aren't humble are always evil idiots. Capitalism stands on massive marketing and basically goes all in on this evil, marketing school are nothing but teaching self praise. ~drummyfish } - **anti-people design**: By definition in capitalism technology is not to serve people, it is to serve companies to make profit and abuse people, so technology spies on its users, refuses to work ([DRM](drm.md), ...) shows [ads](ad.md), forces children into purchases (predatory [games](game.md)), breaks on purpose so as to enforce a paid repair etc. diff --git a/exercises.md b/exercises.md index 69ab70a..f93686c 100644 --- a/exercises.md +++ b/exercises.md @@ -188,7 +188,9 @@ Bear in mind the main purpose of this quiz is for you to test your understanding 85. Is political correctness and censorship ever justified? 86. Firstly convert the expression *x + (1 + 2) / (3 - 4)* to [postfix notation](postfix.md) (also reverse Polish notation). State some major advantages of postfix notation against infix notation. Now please state disadvantage of postfix notation, especially that which would be significant if we e.g. use it for expression such as *myFunc(x,y,myFunc2(z))*. 87. What does the [demultiplexer](demultiplexer.md) logic circuit do? Give an example of when it's used. How is it related to [multiplexer](multiplexer.md)? -88. Did you enjoy this quiz? +88. [Optical fiber](optical_fiber.md) cabels mustn't be bent too much -- one reason for this is that the fibers inside might crack, but another reason is related to the physics of how the light travels inside. What is this effect of optics called and why does it limit the bend radius? +89. We know that an [ellipse](ellipse.md) is a set of points in 2D plane that have constant sum of [distances](distance.md) to some two given points that are called *focal points*. What if we instead consider a taxicab distance (computed as distance alongside X axis plus distance alongside Y axis)? Consider the constant sum of distances to always be set higher than the taxicab distance of the two focal points. What shape will we get? Just describe the shape and intuitively show why it looks like that. +90. Did you enjoy this quiz? ### Answers @@ -279,7 +281,9 @@ Bear in mind the main purpose of this quiz is for you to test your understanding 85. no 86. *x 1 2 + 3 4 - / +*; Advantages are for example not needing brackets at all and simple parsing and evaluation, for example we don't have to care about operator precedence. Disadvantages may be e.g. lower readability; we also have to know each operator's arity because from postfix notation it can't be deduced -- with infix notation expression *myFunc(x,y,myFunc2(z))* it is clear that *myFunc* takes 3 arguments and *myFunc2* takes 1, but if we convert it to postfix notation, we get *x y z myFunc2 myFunc3*, from which it isn't clear how many arguments each function takes. 87. It's a circuit that on its input takes data and output address -- a number from 0 to *N - 1* -- and that sends the data to one of *N* output ports (identified by the given address). It can be imagined like a switch that redirects an input stream to one of *N* output channels. Its use may be for example to redirect input data, for example audio, to one of several output devices, for example speakers, headphones and audio recorders. Multiplexer is a circuit that does the opposite (i.e. chooses input from *N* channels that is then sent to a single output channel). -88. yes +88. Total internal refraction -- light travelling in the fibers bounces off of the walls of the fiber, but in order to bounce (be reflected) when it hits the boundary it must hit it under an angle that's smaller than so called critical angle which is calculated from the indices of refraction of the fiber and the material outside of it. If the cable was bent too much, light could hit the boundary under and angle close to perpendicular and by this it would escape to the outside medium. +89. Kind of octagon but with unevenly long sides; a rectangle with bevelled corners, i.e. two horizontal sides, two vertical sides, two 45 degree walls and two 135 degree walls. We can imagine taxicab distance from given point like sort of a diamond, it creates 4 quadrants around the point, in each the distance increases linearly in diagonal direction -- regions of constant distance here form 45 degree angled squares. Boundaries between these quadrants form a cross of infinite size. Taking two different points these two crosses will overlap and form 9 regions (draw it): top-left, top-middle, top-right, middle-left etc. Examining each of the regions we will find that it either keeps the increasing direction the same (if both overlaid directions are the same) or that some principal direction cancels out and leave the sum increasing only in one principal direction -- basically we find that in each of those regions the sum increases linearly in one of 8 directions separated by 45 degrees (except for the middle region where the sum is constant). It's also clear the heightmap has to stay continuous as both of the summed functions are continuous. From all this we can deduce the shape basically. +90. yes ## Other diff --git a/furry.md b/furry.md index 8de3795..4a10f87 100644 --- a/furry.md +++ b/furry.md @@ -8,7 +8,7 @@ Also the furry community -- it's extremely [toxic](toxic.md), firstly as any big Furry [porn](porn.md) is called **[yiff](yiff.md)**. -In the past we might have been wondering whether by 2020 we'd already have cured cancer, whether we'd have cities on Mars and flying cars. Well no, but you can sexually identify as a fox now. +In the 1990s we were wondering whether by 2020 we'd already have cured cancer, solved world hunger, if we'd have cloned the mammoth, whether we'd have cities on Mars and flying cars. Well no, but you can sexually identify as a fox now. ## See Also diff --git a/game.md b/game.md index 32c35b1..fc994f4 100644 --- a/game.md +++ b/game.md @@ -1,6 +1,6 @@ # Game -Most generally game is a form of play which is restricted by certain rules, the goal of which is typically [fun](fun.md), providing challenge and/or [competition](competition.md) (and sometimes more, e.g. [education](education.md), training etc.). A game may have various combinations of mathematical/mental elements (e.g. competitive mental calculations, mathematically defined rules, ...), physical elements (based in [real life](irl.md) physics, e.g. [football](football.md), [marble racing](marble_racing.md), ...) and even other types of elements (e.g. social, psychological, ...); nowadays very popular games are [computer](computer.md) games, a type of video games (also gaymes or vidya, e.g. [Anarch](anarch.md), [minesweeper](minesweeper.md), [Doom](doom.md), ...), which are played with the help of a computer. An entity (human, computer, animal, ...) playing a game is called a player and his ability to play it well is called [skill](skill.md); however some games may involve pure [randomness](randomness.md) and chance which may limit or even eliminate the need of skill (e.g. [rock paper scissors](rock_paper_scissors.md)). *Game* is also a [mathematical](math.md) term in [game theory](game_theory.md) which studies games and competition rigorously. +Most generally game is a form of play which is restricted by certain rules, the goal of which is typically [fun](fun.md), providing challenge and/or [competition](competition.md) (and sometimes more, e.g. [education](education.md), training etc.). A game may have various combinations of mathematical/mental elements (e.g. competitive mental calculations, mathematically defined rules, ...), physical elements (based in [real life](irl.md) physics, e.g. [football](football.md), [marble racing](marble_racing.md), ...) and even other types of elements (e.g. social, psychological, ...); nowadays very popular games are [computer](computer.md) games, a type of video games (also gaymes, video gaems or vidya, e.g. [Anarch](anarch.md), [minesweeper](minesweeper.md), [Doom](doom.md), ...), which are played with the help of a computer. An entity (human, computer, animal, ...) playing a game is called a player and his ability to play it well is called [skill](skill.md); however some games may involve pure [randomness](randomness.md) and chance which may limit or even eliminate the need of skill (e.g. [rock paper scissors](rock_paper_scissors.md)). *Game* is also a [mathematical](math.md) term in [game theory](game_theory.md) which studies games and competition rigorously. A fun take at the very concept of a game is [Nomic](nomic.md), a game in which changing the game rules is part of the game. It leads to all kinds of mindfucks. diff --git a/lrs_dictionary.md b/lrs_dictionary.md index 9156254..d9d896d 100644 --- a/lrs_dictionary.md +++ b/lrs_dictionary.md @@ -12,6 +12,7 @@ WORK IN PROGRESS | [Asperger](autism.md) | assburger | | [assertiveness](assertiveness.md) | assholism | | average citizen | normie, normalfag, bloatoddler, NPC, ... | +| [Bill Gates](bill_gates.md) | Bill Gayte$ | | [Blender](blender.md) | Blunder | | Brave browser | Slave browser | | [censorship](censorship.md) | censorshit | @@ -86,7 +87,7 @@ WORK IN PROGRESS | [wayland](wayland.md) | whyland | | [webassembly](webassembly.md) | weebassembly | | Wikipedian | wikipedo | -| [Windows](windows.md) | Winshit, Winbloat, Backdoors? :D | +| [Windows](windows.md) | Winshit, Windoze, Winbloat, Backdoors? :D | | [woman](woman.md) | femoid | | [work](work.md) | slavery | | [world wide web](www.md) | world wide wait | diff --git a/lrs_wiki.md b/lrs_wiki.md index 983dc09..b20b6cd 100644 --- a/lrs_wiki.md +++ b/lrs_wiki.md @@ -2,6 +2,8 @@ LRS wiki, also Less Retarded Wiki, is a [public domain](public_domain.md) ([CC0](cc0.md)) [encyclopedia](encyclopedia.md) focused on truly good, [minimalist](minimalism.md) [technology](tech.md), mainly [computer](computer.md) [software](sw.md) -- so called [less retarded software](lrs.md) (LRS) which should serve the people at large -- while also exploring related topics such as the relationship between technology and society, promoting so called [less retarded society](less_retarded_society.md). The basic motivation behind LRS and its wiki is unconditional [love](love.md) of all life, and the goal of LRS is to move towards creating a truly useful, [selfless](selflessness.md) technology that maximally helps all living beings as much as possible. As such the wiki rejects for example [capitalist software](capitalist_software.md) (and [capitalism](capitalism.md) itself), [bloated](bloat.md) software, [intellectual property](intellectual_property.md) laws ([copyright](copyright.md), [patents](patent.md), ...) [censorship](censorship.md), [pseudoleftism](pseudoleft.md) ([political correctness](political_correctness.md), [cancel culture](cancel_culture.md), [COC](coc.md)s ...) etc. It embraces [free as in freedom](free_software.md), simple technology, i.e. [Unix philosophy](unix_philosophy.md), [suckless](suckless.md) software, [anarcho pacifism](anpac.md), [racial realism](racial_realism.md), [free speech](free_speech.md), [veganism](veganism.md) etc. As a work promoting pure good in a [time](21st_century.md) of universal rule of [evil](evil.md) it is greatly controversial, often met with hostility. +The wiki is not funded by anyone, it doesn't have to be funded because it's not a capitalist project, it is also not affiliated with anyone, its author has no career for which he would have to fear, he has no friends or family, no material desires, no fear of jail or death, so he can write truth without being limited by anything. + LRS wiki was started by [drummyfish](drummyfish.md) on November 3 2021 as a way of recording and sharing his views, experience and knowledge about technology, as well as for creating a completely public domain educational resource and account of current society for future generations. It was forked from so called "based wiki" at a point when all the content on it had been made by drummyfish, so at this point LRS wiki is 100% drummyfish's own work; over time it became kind of a snapshot of drummyfish's brain and so the wiki doesn't allow contributions (but allows and encourages [forks](fork.md)). Some distinguishing features of LRS wiki that make it much better than other wikis include: diff --git a/pedophilia.md b/pedophilia.md index c852b44..da9b724 100644 --- a/pedophilia.md +++ b/pedophilia.md @@ -10,7 +10,7 @@ I have not once now encountered groups of people who tried to seriously push me love & peace ~drummyfish } -Pedophilia (also paedophilia or paedosexuality) is a sexual orientation towards children. A pedophile is often called a *pedo* or *minor-attracted person* (map). Opposition of pedophilia is called **[pedophobia](pedophobia.md)** or [pedohysteria](pedohysteria.md) and is a form of age [discrimination](discrimination.md) and witch hunt. +Pedophilia (also paedophilia or paedosexuality) is a sexual orientation towards children. A pedophile is often called a *pedo* or *minor-attracted person* (map); there are also terms such as hebephilia and ephebophilia that mean attraction to a bit older "non-adults". Opposition of pedophilia is called **[pedophobia](pedophobia.md)** or [pedohysteria](pedohysteria.md) and is a form of age [discrimination](discrimination.md) and witch hunt. *NOTE for pedophobes:* please attend [this anonymous self-help program](unretard.md). @@ -32,4 +32,6 @@ The fact that they made people believe it is a disorder if your penis can't magi The pedophile witch hunt exists because it is a great political tool. It is an arbitrarily invented (well, maybe not invented but purposefully escalated) victimless crime. By the principles of [fear culture](fear_culture.md), it allows to push things such as hard surveillance and censorship, similarly to e.g. "war on terror". You're a government or a corporation and want to spy on people chatting? Just make a law requiring mandatory [spyware](spyware.md) in all chat and justify it by "pedophiles" (this is what [EU](eu.md) did). You're against the surveillance law? You must be a pedophile! The witch hunt also allows to immediately cancel anyone uncomfortable. There's a guy who the government doesn't like? Maybe a political competition. Simple, just plant some files on his computer, make up a little story and he's gone. -Defending pedophilia in itself is enough to be cancelled, perhaps even imprisoned or killed by the angry mob, however it is the morally right thing to always say the truth -- especially that which is being censored. Therefore we mustn't remain silent about this issue. \ No newline at end of file +Defending pedophilia in itself is enough to be cancelled, perhaps even imprisoned or killed by the angry mob, however it is the morally right thing to always say the truth -- especially that which is being censored. Therefore we mustn't remain silent about this issue. + +2024 UPDATE: It seems like LGBT terrorists are realizing that absolute majority of people are attracted to pre-18 people and it seems they are starting a kind of reshape of their opinions to accept the "minority attracted"/hebephiles, though this is in extremely early stages now. This is no enlightened thinking on their part, it's a purely strategic political move of by now a purely political movement which simply foresees forming of a strong minority they don't want to stand against, so they are plotting to embrace them and separate them from the rest of pedophiles whom they will continue to bully. Do not fall for the trick. \ No newline at end of file diff --git a/people.md b/people.md index 169da8e..649c715 100644 --- a/people.md +++ b/people.md @@ -14,6 +14,7 @@ Here is a list of people notable in technology or in other ways related to [LRS] - **[Alan Turing](turing.md)**: 20th century mathematician, father of [computer science](compsci.md), [gay](gay.md) - **[Alexandre Oliva](alexandre_oliva.md)**: [free software](free_software.md) advocate, founding member of [FSFLA](fsfla.md), maintainer of [Linux-libre](linux_libre.md) - **[Bill Gates](bill_gates.md)**: founder and CEO of [Micro$oft](microsoft.md), huge faggot +- **[Bobby Tables](bobby_tables.md)**: full name `Robert'); DROP TABLE Students;--`, appeared in [xkcd](xkcd.md) 327, see also [SQL](sql.md) [injection](injection.md) - **[Buddha](buddha.md)** (Siddhartha Gautama): started [buddhism](buddhism.md), a religion seeking enlightenment attained by searching for the ultimate truth and so freeing oneself from all desire - **David Mondou-Labbe** ("""Devine Lu Linvega"""): some weird narcissist soyboy making minimalist stuff, [100r](100r.md) member, cryptocapitalist, [pseudoleftist](pseudoleft.md) fascist, heavily utilizing [NC](nc.md) licenses - **[Dennis Ritchie](dennis_ritchie)**: creator of [C](c.md) language and co-creator of [Unix](unix.md) diff --git a/random_page.md b/random_page.md index f10835f..cce593e 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1740 +2,1740 @@ Please kindly click random link. -[*](cc0.md) -[*](reactionary_software.md) -[*](vector.md) -[*](framework.md) -[*](optimization.md) -[*](saf.md) -[*](old.md) -[*](nanogenmo.md) -[*](tom_scott.md) -[*](tensor_product.md) -[*](global_discussion.md) -[*](rights_culture.md) -[*](shit.md) -[*](shogi.md) -[*](audiophilia.md) -[*](elo.md) -[*](regex.md) -[*](js.md) -[*](splinternet.md) -[*](myths.md) -[*](cheating.md) -[*](kwangmyong.md) -[*](programming_language.md) -[*](wikiwikiweb.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](app.md) -[*](science.md) -[*](anpac.md) -[*](microtransaction.md) -[*](needed.md) -[*](network.md) -[*](faq.md) -[*](atan.md) -[*](tinyphysicsengine.md) -[*](interplanetary_internet.md) -[*](troll.md) -[*](xonotic.md) -[*](wavelet_transform.md) -[*](mental_outlaw.md) -[*](stereotype.md) -[*](data_hoarding.md) -[*](paradigm.md) -[*](just_werks.md) -[*](firmware.md) -[*](woman.md) -[*](physics_engine.md) -[*](digital.md) -[*](people.md) -[*](io.md) -[*](gemini.md) -[*](python.md) -[*](phd.md) -[*](terry_davis.md) -[*](thrembo.md) +[*](collision_detection.md) +[*](quaternion.md) [*](programming_style.md) -[*](pokitto.md) -[*](less_retarded_software.md) -[*](rule110.md) -[*](css.md) -[*](coding.md) -[*](mob_software.md) -[*](often_confused.md) +[*](unretard.md) +[*](tensor_product.md) +[*](anpac.md) +[*](fail_ab.md) [*](portability.md) -[*](racetrack.md) -[*](hack.md) -[*](operating_system.md) -[*](ram.md) -[*](easy_to_learn_hard_to_master.md) -[*](slowly_boiling_the_frog.md) -[*](cyber.md) -[*](zuckerberg.md) -[*](pseudo3d.md) -[*](lambda_calculus.md) -[*](crime_against_economy.md) -[*](ai.md) -[*](c.md) -[*](line.md) -[*](bit_hack.md) -[*](microtheft.md) [*](geek.md) -[*](transistor.md) -[*](wiby.md) -[*](explicit.md) -[*](art.md) -[*](emoticon.md) -[*](abstraction.md) -[*](fantasy_console.md) -[*](pseudoleft.md) -[*](compression.md) -[*](capitalist_singularity.md) +[*](fascism.md) [*](lgbt.md) -[*](future_proof.md) -[*](interaction_net.md) -[*](gui.md) -[*](public_domain_computer.md) +[*](cache.md) +[*](quaternion.md) +[*](encyclopedia.md) +[*](antivirus_paradox.md) +[*](chinese.md) +[*](permacomputing.md) [*](git.md) -[*](rust.md) -[*](neural_network.md) -[*](wiby.md) -[*](network.md) -[*](ethics.md) -[*](pokitto.md) -[*](fourier_transform.md) -[*](unix_philosophy.md) -[*](bill_gates.md) -[*](regex.md) -[*](duskos.md) -[*](c_pitfalls.md) -[*](gemini.md) -[*](duke3d.md) -[*](tangram.md) -[*](crypto.md) -[*](approximation.md) -[*](paywall.md) -[*](cc0.md) -[*](libre.md) -[*](procgen.md) -[*](randomness.md) -[*](logic_gate.md) -[*](loc.md) -[*](normalization.md) -[*](neural_network.md) -[*](free_will.md) -[*](goodbye_world.md) -[*](optimization.md) -[*](dependency.md) -[*](viznut.md) -[*](minigame.md) -[*](ascii_art.md) -[*](saf.md) -[*](technology.md) -[*](resnicks_termite.md) -[*](jokes.md) -[*](raycastlib.md) -[*](kek.md) -[*](microsoft.md) -[*](copyright.md) -[*](ram.md) -[*](faggot.md) +[*](maintenance.md) +[*](shortcut_thinking.md) +[*](money.md) +[*](version_numbering.md) +[*](anal_bead.md) +[*](modern_software.md) +[*](encyclopedia.md) +[*](programming_style.md) +[*](global_discussion.md) +[*](memory_management.md) +[*](newspeak.md) +[*](math.md) +[*](good_enough.md) [*](distrohopping.md) -[*](bootstrap.md) -[*](throwaway_script.md) -[*](assertiveness.md) -[*](operating_system.md) -[*](mud.md) +[*](bs.md) +[*](randomness.md) +[*](privacy.md) +[*](football.md) +[*](sigbovik.md) +[*](license.md) +[*](cancer.md) +[*](often_misunderstood.md) +[*](microsoft.md) +[*](easy_to_learn_hard_to_master.md) +[*](copyright.md) +[*](programming_style.md) +[*](trusting_trust.md) [*](gigachad.md) -[*](entropy.md) -[*](autostereogram.md) +[*](ronja.md) +[*](axiom_of_choice.md) +[*](README.md) +[*](nd.md) +[*](deep_blue.md) +[*](fun.md) +[*](primitive_3d.md) +[*](nokia.md) +[*](free_hardware.md) +[*](newspeak.md) +[*](fork.md) +[*](lgbt.md) +[*](lrs_wiki.md) +[*](21st_century.md) +[*](twos_complement.md) +[*](nd.md) +[*](minimalism.md) +[*](used.md) +[*](unicode.md) +[*](cracker.md) +[*](aaron_swartz.md) +[*](data_hoarding.md) +[*](fascist.md) +[*](sdf.md) +[*](javascript.md) +[*](cos.md) +[*](algorithm.md) +[*](old.md) +[*](library.md) +[*](githopping.md) +[*](pseudoleft.md) +[*](stereotype.md) +[*](steganography.md) +[*](bootstrap.md) +[*](minimalism.md) +[*](soyence.md) +[*](floss.md) +[*](java.md) +[*](graveyard.md) +[*](crow_funding.md) +[*](suckless.md) +[*](consumerism.md) +[*](tor.md) +[*](rationalwiki.md) +[*](free_software.md) +[*](color.md) +[*](ascii_art.md) +[*](ascii.md) +[*](corporation.md) +[*](turing_machine.md) +[*](bilinear.md) +[*](openarena.md) +[*](linear_algebra.md) +[*](mipmap.md) +[*](freedom.md) +[*](john_carmack.md) +[*](comment.md) +[*](elon_musk.md) +[*](duke3d.md) +[*](bloat.md) +[*](wikiwikiweb.md) +[*](logic.md) +[*](bbs.md) +[*](books.md) +[*](atheism.md) +[*](drummyfish.md) +[*](cancer.md) +[*](free_body.md) +[*](procgen.md) +[*](quine.md) +[*](ioccc.md) +[*](prime.md) +[*](charity_sex.md) +[*](devuan.md) +[*](shit.md) +[*](collapse.md) +[*](cpp.md) +[*](speech_synthesis.md) +[*](real_number.md) +[*](entrepreneur.md) +[*](encryption.md) +[*](rationalwiki.md) +[*](often_confused.md) +[*](npc.md) +[*](mouse.md) +[*](lrs_dictionary.md) +[*](sw.md) +[*](fight.md) +[*](robot.md) +[*](infinity.md) +[*](xd.md) +[*](normalization.md) +[*](wavelet_transform.md) +[*](minigame.md) +[*](dick_reveal.md) +[*](distance.md) +[*](smol_internet.md) +[*](emoticon.md) +[*](jesus.md) +[*](implicit.md) +[*](fight.md) +[*](fear_culture.md) +[*](ancap.md) +[*](regex.md) +[*](ioccc.md) +[*](bit_hack.md) +[*](fsf.md) +[*](jedi_engine.md) +[*](quine.md) +[*](dog.md) +[*](plusnigger.md) +[*](combinatorics.md) +[*](firmware.md) +[*](fascism.md) +[*](football.md) [*](rationalwiki.md) [*](music.md) -[*](iq.md) -[*](niger.md) -[*](vim.md) -[*](rgb332.md) -[*](libre.md) -[*](atan.md) -[*](triangle.md) -[*](race.md) -[*](os.md) -[*](military.md) -[*](freedom.md) -[*](p_vs_np.md) -[*](luke_smith.md) -[*](used.md) -[*](sanism.md) -[*](update_culture.md) -[*](viznut.md) -[*](githopping.md) -[*](liberalism.md) -[*](fascist.md) -[*](disease.md) -[*](plusnigger.md) -[*](brain_software.md) -[*](easier_done_than_said.md) -[*](money.md) -[*](proprietary.md) -[*](reactionary_software.md) -[*](fractal.md) -[*](library.md) -[*](fascist.md) -[*](less_retarded_software.md) -[*](programming_tips.md) -[*](egoism.md) -[*](good_enough.md) -[*](living.md) -[*](low_poly.md) -[*](sqrt.md) -[*](cc0.md) -[*](autostereogram.md) -[*](faq.md) -[*](corporation.md) -[*](capitalist_singularity.md) -[*](magic.md) -[*](acronym.md) -[*](left.md) -[*](portability.md) -[*](elon_musk.md) -[*](mainstream.md) -[*](dynamic_programming.md) -[*](wiki_stats.md) -[*](murderer.md) -[*](real_number.md) -[*](42.md) -[*](paywall.md) -[*](gender_studies.md) -[*](autoupdate.md) -[*](atheism.md) -[*](sanism.md) -[*](42.md) -[*](fear_culture.md) -[*](femoid.md) -[*](regex.md) -[*](go.md) -[*](acronym.md) -[*](capitalist_software.md) -[*](rgb565.md) -[*](backpropagation.md) -[*](ai.md) -[*](newspeak.md) -[*](marxism.md) -[*](pride.md) -[*](memory_management.md) -[*](marble_race.md) -[*](egoism.md) -[*](gaywashing.md) -[*](femoid.md) -[*](island.md) -[*](morality.md) -[*](moderation.md) -[*](langtons_ant.md) -[*](hardware.md) -[*](creative_commons.md) -[*](rsa.md) -[*](free_speech.md) -[*](zen.md) -[*](human_language.md) [*](framework.md) -[*](c_pitfalls.md) -[*](selflessness.md) -[*](wiki_pages.md) -[*](physics.md) -[*](geek.md) -[*](attribution.md) -[*](3d_modeling.md) -[*](boot.md) -[*](vim.md) -[*](license.md) -[*](goodbye_world.md) -[*](steve_jobs.md) -[*](gopher.md) -[*](pseudoleft.md) -[*](jesus.md) -[*](toxic.md) -[*](x86.md) -[*](encryption.md) -[*](cyber.md) -[*](normalization.md) -[*](cracking.md) -[*](collapse.md) -[*](beauty.md) -[*](git.md) -[*](coc.md) -[*](update_culture.md) -[*](exercises.md) -[*](drummyfish.md) -[*](sigbovik.md) -[*](easy_to_learn_hard_to_master.md) -[*](competition.md) -[*](countercomplex.md) -[*](rapeware.md) -[*](geek.md) -[*](procgen.md) -[*](sqrt.md) -[*](sigbovik.md) -[*](dodleston.md) -[*](copyleft.md) -[*](crypto.md) -[*](f2p.md) -[*](twos_complement.md) -[*](quaternion.md) -[*](blender.md) -[*](f2p.md) -[*](normalization.md) -[*](semiconductor.md) -[*](minimalism.md) -[*](john_carmack.md) -[*](soydev.md) -[*](markov_chain.md) -[*](f2p.md) -[*](emoticon.md) -[*](julia_set.md) -[*](money.md) -[*](easy_to_learn_hard_to_master.md) -[*](xxiivv.md) -[*](unicode.md) -[*](anal_bead.md) -[*](loc.md) -[*](foss.md) -[*](arch.md) -[*](free_culture.md) -[*](books.md) -[*](cat_v.md) -[*](tinyphysicsengine.md) -[*](digital.md) -[*](atheism.md) -[*](suckless.md) -[*](mechanical.md) -[*](cache.md) -[*](license.md) -[*](windows.md) -[*](sudoku.md) -[*](build_engine.md) -[*](how_to.md) -[*](future_proof.md) -[*](bazaar.md) -[*](thrembo.md) -[*](backpropagation.md) -[*](primitive_3d.md) -[*](just_werks.md) -[*](randomness.md) -[*](lrs_dictionary.md) -[*](nanogenmo.md) -[*](byte.md) -[*](patent.md) -[*](cracker.md) -[*](javascript.md) -[*](aliasing.md) -[*](3d_modeling.md) -[*](facebook.md) -[*](logic.md) -[*](communism.md) -[*](trolling.md) -[*](noise.md) -[*](duskos.md) -[*](assembly.md) -[*](rgb332.md) -[*](wikipedia.md) -[*](c_sharp.md) -[*](free_hardware.md) -[*](crime_against_economy.md) -[*](permacomputing.md) -[*](compsci.md) -[*](cheating.md) -[*](plan9.md) -[*](often_misunderstood.md) -[*](interesting.md) -[*](digital.md) -[*](3d_rendering.md) -[*](privacy.md) -[*](collision.md) -[*](teletext.md) -[*](unix.md) -[*](malware.md) -[*](suicide.md) [*](right.md) -[*](dodleston.md) -[*](physics.md) -[*](backgammon.md) -[*](communism.md) -[*](everyone_does_it.md) -[*](needed.md) -[*](unary.md) -[*](how_to.md) -[*](antivirus_paradox.md) -[*](bootstrap.md) -[*](acronym.md) -[*](public_domain.md) +[*](education.md) +[*](rms.md) +[*](murderer.md) +[*](wizard.md) +[*](finished.md) +[*](fixed_point.md) +[*](float.md) +[*](kids_these_days.md) [*](frameless.md) -[*](oop.md) -[*](toxic.md) -[*](windows.md) -[*](sdf.md) -[*](unix_philosophy.md) -[*](wiki_authors.md) -[*](floss.md) -[*](entrepreneur.md) +[*](analog.md) +[*](piracy.md) [*](neural_network.md) -[*](logic.md) -[*](gnu.md) -[*](shader.md) -[*](lrs.md) -[*](chaos.md) -[*](mechanical.md) -[*](plan9.md) -[*](saf.md) -[*](nationalism.md) -[*](ronja.md) -[*](infinity.md) -[*](demoscene.md) -[*](wiki_post_mortem.md) -[*](fediverse.md) -[*](phd.md) -[*](vim.md) -[*](nc.md) -[*](tor.md) -[*](name_is_important.md) -[*](turing_machine.md) -[*](wikipedia.md) -[*](zen.md) -[*](fractal.md) -[*](fixed_point.md) -[*](czechia.md) -[*](marketing.md) -[*](hard_to_learn_easy_to_master.md) -[*](compiler_bomb.md) -[*](soyence.md) -[*](hacker_culture.md) -[*](ssao.md) -[*](capitalism.md) -[*](exercises.md) -[*](trump.md) -[*](logic_circuit.md) -[*](often_confused.md) -[*](compiler_bomb.md) -[*](double_buffering.md) -[*](monad.md) -[*](python.md) -[*](web.md) -[*](altruism.md) -[*](ethics.md) -[*](anal_bead.md) -[*](intellectual_property.md) -[*](anarchism.md) -[*](logic.md) -[*](digital_signature.md) -[*](arch.md) -[*](boat.md) -[*](float.md) -[*](consumerism.md) -[*](color.md) -[*](mandelbrot_set.md) -[*](mandelbrot_set.md) -[*](life.md) -[*](productivity_cult.md) -[*](mental_outlaw.md) -[*](rust.md) -[*](fascism.md) -[*](README.md) -[*](jargon_file.md) -[*](work.md) -[*](pd.md) -[*](google.md) -[*](collapse.md) -[*](bbs.md) -[*](prime.md) -[*](quaternion.md) -[*](21st_century.md) -[*](universe.md) -[*](software.md) -[*](algorithm.md) -[*](axiom_of_choice.md) -[*](world_broadcast.md) -[*](aliasing.md) -[*](culture.md) -[*](io.md) [*](demo.md) -[*](temple_os.md) -[*](girl.md) -[*](deep_blue.md) -[*](deep_blue.md) -[*](work.md) -[*](mipmap.md) -[*](hexadecimal.md) -[*](cpp.md) -[*](21st_century.md) -[*](black.md) -[*](monad.md) -[*](minigame.md) -[*](apple.md) -[*](thrembo.md) -[*](cracking.md) -[*](democracy.md) -[*](flatland.md) -[*](42.md) -[*](pd.md) -[*](bazaar.md) -[*](watchdog.md) -[*](boot.md) -[*](antivirus_paradox.md) -[*](mainstream.md) -[*](beauty.md) -[*](raycasting.md) -[*](recursion.md) -[*](gemini.md) -[*](copyfree.md) -[*](youtube.md) -[*](human_language.md) -[*](dick_reveal.md) -[*](marketing.md) -[*](football.md) -[*](low_poly.md) -[*](dog.md) -[*](c_tutorial.md) -[*](duskos.md) -[*](copyfree.md) -[*](sorting.md) -[*](fascism.md) -[*](fuck.md) -[*](langtons_ant.md) -[*](dynamic_programming.md) -[*](holy_war.md) -[*](4chan.md) -[*](tattoo.md) -[*](trom.md) -[*](gay.md) -[*](systemd.md) -[*](number.md) -[*](evil.md) -[*](microtransaction.md) -[*](pseudominimalism.md) -[*](bit_hack.md) -[*](brainfuck.md) -[*](assembly.md) -[*](aaron_swartz.md) -[*](function.md) -[*](collapse.md) -[*](www.md) -[*](javascript.md) -[*](libertarianism.md) -[*](math.md) -[*](collision_detection.md) -[*](forth.md) -[*](left.md) -[*](terry_davis.md) -[*](wiki_pages.md) -[*](bit.md) -[*](approximation.md) -[*](binary.md) -[*](devuan.md) [*](free_body.md) -[*](right.md) -[*](entrepreneur.md) -[*](bytebeat.md) -[*](terry_davis.md) -[*](shit.md) -[*](maintenance.md) -[*](rms.md) -[*](www.md) -[*](de_facto.md) -[*](trusting_trust.md) -[*](proprietary_software.md) -[*](john_carmack.md) -[*](music.md) -[*](bullshit.md) -[*](lil.md) -[*](hack.md) -[*](small3dlib.md) -[*](reactionary_software.md) -[*](assertiveness.md) -[*](nigger.md) -[*](autoupdate.md) -[*](fsf.md) -[*](usa.md) -[*](trash_magic.md) -[*](countercomplex.md) -[*](autostereogram.md) -[*](marble_race.md) -[*](twos_complement.md) -[*](quaternion.md) -[*](ui.md) -[*](wikiwikiweb.md) -[*](pi.md) -[*](wow.md) -[*](football.md) -[*](niger.md) -[*](english.md) -[*](unix_philosophy.md) -[*](wiki_stats.md) -[*](security.md) -[*](julia_set.md) -[*](entropy.md) -[*](fight.md) -[*](float.md) -[*](low_poly.md) -[*](arduboy.md) -[*](free_culture.md) -[*](esolang.md) -[*](rock.md) -[*](fascist.md) -[*](speech_synthesis.md) -[*](hacking.md) -[*](cos.md) -[*](gui.md) -[*](sin.md) -[*](golang.md) -[*](cancer.md) -[*](bloat.md) -[*](wiki_stats.md) -[*](marxism.md) -[*](programming_style.md) -[*](furry.md) -[*](sdf.md) -[*](downto.md) -[*](chaos.md) -[*](english.md) -[*](pseudo3d.md) -[*](esolang.md) -[*](tangram.md) -[*](openai.md) -[*](quantum_gate.md) -[*](cos.md) -[*](left_right.md) -[*](one.md) -[*](libertarianism.md) -[*](information.md) -[*](murderer.md) -[*](data_structure.md) -[*](paradigm.md) -[*](ioccc.md) -[*](jedi_engine.md) -[*](lil.md) -[*](mob_software.md) -[*](gay.md) -[*](diogenes.md) -[*](assembly.md) -[*](sorting.md) -[*](fear_culture.md) -[*](game_of_life.md) -[*](hyperoperation.md) -[*](dodleston.md) -[*](comment.md) -[*](venus_project.md) -[*](right.md) -[*](temple_os.md) -[*](harry_potter.md) -[*](censorship.md) -[*](pd.md) -[*](raylib.md) -[*](john_carmack.md) -[*](byte.md) -[*](trom.md) -[*](framework.md) -[*](trolling.md) -[*](encryption.md) -[*](ronja.md) -[*](justice.md) -[*](pseudorandomness.md) -[*](ancap.md) -[*](unix.md) -[*](free_hardware.md) -[*](productivity_cult.md) -[*](permacomputing.md) -[*](wizard.md) -[*](c_pitfalls.md) -[*](smart.md) -[*](global_discussion.md) -[*](implicit.md) -[*](cache.md) -[*](bytecode.md) -[*](nationalism.md) -[*](maintenance.md) -[*](rock.md) -[*](everyone_does_it.md) -[*](digital_signature.md) -[*](uxn.md) -[*](minimalism.md) -[*](earth.md) -[*](color.md) -[*](windows.md) -[*](girl.md) -[*](beauty.md) -[*](ascii_art.md) -[*](data_hoarding.md) -[*](determinism.md) [*](leading_the_pig_to_the_slaughterhouse.md) -[*](library.md) -[*](free_speech.md) -[*](fediverse.md) -[*](island.md) -[*](piracy.md) -[*](chasm_the_rift.md) -[*](4chan.md) -[*](mouse.md) -[*](drummyfish.md) -[*](work.md) -[*](security.md) -[*](political_correctness.md) -[*](capitalism.md) -[*](robot.md) -[*](minesweeper.md) -[*](data_structure.md) -[*](egoism.md) -[*](wikidata.md) -[*](netstalking.md) -[*](usenet.md) -[*](dungeons_and_dragons.md) -[*](unretard.md) -[*](people.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](magic.md) -[*](bitreich.md) -[*](main.md) -[*](human_language.md) -[*](ram.md) -[*](openarena.md) -[*](programming.md) -[*](hero.md) -[*](phd.md) -[*](portal_rendering.md) -[*](double_buffering.md) -[*](docker.md) -[*](interpolation.md) -[*](ubi.md) -[*](throwaway_script.md) -[*](mud.md) -[*](boat.md) -[*](selflessness.md) -[*](anarch.md) -[*](settled.md) -[*](dog.md) -[*](distrohopping.md) -[*](binary.md) -[*](mipmap.md) -[*](democracy.md) -[*](wow.md) -[*](antialiasing.md) -[*](lrs_wiki.md) -[*](network.md) -[*](downto.md) -[*](myths.md) -[*](game_engine.md) -[*](de_facto.md) -[*](small3dlib.md) -[*](culture.md) -[*](brain_software.md) -[*](anal_bead.md) -[*](combinatorics.md) -[*](sjw.md) -[*](gender_studies.md) -[*](left.md) -[*](public_domain.md) -[*](trump.md) -[*](fight_culture.md) -[*](ethics.md) -[*](21st_century.md) -[*](money.md) -[*](interaction_net.md) -[*](often_misunderstood.md) -[*](color.md) -[*](zero.md) -[*](mandelbrot_set.md) -[*](watchdog.md) -[*](football.md) -[*](netstalking.md) -[*](ronja.md) -[*](graveyard.md) -[*](suicide.md) -[*](newspeak.md) -[*](racism.md) -[*](collision_detection.md) -[*](progress.md) -[*](linux.md) -[*](main.md) +[*](real_number.md) [*](education.md) -[*](logic_circuit.md) -[*](aaron_swartz.md) -[*](hacking.md) -[*](digital_signature.md) -[*](netstalking.md) -[*](modern.md) -[*](suckless.md) -[*](lmao.md) -[*](yes_they_can.md) -[*](xd.md) -[*](shogi.md) -[*](yes_they_can.md) -[*](venus_project.md) -[*](xxiivv.md) -[*](hardware.md) -[*](programming_tips.md) -[*](troll.md) -[*](100r.md) -[*](algorithm.md) -[*](wiki_post_mortem.md) -[*](avpd.md) -[*](island.md) -[*](rationalwiki.md) -[*](doom.md) -[*](proprietary.md) -[*](fun.md) -[*](culture.md) -[*](billboard.md) -[*](rule110.md) -[*](crow_funding.md) -[*](atheism.md) -[*](tensor_product.md) -[*](good_enough.md) -[*](autoupdate.md) -[*](copyfree.md) -[*](memory_management.md) -[*](productivity_cult.md) -[*](emoticon.md) -[*](easier_done_than_said.md) -[*](tom_scott.md) -[*](formal_language.md) -[*](doom.md) -[*](graveyard.md) -[*](world_broadcast.md) -[*](openai.md) -[*](programming.md) -[*](paradigm.md) -[*](usa.md) -[*](resnicks_termite.md) -[*](version_numbering.md) -[*](cancer.md) -[*](sqrt.md) -[*](bytebeat.md) -[*](moderation.md) -[*](smallchesslib.md) -[*](raylib.md) -[*](openarena.md) -[*](kwangmyong.md) -[*](quantum_gate.md) -[*](evil.md) -[*](charity_sex.md) -[*](fight.md) -[*](hardware.md) -[*](settled.md) -[*](watchdog.md) -[*](turing_machine.md) -[*](sjw.md) -[*](license.md) -[*](technology.md) -[*](tranny_software.md) -[*](altruism.md) -[*](english.md) -[*](racism.md) -[*](cancer.md) -[*](memory_management.md) -[*](comun.md) -[*](less_retarded_society.md) -[*](zuckerberg.md) -[*](tattoo.md) -[*](jokes.md) -[*](lrs_wiki.md) -[*](gopher.md) -[*](competition.md) -[*](quine.md) -[*](fight_culture.md) -[*](cyber.md) -[*](free.md) -[*](pride.md) -[*](elo.md) -[*](software.md) -[*](nd.md) -[*](foss.md) -[*](pseudominimalism.md) -[*](lambda_calculus.md) -[*](shogi.md) -[*](quine.md) -[*](logic_gate.md) -[*](censorship.md) -[*](unary.md) -[*](bilinear.md) -[*](npc.md) -[*](crow_funding.md) -[*](unretard.md) -[*](formal_language.md) -[*](nd.md) -[*](fail_ab.md) -[*](left_right.md) -[*](billboard.md) -[*](military.md) -[*](open_console.md) -[*](e.md) -[*](physics.md) -[*](marketing.md) -[*](capitalism.md) -[*](triangle.md) -[*](tas.md) -[*](consumerism.md) -[*](patent.md) -[*](plan9.md) -[*](trash_magic.md) -[*](100r.md) -[*](steganography.md) -[*](go.md) -[*](books.md) -[*](less_retarded_society.md) -[*](progress.md) -[*](qubit.md) -[*](chinese.md) -[*](apple.md) -[*](music.md) -[*](teletext.md) -[*](cc.md) -[*](ui.md) -[*](3d_model.md) -[*](fork.md) -[*](version_numbering.md) -[*](semiconductor.md) -[*](morality.md) -[*](c_tutorial.md) -[*](kiwifarms.md) -[*](fail_ab.md) -[*](lrs.md) -[*](faq.md) -[*](x86.md) -[*](free_universe.md) -[*](art.md) -[*](bs.md) -[*](racetrack.md) -[*](hard_to_learn_easy_to_master.md) -[*](gay.md) -[*](morality.md) -[*](c_tutorial.md) -[*](communism.md) -[*](cpp.md) -[*](lrs_dictionary.md) -[*](fun.md) -[*](fixed_point.md) -[*](kek.md) -[*](earth.md) -[*](programming_tips.md) -[*](greenwashing.md) -[*](name_is_important.md) -[*](nokia.md) -[*](abstraction.md) -[*](microsoft.md) -[*](reddit.md) -[*](fun.md) -[*](4chan.md) -[*](usenet.md) -[*](wavelet_transform.md) -[*](social_inertia.md) -[*](competition.md) -[*](hack.md) -[*](free_software.md) -[*](floss.md) -[*](gender_studies.md) -[*](splinternet.md) -[*](fourier_transform.md) -[*](anarch.md) -[*](bloat_monopoly.md) -[*](fork.md) -[*](hero.md) -[*](css.md) -[*](suckless.md) -[*](fascism.md) -[*](computational_complexity.md) -[*](sw.md) -[*](hw.md) -[*](math.md) -[*](fight.md) -[*](jedi_engine.md) -[*](google.md) -[*](logic_gate.md) -[*](bill_gates.md) -[*](collision.md) -[*](niger.md) -[*](moderation.md) -[*](c.md) -[*](tech.md) -[*](military.md) -[*](flatland.md) -[*](prime.md) -[*](tor.md) -[*](audiophilia.md) -[*](living.md) -[*](open_source.md) -[*](universe.md) -[*](cracking.md) -[*](global_discussion.md) -[*](comment.md) -[*](demoscene.md) -[*](wiki_pages.md) -[*](abstraction.md) -[*](bit_hack.md) -[*](attribution.md) -[*](wiki_style.md) -[*](lrs_wiki.md) -[*](nanogenmo.md) -[*](3d_modeling.md) -[*](proprietary.md) -[*](hacker_culture.md) -[*](bytecode.md) -[*](people.md) -[*](tensor_product.md) -[*](nc.md) -[*](semiconductor.md) -[*](soydev.md) -[*](political_correctness.md) -[*](privacy.md) -[*](debugging.md) -[*](procgen.md) -[*](linear_algebra.md) -[*](encyclopedia.md) -[*](maintenance.md) -[*](data_hoarding.md) -[*](cheating.md) -[*](kiss.md) -[*](kids_these_days.md) -[*](bytecode.md) -[*](chinese.md) -[*](unicode.md) -[*](jargon_file.md) -[*](deferred_shading.md) -[*](fqa.md) -[*](mouse.md) -[*](troll.md) -[*](unix.md) -[*](build_engine.md) -[*](ssao.md) -[*](sdf.md) -[*](modern_software.md) -[*](pride.md) -[*](luke_smith.md) -[*](fantasy_console.md) -[*](real_number.md) -[*](wavelet_transform.md) -[*](js.md) -[*](ancap.md) -[*](reddit.md) -[*](sudoku.md) -[*](java.md) -[*](kiss.md) -[*](public_domain.md) -[*](rms.md) -[*](technology.md) -[*](copyleft.md) -[*](tpe.md) -[*](copyleft.md) -[*](open_console.md) -[*](altruism.md) -[*](proof.md) -[*](zero.md) -[*](e.md) -[*](less_retarded_society.md) [*](axiom_of_choice.md) -[*](tinyphysicsengine.md) -[*](fractal.md) -[*](jedi_engine.md) -[*](dick_reveal.md) -[*](cc.md) -[*](rapeware.md) -[*](bloat_monopoly.md) -[*](steganography.md) -[*](pseudominimalism.md) -[*](bit.md) -[*](game.md) -[*](steganography.md) -[*](devuan.md) -[*](dungeons_and_dragons.md) -[*](often_misunderstood.md) -[*](harry_potter.md) -[*](fizzbuzz.md) -[*](lrs.md) -[*](rock.md) -[*](logic_circuit.md) -[*](bs.md) -[*](diogenes.md) -[*](avpd.md) -[*](langtons_ant.md) -[*](proof.md) -[*](modern_software.md) -[*](3d_model.md) -[*](evil.md) -[*](wikidata.md) -[*](pi.md) -[*](kiwifarms.md) -[*](raycasting.md) -[*](brainfuck.md) -[*](arduboy.md) -[*](woman.md) -[*](body_shaming.md) -[*](graphics.md) -[*](bilinear.md) -[*](bit.md) -[*](disease.md) -[*](ted_kaczynski.md) -[*](race.md) -[*](less_retarded_hardware.md) -[*](primitive_3d.md) -[*](minesweeper.md) -[*](finished.md) -[*](markov_chain.md) -[*](analog.md) -[*](liberalism.md) -[*](cpp.md) -[*](social_inertia.md) -[*](cracker.md) -[*](shortcut_thinking.md) -[*](fsf.md) -[*](recursion.md) -[*](fourier_transform.md) -[*](go.md) -[*](deep_blue.md) -[*](justice.md) -[*](shortcut_thinking.md) -[*](iq.md) -[*](comun.md) -[*](pokitto.md) -[*](implicit.md) -[*](axiom_of_choice.md) -[*](fork.md) -[*](monad.md) -[*](robot.md) -[*](transistor.md) -[*](cracker.md) -[*](chasm_the_rift.md) -[*](free_software.md) -[*](physics_engine.md) -[*](blender.md) -[*](stereotype.md) -[*](python.md) -[*](intellectual_property.md) -[*](computational_complexity.md) -[*](demoscene.md) -[*](forth.md) -[*](dependency.md) -[*](antivirus_paradox.md) -[*](fediverse.md) -[*](hexadecimal.md) -[*](elo.md) -[*](soyence.md) -[*](universe.md) -[*](motivation.md) -[*](selflessness.md) -[*](x86.md) -[*](malware.md) -[*](greenwashing.md) -[*](hw.md) -[*](ubi.md) -[*](brain_software.md) -[*](docker.md) -[*](zero.md) -[*](npc.md) -[*](bill_gates.md) -[*](hacking.md) -[*](mental_outlaw.md) -[*](sanism.md) -[*](wizard.md) -[*](dungeons_and_dragons.md) -[*](plusnigger.md) -[*](distance.md) -[*](plusnigger.md) -[*](raylib.md) -[*](demo.md) -[*](linux.md) -[*](flatland.md) -[*](nationalism.md) -[*](soyence.md) -[*](permacomputing.md) -[*](noise.md) -[*](sin.md) -[*](microsoft.md) -[*](viznut.md) -[*](combinatorics.md) -[*](marble_race.md) -[*](xonotic.md) -[*](whale.md) -[*](atan.md) -[*](holy_war.md) -[*](internet.md) -[*](gaywashing.md) -[*](smol_internet.md) -[*](foss.md) -[*](everyone_does_it.md) -[*](dinosaur.md) -[*](charity_sex.md) -[*](crypto.md) -[*](xd.md) -[*](3d_rendering.md) -[*](kiss.md) -[*](coding.md) -[*](holy_war.md) -[*](main.md) -[*](app.md) -[*](gnu.md) -[*](fuck.md) -[*](racetrack.md) -[*](czechia.md) -[*](collision.md) -[*](compression.md) -[*](ai.md) -[*](anarchism.md) -[*](diogenes.md) -[*](easier_done_than_said.md) -[*](bullshit.md) -[*](smol_internet.md) -[*](internet.md) -[*](git.md) -[*](twos_complement.md) -[*](transistor.md) -[*](computer.md) -[*](infinity.md) -[*](real_number.md) -[*](social_inertia.md) -[*](rgb565.md) -[*](capitalist_software.md) -[*](free_body.md) -[*](oop.md) -[*](see_through_clothes.md) -[*](entropy.md) -[*](sw_rendering.md) -[*](luke_smith.md) -[*](forth.md) -[*](esolang.md) -[*](duke3d.md) -[*](analytic_geometry.md) -[*](complexity.md) -[*](body_shaming.md) -[*](xonotic.md) -[*](drummyfish.md) -[*](information.md) -[*](nokia.md) -[*](golang.md) -[*](palette.md) -[*](life.md) -[*](rsa.md) -[*](graphics.md) -[*](encryption.md) -[*](pedophilia.md) -[*](pseudorandomness.md) -[*](capitalist_singularity.md) -[*](bbs.md) -[*](ancap.md) -[*](mouse.md) -[*](debugging.md) -[*](smart.md) -[*](downto.md) -[*](bbs.md) -[*](fantasy_console.md) -[*](ted_kaczynski.md) -[*](nord_vpn.md) -[*](binary.md) -[*](kids_these_days.md) -[*](nigger.md) -[*](bs.md) -[*](math.md) -[*](anarch.md) -[*](less_retarded_hardware.md) -[*](finished.md) -[*](elon_musk.md) -[*](jesus.md) -[*](teletext.md) -[*](wiki_rights.md) -[*](rationalwiki.md) -[*](coc.md) -[*](corporation.md) -[*](free.md) -[*](democracy.md) -[*](mipmap.md) -[*](ascii.md) -[*](zen.md) -[*](billboard.md) -[*](rsa.md) -[*](lil.md) -[*](permacomputing_wiki.md) -[*](bilinear.md) -[*](newspeak.md) -[*](free_universe.md) -[*](anpac.md) -[*](uxn.md) -[*](wiki_style.md) -[*](sw.md) -[*](elon_musk.md) -[*](README.md) -[*](bitreich.md) -[*](fqa.md) -[*](shader.md) -[*](soydev.md) -[*](analytic_geometry.md) -[*](trusting_trust.md) -[*](zuckerberg.md) -[*](qubit.md) -[*](crow_funding.md) -[*](web.md) -[*](encyclopedia.md) -[*](frameless.md) -[*](rule110.md) -[*](one.md) -[*](comment.md) -[*](cache.md) -[*](hero.md) -[*](web.md) -[*](rgb332.md) -[*](nokia.md) -[*](cc.md) -[*](unretard.md) -[*](liberalism.md) -[*](used.md) -[*](information.md) -[*](black.md) -[*](love.md) -[*](murderer.md) -[*](attribution.md) -[*](complexity.md) -[*](steve_jobs.md) -[*](internet.md) -[*](no_knowledge_proof.md) -[*](needed.md) -[*](paywall.md) -[*](raycasting.md) -[*](compiler_bomb.md) -[*](os.md) -[*](antialiasing.md) -[*](compsci.md) -[*](software.md) -[*](see_through_clothes.md) -[*](cloud.md) -[*](analytic_geometry.md) -[*](trom.md) -[*](interplanetary_internet.md) -[*](lgbt.md) -[*](justice.md) -[*](free_body.md) -[*](open_console.md) -[*](interplanetary_internet.md) -[*](golang.md) -[*](line.md) -[*](modern_software.md) -[*](docker.md) -[*](love.md) -[*](microtheft.md) -[*](sorting.md) -[*](apple.md) -[*](raycastlib.md) -[*](libertarianism.md) -[*](wiki_style.md) -[*](books.md) -[*](copyright.md) -[*](small3dlib.md) -[*](complexity.md) -[*](youtube.md) -[*](wikipedia.md) -[*](hw.md) -[*](3d_model.md) -[*](tas.md) -[*](fizzbuzz.md) -[*](ssao.md) -[*](quantum_gate.md) -[*](marxism.md) -[*](hero_culture.md) -[*](slowly_boiling_the_frog.md) -[*](turing_machine.md) -[*](programming_language.md) -[*](optimization.md) -[*](trump.md) -[*](political_correctness.md) -[*](suicide.md) -[*](wiki_rights.md) -[*](openai.md) -[*](love.md) -[*](free_will.md) -[*](copyright.md) -[*](name_is_important.md) -[*](nd.md) -[*](gnu.md) -[*](shortcut_thinking.md) -[*](cpu.md) -[*](recursion.md) -[*](modern.md) -[*](steve_jobs.md) -[*](www.md) -[*](minigame.md) -[*](tas.md) -[*](backpropagation.md) -[*](dynamic_programming.md) -[*](public_domain_computer.md) -[*](palette.md) [*](game_of_life.md) -[*](tech.md) -[*](chess.md) -[*](crime_against_economy.md) -[*](chess.md) -[*](double_buffering.md) -[*](hyperoperation.md) +[*](kek.md) +[*](productivity_cult.md) +[*](chaos.md) +[*](compiler_bomb.md) +[*](distance.md) +[*](free.md) +[*](niggercoin.md) +[*](dynamic_programming.md) +[*](twos_complement.md) +[*](ronja.md) +[*](collapse.md) +[*](semiconductor.md) +[*](lil.md) +[*](sjw.md) +[*](racetrack.md) [*](interpolation.md) +[*](less_retarded_hardware.md) +[*](wiki_pages.md) +[*](wiki_authors.md) +[*](sudoku.md) +[*](wow.md) +[*](english.md) +[*](resnicks_termite.md) +[*](antivirus_paradox.md) +[*](microtransaction.md) +[*](soyence.md) +[*](rule110.md) +[*](bitreich.md) +[*](open_source.md) +[*](tech.md) +[*](mipmap.md) +[*](sin.md) +[*](easier_done_than_said.md) +[*](how_to.md) +[*](arch.md) +[*](backpropagation.md) +[*](proof.md) +[*](trom.md) +[*](plan9.md) +[*](disease.md) +[*](hyperoperation.md) +[*](antialiasing.md) +[*](wow.md) +[*](cloud.md) +[*](free_hardware.md) +[*](resnicks_termite.md) +[*](universe.md) +[*](ethics.md) +[*](marble_race.md) +[*](recursion.md) +[*](bloat_monopoly.md) +[*](intellectual_property.md) +[*](procgen.md) +[*](bitreich.md) +[*](watchdog.md) +[*](tranny_software.md) +[*](fun.md) +[*](update_culture.md) +[*](nanogenmo.md) +[*](mechanical.md) +[*](lrs.md) +[*](dinosaur.md) +[*](steve_jobs.md) +[*](wiki_style.md) +[*](byte.md) +[*](earth.md) +[*](freedom.md) +[*](analog.md) +[*](proprietary.md) +[*](version_numbering.md) +[*](fuck.md) +[*](hacker_culture.md) +[*](wizard.md) +[*](fractal.md) +[*](portal_rendering.md) +[*](piracy.md) +[*](game_engine.md) +[*](copyleft.md) +[*](see_through_clothes.md) +[*](bullshit.md) +[*](programming_language.md) +[*](procgen.md) +[*](smallchesslib.md) +[*](chess.md) +[*](markov_chain.md) +[*](xd.md) +[*](fantasy_console.md) +[*](gigachad.md) +[*](coding.md) +[*](rock.md) +[*](culture.md) +[*](interaction_net.md) +[*](entrepreneur.md) +[*](dungeons_and_dragons.md) +[*](steganography.md) +[*](mob_software.md) +[*](trusting_trust.md) +[*](ancap.md) +[*](dinosaur.md) +[*](low_poly.md) +[*](small3dlib.md) +[*](number.md) +[*](motivation.md) +[*](deferred_shading.md) +[*](libre.md) +[*](arduboy.md) +[*](steve_jobs.md) +[*](cache.md) +[*](library.md) +[*](bit.md) +[*](murderer.md) +[*](one.md) +[*](pokitto.md) +[*](whale.md) +[*](data_structure.md) +[*](tinyphysicsengine.md) +[*](free_universe.md) +[*](ascii_art.md) +[*](john_carmack.md) +[*](woman.md) +[*](doom.md) +[*](atan.md) +[*](21st_century.md) +[*](diogenes.md) +[*](explicit.md) +[*](computational_complexity.md) +[*](pride.md) +[*](pokitto.md) +[*](portal_rendering.md) +[*](autostereogram.md) +[*](science.md) +[*](trom.md) +[*](military.md) +[*](openarena.md) +[*](old.md) +[*](mouse.md) +[*](demo.md) +[*](analytic_geometry.md) +[*](coc.md) +[*](downto.md) +[*](evil.md) +[*](proof.md) +[*](capitalist_singularity.md) +[*](life.md) +[*](pokitto.md) +[*](unix_philosophy.md) +[*](microtheft.md) +[*](arduboy.md) +[*](mud.md) +[*](rms.md) +[*](line.md) +[*](data_hoarding.md) +[*](programming_tips.md) +[*](graphics.md) +[*](left.md) +[*](network.md) +[*](selflessness.md) +[*](justice.md) +[*](english.md) +[*](computer.md) +[*](just_werks.md) +[*](logic_circuit.md) +[*](hacker_culture.md) +[*](hard_to_learn_easy_to_master.md) +[*](aliasing.md) +[*](czechia.md) +[*](emoticon.md) +[*](githopping.md) +[*](interplanetary_internet.md) +[*](version_numbering.md) +[*](entrepreneur.md) +[*](culture.md) +[*](gay.md) +[*](tor.md) +[*](rgb332.md) +[*](doom.md) +[*](fizzbuzz.md) +[*](raycasting.md) +[*](technology.md) +[*](3d_rendering.md) +[*](world_broadcast.md) +[*](windows.md) +[*](portability.md) +[*](diogenes.md) +[*](digital.md) +[*](malware.md) +[*](interesting.md) +[*](jokes.md) +[*](systemd.md) +[*](data_structure.md) +[*](duke3d.md) +[*](crime_against_economy.md) +[*](people.md) +[*](throwaway_script.md) +[*](freedom.md) +[*](systemd.md) +[*](collapse.md) +[*](rapeware.md) +[*](bilinear.md) +[*](audiophilia.md) +[*](corporation.md) +[*](physics_engine.md) +[*](double_buffering.md) +[*](cracking.md) +[*](gender_studies.md) +[*](hardware.md) +[*](bit_hack.md) +[*](altruism.md) +[*](css.md) +[*](sqrt.md) +[*](systemd.md) +[*](marxism.md) +[*](internet.md) +[*](ram.md) +[*](proprietary_software.md) +[*](wiki_post_mortem.md) +[*](yes_they_can.md) +[*](race.md) +[*](distance.md) +[*](boot.md) +[*](e.md) +[*](gaywashing.md) +[*](free_will.md) +[*](wiki_rights.md) +[*](patent.md) +[*](old.md) +[*](os.md) +[*](100r.md) +[*](future_proof.md) +[*](easy_to_learn_hard_to_master.md) +[*](noise.md) +[*](unix.md) +[*](triangle.md) +[*](hacking.md) +[*](e.md) +[*](right.md) +[*](fqa.md) +[*](bullshit.md) +[*](cracker.md) +[*](fight_culture.md) +[*](name_is_important.md) +[*](noise.md) +[*](needed.md) +[*](chess.md) +[*](fsf.md) +[*](unix.md) +[*](greenwashing.md) +[*](regex.md) +[*](hash.md) +[*](ted_kaczynski.md) +[*](mob_software.md) +[*](de_facto.md) +[*](everyone_does_it.md) +[*](duskos.md) +[*](faggot.md) +[*](body_shaming.md) +[*](dick_reveal.md) +[*](acronym.md) +[*](tor.md) +[*](splinternet.md) +[*](transistor.md) +[*](robot.md) +[*](technology.md) +[*](anpac.md) +[*](proof.md) +[*](crypto.md) +[*](often_misunderstood.md) +[*](copyfree.md) +[*](3d_modeling.md) +[*](encryption.md) +[*](easier_done_than_said.md) +[*](golang.md) +[*](left.md) +[*](rgb332.md) +[*](julia_set.md) +[*](needed.md) +[*](cat_v.md) +[*](capitalism.md) +[*](beauty.md) +[*](paywall.md) +[*](x86.md) +[*](luke_smith.md) +[*](girl.md) +[*](apple.md) +[*](ethics.md) +[*](wiki_authors.md) +[*](goodbye_world.md) +[*](rust.md) +[*](facebook.md) +[*](fsf.md) +[*](kiss.md) +[*](antialiasing.md) +[*](political_correctness.md) +[*](bs.md) +[*](thrembo.md) +[*](sorting.md) +[*](main.md) +[*](malware.md) +[*](data_hoarding.md) +[*](golang.md) +[*](cos.md) +[*](transistor.md) +[*](hack.md) +[*](software.md) +[*](free_software.md) +[*](tattoo.md) +[*](marketing.md) +[*](antialiasing.md) +[*](software.md) +[*](dinosaur.md) +[*](www.md) +[*](reactionary_software.md) +[*](logic.md) +[*](axiom_of_choice.md) +[*](wikiwikiweb.md) +[*](nc.md) +[*](unary.md) +[*](less_retarded_hardware.md) +[*](chaos.md) +[*](one.md) +[*](copyright.md) +[*](liberalism.md) +[*](open_console.md) +[*](magic.md) +[*](proprietary.md) +[*](sjw.md) +[*](moderation.md) +[*](f2p.md) +[*](zero.md) +[*](youtube.md) +[*](cyber.md) +[*](left_right.md) +[*](femoid.md) +[*](lrs_wiki.md) +[*](regex.md) +[*](fediverse.md) +[*](boot.md) +[*](transistor.md) +[*](wiki_pages.md) +[*](rock.md) +[*](openai.md) +[*](modern_software.md) +[*](nigger.md) +[*](chasm_the_rift.md) +[*](tpe.md) +[*](sudoku.md) +[*](fail_ab.md) +[*](fuck.md) +[*](pseudoleft.md) +[*](interpolation.md) +[*](kiwifarms.md) +[*](robot.md) +[*](fizzbuzz.md) +[*](hero.md) +[*](javascript.md) +[*](www.md) +[*](cracking.md) +[*](cpu.md) +[*](work.md) +[*](lrs_dictionary.md) +[*](zuckerberg.md) +[*](left.md) +[*](military.md) +[*](gemini.md) +[*](microtransaction.md) +[*](mainstream.md) +[*](3d_model.md) +[*](entropy.md) +[*](watchdog.md) +[*](hard_to_learn_easy_to_master.md) +[*](justice.md) +[*](mouse.md) +[*](computational_complexity.md) +[*](open_source.md) +[*](de_facto.md) +[*](race.md) +[*](sin.md) +[*](compression.md) +[*](combinatorics.md) +[*](trolling.md) +[*](morality.md) +[*](modern.md) +[*](dynamic_programming.md) +[*](competition.md) +[*](modern.md) +[*](good_enough.md) +[*](free_speech.md) +[*](tech.md) +[*](teletext.md) +[*](rsa.md) +[*](countercomplex.md) +[*](programming_language.md) +[*](infinity.md) +[*](backpropagation.md) +[*](rgb332.md) +[*](liberalism.md) +[*](physics_engine.md) +[*](earth.md) +[*](bootstrap.md) +[*](anarch.md) +[*](c_tutorial.md) +[*](modern_software.md) +[*](trump.md) +[*](100r.md) +[*](left_right.md) +[*](low_poly.md) +[*](elo.md) +[*](cat_v.md) +[*](tom_scott.md) +[*](libertarianism.md) +[*](graphics.md) +[*](raylib.md) +[*](body_shaming.md) +[*](terry_davis.md) +[*](logic_gate.md) [*](niggercoin.md) [*](just_werks.md) -[*](hero_culture.md) -[*](goodbye_world.md) -[*](google.md) -[*](left_right.md) -[*](history.md) -[*](one.md) -[*](robot.md) -[*](build_engine.md) -[*](microtransaction.md) -[*](free_speech.md) -[*](trash_magic.md) -[*](capitalist_software.md) -[*](arch.md) -[*](oop.md) -[*](hash.md) -[*](tranny_software.md) -[*](mud.md) -[*](microtheft.md) -[*](proprietary_software.md) -[*](wikiwikiweb.md) -[*](deferred_shading.md) -[*](life.md) -[*](fixed_point.md) -[*](exercises.md) -[*](pi.md) -[*](duke3d.md) -[*](collision_detection.md) -[*](firmware.md) -[*](systemd.md) -[*](woman.md) -[*](byte.md) -[*](tom_scott.md) -[*](finished.md) -[*](future_proof.md) -[*](formal_language.md) -[*](game.md) -[*](sw_rendering.md) -[*](czechia.md) -[*](history.md) -[*](palette.md) -[*](nord_vpn.md) -[*](ted_kaczynski.md) -[*](pedophilia.md) -[*](rapeware.md) -[*](proprietary_software.md) -[*](randomness.md) -[*](sigbovik.md) -[*](corporation.md) -[*](smallchesslib.md) -[*](mob_software.md) -[*](freedom.md) -[*](dick_reveal.md) -[*](slowly_boiling_the_frog.md) -[*](githopping.md) -[*](compsci.md) -[*](public_domain_computer.md) -[*](facebook.md) -[*](devuan.md) -[*](loc.md) -[*](history.md) -[*](doom.md) -[*](science.md) -[*](audiophilia.md) -[*](ascii.md) -[*](fuck.md) -[*](chaos.md) -[*](function.md) -[*](distance.md) -[*](java.md) -[*](bytebeat.md) -[*](iq.md) -[*](motivation.md) -[*](unary.md) -[*](xd.md) -[*](linear_algebra.md) -[*](openarena.md) -[*](blender.md) -[*](xxiivv.md) -[*](myths.md) -[*](combinatorics.md) -[*](githopping.md) -[*](boat.md) -[*](comun.md) -[*](p_vs_np.md) -[*](game_of_life.md) -[*](fail_ab.md) -[*](operating_system.md) -[*](firmware.md) -[*](cpu.md) -[*](coding.md) -[*](minesweeper.md) -[*](distance.md) -[*](graveyard.md) -[*](faggot.md) -[*](compression.md) -[*](sjw.md) -[*](README.md) -[*](rust.md) -[*](whale.md) -[*](debugging.md) -[*](throwaway_script.md) -[*](whale.md) -[*](portability.md) -[*](tpe.md) -[*](prime.md) -[*](assertiveness.md) -[*](entrepreneur.md) -[*](see_through_clothes.md) -[*](backgammon.md) -[*](explicit.md) -[*](how_to.md) -[*](ubi.md) -[*](less_retarded_hardware.md) -[*](living.md) -[*](programming_language.md) -[*](number.md) -[*](magic.md) -[*](wiki_rights.md) -[*](ascii.md) -[*](rights_culture.md) -[*](rights_culture.md) -[*](modern.md) -[*](fight_culture.md) -[*](piracy.md) -[*](sw.md) -[*](smallchesslib.md) -[*](furry.md) -[*](antialiasing.md) -[*](ascii_art.md) -[*](bloat.md) -[*](earth.md) -[*](lambda_calculus.md) -[*](raycastlib.md) -[*](css.md) -[*](speech_synthesis.md) -[*](line.md) -[*](black.md) -[*](freedom.md) -[*](free_will.md) -[*](update_culture.md) -[*](hexadecimal.md) -[*](feminism.md) -[*](tech.md) -[*](tpe.md) -[*](unicode.md) -[*](wiki_authors.md) -[*](pseudorandomness.md) -[*](trusting_trust.md) -[*](mechanical.md) -[*](free_culture.md) -[*](harry_potter.md) -[*](motivation.md) -[*](shit.md) -[*](fqa.md) -[*](countercomplex.md) -[*](noise.md) -[*](brainfuck.md) -[*](shader.md) -[*](determinism.md) -[*](hard_to_learn_easy_to_master.md) -[*](chasm_the_rift.md) -[*](gigachad.md) -[*](bootstrap.md) -[*](de_facto.md) -[*](data_structure.md) -[*](facebook.md) -[*](wiby.md) -[*](feminism.md) -[*](hash.md) -[*](bitreich.md) -[*](tattoo.md) -[*](gui.md) -[*](hacker_culture.md) -[*](hash.md) -[*](niggercoin.md) -[*](cloud.md) -[*](cat_v.md) -[*](old.md) -[*](quine.md) -[*](dependency.md) -[*](lmao.md) -[*](niggercoin.md) -[*](free.md) -[*](smart.md) -[*](p_vs_np.md) -[*](lrs_dictionary.md) -[*](gaywashing.md) -[*](kiwifarms.md) -[*](analog.md) -[*](approximation.md) -[*](kids_these_days.md) -[*](cos.md) -[*](temple_os.md) -[*](tangram.md) -[*](world_broadcast.md) -[*](sin.md) -[*](vector.md) -[*](programming_style.md) -[*](tor.md) -[*](avpd.md) -[*](computer.md) -[*](ui.md) -[*](open_source.md) -[*](consumerism.md) +[*](wikipedia.md) [*](often_confused.md) -[*](censorship.md) -[*](arduboy.md) -[*](deferred_shading.md) -[*](intellectual_property.md) -[*](nigger.md) -[*](julia_set.md) -[*](bloat_monopoly.md) -[*](splinternet.md) -[*](100r.md) -[*](frameless.md) -[*](function.md) -[*](linear_algebra.md) -[*](no_knowledge_proof.md) -[*](c.md) -[*](linux.md) -[*](interaction_net.md) -[*](dinosaur.md) -[*](anarchism.md) -[*](gopher.md) -[*](nord_vpn.md) -[*](interesting.md) -[*](race.md) -[*](minimalism.md) -[*](nc.md) -[*](no_knowledge_proof.md) -[*](patent.md) -[*](sw_rendering.md) -[*](fear_culture.md) -[*](os.md) -[*](proof.md) -[*](primitive_3d.md) -[*](permacomputing_wiki.md) -[*](number.md) -[*](pedophilia.md) -[*](hero_culture.md) -[*](bullshit.md) -[*](jesus.md) -[*](uxn.md) -[*](sudoku.md) -[*](stereotype.md) -[*](yes_they_can.md) -[*](game.md) -[*](wikidata.md) -[*](triangle.md) -[*](girl.md) -[*](body_shaming.md) -[*](vector.md) -[*](lgbt.md) -[*](creative_commons.md) -[*](lmao.md) -[*](femoid.md) -[*](rms.md) -[*](portal_rendering.md) -[*](faggot.md) -[*](mainstream.md) -[*](c_sharp.md) -[*](floss.md) -[*](security.md) -[*](npc.md) -[*](cloud.md) -[*](distrohopping.md) -[*](coc.md) -[*](malware.md) -[*](javascript.md) -[*](computational_complexity.md) -[*](tranny_software.md) -[*](markov_chain.md) -[*](cpu.md) -[*](reddit.md) -[*](science.md) -[*](pseudoleft.md) -[*](game_engine.md) -[*](art.md) -[*](kwangmyong.md) -[*](chess.md) -[*](resnicks_termite.md) -[*](io.md) -[*](ioccc.md) -[*](encyclopedia.md) -[*](privacy.md) -[*](3d_rendering.md) -[*](aaron_swartz.md) -[*](good_enough.md) -[*](settled.md) -[*](algorithm.md) -[*](education.md) -[*](bazaar.md) -[*](disease.md) -[*](jargon_file.md) -[*](greenwashing.md) -[*](js.md) -[*](e.md) -[*](free_hardware.md) -[*](graphics.md) -[*](version_numbering.md) -[*](ioccc.md) -[*](smol_internet.md) -[*](dog.md) -[*](analog.md) -[*](venus_project.md) -[*](cat_v.md) -[*](wiki_post_mortem.md) -[*](education.md) -[*](physics_engine.md) -[*](creative_commons.md) -[*](float.md) -[*](interpolation.md) -[*](dinosaur.md) -[*](jokes.md) -[*](chinese.md) -[*](gigachad.md) -[*](permacomputing_wiki.md) -[*](racism.md) -[*](toxic.md) -[*](game_engine.md) -[*](furry.md) -[*](wiki_authors.md) -[*](old.md) -[*](infinity.md) -[*](pseudo3d.md) -[*](progress.md) -[*](wizard.md) -[*](fizzbuzz.md) -[*](piracy.md) -[*](aliasing.md) -[*](youtube.md) -[*](anpac.md) +[*](elon_musk.md) +[*](elon_musk.md) +[*](pseudorandomness.md) +[*](wiki_pages.md) +[*](tpe.md) [*](wow.md) -[*](less_retarded_software.md) -[*](fsf.md) -[*](java.md) -[*](open_source.md) -[*](kek.md) -[*](explicit.md) +[*](color.md) +[*](cheating.md) +[*](competition.md) +[*](web.md) +[*](plusnigger.md) +[*](mainstream.md) +[*](abstraction.md) +[*](cpu.md) +[*](trom.md) +[*](wikidata.md) +[*](p_vs_np.md) +[*](c.md) +[*](sudoku.md) +[*](rights_culture.md) +[*](holy_war.md) +[*](wiki_style.md) +[*](mipmap.md) +[*](life.md) +[*](gui.md) +[*](dungeons_and_dragons.md) +[*](qubit.md) +[*](venus_project.md) +[*](slowly_boiling_the_frog.md) +[*](lrs_dictionary.md) [*](charity_sex.md) -[*](systemd.md) -[*](usa.md) -[*](bloat.md) -[*](libre.md) -[*](programming.md) -[*](determinism.md) -[*](library.md) -[*](interesting.md) -[*](backgammon.md) -[*](portal_rendering.md) -[*](rgb565.md) -[*](hyperoperation.md) +[*](kek.md) +[*](football.md) +[*](zuckerberg.md) +[*](niger.md) +[*](semiconductor.md) +[*](acronym.md) +[*](tattoo.md) +[*](art.md) +[*](saf.md) +[*](marble_race.md) +[*](wikidata.md) +[*](slowly_boiling_the_frog.md) +[*](universe.md) +[*](entropy.md) +[*](linux.md) +[*](palette.md) +[*](anpac.md) +[*](collision.md) +[*](pseudo3d.md) +[*](forth.md) +[*](modern.md) +[*](kwangmyong.md) +[*](anarchism.md) +[*](political_correctness.md) +[*](splinternet.md) +[*](fight_culture.md) +[*](lrs.md) [*](feminism.md) -[*](speech_synthesis.md) -[*](app.md) -[*](trolling.md) +[*](frameless.md) +[*](ubi.md) +[*](vector.md) +[*](monad.md) +[*](anal_bead.md) +[*](number.md) +[*](marxism.md) +[*](crime_against_economy.md) +[*](slowly_boiling_the_frog.md) +[*](security.md) +[*](culture.md) +[*](social_inertia.md) +[*](cyber.md) +[*](information.md) +[*](intellectual_property.md) +[*](f2p.md) +[*](tensor_product.md) +[*](twos_complement.md) +[*](black.md) +[*](paradigm.md) +[*](shit.md) +[*](fascist.md) +[*](motivation.md) [*](free_universe.md) +[*](faq.md) +[*](floss.md) +[*](wiki_stats.md) +[*](nanogenmo.md) +[*](intellectual_property.md) +[*](c_tutorial.md) +[*](kiss.md) +[*](gay.md) +[*](altruism.md) +[*](dodleston.md) +[*](fractal.md) +[*](disease.md) +[*](usa.md) +[*](speech_synthesis.md) +[*](ui.md) +[*](rsa.md) +[*](open_source.md) +[*](public_domain_computer.md) +[*](gnu.md) +[*](README.md) +[*](brain_software.md) +[*](xxiivv.md) +[*](science.md) +[*](network.md) +[*](dynamic_programming.md) +[*](settled.md) +[*](anal_bead.md) +[*](c_sharp.md) +[*](compression.md) +[*](programming.md) +[*](see_through_clothes.md) +[*](pi.md) +[*](assertiveness.md) +[*](ronja.md) +[*](venus_project.md) +[*](marxism.md) +[*](unix.md) +[*](deep_blue.md) +[*](3d_model.md) +[*](one.md) +[*](loc.md) +[*](complexity.md) +[*](fediverse.md) [*](demo.md) +[*](toxic.md) +[*](cc0.md) +[*](determinism.md) +[*](demoscene.md) +[*](smol_internet.md) +[*](beauty.md) +[*](security.md) +[*](dick_reveal.md) +[*](hacker_culture.md) +[*](wiby.md) +[*](x86.md) +[*](fascism.md) +[*](bytebeat.md) +[*](countercomplex.md) +[*](game_engine.md) +[*](app.md) +[*](technology.md) +[*](compsci.md) +[*](golang.md) +[*](githopping.md) +[*](microtransaction.md) +[*](digital.md) +[*](tas.md) +[*](faggot.md) +[*](ui.md) +[*](sorting.md) +[*](graveyard.md) +[*](collision_detection.md) +[*](myths.md) +[*](public_domain_computer.md) +[*](unicode.md) +[*](competition.md) +[*](determinism.md) +[*](byte.md) +[*](altruism.md) +[*](unix_philosophy.md) +[*](suicide.md) +[*](minesweeper.md) +[*](selflessness.md) +[*](pseudorandomness.md) +[*](bilinear.md) +[*](harry_potter.md) +[*](books.md) +[*](shortcut_thinking.md) +[*](atheism.md) +[*](hero_culture.md) +[*](splinternet.md) +[*](wiby.md) +[*](wikipedia.md) +[*](wikipedia.md) +[*](game.md) +[*](trash_magic.md) +[*](future_proof.md) +[*](wiki_rights.md) +[*](lambda_calculus.md) +[*](attribution.md) +[*](free.md) +[*](flatland.md) +[*](npc.md) +[*](faq.md) +[*](c.md) +[*](less_retarded_software.md) +[*](crime_against_economy.md) +[*](hack.md) [*](boot.md) +[*](creative_commons.md) +[*](kwangmyong.md) +[*](markov_chain.md) +[*](less_retarded_society.md) +[*](tranny_software.md) +[*](encryption.md) +[*](fuck.md) +[*](netstalking.md) +[*](stereotype.md) +[*](js.md) +[*](fear_culture.md) +[*](p_vs_np.md) +[*](creative_commons.md) +[*](jargon_file.md) +[*](living.md) +[*](good_enough.md) +[*](assembly.md) +[*](compsci.md) +[*](fourier_transform.md) +[*](goodbye_world.md) +[*](interpolation.md) +[*](go.md) +[*](x86.md) +[*](wiby.md) +[*](uxn.md) +[*](frameless.md) +[*](vim.md) +[*](hw.md) +[*](noise.md) +[*](no_knowledge_proof.md) +[*](productivity_cult.md) +[*](kiwifarms.md) +[*](complexity.md) +[*](privacy.md) +[*](sw.md) +[*](creative_commons.md) +[*](often_misunderstood.md) +[*](coding.md) +[*](formal_language.md) +[*](bloat_monopoly.md) +[*](esolang.md) +[*](cos.md) +[*](vim.md) +[*](history.md) +[*](malware.md) +[*](gui.md) +[*](capitalist_singularity.md) +[*](4chan.md) +[*](brain_software.md) +[*](mud.md) +[*](public_domain.md) +[*](optimization.md) +[*](foss.md) +[*](murderer.md) +[*](bill_gates.md) +[*](approximation.md) +[*](future_proof.md) +[*](gay.md) +[*](consumerism.md) +[*](triangle.md) +[*](hero.md) +[*](temple_os.md) +[*](loc.md) +[*](bazaar.md) +[*](programming_language.md) +[*](wiki_style.md) +[*](binary.md) +[*](living.md) +[*](zuckerberg.md) +[*](normalization.md) +[*](used.md) +[*](compression.md) +[*](js.md) +[*](teletext.md) +[*](collision_detection.md) +[*](sw_rendering.md) +[*](entropy.md) +[*](mental_outlaw.md) +[*](atheism.md) +[*](suckless.md) +[*](sdf.md) +[*](love.md) +[*](small3dlib.md) +[*](woman.md) +[*](racism.md) +[*](esolang.md) +[*](woman.md) +[*](temple_os.md) +[*](float.md) +[*](sjw.md) +[*](fear_culture.md) +[*](speech_synthesis.md) +[*](capitalism.md) +[*](rock.md) +[*](youtube.md) +[*](rule110.md) +[*](bloat_monopoly.md) +[*](pseudoleft.md) +[*](throwaway_script.md) +[*](ascii_art.md) +[*](c_pitfalls.md) +[*](egoism.md) +[*](unary.md) +[*](io.md) +[*](race.md) +[*](f2p.md) +[*](function.md) +[*](usa.md) +[*](art.md) +[*](analog.md) +[*](operating_system.md) +[*](explicit.md) +[*](duke3d.md) +[*](assembly.md) +[*](gender_studies.md) +[*](line.md) +[*](nigger.md) +[*](censorship.md) +[*](pd.md) +[*](proprietary.md) +[*](exercises.md) +[*](math.md) +[*](shortcut_thinking.md) +[*](egoism.md) +[*](faq.md) +[*](pseudorandomness.md) +[*](toxic.md) +[*](cyber.md) +[*](3d_rendering.md) +[*](harry_potter.md) +[*](troll.md) +[*](toxic.md) +[*](ui.md) +[*](ai.md) +[*](dog.md) +[*](mud.md) +[*](abstraction.md) +[*](jargon_file.md) +[*](unary.md) +[*](crypto.md) +[*](resnicks_termite.md) +[*](monad.md) +[*](soydev.md) +[*](graveyard.md) +[*](trump.md) +[*](fantasy_console.md) +[*](c_sharp.md) +[*](furry.md) +[*](free_hardware.md) +[*](billboard.md) +[*](capitalism.md) +[*](less_retarded_software.md) +[*](iq.md) +[*](linux.md) +[*](raycasting.md) +[*](minesweeper.md) +[*](charity_sex.md) +[*](tech.md) +[*](graphics.md) +[*](ancap.md) +[*](abstraction.md) +[*](digital_signature.md) +[*](billboard.md) +[*](quantum_gate.md) +[*](human_language.md) +[*](steganography.md) +[*](chasm_the_rift.md) +[*](update_culture.md) +[*](information.md) +[*](easier_done_than_said.md) +[*](music.md) +[*](see_through_clothes.md) +[*](wavelet_transform.md) +[*](flatland.md) +[*](python.md) +[*](bs.md) +[*](digital_signature.md) +[*](free_culture.md) +[*](shit.md) +[*](venus_project.md) +[*](bill_gates.md) +[*](formal_language.md) +[*](css.md) +[*](bloat.md) +[*](sw.md) +[*](sdf.md) +[*](web.md) +[*](www.md) +[*](apple.md) +[*](hyperoperation.md) +[*](memory_management.md) +[*](cat_v.md) +[*](distrohopping.md) +[*](game.md) +[*](democracy.md) +[*](autoupdate.md) +[*](privacy.md) +[*](algorithm.md) +[*](google.md) +[*](memory_management.md) +[*](rms.md) +[*](programming_tips.md) +[*](public_domain.md) +[*](communism.md) +[*](progress.md) +[*](doom.md) +[*](unretard.md) +[*](cc0.md) +[*](ssao.md) +[*](plusnigger.md) +[*](right.md) +[*](tinyphysicsengine.md) +[*](kiss.md) +[*](free_software.md) +[*](wavelet_transform.md) +[*](chinese.md) +[*](ted_kaczynski.md) +[*](function.md) +[*](debugging.md) +[*](assembly.md) +[*](bit_hack.md) +[*](pride.md) +[*](corporation.md) +[*](rust.md) +[*](art.md) +[*](chinese.md) +[*](kids_these_days.md) +[*](xonotic.md) +[*](algorithm.md) +[*](tattoo.md) +[*](zen.md) +[*](app.md) +[*](libertarianism.md) +[*](bill_gates.md) +[*](wizard.md) +[*](sw_rendering.md) +[*](optimization.md) +[*](lil.md) +[*](3d_modeling.md) +[*](femoid.md) +[*](proprietary_software.md) +[*](c_tutorial.md) +[*](palette.md) +[*](paradigm.md) +[*](minigame.md) +[*](explicit.md) +[*](just_werks.md) +[*](dungeons_and_dragons.md) +[*](nd.md) +[*](3d_modeling.md) +[*](firmware.md) +[*](pi.md) +[*](how_to.md) +[*](computer.md) +[*](girl.md) +[*](combinatorics.md) +[*](unicode.md) +[*](main.md) +[*](hack.md) +[*](usenet.md) +[*](boat.md) +[*](fizzbuzz.md) +[*](patent.md) +[*](czechia.md) +[*](global_discussion.md) +[*](debugging.md) +[*](audiophilia.md) +[*](pseudo3d.md) +[*](easy_to_learn_hard_to_master.md) +[*](raycastlib.md) +[*](downto.md) +[*](sqrt.md) +[*](physics_engine.md) +[*](rights_culture.md) +[*](suckless.md) +[*](free_will.md) +[*](approximation.md) +[*](harry_potter.md) +[*](oop.md) +[*](facebook.md) +[*](iq.md) +[*](exercises.md) +[*](anarch.md) +[*](encyclopedia.md) +[*](tas.md) +[*](lambda_calculus.md) +[*](turing_machine.md) +[*](emoticon.md) +[*](optimization.md) +[*](human_language.md) +[*](sanism.md) +[*](zen.md) +[*](copyleft.md) +[*](youtube.md) +[*](infinity.md) +[*](implicit.md) +[*](love.md) +[*](jokes.md) +[*](libre.md) +[*](military.md) +[*](analytic_geometry.md) +[*](trolling.md) +[*](pedophilia.md) +[*](programming_tips.md) +[*](programming.md) +[*](google.md) +[*](comment.md) +[*](README.md) +[*](real_number.md) +[*](arch.md) +[*](sanism.md) +[*](everyone_does_it.md) +[*](smart.md) +[*](soydev.md) +[*](cancer.md) +[*](interesting.md) +[*](gopher.md) +[*](tom_scott.md) +[*](tensor_product.md) +[*](brainfuck.md) +[*](docker.md) +[*](lmao.md) +[*](history.md) +[*](arch.md) +[*](zero.md) +[*](pseudominimalism.md) +[*](framework.md) +[*](aliasing.md) +[*](permacomputing_wiki.md) +[*](blender.md) +[*](disease.md) +[*](prime.md) +[*](faggot.md) +[*](update_culture.md) +[*](racetrack.md) +[*](c.md) +[*](interaction_net.md) +[*](magic.md) +[*](sqrt.md) +[*](settled.md) +[*](fun.md) +[*](permacomputing_wiki.md) +[*](rsa.md) +[*](racetrack.md) +[*](avpd.md) +[*](color.md) +[*](copyfree.md) +[*](hexadecimal.md) +[*](work.md) +[*](byte.md) +[*](shader.md) +[*](holy_war.md) +[*](dependency.md) +[*](dodleston.md) +[*](rgb565.md) +[*](deferred_shading.md) +[*](less_retarded_software.md) +[*](copyleft.md) +[*](pride.md) +[*](consumerism.md) +[*](libertarianism.md) +[*](rgb565.md) +[*](raylib.md) +[*](piracy.md) +[*](fork.md) +[*](john_carmack.md) +[*](sigbovik.md) +[*](io.md) +[*](xd.md) +[*](needed.md) +[*](io.md) +[*](luke_smith.md) +[*](bit.md) +[*](microtheft.md) +[*](bytecode.md) +[*](brainfuck.md) +[*](floss.md) +[*](maintenance.md) +[*](reactionary_software.md) +[*](debugging.md) +[*](censorship.md) +[*](bytecode.md) +[*](world_broadcast.md) +[*](internet.md) +[*](brain_software.md) +[*](interaction_net.md) +[*](nigger.md) +[*](software.md) +[*](arduboy.md) +[*](nc.md) +[*](wiki_stats.md) +[*](compiler_bomb.md) +[*](autoupdate.md) +[*](justice.md) +[*](lil.md) +[*](copyright.md) +[*](drummyfish.md) +[*](number.md) +[*](docker.md) +[*](iq.md) +[*](rule110.md) +[*](audiophilia.md) +[*](build_engine.md) +[*](cpp.md) +[*](netstalking.md) +[*](git.md) +[*](coc.md) +[*](geek.md) +[*](interplanetary_internet.md) +[*](flatland.md) +[*](langtons_ant.md) +[*](maintenance.md) +[*](temple_os.md) +[*](hard_to_learn_easy_to_master.md) +[*](communism.md) +[*](paradigm.md) +[*](bytebeat.md) +[*](unretard.md) +[*](trusting_trust.md) +[*](gnu.md) +[*](git.md) +[*](beauty.md) +[*](license.md) +[*](shader.md) +[*](patent.md) +[*](distrohopping.md) +[*](communism.md) +[*](atan.md) +[*](physics.md) +[*](selflessness.md) +[*](neural_network.md) +[*](racism.md) +[*](femoid.md) +[*](aaron_swartz.md) +[*](name_is_important.md) +[*](chess.md) +[*](antivirus_paradox.md) +[*](ethics.md) +[*](c_pitfalls.md) +[*](python.md) +[*](hexadecimal.md) +[*](elo.md) +[*](ioccc.md) +[*](comment.md) +[*](assertiveness.md) +[*](jesus.md) +[*](unix_philosophy.md) +[*](nord_vpn.md) +[*](usenet.md) +[*](openai.md) +[*](saf.md) +[*](crypto.md) +[*](vector.md) +[*](education.md) +[*](operating_system.md) +[*](acronym.md) +[*](moderation.md) +[*](os.md) +[*](logic_circuit.md) +[*](internet.md) +[*](backgammon.md) +[*](racism.md) +[*](fourier_transform.md) +[*](dodleston.md) +[*](primitive_3d.md) +[*](bloat.md) +[*](hero_culture.md) +[*](ai.md) +[*](dog.md) +[*](free_culture.md) +[*](autoupdate.md) +[*](collision.md) +[*](portal_rendering.md) +[*](uxn.md) +[*](go.md) +[*](line.md) +[*](binary.md) +[*](attribution.md) +[*](css.md) +[*](sorting.md) +[*](finished.md) +[*](marketing.md) +[*](function.md) +[*](exercises.md) +[*](dependency.md) +[*](wikiwikiweb.md) +[*](trash_magic.md) +[*](pseudominimalism.md) +[*](mandelbrot_set.md) +[*](logic_circuit.md) +[*](lmao.md) +[*](bitreich.md) +[*](analytic_geometry.md) +[*](hexadecimal.md) +[*](logic_gate.md) +[*](build_engine.md) +[*](jargon_file.md) +[*](paywall.md) +[*](information.md) +[*](autostereogram.md) +[*](de_facto.md) +[*](lambda_calculus.md) +[*](whale.md) +[*](anarchism.md) +[*](often_confused.md) +[*](wiki_post_mortem.md) +[*](100r.md) +[*](less_retarded_society.md) +[*](gnu.md) +[*](reddit.md) +[*](game_engine.md) +[*](wiki_post_mortem.md) +[*](deep_blue.md) +[*](operating_system.md) +[*](smart.md) +[*](soyence.md) +[*](assertiveness.md) +[*](attribution.md) +[*](greenwashing.md) +[*](microsoft.md) +[*](shogi.md) +[*](fqa.md) +[*](compsci.md) +[*](tpe.md) +[*](whale.md) +[*](democracy.md) +[*](books.md) +[*](cache.md) +[*](xonotic.md) +[*](furry.md) +[*](demoscene.md) +[*](vector.md) +[*](liberalism.md) +[*](coding.md) +[*](phd.md) +[*](wiki_authors.md) +[*](network.md) +[*](qubit.md) +[*](evil.md) +[*](windows.md) +[*](chasm_the_rift.md) +[*](java.md) +[*](hw.md) +[*](chaos.md) +[*](security.md) +[*](niger.md) +[*](nanogenmo.md) +[*](monad.md) +[*](bit.md) +[*](fascist.md) +[*](mandelbrot_set.md) +[*](suicide.md) +[*](tranny_software.md) +[*](money.md) +[*](saf.md) +[*](devuan.md) +[*](coc.md) +[*](javascript.md) +[*](firmware.md) +[*](viznut.md) +[*](music.md) +[*](furry.md) +[*](physics.md) +[*](quantum_gate.md) +[*](4chan.md) +[*](throwaway_script.md) +[*](smol_internet.md) +[*](minimalism.md) +[*](julia_set.md) +[*](trolling.md) +[*](kids_these_days.md) +[*](plan9.md) +[*](xxiivv.md) +[*](mandelbrot_set.md) +[*](how_to.md) +[*](comun.md) +[*](money.md) +[*](raycastlib.md) +[*](tas.md) +[*](qubit.md) +[*](fediverse.md) +[*](shogi.md) +[*](framework.md) +[*](countercomplex.md) +[*](island.md) +[*](gemini.md) +[*](global_discussion.md) +[*](downto.md) +[*](autostereogram.md) +[*](backgammon.md) +[*](tangram.md) +[*](myths.md) +[*](tinyphysicsengine.md) +[*](ram.md) +[*](zero.md) +[*](plan9.md) +[*](rapeware.md) +[*](shogi.md) +[*](facebook.md) +[*](uxn.md) +[*](science.md) +[*](less_retarded_hardware.md) +[*](billboard.md) +[*](implicit.md) +[*](randomness.md) +[*](cheating.md) +[*](loc.md) +[*](bullshit.md) +[*](english.md) +[*](comun.md) +[*](suicide.md) +[*](logic_gate.md) +[*](cracker.md) +[*](go.md) +[*](mental_outlaw.md) +[*](social_inertia.md) +[*](proprietary_software.md) +[*](minigame.md) +[*](interplanetary_internet.md) +[*](body_shaming.md) +[*](fixed_point.md) +[*](nationalism.md) +[*](hash.md) +[*](jedi_engine.md) +[*](recursion.md) +[*](ascii.md) +[*](phd.md) +[*](normalization.md) +[*](duskos.md) +[*](raycastlib.md) +[*](blender.md) +[*](openarena.md) +[*](microtheft.md) +[*](randomness.md) +[*](forth.md) +[*](terry_davis.md) +[*](apple.md) +[*](brainfuck.md) +[*](pd.md) +[*](game_of_life.md) +[*](rgb565.md) +[*](soydev.md) +[*](people.md) +[*](fail_ab.md) +[*](quine.md) +[*](boat.md) +[*](gemini.md) +[*](backgammon.md) +[*](tangram.md) +[*](devuan.md) +[*](smallchesslib.md) +[*](lgbt.md) +[*](earth.md) +[*](elo.md) +[*](settled.md) +[*](permacomputing.md) +[*](palette.md) +[*](troll.md) +[*](wiki_rights.md) +[*](work.md) +[*](fork.md) +[*](cc.md) +[*](quantum_gate.md) +[*](smallchesslib.md) +[*](lrs_wiki.md) +[*](morality.md) +[*](nord_vpn.md) +[*](turing_machine.md) +[*](e.md) +[*](morality.md) +[*](ssao.md) +[*](feminism.md) +[*](pi.md) +[*](capitalist_software.md) +[*](egoism.md) +[*](web.md) +[*](docker.md) +[*](watchdog.md) +[*](capitalist_singularity.md) +[*](ram.md) +[*](moderation.md) +[*](python.md) +[*](blender.md) +[*](bbs.md) +[*](avpd.md) +[*](crow_funding.md) +[*](universe.md) +[*](compiler_bomb.md) +[*](cpu.md) +[*](trash_magic.md) +[*](free_body.md) +[*](rapeware.md) +[*](democracy.md) +[*](cracking.md) +[*](usa.md) +[*](license.md) +[*](evil.md) +[*](library.md) +[*](digital.md) +[*](productivity_cult.md) +[*](anarchism.md) +[*](ted_kaczynski.md) +[*](xxiivv.md) +[*](reddit.md) +[*](comun.md) +[*](approximation.md) +[*](computational_complexity.md) +[*](linear_algebra.md) +[*](linux.md) +[*](left_right.md) +[*](jesus.md) +[*](no_knowledge_proof.md) +[*](tangram.md) +[*](3d_rendering.md) +[*](ssao.md) +[*](nokia.md) +[*](finished.md) +[*](mental_outlaw.md) +[*](trump.md) +[*](marble_race.md) +[*](oop.md) +[*](geek.md) +[*](js.md) +[*](less_retarded_society.md) +[*](foss.md) +[*](kwangmyong.md) +[*](3d_model.md) +[*](steve_jobs.md) +[*](recursion.md) +[*](duskos.md) +[*](free_speech.md) +[*](low_poly.md) +[*](public_domain_computer.md) +[*](public_domain.md) +[*](main.md) +[*](cloud.md) +[*](holy_war.md) +[*](neural_network.md) +[*](cheating.md) +[*](semiconductor.md) +[*](java.md) +[*](hw.md) +[*](nationalism.md) +[*](luke_smith.md) +[*](aliasing.md) +[*](backpropagation.md) +[*](anarch.md) +[*](4chan.md) +[*](c_pitfalls.md) +[*](collision.md) +[*](fantasy_console.md) +[*](progress.md) +[*](cpp.md) +[*](bytebeat.md) +[*](shader.md) +[*](political_correctness.md) +[*](no_knowledge_proof.md) +[*](os.md) +[*](hacking.md) +[*](ubi.md) +[*](fixed_point.md) +[*](terry_davis.md) +[*](human_language.md) +[*](sanism.md) +[*](fractal.md) +[*](thrembo.md) +[*](hardware.md) +[*](island.md) +[*](mechanical.md) +[*](sw_rendering.md) +[*](esolang.md) +[*](gigachad.md) +[*](game.md) +[*](ai.md) +[*](sin.md) +[*](lrs.md) +[*](free_will.md) +[*](gopher.md) +[*](google.md) +[*](girl.md) +[*](niggercoin.md) +[*](social_inertia.md) +[*](pd.md) +[*](yes_they_can.md) +[*](smart.md) +[*](wikidata.md) +[*](cc0.md) +[*](reactionary_software.md) +[*](mainstream.md) +[*](determinism.md) +[*](deferred_shading.md) +[*](build_engine.md) +[*](app.md) +[*](open_console.md) +[*](czechia.md) +[*](oop.md) +[*](openai.md) +[*](fourier_transform.md) +[*](stereotype.md) +[*](21st_century.md) [*](used.md) [*](usenet.md) -[*](qubit.md) -[*](implicit.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](copyfree.md) +[*](phd.md) +[*](marketing.md) +[*](sigbovik.md) +[*](vim.md) +[*](prime.md) +[*](xonotic.md) +[*](pedophilia.md) +[*](niger.md) +[*](everyone_does_it.md) +[*](teletext.md) +[*](permacomputing_wiki.md) [*](c_sharp.md) -[*](free_software.md) +[*](viznut.md) +[*](mechanical.md) +[*](cc.md) +[*](rights_culture.md) +[*](black.md) +[*](avpd.md) +[*](boat.md) +[*](ascii.md) +[*](reddit.md) +[*](triangle.md) +[*](free_speech.md) +[*](kiwifarms.md) +[*](jedi_engine.md) +[*](hash.md) +[*](black.md) +[*](nationalism.md) +[*](life.md) +[*](fight.md) +[*](gui.md) +[*](hyperoperation.md) +[*](julia_set.md) +[*](game_of_life.md) +[*](ubi.md) +[*](gopher.md) +[*](formal_language.md) +[*](island.md) +[*](hero.md) +[*](pedophilia.md) +[*](raycasting.md) +[*](love.md) +[*](greenwashing.md) +[*](foss.md) +[*](bootstrap.md) +[*](forth.md) +[*](permacomputing.md) +[*](viznut.md) +[*](complexity.md) +[*](censorship.md) +[*](free_culture.md) +[*](history.md) +[*](yes_they_can.md) +[*](float.md) +[*](world_broadcast.md) +[*](math.md) +[*](gaywashing.md) +[*](open_console.md) +[*](binary.md) +[*](programming.md) +[*](bazaar.md) +[*](pseudominimalism.md) +[*](living.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](bbs.md) +[*](kek.md) +[*](markov_chain.md) +[*](42.md) +[*](hardware.md) +[*](newspeak.md) +[*](interesting.md) +[*](42.md) +[*](paywall.md) +[*](minesweeper.md) +[*](langtons_ant.md) +[*](bazaar.md) +[*](nokia.md) +[*](name_is_important.md) +[*](hacking.md) +[*](free_universe.md) +[*](lmao.md) +[*](motivation.md) +[*](quaternion.md) +[*](digital_signature.md) +[*](demoscene.md) +[*](small3dlib.md) +[*](42.md) +[*](netstalking.md) +[*](npc.md) +[*](p_vs_np.md) +[*](feminism.md) +[*](myths.md) +[*](people.md) +[*](tom_scott.md) +[*](thrembo.md) +[*](diogenes.md) +[*](wiki_stats.md) +[*](free.md) +[*](cc.md) +[*](progress.md) +[*](windows.md) +[*](zen.md) +[*](aaron_swartz.md) +[*](double_buffering.md) +[*](nc.md) +[*](physics.md) +[*](double_buffering.md) +[*](mob_software.md) +[*](capitalist_software.md) +[*](primitive_3d.md) +[*](rust.md) +[*](gender_studies.md) [*](computer.md) +[*](linear_algebra.md) +[*](nord_vpn.md) +[*](fight_culture.md) +[*](capitalist_software.md) +[*](pseudo3d.md) +[*](logic.md) +[*](dependency.md) +[*](bytecode.md) +[*](microsoft.md) +[*](drummyfish.md) +[*](magic.md) +[*](libre.md) +[*](cloud.md) +[*](portability.md) +[*](data_structure.md) +[*](troll.md) +[*](atan.md) +[*](langtons_ant.md) +[*](fqa.md) +[*](gaywashing.md) +[*](jokes.md) +[*](raylib.md) +[*](crow_funding.md) +[*](hero_culture.md) +[*](goodbye_world.md) diff --git a/wiki_pages.md b/wiki_pages.md index e66dacf..4cacd6c 100644 --- a/wiki_pages.md +++ b/wiki_pages.md @@ -2,4 +2,4 @@ This is an autogenerated page listing all pages. -**[100r](100r.md)** (3) -- **[21st_century](21st_century.md)** (4) -- **[3d_model](3d_model.md)** (243) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (285) -- **[42](42.md)** (13) -- **[4chan](4chan.md)** (25) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (388) -- **[ai](ai.md)** (12) -- **[algorithm](algorithm.md)** (219) -- **[aliasing](aliasing.md)** (60) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (2) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (93) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (29) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (4) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (18) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (12) -- **[ascii](ascii.md)** (151) -- **[ascii_art](ascii_art.md)** (206) -- **[assembly](assembly.md)** (255) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (22) -- **[atheism](atheism.md)** (14) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autostereogram](autostereogram.md)** (119) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (28) -- **[beauty](beauty.md)** (22) -- **[bilinear](bilinear.md)** (117) -- **[bill_gates](bill_gates.md)** (27) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (138) -- **[bit](bit.md)** (4) -- **[bit_hack](bit_hack.md)** (172) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (195) -- **[bloat_monopoly](bloat_monopoly.md)** (11) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (32) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (41) -- **[brain_software](brain_software.md)** (10) -- **[brainfuck](brainfuck.md)** (122) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (48) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (280) -- **[c](c.md)** (309) -- **[c_pitfalls](c_pitfalls.md)** (156) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2151) -- **[cache](cache.md)** (27) -- **[cancer](cancer.md)** (24) -- **[capitalism](capitalism.md)** (135) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (12) -- **[censorship](censorship.md)** (43) -- **[chaos](chaos.md)** (108) -- **[charity_sex](charity_sex.md)** (2) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (8) -- **[chess](chess.md)** (303) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[coc](coc.md)** (19) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (20) -- **[color](color.md)** (25) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (19) -- **[communism](communism.md)** (27) -- **[competition](competition.md)** (12) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (233) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (95) -- **[consumerism](consumerism.md)** (12) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (29) -- **[copyright](copyright.md)** (49) -- **[corporation](corporation.md)** (18) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (4) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (15) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (34) -- **[css](css.md)** (66) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[czechia](czechia.md)** (14) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[debugging](debugging.md)** (119) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (50) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (14) -- **[digital_signature](digital_signature.md)** (8) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (34) -- **[disease](disease.md)** (38) -- **[distance](distance.md)** (124) -- **[distrohopping](distrohopping.md)** (10) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (31) -- **[doom](doom.md)** (50) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[drummyfish](drummyfish.md)** (35) -- **[duke3d](duke3d.md)** (20) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (28) -- **[dynamic_programming](dynamic_programming.md)** (44) -- **[e](e.md)** (22) -- **[earth](earth.md)** (66) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (15) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (73) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (15) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (284) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (2) -- **[fail_ab](fail_ab.md)** (38) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (243) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (47) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (8) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (151) -- **[fizzbuzz](fizzbuzz.md)** (158) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (49) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (128) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (69) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (36) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (60) -- **[free_speech](free_speech.md)** (16) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (14) -- **[fsf](fsf.md)** (19) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (30) -- **[function](function.md)** (137) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (44) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (10) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (70) -- **[githopping](githopping.md)** (4) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (55) -- **[go](go.md)** (96) -- **[golang](golang.md)** (17) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (24) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (28) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (75) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (12) -- **[hexadecimal](hexadecimal.md)** (7) -- **[history](history.md)** (98) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (207) -- **[human_language](human_language.md)** (28) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (23) -- **[internet](internet.md)** (105) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (45) -- **[io](io.md)** (16) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (113) -- **[island](island.md)** (38) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (86) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (97) -- **[john_carmack](john_carmack.md)** (20) -- **[jokes](jokes.md)** (84) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (22) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (6) -- **[kids_these_days](kids_these_days.md)** (2) -- **[kiss](kiss.md)** (38) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (158) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (53) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (136) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (22) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (56) -- **[life](life.md)** (6) -- **[lil](lil.md)** (20) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (116) -- **[linux](linux.md)** (65) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (43) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (11) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[love](love.md)** (26) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (156) -- **[lrs_dictionary](lrs_dictionary.md)** (99) -- **[lrs_wiki](lrs_wiki.md)** (36) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (125) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (8) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (56) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (37) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (14) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (43) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (10) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (69) -- **[netstalking](netstalking.md)** (9) -- **[network](network.md)** (159) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (8) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (39) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (112) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (2) -- **[number](number.md)** (292) -- **[often_confused](often_confused.md)** (111) -- **[often_misunderstood](often_misunderstood.md)** (15) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (62) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (39) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (70) -- **[optimization](optimization.md)** (99) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (23) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (34) -- **[people](people.md)** (62) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (8) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (70) -- **[portability](portability.md)** (166) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (2) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (26) -- **[procgen](procgen.md)** (352) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (33) -- **[programming_language](programming_language.md)** (171) -- **[programming_style](programming_style.md)** (73) -- **[programming_tips](programming_tips.md)** (16) -- **[progress](progress.md)** (30) -- **[proof](proof.md)** (4) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (10) -- **[pseudorandomness](pseudorandomness.md)** (4) -- **[public_domain](public_domain.md)** (86) -- **[public_domain_computer](public_domain_computer.md)** (55) -- **[python](python.md)** (26) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (50) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (9) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1741) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (8) -- **[raycasting](raycasting.md)** (291) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (22) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (48) -- **[recursion](recursion.md)** (64) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (206) -- **[rgb332](rgb332.md)** (91) -- **[rgb565](rgb565.md)** (4) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (51) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (107) -- **[rust](rust.md)** (24) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (22) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (15) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (17) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (15) -- **[shit](shit.md)** (29) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (12) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (181) -- **[sjw](sjw.md)** (25) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (8) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (234) -- **[soydev](soydev.md)** (37) -- **[soyence](soyence.md)** (45) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (74) -- **[ssao](ssao.md)** (10) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (153) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (207) -- **[suicide](suicide.md)** (8) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (63) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (70) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (2) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (6) -- **[ted_kaczynski](ted_kaczynski.md)** (26) -- **[teletext](teletext.md)** (13) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (11) -- **[thrembo](thrembo.md)** (15) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny_software](tranny_software.md)** (27) -- **[transistor](transistor.md)** (30) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (23) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (207) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (30) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unicode](unicode.md)** (6) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (12) -- **[update_culture](update_culture.md)** (21) -- **[usa](usa.md)** (57) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (45) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (50) -- **[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)** (8) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (15) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (213) -- **[wiki_style](wiki_style.md)** (71) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (95) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (8) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (114) -- **[work](work.md)** (34) -- **[world_broadcast](world_broadcast.md)** (12) -- **[wow](wow.md)** (8) -- **[www](www.md)** (109) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (101) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (8) -- **[youtube](youtube.md)** (22) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (30) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file +**[100r](100r.md)** (3) -- **[21st_century](21st_century.md)** (4) -- **[3d_model](3d_model.md)** (243) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (285) -- **[42](42.md)** (13) -- **[4chan](4chan.md)** (25) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (388) -- **[ai](ai.md)** (12) -- **[algorithm](algorithm.md)** (219) -- **[aliasing](aliasing.md)** (60) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (2) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (93) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (29) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (4) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (18) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (12) -- **[ascii](ascii.md)** (151) -- **[ascii_art](ascii_art.md)** (206) -- **[assembly](assembly.md)** (255) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (22) -- **[atheism](atheism.md)** (14) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autostereogram](autostereogram.md)** (119) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (28) -- **[beauty](beauty.md)** (22) -- **[bilinear](bilinear.md)** (117) -- **[bill_gates](bill_gates.md)** (27) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (138) -- **[bit](bit.md)** (4) -- **[bit_hack](bit_hack.md)** (172) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (195) -- **[bloat_monopoly](bloat_monopoly.md)** (11) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (32) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (41) -- **[brain_software](brain_software.md)** (10) -- **[brainfuck](brainfuck.md)** (122) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (48) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (280) -- **[c](c.md)** (309) -- **[c_pitfalls](c_pitfalls.md)** (156) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2151) -- **[cache](cache.md)** (27) -- **[cancer](cancer.md)** (24) -- **[capitalism](capitalism.md)** (135) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (12) -- **[censorship](censorship.md)** (43) -- **[chaos](chaos.md)** (108) -- **[charity_sex](charity_sex.md)** (2) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (8) -- **[chess](chess.md)** (303) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[coc](coc.md)** (19) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (20) -- **[color](color.md)** (25) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (19) -- **[communism](communism.md)** (27) -- **[competition](competition.md)** (12) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (233) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (95) -- **[consumerism](consumerism.md)** (12) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (29) -- **[copyright](copyright.md)** (49) -- **[corporation](corporation.md)** (18) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (4) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (17) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (34) -- **[css](css.md)** (66) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[czechia](czechia.md)** (14) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[debugging](debugging.md)** (119) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (50) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (14) -- **[digital_signature](digital_signature.md)** (8) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (34) -- **[disease](disease.md)** (38) -- **[distance](distance.md)** (124) -- **[distrohopping](distrohopping.md)** (10) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (31) -- **[doom](doom.md)** (50) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[drummyfish](drummyfish.md)** (35) -- **[duke3d](duke3d.md)** (20) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (28) -- **[dynamic_programming](dynamic_programming.md)** (44) -- **[e](e.md)** (22) -- **[earth](earth.md)** (66) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (15) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (73) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (15) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (286) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (2) -- **[fail_ab](fail_ab.md)** (38) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (243) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (47) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (8) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (151) -- **[fizzbuzz](fizzbuzz.md)** (158) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (49) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (128) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (69) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (36) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (60) -- **[free_speech](free_speech.md)** (16) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (14) -- **[fsf](fsf.md)** (19) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (30) -- **[function](function.md)** (137) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (44) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (10) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (70) -- **[githopping](githopping.md)** (4) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (55) -- **[go](go.md)** (96) -- **[golang](golang.md)** (17) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (24) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (28) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (75) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (12) -- **[hexadecimal](hexadecimal.md)** (7) -- **[history](history.md)** (98) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (207) -- **[human_language](human_language.md)** (28) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (23) -- **[internet](internet.md)** (105) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (45) -- **[io](io.md)** (16) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (113) -- **[island](island.md)** (38) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (86) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (97) -- **[john_carmack](john_carmack.md)** (20) -- **[jokes](jokes.md)** (84) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (22) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (6) -- **[kids_these_days](kids_these_days.md)** (2) -- **[kiss](kiss.md)** (38) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (158) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (53) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (136) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (22) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (56) -- **[life](life.md)** (6) -- **[lil](lil.md)** (20) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (116) -- **[linux](linux.md)** (67) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (43) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (11) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[love](love.md)** (26) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (156) -- **[lrs_dictionary](lrs_dictionary.md)** (100) -- **[lrs_wiki](lrs_wiki.md)** (36) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (125) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (8) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (56) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (37) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (14) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (43) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (10) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (69) -- **[netstalking](netstalking.md)** (9) -- **[network](network.md)** (159) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (8) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (39) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (112) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (2) -- **[number](number.md)** (292) -- **[often_confused](often_confused.md)** (111) -- **[often_misunderstood](often_misunderstood.md)** (15) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (62) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (39) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (70) -- **[optimization](optimization.md)** (99) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (23) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (34) -- **[people](people.md)** (62) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (8) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (70) -- **[portability](portability.md)** (166) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (2) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (26) -- **[procgen](procgen.md)** (352) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (33) -- **[programming_language](programming_language.md)** (171) -- **[programming_style](programming_style.md)** (73) -- **[programming_tips](programming_tips.md)** (16) -- **[progress](progress.md)** (30) -- **[proof](proof.md)** (4) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (10) -- **[pseudorandomness](pseudorandomness.md)** (4) -- **[public_domain](public_domain.md)** (86) -- **[public_domain_computer](public_domain_computer.md)** (55) -- **[python](python.md)** (26) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (50) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (9) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1741) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (8) -- **[raycasting](raycasting.md)** (291) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (22) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (48) -- **[recursion](recursion.md)** (64) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (206) -- **[rgb332](rgb332.md)** (91) -- **[rgb565](rgb565.md)** (4) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (51) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (107) -- **[rust](rust.md)** (24) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (22) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (15) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (17) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (15) -- **[shit](shit.md)** (29) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (12) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (181) -- **[sjw](sjw.md)** (25) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (8) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (234) -- **[soydev](soydev.md)** (37) -- **[soyence](soyence.md)** (45) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (74) -- **[ssao](ssao.md)** (10) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (153) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (207) -- **[suicide](suicide.md)** (8) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (63) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (70) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (2) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (6) -- **[ted_kaczynski](ted_kaczynski.md)** (26) -- **[teletext](teletext.md)** (13) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (11) -- **[thrembo](thrembo.md)** (15) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny_software](tranny_software.md)** (27) -- **[transistor](transistor.md)** (30) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (23) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (207) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (30) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unicode](unicode.md)** (6) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (12) -- **[update_culture](update_culture.md)** (21) -- **[usa](usa.md)** (58) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (45) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (50) -- **[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)** (8) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (15) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (213) -- **[wiki_style](wiki_style.md)** (71) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (95) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (8) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (115) -- **[work](work.md)** (34) -- **[world_broadcast](world_broadcast.md)** (12) -- **[wow](wow.md)** (8) -- **[www](www.md)** (109) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (101) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (8) -- **[youtube](youtube.md)** (22) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (30) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file diff --git a/wiki_stats.md b/wiki_stats.md index c5ab411..9749106 100644 --- a/wiki_stats.md +++ b/wiki_stats.md @@ -3,17 +3,17 @@ This is an autogenerated article holding stats about this wiki. - number of articles: 580 -- number of commits: 804 -- total size of all texts in bytes: 3800411 -- total number of lines of article texts: 29185 +- number of commits: 805 +- total size of all texts in bytes: 3802730 +- total number of lines of article texts: 29194 - number of script lines: 262 -- occurences of the word "person": 8 +- occurences of the word "person": 7 - occurences of the word "nigger": 86 longest articles: - [c_tutorial](c_tutorial.md): 124K -- [exercises](exercises.md): 84K +- [exercises](exercises.md): 88K - [capitalism](capitalism.md): 68K - [how_to](how_to.md): 68K - [less_retarded_society](less_retarded_society.md): 56K @@ -35,13 +35,13 @@ longest articles: top 50 5+ letter words: -- which (2176) +- which (2177) - there (1641) -- people (1444) -- example (1185) -- other (1183) +- people (1447) +- example (1190) +- other (1184) - software (1073) -- number (1037) +- number (1038) - about (988) - program (867) - their (810) @@ -60,13 +60,13 @@ top 50 5+ letter words: - function (645) - different (611) - these (610) -- however (605) +- however (606) - world (574) -- system (555) +- system (559) - should (545) - doesn (542) - games (540) -- society (533) +- society (534) - point (532) - though (505) - while (503) @@ -75,20 +75,35 @@ top 50 5+ letter words: - using (493) - still (482) - technology (478) +- course (475) - similar (474) -- course (474) - possible (460) - simply (458) - https (451) - really (424) - computers (418) - extremely (414) -- actually (413) +- actually (414) - always (412) latest changes: ``` +Date: Sun May 19 22:21:45 2024 +0200 + coc.md + crime_against_economy.md + exercises.md + linux.md + lrs_dictionary.md + number.md + race.md + random_page.md + trolling.md + usa.md + wiki_pages.md + wiki_stats.md + wikipedia.md + woman.md Date: Fri May 17 23:26:53 2024 +0200 bill_gates.md exercises.md @@ -107,21 +122,6 @@ Date: Fri May 17 23:26:53 2024 +0200 Date: Thu May 16 19:56:40 2024 +0200 copyright.md democracy.md - exercises.md - fascism.md - lrs.md - main.md - random_page.md - wiki_pages.md - wiki_stats.md -Date: Wed May 15 22:03:25 2024 +0200 - bill_gates.md - exercises.md - jokes.md - main.md - modern.md - nigger.md - random_page.md ``` most wanted pages: @@ -162,8 +162,8 @@ most popular and lonely pages: - [modern](modern.md) (89) - [minimalism](minimalism.md) (88) - [linux](linux.md) (88) +- [gnu](gnu.md) (81) - [programming](programming.md) (80) -- [gnu](gnu.md) (80) - [free_culture](free_culture.md) (80) - [fun](fun.md) (77) - [math](math.md) (76)