From c726b96aeb07877d2015f14140a9c558690d482b Mon Sep 17 00:00:00 2001 From: Miloslav Ciz Date: Thu, 12 Sep 2024 20:17:25 +0200 Subject: [PATCH] Update --- ancap.md | 2 +- approximation.md | 3 +- art.md | 2 + bloat_monopoly.md | 2 +- books.md | 2 +- capitalism.md | 6 +- censorship.md | 2 +- chess.md | 2 + cloudflare.md | 3 +- corporation.md | 6 +- debugging.md | 4 + faq.md | 2 +- free_software.md | 1 + less_retarded_society.md | 2 +- nord_vpn.md | 2 +- people.md | 2 +- random_page.md | 3500 +++++++++++++++++++------------------- raycasting.md | 5 +- shortcut_thinking.md | 16 + ubi.md | 3 +- wiki_pages.md | 2 +- wiki_stats.md | 102 +- woman.md | 2 +- 23 files changed, 1853 insertions(+), 1820 deletions(-) diff --git a/ancap.md b/ancap.md index 31bcc2a..f3dd280 100644 --- a/ancap.md +++ b/ancap.md @@ -18,7 +18,7 @@ Firstly this means anything is allowed, any unethical, unfair business practice, Secondly the idea of getting rid of a state in capitalism doesn't even make sense because **if we get rid of the state, the strongest corporation will become the state**, only with the difference that state is at least *supposed* to work for the people while a corporation is only by its very definition supposed to care solely about its own endless profit on the detriment of people. Therefore if we scratch the state, McDonalds or Coca Cola or [Micro$oft](microsoft.md) -- whoever is the strongest -- hires a literal [army](military.md) and physically destroys all its competition, then starts ruling the world and making its own laws -- laws that only serve the further growth of that corporation such as that everyone is forced to work 16 hour shifts every day until he falls dead. Don't like it? They kill your whole family, no problem. 100% of civilization will experience the worst kind of suffering, maybe except for the CEO of McDonald's, the world corporation, until the planet's environment is destroyed and everyone hopefully dies, as death is what we'll wish for. -In addition to this the whole idea is also **[logically](logic.md) faulty** at the very basic level by assuming two contradictory premises at once: that people CANNOT behave morally and therefore need capitalism (money to ensure fairness, economic pressure etc.) to make them behave well, and that people CAN behave morally in the sense of purely voluntarily resisting "bad" things like establishing states. If an anarcho"capitalist" tries to educate people about harmfulness of state, believing he can turn people to change their behavior, he also has to accept it's possible to convince people in the same way that they can just behave well in general and won't need capitalism. There is no way out of this -- there are people, like [us](lrs.md), who believe that people can learn selfless moral behavior, and then there are people who don't believe it -- that's still fine as far as logic goes -- however "anarcho"capitalists try to believe both at once. That's not just stupidity squared, but probably cubed. +In addition to this the whole idea is also **[logically](logic.md) faulty** at the very basic level by assuming two contradictory premises at once: that people CANNOT behave morally and therefore need capitalism (money to ensure fairness, economic pressure etc.) to make them behave well, and that people CAN behave morally in the sense of purely voluntarily resisting "bad" things like establishing states. If an "anarcho"capitalist tries to educate people about harmfulness of state, believing he can turn people to change their behavior, he also has to accept it's possible to convince people in the same way that they can just behave well in general and won't need capitalism. There is no way out of this -- there are people, like [us](lrs.md), who believe that people can learn selfless moral behavior, and then there are people who don't believe it -- that's still fine as far as logic goes -- however "anarcho"capitalists try to believe both at once. That's not just stupidity squared, but probably cubed. A typical "anarcho"capitalist is a redneck who probably thinks the only thing preventing him from beating a corporation at its own game is state holding him back with high taxes -- he thinks that if he's allowed to keep all his crops he'll become a beast starting his own business that will go on beating Facebook, i.e. he thinks that if he can keep all five of all five carrots he grows on his field, he will somehow become so powerful he can bring down an army of ten thousand men with the most advanced technology who by the way can now also keep all money it makes, because he heard this in some fairy tale about Henry Ford or something. Of course that's highly laughable and pathetic, but indeed typically [American](usa.md). diff --git a/approximation.md b/approximation.md index 77f5402..bfb82e8 100644 --- a/approximation.md +++ b/approximation.md @@ -10,7 +10,8 @@ Examples of approximations: - **Engineering approximations** ("guesstimations"): e.g. **sin(x) = x** for "small" values of *x* or **[pi](pi.md) = 3** (integer instead of float). - **[Physics engines](physics_engine.md)**: complex triangle meshes are approximated with simple analytical shapes such as **spheres**, **cuboids** and **capsules** or at least **convex hulls** which are much easier and faster to deal with. They also approximate **relativistic** physics with **Newtonian**. - **Addition/subtraction** (of integers) can sometimes be approximated with logical [OR](or.md)/[AND](and.md) operations, as they behave a bit similarly. This can be used e.g. for brightening/darkening of pixel colors in [332](rgb332.md) or [565](rgb565.md) format -- without the approximation addition of colors in these formats is very expensive (basically requires conversion to RGB, addition, clamping and a conversion back). -- **[Square root](sqrt.md)/square** (integer) can be roughly approximated too. E.g. to get a quick "almost square" of a number you can try something like doubling each binary digit and shifting everything right, e.g. `101` -> `11001` -- it's not very accurate but may be [good enough](good_enough.md) e.g. for some graphics effects and may be especially effective as hardware implementation as it works instantly and uses literally no [logic gates](logic_gate.md) (you just reorder bits)! A bit improved version may construct a pair of digits from each digit as logical AND (upper bit) and logical OR (lower bit) of the bit with its lower neighbor (lowest bit may still just be doubled), e.g. `1101` -> `11010111`. Square root can similarly be roughly estimated by reducing each pair of bits with logical OR sown to a single bit (e.g. `101100` -> `110`). { Dunno if this is actually used anywhere, I came up with this once before I fell asleep. ~drummyfish } A famous hack in Quake, called *fast inverse square root*, uses a similar approximation in [floating point](float.md). +- **Division**: dividing by arbitrary number is often a slow operation, however dividing by powers of two is fast because it can be done with a simple bit shift -- so if we need to divide *x* let's say by 3, it may be faster to approximate by averaging *x* divided by 2 and *x* divided by 4 (both powers of two, computing average also needs just division by 2), i.e *x / 3 ~= ((x / 2) + (x / 4)) / 2 = 3/8 * x = (x + x + x) / 8* -- indeed, 3/8 is almost 1/3. +- **[Square root](sqrt.md)/square** (integer) can be roughly approximated too. E.g. to get a quick "almost square" of a number you can try something like doubling each binary digit and shifting everything right, e.g. `101` -> `11001` -- it's not very accurate but may be [good enough](good_enough.md) e.g. for some graphics effects and may be especially effective as hardware implementation as it works instantly and uses literally no [logic gates](logic_gate.md) (you just reorder bits)! A bit improved version may construct a pair of digits from each digit as logical AND (upper bit) and logical OR (lower bit) of the bit with its lower neighbor (lowest bit may still just be doubled), e.g. `1101` -> `11010111`. Square root can similarly be roughly estimated by reducing each pair of bits with logical OR down to a single bit (e.g. `101100` -> `110`). { Dunno if this is actually used anywhere, I came up with this once before I fell asleep. ~drummyfish } A famous hack in Quake, called *fast inverse square root*, uses a similar approximation in [floating point](float.md). - **[3D graphics](3d_rendering.md)** is almost completely about approximations, e.g. basically all shapes are approximated with triangle meshes, [screen space](screen_space.md) effects (like [SSAO](ssao.md)) are used to approximate global illumination, reflections etc. Similarly [ray tracing](ray_tracing.md) neglects indirect lighting etcetc. - **[Real numbers](real_number.md)** are practically always approximated with [floating point](floating_point.md) or [fixed point](fixed_point.md) (rational numbers). - **[Numerical methods](numerical.md)** offer generality and typically yield approximate solutions while their precision vs speed can be adjusted via parameters such as number of iterations. diff --git a/art.md b/art.md index 9531802..993f89a 100644 --- a/art.md +++ b/art.md @@ -10,6 +10,8 @@ Art is an endeavor that seeks discovery and creation of [beauty](beauty.md) and Art, like a [woman](woman.md), is beautiful and just like a woman it too often sells itself and becomes a whore, it is too difficult to find sincere, pure art like it is difficult to find a sincere love of a woman. +**Art is about acquiring big picture view.** Doing something by following steps of some [algorithm](algorithm.md) is not an art: this is something anyone can do without any experience, creativity or making use of intuition -- even a dumb machine can do this. A process turns into art once it becomes largely driven by very complex decision making done by the brain based on years and years of experience and deep, interconnected knowledge of all the the possible what ifs. A filmmaker cannot just start shooting a movie without having a head loaded with good knowledge of how cameras work, knowing about composition, visual aesthetics, sound, music, colors, acting, writing, editing, doing practical effects, digital effect and many, many other things -- it's not possible to say "I'll first shoot the movie and I'll learn about editing when I get to editing" because editing has to be taken into account already when shooting the movie, the work can only be started when it's already finished in the filmmaker's head. One must know what's important and what to focus on, have an idea of how long something will take to shoot in order to be able to even do any planning, and, importantly, be able to improvise, make spontaneous decisions that will be GOOD, because unexpected things will happen and the ability to make the correct decision in such a situation REQUIRES seeing into the future, seeing the context, the consequences and costs of possible decisions. That's why a director cannot be just someone who knows how to direct actors, he must be someone who knows EVERYTHING about all parts of the movie. Therefore if you want to become a true artist in your craft, you have to learn everything around it. A [capitalist](capitalism.md) will tell you to just learn one thing and ignore everything else that's "out of your responsibility" -- that won't make you an artist, that will just make you a tool. When you want to become an excellent programmer, you can't just limit yourself to learning one programming language and ignore areas that don't interest you too much, claiming "you'll learn it when you need it". You must learn all the areas to acquire different angle views, to collect a set of tools out of which you'll be able to always pick the most appropriate one; knowing just one way means you have just one tool, like going to build a house with just a screwdriver. So go and learn as much as you can, do not overspecialize, do not think you can just know very little and follow a tutorial to make art -- you cannot. + ## See Also - [beauty](beauty.md) diff --git a/bloat_monopoly.md b/bloat_monopoly.md index 19a9e5c..5ce45ff 100644 --- a/bloat_monopoly.md +++ b/bloat_monopoly.md @@ -10,4 +10,4 @@ Bloat monopoly is [capitalism](capitalism.md)'s circumvention of [free](free.md) At the time of writing this if you want to compile the so called "[open source](open_source.md)" [Android](android.md), you will need a supercomputer at home (https://source.android.com/docs/setup/start/requirements) with at least 400 GB of space, 64 GB of RAM (remember, this is a MINIMUM requirement!), a [modern](modern.md) 64 bit CPU with multiple cores (Google uses 72 core machines!), and many hours of computational time. How long before we need a million dollar supercomputer to compile an "open source" program? Now ask yourself, is this still real freedom? -Examples of bloat monopoly include mainstream web browsers ([furryfox](firefox.md), [chromium](chromium.md), ...), [Android](android.md), [Linux](linux.md), [Blender](blender.md) etc. This software is characteristic by its difficulty to be even compiled, yet alone understood, maintained and meaningfully modified by a lone average programmer, by its astronomical [maintenance](maintenance.md) cost that is hard to pay for volunteers, and by aggressive [update culture](update_culture.md). +Examples of bloat monopoly include mainstream web browsers ([furryfox](firefox.md), [chromium](chromium.md), ...), [Android](android.md), [Linux](linux.md), [Blender](blender.md) etc. This software is characteristic by its difficulty to be even compiled, let alone understood, maintained and meaningfully modified by a lone average programmer, by its astronomical [maintenance](maintenance.md) cost that is hard to pay for volunteers, and by aggressive [update culture](update_culture.md). diff --git a/books.md b/books.md index 21b5cb0..60a0df2 100644 --- a/books.md +++ b/books.md @@ -11,7 +11,7 @@ Here there will be a constantly WIP list of [books](book.md) that might be of in - **Encyclopedia Britannica 11th edition** (1911): Extremely large, old, uncensored [encyclopedia](encyclopedia.md), mostly digitized and fulltext searchable, also completely [public domain](public_domain.md), with very long articles on all topics up to the date of its publication. Great source of lesser known information and an alternative to modern censored sources. Also check out other similar encyclopedias. - **[Flatland](flatland.md)** (Abbott, 1884): Absolutely amazing fantasy story set in two dimensional land with characters being geometric shapes, while being a critic of society to a big degree, it discusses practical and mathematical aspects of actually living in two dimensions, how the characters see, how they build their houses etc. It is now absolutely [public domain](public_domain.md)! - **Free as in Freedom** (Sam Williams, 2002): Free-licensed official biography of [Richard Stallman](rms.md), contains many historical details about how [free software](free_software.md) came to be, how [open source](open_source.md) spoiled it etc. -- **Free Culture** (Lessig, 2004): Creative-commons licensed (non-free but gratis) book by the founder of [Creative Commons](creative_commons.md) and [free cutlure](free_culture.md), goes into details on how copyright became abused by capitalism, why public domain is being smothered and why we must support free culture. +- **Free Culture** (Lessig, 2004): Creative-commons licensed (non-free but gratis) book by the founder of [Creative Commons](creative_commons.md) and [free culture](free_culture.md), goes into details on how copyright became abused by capitalism, why public domain is being smothered and why we must support free culture. - **Game Engine Black Book: Doom** (Sanglard, 2019): Gratis, very nice book dissecting all the details about the legendary [Doom](doom.md) engine and its internals -- how it worked, why was it so fast, what hacks went into it, written so that a reader of any programming skill (even none) will find something interesting. A must read for fans of oldschool game programming. - **Game Engine Black Book: Wolfenstein 3D** (Sanglard, 2019): Same as the Doom engine book from the same author, just about the older game Wolfenstein 3D, also amazing. - **Guinness Book of World Records, BEFORE 2000**: The older books were excellent, ideally get some from 80s or earlier, there are funny records like most rats killed by cat in one hour, most primitive languages and so on. Do NOT buy the new editions, these are uttermost absolute garbage equivalent to an expensive toilet paper. diff --git a/capitalism.md b/capitalism.md index ddb4db4..379569c 100644 --- a/capitalism.md +++ b/capitalism.md @@ -86,17 +86,18 @@ The following is a list of just SOME attributes of capitalism -- note that not a - **extreme [brainwashing](brainwashing.md) and propaganda**: [Marketing](marketing.md) reaches extreme levels in capitalism, utilizing advanced psychological tricks and repetition to the point of becoming a torture, with the goal of teaching people brand loyalty, consumerist behavior etc. Application of this brainwashing even on children has already been normalized. Entrepreneurs create cults of personalities. There is now even a "legit" job called an [influencer](influencer.md) whose sole purpose is in spreading corporate propaganda on the Internet. - **criminality**: This is a direct consequence of poverty, awful working conditions, [fight culture](fight_culture.md) and overall diminishing morality. Poor people (the absolute majority in the system) become desperate and do desperate things -- of course, all blame is put on them, not on those who are responsible for their poverty. - **instability**: Lack of long term planning, extreme interdependence, monopolies over essential resources, fragility of the market, increasing wealth gap, pushing workers to poverty while taking away social security, eliminating self sufficiency, extreme waste and other phenomena pose great dangers of market collapses, violent strikes and revolutions, running out of resources, destruction of living environment and other disasters and even societal [collapse](collapse.md). +- **corruption**: Capital, i.e. money, is the only value in capitalism, money buys everything and everyone -- like the mafia says: "it's not personal, just business" -- whole society is just business and nothing more, power is merely a commodity to sell. - **need for extremely complex market control and laws, burdening society**: As corporations are absolutely unethical and pursue evil goals such as enslaving workers and abuse of consumers, there have to be an extremely complex set of constantly evolving laws and bureaucracy just to somehow "make corporations behave". However laws are imperfect and corporations work 24/7 on bypassing them as well as on attacking and eliminating the laws themselves via lobbyist etc. This creates a constant, extremely expensive legal war-like game in which everyone has to take part, which is completely arbitrary and unnecessary and which eventually corporations will likely win. - **uncontrolled growth**: Capitalism is likened to [cancer](cancer.md) as it requires a constant uncontrolled growth which on a planet of limited resources inevitably leads to a catastrophic scenario. - **hyperspecialization, loss of self sufficiency**: Entities (people, cities, companies, states, ...) lose self sufficiency as they hyperspecialize in some task and in everything else rely on someone else. This complete dependence creates slavery and danger -- in an event of a blackout for example people cannot survive as they cannot make their own food, they can't repair their basic tools etc. -- **loss of humanity**: In capitalism humans are just consumers, machines for production and "resources" -- corporations now routinely use these terms (*human resources department* etc.). People are brainwashed to no longer even see it as concerning to be called such terms. People's worth is only in how much they can work or consume. +- **loss of humanity, human values, virtues, good relationships and higher goals**: In capitalism humans are just [consumers](consumerism.md), machines for production and "resources" -- corporations now routinely use these terms (*human resources department* etc.). People are brainwashed to no longer even see it as concerning to be called such terms. People's worth is only in how much they can work or consume. ALL things become a matter or business and competition, both economically and psychologically -- even romantic love becomes more akin a business partnership, people sign contracts before marriage and with any material hardship divorce comes inevitably, calculation prevails over feelings and it's seen as a completely normal thing. **Truth itself is destroyed in capitalism**, information and public opinion become so valuable to business that truth is something that gets sold by "[scientists](soyence.md)", [marketing](marketing.md) and public media propaganda, whatever "fact" a politician needs to be true, he can make it so just by paying money -- that is why people become paranoid, "conspiracy theories" flourish because science has sold itself like a whore and there is no one to trust, gone are the times when people had higher shared goals such as exploration, creation of art, want of seeking the truth, when a science authority or newspaper could be trusted because one might rely on scientists and journalists to have at least some virtues and love for their craft. A science authority or famous journalist is nowadays just an expensive prostitute. - **abuse of animals**: In capitalism animals are just products and resources, they are kept in very bad conditions just to be killed for meat or other purpose. They are slaughtered by millions just so we can overeat to morbid obesity. Maximizing profit dictates no money should be spent on animal comfort. - **[productivity cult](productivity_cult.md)**: People are brainwashed and forced into becoming robots whose sole purpose is to produce. Working overtimes, skipping lunch, minimizing sleep etc. has already become part of the work culture for example in USA and Japan. - **financial crises**: Crises are as regular and certain in capitalism as rain is in the nature, and possibly much more unpredictable; every crisis hurts everyone but the strongest corporations, whom it in turn makes stronger. People become poorer and great many small and mid-size businesses, i.e. potential competition to the big guys, either die to a bankrupt or are forced to let themselves be devoured by the big guys. This further accelerated the scissors effect, making poor poorer (i.e. better abusable) and rich richer. This is also yet another reason why the small "good guy"/"not only for profit" companies always lose, they simply refuse to steal the food of others to eat themselves obese before a famine and so they will die during the next famine or the next or the one after it. Only the bad guys survive many series of crises. - **everything is fake**: Everything is rotten and corrupted on the inside with an extreme effort towards putting up a misleading good looking facade. TV shows, including "news", are all staged (even those swearing not to be, no producer is going to invest money in something depending on pure luck), smiles and emotion of people you meet in workplace or see on ads, women's tits, butts and faces, men's muscles, photos on social media, food that has basically no food in it, even news and facts, everything is fake. Investigating any area (government, working conditions, technology, healthcare, education, charities, academia and "[science](soyence.md)", ...) a bit in depth practically always leads to unrevealing how corrupt it actually is despite it looking nice and ideal at the first look. - **loss of ownership**: Even that which is most saint to a capitalist -- property and the ability to own things -- is greatly lost under capitalism. This happens with the trend of everything becoming a service, a typical example of which is so called "[software as a service](saas.md)". While in the past one would buy a physical copy of a program that he would at least physically own forever, nowadays many programs become a subscription service, e.g. games, movies and music are no longer something you buy but just buy a one time ticket for. But this trend is everywhere, artificial obsolescence tries to limit durability of physical goods such electronic devices so that one has to keep consuming them like a service. - **[rape effect](rape_effect.md)**: The mechanisms of capitalism work in such ways that everyone gets progressively more raped with any further advance of capitalism. -- **endangering existence of all life**: The mentioned destruction of environment, lack of long term planning, irresponsibility and instability along with creating a dangerous overdependence on technology and interconnections of self insufficient states and cities is just waiting for a disaster such as [CME](cme.md) that immediately collapses the civilization and consequently endangers all life on Earth e.g. by meltdowns in nuclear plants or possible nuclear wars as a consequence of panic. The absolute preference of immediate profit is hostile towards investments in future and precautions. RIP. +- **endangering existence of all [life](life.md)**: The mentioned destruction of environment, lack of long term planning, irresponsibility and instability along with creating a dangerous overdependence on technology and interconnections of self insufficient states and cities is just waiting for a disaster such as [CME](cme.md) that immediately collapses the civilization and consequently endangers all life on Earth e.g. by meltdowns in nuclear plants or possible nuclear wars as a consequence of panic. The absolute preference of immediate profit is hostile towards investments in future and precautions. RIP. - ... ## How It Works @@ -138,6 +139,7 @@ Capitalist brainwashing is pretty sophisticated -- unlike with centralized oppre - *"Capitalism just works, capitalism is natural, capitalism means [progress](progress.md) etc."* -- **Capitalism doesn't work, it's just hard to get rid of.** Progress isn't dependent on capitalism, progress can't be stopped and will be here even without capitalism, on the contrary, capitalism mostly smothers the good kind of progress, e.g. by inventing intellectual property it prevents full utilization of us having the technology for unlimited sharing and reusing of information. If it "works and is natural", then it works and is natural natural in the same way as for example cancer or wars. This doesn't mean we should support it or see it as something positive. Most of other similar lies are discussed in sections above. - *"Capitalism produces best quality products for lowest prices."* -- An extremely prevailing myth that is a complete 100% lie, it is enough to take a look at anything produces in capitalism and before it, for example in countries that switched from "communism" to capitalism. Capitalist products last about 1% of the time they normally would due to artificial obsolescence and consumerism, they are littered with [DRM](drm.md), [bloat](bloat.md), surveillance technology, made from cheapest material, designed to break, show ads and so on. Capitalism aims to produce the lowest quality product that will just barely be accepted, anything better is wasting profit. { As a curiosity compare for example movie dubbings in countries during "communist" and later capitalist eras (e.g. Hungary or Czechia) -- ask the people who live there, they will tell you the old dubbing was art, made with care, the new dubbing is a hasted shit produced as cheaply and quickly as possible. ~drummyfish } - Fairy tales about about the rich "capitalist altruist": you will hear stories about famous capitalists that paint them as nice guys who give to poor for free, who do manual work despite not having to etc. This is just part of cult of personality propaganda and applying cheap populist tricks to deceive masses. A rich guy giving $100 to a poor kid on camera is an extreme powerful marketing that costs $100, which for a billionaire is of course a laughable cost. The fact is that every billionaire is the best player of the most dirty game humanity has invented and researching any such guy reveals, basically in 100% of cases, that he was in fact the worst imaginable psychopath -- Edison killed animals with electric current as part of marketing, the owner of McDonald's stole the idea and know-how from McDonald brothers ALONG WITH their own name, similar thing happened with KFC, Steve Jobs was infamous for his psychological pressure on workers equating torture, the working condition's in Ford's factories were basically the same as those for black African slaves, etcetc. **Trying to find a rich man that's good is like trying to find a shark who's a vegetarian.** +- "You sometimes have to suffer unpleasant things in life." -- It is true that living a good life involves SOMETIMES voluntarily choosing to undergo suffering for things you feel are MORALLY GOOD. Capitalists turn this on its head and tell you: you have to suffer CONSTANTLY and do things you hate and know that are MORALLY WRONG, because that's "how life is" (because we made it to be that way). See the difference, refuse to conform. - *"Capitalism isn't perfect but it's the best system we know."*: complete [bullshit](bullshit.md), capitalism is probably the worst system that there ever was. See this whole article. - *"Successful capitalists are the most intelligent people."*: on the contrary, mostly the stupidest people become successful -- success in capitalism depends mostly on luck and lack of moral obstacles, i.e. doing whatever it takes to succeed such as stabbing friends in the back, public lying, exploitation of workers etc. High intelligence is actually a disadvantage in this manner as it makes one see all the negative consequences of his behavior, a smart man sees that by engaging in capitalism he is not just hurting and even killing other people, but even e.g. working towards destruction of art, culture, living environment and possibly life itself. Being a successful businessman in capitalism is like steering a plane full of people, including oneself, towards ground -- only an idiot can do it. - *"The first word a baby says is "mine" therefore capitalism proven.*: indeed a candidate for the top 1 retarded arguments that only a newborn level brain (like Frank Zappa size) might produce :D First word a human says is usually something like "aaaaaeeeerrrrrffff". diff --git a/censorship.md b/censorship.md index 2b396c9..42771b5 100644 --- a/censorship.md +++ b/censorship.md @@ -4,7 +4,7 @@ Censorship constitutes intentional effort towards hiding any kind of [information](information.md) from someone, e.g. preventing exchange of certain kind of information among individuals, suppression of [free speech](free_speech.md), altering old works of [art](art.md) for political reasons, forced takedowns of [copyrighted](copyright.md) material from the [Internet](internet.md) and so forth. I.e. hiding information from SOMEONE ELSE is censorship, but note this definition does NOT include every kind of data or information filtering, for example censorship does not include filtering out [noise](noise.md) such as [spam](spam.md) on a forum or static from audio (as noise is a non-information) or PERSONAL avoidance of certain information (e.g. using [adblock](adblock.md) or hiding someone's forum posts ONLY FOR ONESELF) -- censorship simply means one prevents someone else from reaching some knowledge. Censorship often **hides under euphemisms** such as "[moderation](moderation.md)", "[safe space](safe_space.md)", "peer review", "[filtering](filter.md)", "protection", "delisting", "deplatforming", "fact check", "isolation" etc. **Censorship is always [wrong](bad.md)** -- [good society](less_retarded_society.md) must be compatible with truth, thus there must never be a slightest reason to censor anything -- whenever censorship is deemed the best solution, something within the society is deeply fucked up. In current society censorship, along with [propaganda](propaganda.md), brainwashing and misinformation, is extremely prevalent and growing -- it's being pushed not only by [governments](government.md) and [corporations](corporation.md) but also by harmful terrorist groups such as [LGBT](lgbt.md) and [feminism](feminism.md) who force media censorship (e.g. that of [Wikipedia](wikipedia.md) or search engines) and punishment of free speech (see [political correctness](political_correctness.md) and "[hate speech](hate_speech.md)"). -Sometimes you can actually **exploit the effort of censors to get to the good content** -- look up a blacklist (e.g. https://en.wikipedia.org/wiki/Category:Blocked_websites_by_country, https://peertube_isolation.frama.io/list/peertube_isolation.txt and so on), then you have a list of interesting places you probably want to visit :) For [political cowardice](political_correctness.md) blacklistst are nowadays also called "block lists", "isolation lists" etc. -- just look for those. +Sometimes you can actually **exploit the effort of censors to get to the good content** -- look up a blacklist (e.g. https://en.wikipedia.org/wiki/Category:Blocked_websites_by_country, https://peertube_isolation.frama.io/list/peertube_isolation.txt and so on), then you have a list of interesting places you probably want to visit :) For [political cowardice](political_correctness.md) blacklists are nowadays also called "block lists", "isolation lists" etc. -- just look for those. Sometimes it is not 100% clear which action constitutes censorship: for example categorization such as moving a forum post from one thread to another (possibly less visible) thread may or may not be deemed censorship -- this depends on the intended result of such action; moving a post somewhere else doesn't remove it completely but can make it less visible. Whether something is censorship always depends on the answer to the question: "does the action prevent others from information sharing?". diff --git a/chess.md b/chess.md index 9e5b8bd..22a135e 100644 --- a/chess.md +++ b/chess.md @@ -54,6 +54,8 @@ During [covid](covid.md) chess has experienced a small boom among normies and [Y **White is generally seen as having a slight advantage over black** (just like in [real life](irl.md) lol). It is because he always has the first move -- statistics also seems to support this as white on average wins a little more often. This doesn't play such as big role in beginner and intermediate games but starts to become apparent in master games. How big the advantages is is a matter of ongoing debate, most people are of the opinion there exists a slight advantage for the white (with imperfect play, i.e. that white plays easier, tolerates slightly less accurate play), though most experts think chess is a draw with perfect play (pro players can usually quite safely play for a draw and secure it if they don't intend to win; world championships mostly consist of drawn games as really one player has to make a mistake to allow the other one to win). Minority of experts think white has theoretical forced win. Probably only very tiny minority of people think white doesn't have any advantage. Some people argue black has some advantages over white, as it's true that sometimes the obligation to make a move may be a disadvantage. Probably no one thinks black has a forced win, though that's not disproved yet so maybe someone actually believes it. +**Blindfold play**: it's quite impressive that very good players can play completely blindfold, without any actual chessboard, and some can even play many games simultaneously this way. This is indeed not easy to do and playing blindfold naturally decreases one's strength a bit (it seems this is more of a case on lower level of play though). It is however not the case that only an exceptional genius could play this way, probably anyone can learn it, it's just a matter of training. Probably all masters (above FIDE ELO 2000) can play blindfold. They say the ability comes naturally just by playing countless games. How to learn playing blindfold then? Just play a lot of chess, it will come naturally -- this is the advice probably most often given. However if you specifically wish to learn blindfold play, you may focus on it, e.g. by training blindfold against very weak computer. Some software chess boards offer a mode in which one can see the position and color of all men but not which type they are -- this may perhaps be a good start. + On **perfect play**: as stated, chess is unlikely to be ever solved so it is unknown if chess is a theoretical forced draw or forced win for white (or even win for black), however many simplified endgames and some simpler chess variants have already been solved. Even if chess was ever solved, it is important to realize one thing: **perfect play may be unsuitable for humans** and so even if chess was ever solved, it might have no significant effect on the game played by humans. Imagine the following: we have a chess position in which we are deciding between move *A* and move *B*. We know that playing *A* leads to a very good position in which white has great advantage and easy play (many obvious good moves), however if black plays perfectly he can secure a draw here. We also know that if we play *B* and then play perfectly for the next 100 moves, we will win with mathematical certainty, but if we make just one incorrect move during those 100 moves, we will get to a decisively losing position. While computer will play move *B* here because it is sure it can play perfectly, it is probably better to play *A* for human because human is very likely to make mistakes (even a master). For this reason humans may willingly choose to play mathematically worse moves -- it is because a slightly worse move may lead to a safer and more comfortable play for a human. Fun fact: there seem to be **almost no black people in [chess](chess.md)** :D the strongest one seems to be Pontus Carlsson which rates number 1618 in the world; even [women](woman.md) seem to be much better at chess than black people. But how about black women? [LMAO](lmao.md), it seems like there haven't even been any black female masters :'D The web is BLURRY on these facts, but there seems to be a huge excitement about one black female, called Rochelle Ballantyne, who at nearly 30 years old has been sweating for a decade to reach the lowest master rank (the one which the nasty oppressive white boys get at like 10 years old) and MAYBE SHE'LL DO IT, she seems to have with all her effort and support of the whole Earth overcome the 2000 rating, something that thousands of amateurs on the net just causally do every day without even trying too much. But of course, it's cause of the white male oppression =3 lel { anti-disclaimer :D Let's be reminded [we](lrs.md) love all people, no matter skin color or gender. We are simply stating facts about nature, which don't always respect political correctness. ~drummyfish } diff --git a/cloudflare.md b/cloudflare.md index 0f3a792..a99ba14 100644 --- a/cloudflare.md +++ b/cloudflare.md @@ -23,4 +23,5 @@ We hope you enjoyed reading this article. *(Message inserted by cucks.)* - [censorship](censorship.md) - [genocide](genocide.md) - [Hitler](hitler.md) -- [dystopia](dystopia.md) \ No newline at end of file +- [dystopia](dystopia.md) +- [Nord VPN](nord_vpn.md) \ No newline at end of file diff --git a/corporation.md b/corporation.md index bdefeb8..326ba49 100644 --- a/corporation.md +++ b/corporation.md @@ -6,7 +6,11 @@ NOTE: Besides corporations there also exist non-corporate companies -- privately The most basic fact to know about corporations is that **100% of everything a corporation ever does is done 100% solely for maximizing its own benefit for any cost, with no other reason, with 0 morality and without any consideration of consequences**. If a corporation could make 1 cent by raping 1000000000 children and get away with it, it would do so immediately without any hesitation and any regret. This is very important to keep in mind. Now try to not get depressed at realization that corporations are those to whom we gave power and who are in almost absolute control of the world. -**Corporation is not a human, it has zero sense of morality and no emotion.** The most basic error committed by retards is to reply to this argument with "but corporations are run by humans". This is an extremely dangerous argument because somehow 99.999999999999999999% people believe this could be true and accept it as a comforting argument so that they can continue their daily lives and do absolutely nothing about the disastrous state of society. The argument is of course completely false for a number of reasons: firstly corporations exclusively hire psychopaths for manager roles -- any corporation that doesn't do this will be eliminated by natural selection of the market environment because it will be weaker in a [fight](fight_culture.md) against other corporations, and its place will be taken by the next aspiring corporation waiting in line. Secondly corporations are highly sophisticated machines that have strong mechanisms preventing any ethical behavior -- for example division of labor in the "[just doing my job](just_doing_my_job.md)"/"[everyone does it](everyone_does_it.md)" style allows for many people collaborating on something extremely harmful and unethical without any single one feeling responsibility for the whole, or sometimes without people even knowing what they are really collaborating on. This is taken to perfection by corporations not even having a single responsible owner -- there is a group of shareholders, none of whom has a sole responsibility, and there is the CEO who is just a tool and puppet with tied hands who is just supposed to implement the collective bidding of shareholders. Of course, most just don't care, and most don't even have a choice. Similar principles allowed for example the [Holocaust](holocaust.md) to happen. Anyone who has ever worked anywhere knows that managers always pressure workers just to make money, not to behave more ethically -- of course, such a manager would be fired on spot -- and indeed, workers that try to behave ethically are replaced by those who make more money, just as companies that try to behave ethically in the market are replaced by those that rather make money, i.e. corporations. This is nothing surprising, the definition of [capitalism](capitalism.md) implies existence of a system with Darwinian evolution that selects entities that are best at making money for any cost, and that is exactly what we are getting. To expect any other outcome in capitalism would be just trying to deny mathematics itself. +**Corporation is not a human, it has zero sense of morality and no emotion.** The most basic error committed by retards is to reply to this argument with "but corporations are run by humans". This is an extremely dangerous argument because somehow 99.999999999999999999% people believe this could be true and accept it as a comforting argument so that they can continue their daily lives and do absolutely nothing about the disastrous state of society. The argument is of course completely false for a number of reasons: firstly corporations exclusively hire psychopaths for manager roles -- any corporation that doesn't do this will be eliminated by natural selection of the market environment because it will be weaker in a [fight](fight_culture.md) against other corporations, and its place will be taken by the next aspiring corporation waiting in line. Secondly corporations are highly sophisticated machines that have strong **mechanisms preventing any ethical behavior** -- for example division of labor in the "[just doing my job](just_doing_my_job.md)"/"[everyone does it](everyone_does_it.md)" style allows for many people collaborating on something extremely harmful and unethical without any single one feeling responsibility for the whole, or sometimes without people even knowing what they are really collaborating on. + +Somehow people are surprised when they see let's say a game company make huge hypes and promises of revolutionary new games and then delivering a completely different, absolutely shitty product (e.g. Warcraft Reforged, GTA "definitive" edition, Cyberpunk and countless other scams) -- "How can this company be so evil and lie so blatantly? Don't they know lying is bad? How can they promise something they can't make? Don't they care about their customers?" Of course not, lying is profitable and there is no one who's to blame in the company -- the [marketing](marketing.md) department's task is to just maximize hype and attention, their job is only to make promises and they know it's the developer's job to deliver on those promises, and on the other hand the developer's job is to just do what he can and not care about marketing and PR, from his point of view unrealistic promise is the marketing department's fail. I.e. both are just doing their job, they don't even have any other choice (else they get fired), no one is responsible, no one feels any guilt. This is a corporation using human intelligence while removing human conscience. + +This is further taken to perfection by corporations not even having a single responsible owner -- there is a group of shareholders, none of whom has a sole responsibility, and there is the CEO who is just a tool and puppet with tied hands who is just supposed to implement the collective bidding of shareholders. Of course, most just don't care, and most don't even have a choice. Similar principles allowed for example the [Holocaust](holocaust.md) to happen. Anyone who has ever worked anywhere knows that managers always pressure workers just to make money, not to behave more ethically -- of course, such a manager would be fired on spot -- and indeed, workers that try to behave ethically are replaced by those who make more money, just as companies that try to behave ethically in the market are replaced by those that rather make money, i.e. corporations. This is nothing surprising, the definition of [capitalism](capitalism.md) implies existence of a system with Darwinian evolution that selects entities that are best at making money for any cost, and that is exactly what we are getting. To expect any other outcome in capitalism would be just trying to deny mathematics itself. A corporation is made to exploit people just as a gun is made to kill people. When a corporation commits a crime, it is not punished like a human would be, the corporation is left to exist and continue doing what it has been doing -- a supposed "punishment" for a corporation that has been caught red handed committing a crime is usually just replacing whoever is ruled to be "responsible", for example the CEO, which is of course ridiculous, the guy is just replaced with someone else who will do exactly the same. This is like trying to fix the lethal nature of a weapon by putting all the blame on a screw in the weapon, then replacing the screw with another one and expecting the weapon to no longer serve killing people. diff --git a/debugging.md b/debugging.md index 7f2eaa3..1f92b0a 100644 --- a/debugging.md +++ b/debugging.md @@ -83,6 +83,10 @@ Here if you don't define the `DEBUG` macro, the assert macro will just be an emp If something that used to work stops working, it's a **[regression](regression.md)**. Here the first step towards fixing it is finding which exact change to the program broke it, i.e. find the last software version before the bug that didn't have the bug -- for this version control systems like [git](git.md) are very cool as they allows you to switch between different commits. In this search apply the binary search principle again (just like you search a word in a dictionary, i.e. keep checking the middle commit and move either before or after it depending on whether it already has the bug or not). Once you find the offending commit it's usually easy to spot the bug, you just have a relatively small amount of code in the commit which you can keep checking by parts if it's not immediately obvious (i.e. try to recreate the commit part by part and see when exactly it breaks, this moves you yet closer to the bug). +### Recording The Data, Plotting, Visualizing + +Some bugs may be not so easy to grasp by it being hard to even point out exactly what is happening wrong, for example slight graphical or sound glitches when you notice something a bit off, like a camera suddenly jumping a bit -- here it may help keep continuous track of various variables, e.g. the camera transformation and other [vectors](vector.md) -- by purely printing them out or even plotting them -- and then note when the bug appeared: for example you may simply close the program immediately after you notice the bug, and then you know you should be looking for something weird happening near the end in the log of the data and their graphs. Maybe you'll notice the camera jumps when its rotation angle switches from negative to positive, when its rotation aligns with a principal axis or something similar -- this may very well point you to the core of the issue. + ### Debuggers And Other Debugging Tools Like Profilers There exist many software tools specialized for just helping with debugging (there are even physical hardware debuggers etc.), they are either separate software (good) or integrated as part of some development environment (bad by [Unix philosophy](unix_philosophy.md)) such as an [IDE](ide.md), web browser etc. Nowadays a compiler itself will typically do some basic checks and give you warning about many things, but oftentimes you have to turn them on (check man pages of your compiler). diff --git a/faq.md b/faq.md index a3c265c..2905322 100644 --- a/faq.md +++ b/faq.md @@ -72,7 +72,7 @@ If you want to contribute to the cause, just create your own website, spread the Yes. -No, of course not you dumbo. There is no intention of deception, this project started as a collaborative wiki with multiple contributors, named *Based Wiki*, however I (drummyfish) forked my contributions (most of the original Wiki) into my own Wiki and renamed it to *Less Retarded Wiki* because I didn't like the direction of the original wiki. At that point I was still allowing and looking for more contributors, but somehow none of the original people came to contribute and meanwhile I've expanded my LRS Wiki to the point at which I decided it's simply a snapshot of my own views and so I decided to keep it my own project and kept the name that I established, the *LRS Wiki*. Even though at the moment it's missing the main feature of a wiki, i.e. collaboration of multiple people, it is still a project that most people would likely call a "wiki" naturally (even if only a personal one, also called a *monoproject*) due to having all the other features of wikis (separate, constantly changing articles linked via hypertext, non-linear structure etc.) and simply looking like a wiki -- nowadays there are many wikis that are mostly written by a single man (see e.g. small fandom wikis) and people still call them wikis because culturally the term has simply taken a wider meaning, people don't expect a wiki to absolutely necessarily be collaborative and so there is no deception. Additionally I am still open to the idea to possibly allowing contributions, so I'm simply keeping this a wiki, the wiki is in a sense waiting for a larger community to come. Finally the ideas I present here are not just mine but really do reflect existing movements/philosophies with significant numbers of supporters (suckless, free software, ...). +No, of course not you dumbo. There is no intention of deception, this project started as a collaborative wiki with multiple contributors, named *Based Wiki*, however I (drummyfish) forked my contributions (most of the original Wiki) into my own Wiki and renamed it to *Less Retarded Wiki* because I didn't like the direction of the original wiki. At that point I was still allowing and looking for more contributors, but somehow none of the original people came to contribute and meanwhile I've expanded my LRS Wiki to the point at which I decided it's simply a snapshot of my own views and so I decided to keep it my own project and kept the name that I established, the *LRS Wiki*. Even though at the moment it's missing the main feature of a wiki, i.e. collaboration of multiple people, it is still a project that most people would likely call a "wiki" naturally (even if only a personal one, also called a *monoproject*) due to having all the other features of wikis (separate, constantly changing articles linked via hypertext, non-linear structure etc.) and simply looking like a wiki -- nowadays there are many wikis that are mostly written by a single man (see e.g. small fandom wikis) and people still call them wikis because culturally the term has simply taken a wider meaning, people don't expect a wiki to absolutely necessarily be collaborative and so there is no deception. If you're still like "NONONONO I REFUSE TO ACCEPT THIS" then see this as a wiki that's collaboratively edited by many of my alternative personalities. Additionally I am still open to the idea to possibly allowing contributions, so I'm simply keeping this a wiki, the wiki is in a sense waiting for a larger community to come -- anyone may fork it at any time BTW. Finally the ideas I present here are not just mine but really do reflect existing movements/philosophies with significant numbers of supporters (suckless, free software, ...). ### Why did you make this wiki? What is its purpose? diff --git a/free_software.md b/free_software.md index e0782f4..8358ee3 100644 --- a/free_software.md +++ b/free_software.md @@ -74,3 +74,4 @@ After some years dealing with software freedom (in serious ways, making money do - [creative commons](creative_commons.md) - [copyfree](copyfree.md) - [freedom distance](freedom_distance.md) +- [kosher software](kosher_software.md) diff --git a/less_retarded_society.md b/less_retarded_society.md index d1fbb6e..06c2135 100644 --- a/less_retarded_society.md +++ b/less_retarded_society.md @@ -80,7 +80,7 @@ A paradise is achieved on [Earth](earth.md). - **How is this different from "communism", "socialism" and other movements/ideologies that brought so much suffering and eventually failed anyway?** We are very different especially by NOT advocating revolutions, violence and forceful application of our ideas, we simply educate, show what's wrong and what the solution is. Harm has only ever been done by forcing specific ideas, no matter whether rightist or leftist ones -- the key in preventing harm is to avoid the temptation of forcing ideas. We know that only a voluntary, non-violent change based on facts and rational thinking can succeed in long term. The mistake of every failed "utopian" ideology was that it was forced, oppressive and in the end served only a few as opposed to everyone, no matter what the initial idea was. These ideologies fought other ideologies, creates cults of personalities and propaganda to manipulate masses. We do not fight anyone, we simply show the truth and offer it to people and believe that this truth can't be unseen. Once enough people see the truth and know what the logical solution is, a change will happen naturally, peacefully and inevitably, without any force. - **How do you think it is realistic to achieve abundance of resources for all?** Nowadays it is easily possible to produce enough resources for everyone, i.e. food, electricity, clothing, buildings to live in etc. -- in fact this has been possible for many decades to centuries now, today all the technology for 99% automated production of most basic resources such as food and electricity is available and well tested, it is just kept in private hands for their sole profit. Nowadays our society is putting most of its effort to artificially made up "businesses" that keep the status quo, partly out of social inertia and partly by the (mostly decentralized and to a degree not even self admitted) conspiracy of the rich. Imagine people stop engaging in marketing, market speculation and investing, bureaucracy, public relations, law (copyrights, patents, property laws, taxes, ...), economics, military, meaningless technology (DRM, spyware, cryptocurrency, viruses and antiviruses, ...), artificial meaningless fashion, drug abuse business, organizing political parties, campaigns, unions, counter unions, cartels, strikes, and so on and so forth (this of course doesn't mean hobbies and art should disappear, just unnecessary industries). We will gain millions of people who can help achieve abundance, land that can be used to produce food and build houses to live in (as opposed to skyscrapers, unnecessary factories, parking lots etc.), and we will let go of the immense burden of bullshit business (millions of unnecessary workplaces having to be maintained, millions of people having to commute by car daily, communicate, organize, be watched by employers, ...). People will get healthier, more rested, cooperative and actually passionate about a common goal, as opposed to depressed (needing psychiatrists and antidepressants), lethargic and hostile to each other. Of course this can't happen over night, probably not even over a decade, but we can make the transition slowly, one step at a time and in the meanwhile use rules based e.g. on the following principle: that which is abundant is unlimited for everyone, that which is scarce is equally divided between all. The question is not whether it's possible, but whether we want to do it. - **Isn't your society unnatural?** In many way yes, it's unnatural just as clothes, medicine, computers or humans living over 70 years are unnatural. Civilization by definition means resisting the cruelness of nature, however our proposed society is to live as much as possible in harmony with the nature and is much more natural than our current society which e.g. pushes sleep deprivation, high consumption of antidepressants, eating disorders, addiction to social networks and so on. -- **Won't people get bored? What will motivate people? If they have everything why would they even get out of bed? Haven't you seen the mouse utopia experiments?** It is a mistake to think that competition and the necessity of making living is the only or even the main driving force of human behavior and creativity (on the contrary, it is usually what makes people commit suicides, i.e. lose the will to live). Human curiosity, playfulness, the joy of collaboration, boredom, sense of altruism, socialization, seeking of life meaning and recognition and many other forces drive our behavior. Ask yourself: why do people have hobbies when no one is forcing them to it? Why don't you bore yourself to death in your spare time? Why don't rich people who literally don't have to work bore themselves to death? Why doesn't your pet dog that's not forced to hunt for food bore himself to death? Maslow's hierarchy of needs tells us that once people fulfill basic needs such as that for obtaining food, they naturally start to pursue higher ones such as that for socializing or doing science or art. Unlike rats in small cages people show interests in seeking satisfaction of higher needs than just food and sex, even those that aren't scientist try to do things such as sports, photography, woodwork or gardening, just for the sake of it. It's not that there would be a lack challenges in our society, just that we wouldn't force arbitrary challenges on people. +- **Won't people get bored? What will motivate people? If they have everything why would they even get out of bed? Haven't you seen the mouse utopia experiments?** It is a mistake to think that competition and the necessity of making living is the only or even the main driving force of human behavior and creativity (on the contrary, it is usually what makes people commit suicides, i.e. lose the will to live). Human curiosity, playfulness, the joy of collaboration, boredom, sense of altruism, socialization, seeking of life meaning and recognition and many other forces drive our behavior. Ask yourself: why do people have hobbies when no one is forcing them to it? Why don't you bore yourself to death in your spare time? Why don't rich people who literally don't have to work bore themselves to death? Why doesn't your pet dog that's not forced to hunt for food bore himself to death? Instead of the rat utopia urban legend try the *cat utopia* project yourself: buy a cat, give it love, home, food, toys, leisure, freedom and healthcare for free, see if it gets depressed -- many people have performed this experiment over and over and it usually turns out the animal is the happiest being under the Sun. Maslow's hierarchy of needs tells us that once people fulfill basic needs such as that for obtaining food, they naturally start to pursue higher ones such as that for socializing or doing science or art. Unlike rats in small cages people show interests in seeking satisfaction of higher needs than just food and sex, even those that aren't scientist try to do things such as sports, photography, woodwork or gardening, just for the sake of it. It's not that there would be a lack challenges in our society, just that we wouldn't force arbitrary challenges on people. - **Why are you [defeatist](defeatism.md)? Don't you think it's just pointless trying to achieve something while believing you already failed?** Firstly being defeated doesn't mean disappearing completely, we know we will fail but we'll leave a seed of something that can't eventually be stopped from growing: LRS is extremely ahead of its time -- not by 50 years or 100 years, but more like several thousand years, maybe millions. Monkeys aim to prevail during their life time and by getting at the top of some kind of mountain or social pyramid, by hoarding X wealth, passing some law, creating some kind of country or whatever -- that's completely worthless animal behavior, we aim to achieve something truly significant and good instead which will take longer than our lifetime and will require behaving without self interest and [competition](competition.md). Just like abacus was the very first step towards inventing today's [computers](computer.md), LRS is in this sense the very first step to inventing a truly good society. It is first by completely letting go of all [bullshit](bullshit.md), every single one, including things like "winner mentality", which is why there are almost no supporters, everyone [fails](fail_ab.md) by keeping to the old ways at least in some points. We aim for truth and good, not for winning -- giving up the goal of winning makes us able to take the moral decision in situations when we have to choose between winning and behaving correctly. - **Without violence, how will you prevent capitalists from continuing capitalism?** As also stated e.g. in the [Trash Magic](trash_magic.md) manifesto, we can simply destroy the economy by refusing to participate in it -- a capitalist cannot sell a thing that's abundant, available everywhere for free, he can't sell services if those services are provided for free. Capitalism is depending on the fact that those who it abuses have nowhere to run away to, once enough of us start building such place and provide a bette place to live, suddenly more people will leave the capitalist system and even if some capitalists remain, they won't be able to do anything, economy won't work anymore. - **If you say it's possible, why wasn't it done before?** Firstly big and small scale communities working on [anarchist](anarchism.md), [communist](communism.md) and peaceful principles have existed for a long time in environments that allow it, e.g. those that have abundance of resources. Globally society couldn't reach this state because only until recently we lacked the technology to provide such an ideal environment globally or even on a scale of a whole country, i.e. only until recently we have been forced by the nature to compete for basic resources such as food and space to live. However with computers, factories, high level of automation and other technology and knowledge we posses, we now have, for the first time in history, the capability to establish an environment with abundance of resources for everyone on the planet. Nowadays only social inertia in the form of [capitalism](capitalism.md) is ARTIFICIALLY keeping scarcity and social competition in place -- getting rid of this obsolete system is now needed to allow establishment of our ideal society. Part of the answer to this question may also be that reaching such an advanced state of society requires long development, technological, cultural and intellectual, just as many other things (things like abolishment of death sentence or even accepting the existence of irrational numbers all required a long time of cultural development). diff --git a/nord_vpn.md b/nord_vpn.md index 81be693..8bf37d7 100644 --- a/nord_vpn.md +++ b/nord_vpn.md @@ -2,4 +2,4 @@ { For legal reasons let's consider this a **CUSTOMER REVIEW** :D Though I'm not that stupid to ever have tried this myself, I've heard things from people. ~drummyfish } -NordVPN is a [proprietary](proprietary.md) predatory [scam](scam.md) service that steals personal data while trying to [market](marketing.md) itself as a "[VPN](vpn.md) for [security](security.md) and [privacy](privacy.md)"; it is useless at best and highly harmful to society at worst and only a retard would fall for it. It's a business similar to that of e.g. [antiviruses](antivirus.md), it builds on [fear culture](fear_culture.md), privacy hysteria and lack of technological education, abusing people who have little to no knowledge of technology, stealing not just their money, but also their data, computing power etc. NordVPN furthermore utilizes all the unethical [capitalist](capitalism.md) practice to make society as bad as possible, notably aggressive advertising (remember, good things don't need advertising, and this shit relies basically solely on advertising), [brainwashing](brainwashing.md) and promotion of [fear culture](fear_culture.md) -- [YouTube](youtube.md) is infamous for having NordVPN propaganda inserted into every single video. \ No newline at end of file +NordVPN is a [proprietary](proprietary.md) [capitalist](capitalism.md) predatory [scam](scam.md) service that steals personal data while trying to [market](marketing.md) itself as a "[VPN](vpn.md) for [security](security.md) and [privacy](privacy.md)"; it is useless at best and highly [harmful](harmful.md) to society at worst and only a [retard](retard.md) would fall for it. It's a business similar to that of e.g. [antiviruses](antivirus.md), it builds on [fear culture](fear_culture.md), privacy hysteria and lack of technological education, abusing people who have little to no knowledge of technology, stealing not just their money, but also their data, computing power etc. NordVPN furthermore utilizes all the unethical [capitalist](capitalism.md) practice to make society as bad as possible, notably aggressive advertising (remember, good things don't need advertising, and this shit relies basically solely on advertising), [brainwashing](brainwashing.md) and promotion of [fear culture](fear_culture.md) -- [YouTube](youtube.md) is infamous for having NordVPN propaganda inserted into every single video. If you're a jewtuber promoting this scam you're worse than [Voldemort](hitler.md). \ No newline at end of file diff --git a/people.md b/people.md index 7abc560..f723c8d 100644 --- a/people.md +++ b/people.md @@ -29,7 +29,7 @@ Here is a list of people notable in technology or in other ways related to [LRS] - **[Fabrice Bellard](fabrice_bellard.md)**: legendary programmer, made many famous programs such as [ffmpeg](ffmpeg.md), [tcc](tcc.md), [TinyGL](tinygl.md) etc. - **[Geoffrey Knauth](geoffrey_knauth.md)**: very [shitty](shit.md) president of [Free Software Foundation](fsf.md) since 2020 who embraces [proprietary](proprietary.md) software lol - **[Grigori Perelman](perelman.md)** based Russian mathematician who solved one of the biggest problems in math ([Poincare conjecture](poincare_conjecture.md)), then refused Fields medal and million dollar prize, refuses to talk to anyone and make [hero](hero_culture.md) of himself, just sent a huge fuck you to the system -- **[Jara Cimrman](jara_cimrman.md)**: a fictional [Czech](czechia.md) universal genius that basically secretly invented everything but was forgotten by [history](history.md), it's the whole country's inside joke +- **[Jara Cimrman](jara_cimrman.md)**: a fictional [Czech](czechia.md) universal genius that basically secretly invented everything but was forgotten by [history](history.md), it's the whole country's inside [joke](jokes.md) - **[Jason Scott](jason_scott.md)**: quite famous archivist and filmmaker (maintains e.g. textfiles.com), focused on old hacker/boomer tech like [BBSes](bbs.md) - **[Jesus](jesus.md)**: probably the most famous guy in history, had a nice teaching of [nonviolence](nonviolence.md) and [love](love.md) - **[Jimmy Wales](jimmy_wales.md)**: co-founder of [Wikipedia](wikipedia.md) diff --git a/random_page.md b/random_page.md index ba1bdff..e6955b8 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1779 +2,1779 @@ Please kindly click random link. -[*](e.md) -[*](antialiasing.md) -[*](dick_reveal.md) -[*](billboard.md) -[*](goodbye_world.md) -[*](tranny_software.md) -[*](fixed_point.md) -[*](cloud.md) -[*](free_speech.md) -[*](raycastlib.md) -[*](bilinear.md) -[*](regex.md) -[*](pseudoleft.md) -[*](money.md) -[*](apple.md) -[*](cracker.md) +[*](boat.md) +[*](ted_kaczynski.md) +[*](lrs_dictionary.md) [*](rationalwiki.md) -[*](acronym.md) -[*](tranny_software.md) -[*](slowly_boiling_the_frog.md) -[*](backgammon.md) -[*](jedi_engine.md) -[*](information.md) -[*](drummyfish.md) -[*](iq.md) -[*](hero.md) -[*](p_vs_np.md) -[*](copyfree.md) -[*](minimalism.md) -[*](name_is_important.md) -[*](english.md) -[*](3d_model.md) -[*](double_buffering.md) -[*](logic_gate.md) -[*](infinity.md) -[*](fizzbuzz.md) -[*](everyone_does_it.md) -[*](cloudflare.md) -[*](tinyphysicsengine.md) -[*](rule110.md) -[*](fourier_transform.md) -[*](rock.md) -[*](esolang.md) -[*](cos.md) -[*](network.md) -[*](bit_hack.md) -[*](goodbye_world.md) -[*](unix.md) -[*](fear_culture.md) -[*](cache.md) -[*](name_is_important.md) -[*](phd.md) -[*](youtube.md) -[*](luke_smith.md) -[*](autoupdate.md) -[*](cpp.md) -[*](gaywashing.md) -[*](less_retarded_software.md) -[*](fizzbuzz.md) -[*](jesus.md) -[*](censorship.md) -[*](world_broadcast.md) -[*](vim.md) -[*](loc.md) -[*](git.md) -[*](pedophilia.md) -[*](mipmap.md) -[*](justice.md) -[*](holy_war.md) -[*](technology.md) -[*](ted_kaczynski.md) -[*](luke_smith.md) -[*](dinosaur.md) -[*](game.md) -[*](political_correctness.md) -[*](kiss.md) -[*](git.md) -[*](copyleft.md) -[*](kek.md) -[*](pi.md) -[*](xonotic.md) -[*](zen.md) -[*](niger.md) -[*](google.md) -[*](dinosaur.md) -[*](raycasting.md) -[*](autoupdate.md) -[*](antivirus_paradox.md) -[*](cloud.md) -[*](needed.md) -[*](boat.md) -[*](left.md) -[*](faq.md) -[*](data_hoarding.md) -[*](patent.md) -[*](minesweeper.md) -[*](body_shaming.md) -[*](hash.md) -[*](determinism.md) -[*](mental_outlaw.md) -[*](femoid.md) -[*](ram.md) -[*](racism.md) -[*](diogenes.md) -[*](number.md) -[*](fail_ab.md) -[*](ted_kaczynski.md) -[*](assertiveness.md) -[*](open_source.md) -[*](4chan.md) -[*](books.md) -[*](racetrack.md) -[*](pseudorandomness.md) -[*](game.md) -[*](elo.md) -[*](sudoku.md) -[*](approximation.md) -[*](hw.md) -[*](entropy.md) -[*](transistor.md) -[*](golang.md) -[*](elo.md) -[*](os.md) -[*](raylib.md) -[*](rights_culture.md) -[*](distrohopping.md) -[*](hacking.md) -[*](programming.md) -[*](bbs.md) -[*](education.md) -[*](duskos.md) -[*](ashley_jones.md) -[*](gui.md) -[*](zuckerberg.md) -[*](pd.md) -[*](democracy.md) -[*](update_culture.md) -[*](resnicks_termite.md) -[*](bootstrap.md) -[*](future_proof.md) -[*](atan.md) -[*](systemd.md) -[*](girl.md) -[*](aaron_swartz.md) -[*](audiophilia.md) -[*](geek.md) -[*](ronja.md) -[*](good_enough.md) -[*](gigachad.md) -[*](backpropagation.md) -[*](crow_funding.md) -[*](wow.md) -[*](portability.md) -[*](sigbovik.md) -[*](lrs.md) -[*](forth.md) -[*](pi.md) -[*](regex.md) -[*](math.md) -[*](ioccc.md) -[*](sw_rendering.md) -[*](formal_language.md) -[*](elon_musk.md) -[*](cat_v.md) -[*](fun.md) -[*](semiconductor.md) -[*](democracy.md) -[*](copyright.md) -[*](lrs_wiki.md) -[*](project.md) -[*](logic_gate.md) -[*](p_vs_np.md) -[*](lmao.md) -[*](hyperoperation.md) -[*](assertiveness.md) -[*](tas.md) -[*](doom.md) -[*](kwangmyong.md) -[*](license.md) -[*](julia_set.md) -[*](wikipedia.md) -[*](football.md) -[*](100r.md) -[*](bytecode.md) -[*](patent.md) -[*](rapeware.md) -[*](hero_culture.md) -[*](tattoo.md) -[*](patent.md) -[*](robot.md) -[*](gender_studies.md) -[*](markov_chain.md) -[*](programming_tips.md) -[*](gay.md) -[*](coding.md) -[*](pride.md) -[*](logic.md) -[*](wiki_stats.md) -[*](python.md) -[*](microtheft.md) -[*](memory_management.md) -[*](attribution.md) -[*](collision_detection.md) -[*](global_discussion.md) -[*](unary.md) -[*](bytebeat.md) -[*](real_number.md) -[*](graphics.md) -[*](lil.md) -[*](rsa.md) -[*](permacomputing.md) -[*](music.md) -[*](stereotype.md) -[*](selflessness.md) -[*](x86.md) -[*](comun.md) -[*](toxic.md) -[*](tattoo.md) -[*](beauty.md) -[*](disease.md) -[*](capitalist_software.md) -[*](countercomplex.md) -[*](interesting.md) -[*](devuan.md) -[*](bullshit.md) -[*](rights_culture.md) -[*](wiki_pages.md) -[*](infinity.md) -[*](competition.md) -[*](niger.md) -[*](maintenance.md) -[*](tensor_product.md) -[*](selflessness.md) -[*](reactionary_software.md) -[*](hash.md) -[*](digital_signature.md) -[*](c.md) -[*](jesus.md) -[*](good_enough.md) -[*](tor.md) -[*](bazaar.md) -[*](hero.md) -[*](future_proof.md) -[*](consumerism.md) -[*](shortcut_thinking.md) -[*](smol_internet.md) -[*](demoscene.md) -[*](bs.md) -[*](approximation.md) -[*](malware.md) -[*](resnicks_termite.md) -[*](hacker_culture.md) -[*](soyence.md) -[*](murderer.md) -[*](devuan.md) -[*](esolang.md) -[*](twos_complement.md) -[*](unretard.md) -[*](paradigm.md) -[*](people.md) -[*](football.md) -[*](easier_done_than_said.md) -[*](permacomputing_wiki.md) -[*](optimization.md) -[*](ioccc.md) -[*](computer.md) -[*](cpp.md) -[*](feminism.md) -[*](hero_culture.md) -[*](systemd.md) -[*](thrembo.md) -[*](freedom_distance.md) -[*](ubi.md) -[*](permacomputing.md) -[*](regex.md) -[*](usenet.md) -[*](blender.md) -[*](maintenance.md) -[*](mechanical.md) -[*](shortcut_thinking.md) -[*](john_carmack.md) -[*](right.md) -[*](wiki_stats.md) -[*](abstraction.md) -[*](hacker_culture.md) -[*](lgbt.md) -[*](quaternion.md) -[*](pride.md) -[*](demo.md) -[*](interpolation.md) -[*](binary.md) -[*](art.md) -[*](low_poly.md) -[*](randomness.md) -[*](wiki_style.md) -[*](build_engine.md) -[*](gigachad.md) -[*](entrepreneur.md) -[*](chinese.md) -[*](mental_outlaw.md) -[*](pseudoleft.md) -[*](reddit.md) -[*](suckless.md) -[*](dynamic_programming.md) -[*](raylib.md) -[*](binary.md) -[*](shit.md) -[*](coding.md) -[*](chinese.md) -[*](infinity.md) -[*](css.md) -[*](anarch.md) -[*](raycastlib.md) -[*](project.md) -[*](right.md) -[*](f2p.md) -[*](deferred_shading.md) -[*](vim.md) -[*](proprietary.md) -[*](go.md) -[*](competition.md) -[*](sjw.md) -[*](less_retarded_society.md) -[*](optimization.md) -[*](complexity.md) -[*](determinism.md) -[*](global_discussion.md) -[*](license.md) -[*](raycastlib.md) -[*](finished.md) -[*](bloat.md) -[*](recursion.md) -[*](public_domain_computer.md) -[*](pseudo3d.md) -[*](morality.md) -[*](political_correctness.md) -[*](axiom_of_choice.md) -[*](internet.md) -[*](hardware.md) -[*](linear_algebra.md) -[*](lrs_wiki.md) -[*](no_knowledge_proof.md) -[*](twos_complement.md) -[*](autoupdate.md) -[*](hack.md) -[*](myths.md) -[*](hyperoperation.md) -[*](encyclopedia.md) -[*](whale.md) -[*](randomness.md) -[*](recursion.md) -[*](emoticon.md) -[*](usenet.md) -[*](sw.md) -[*](bit.md) -[*](library.md) -[*](wizard.md) -[*](windows.md) -[*](work.md) -[*](ancap.md) -[*](fourier_transform.md) -[*](see_through_clothes.md) -[*](newspeak.md) -[*](ted_kaczynski.md) -[*](smol_internet.md) -[*](xonotic.md) -[*](network.md) -[*](name_is_important.md) -[*](bill_gates.md) -[*](build_engine.md) -[*](autostereogram.md) -[*](google.md) -[*](free_culture.md) -[*](wizard.md) -[*](tom_scott.md) -[*](palette.md) -[*](data_hoarding.md) -[*](world_broadcast.md) -[*](gay.md) -[*](4chan.md) -[*](marble_race.md) -[*](graphics.md) -[*](proprietary_software.md) -[*](plusnigger.md) -[*](os.md) -[*](beauty.md) -[*](progress.md) -[*](motivation.md) -[*](usa.md) -[*](docker.md) -[*](crime_against_economy.md) -[*](resnicks_termite.md) -[*](microsoft.md) -[*](flatland.md) -[*](combinatorics.md) -[*](gay.md) -[*](nigger.md) -[*](copyleft.md) -[*](interaction_net.md) -[*](interpolation.md) -[*](githopping.md) -[*](portability.md) -[*](hacking.md) -[*](complexity.md) -[*](proprietary.md) -[*](zero.md) -[*](gaywashing.md) -[*](finished.md) -[*](woman.md) -[*](javascript.md) -[*](myths.md) -[*](troll.md) -[*](marketing.md) -[*](duskos.md) -[*](duke3d.md) -[*](body_shaming.md) -[*](tas.md) -[*](deferred_shading.md) -[*](qubit.md) -[*](ascii.md) -[*](free_will.md) -[*](no_knowledge_proof.md) -[*](watchdog.md) -[*](cache.md) -[*](egoism.md) -[*](sdf.md) -[*](fascism.md) -[*](lrs.md) -[*](troll.md) -[*](githopping.md) -[*](plan9.md) -[*](100r.md) -[*](computer.md) -[*](unicode.md) -[*](wikidata.md) -[*](quine.md) -[*](floss.md) -[*](future_proof.md) -[*](xonotic.md) -[*](steve_jobs.md) -[*](hacking.md) -[*](computer.md) -[*](cat_v.md) -[*](boot.md) -[*](niggercoin.md) -[*](arduboy.md) -[*](c_sharp.md) -[*](fourier_transform.md) -[*](graveyard.md) -[*](smart.md) -[*](pseudoleft.md) -[*](microsoft.md) -[*](nd.md) -[*](atheism.md) -[*](earth.md) -[*](tinyphysicsengine.md) -[*](used.md) -[*](speech_synthesis.md) -[*](often_confused.md) -[*](arch.md) -[*](color.md) -[*](venus_project.md) -[*](aaron_swartz.md) -[*](bloat_monopoly.md) -[*](fight.md) -[*](libre.md) -[*](acronym.md) -[*](just_werks.md) -[*](black.md) -[*](technology.md) -[*](fascist.md) -[*](wikiwikiweb.md) -[*](faq.md) -[*](gnu.md) -[*](dependency.md) -[*](brain_software.md) -[*](julia_set.md) -[*](optimization.md) -[*](4chan.md) -[*](xd.md) -[*](quaternion.md) -[*](noise.md) -[*](game_of_life.md) -[*](operating_system.md) -[*](altruism.md) -[*](autostereogram.md) -[*](ui.md) -[*](fediverse.md) -[*](raycasting.md) -[*](ssao.md) -[*](palette.md) -[*](steve_jobs.md) -[*](earth.md) -[*](cloudflare.md) -[*](jedi_engine.md) -[*](linux.md) -[*](no_knowledge_proof.md) -[*](web.md) -[*](chaos.md) -[*](racetrack.md) -[*](geek.md) -[*](kwangmyong.md) -[*](magic.md) -[*](dramatica.md) -[*](john_carmack.md) -[*](primitive_3d.md) -[*](needed.md) -[*](kids_these_days.md) -[*](less_retarded_software.md) -[*](temple_os.md) -[*](nord_vpn.md) -[*](anarchism.md) -[*](duke3d.md) -[*](abstraction.md) -[*](free_speech.md) -[*](netstalking.md) -[*](game_of_life.md) -[*](human_language.md) -[*](lisp.md) -[*](rule110.md) -[*](analog.md) -[*](nationalism.md) -[*](cheating.md) -[*](foss.md) -[*](robot.md) -[*](macrofucker.md) -[*](pseudominimalism.md) -[*](smallchesslib.md) -[*](transistor.md) -[*](oop.md) -[*](deep_blue.md) -[*](markov_chain.md) -[*](shogi.md) -[*](information.md) -[*](network.md) -[*](culture.md) -[*](kiss.md) -[*](21st_century.md) -[*](productivity_cult.md) -[*](wiki_rights.md) -[*](sanism.md) -[*](jargon_file.md) -[*](framework.md) -[*](firmware.md) -[*](aliasing.md) -[*](elo.md) -[*](xxiivv.md) -[*](algorithm.md) -[*](programming_tips.md) -[*](normalization.md) -[*](programming.md) -[*](less_retarded_software.md) -[*](hexadecimal.md) -[*](old.md) -[*](competition.md) -[*](nationalism.md) -[*](teletext.md) -[*](permacomputing_wiki.md) -[*](law.md) -[*](shortcut_thinking.md) -[*](esolang.md) -[*](modern_software.md) -[*](mouse.md) -[*](sin.md) -[*](docker.md) -[*](rapeware.md) -[*](fantasy_console.md) -[*](paradigm.md) -[*](suicide.md) -[*](pi.md) -[*](fuck.md) -[*](teletext.md) -[*](cpu.md) -[*](entropy.md) -[*](tas.md) -[*](transistor.md) -[*](evil.md) -[*](adam_smith.md) -[*](wiki_authors.md) -[*](venus_project.md) -[*](phd.md) -[*](double_buffering.md) -[*](duskos.md) -[*](consumerism.md) -[*](software.md) -[*](hack.md) -[*](unix_philosophy.md) -[*](markov_chain.md) -[*](oop.md) -[*](lgbt.md) -[*](privacy.md) -[*](libertarianism.md) -[*](version_numbering.md) -[*](open_source.md) -[*](often_misunderstood.md) -[*](rock.md) -[*](fqa.md) -[*](rsa.md) -[*](wizard.md) -[*](steganography.md) -[*](openarena.md) -[*](plusnigger.md) -[*](microtheft.md) -[*](vim.md) -[*](floss.md) -[*](sdf.md) -[*](wikipedia.md) -[*](toxic.md) -[*](fascism.md) -[*](political_correctness.md) -[*](hacker_culture.md) -[*](race.md) -[*](dramatica.md) -[*](cloudflare.md) -[*](slowly_boiling_the_frog.md) -[*](raylib.md) -[*](easy_to_learn_hard_to_master.md) -[*](openai.md) -[*](motivation.md) -[*](jokes.md) -[*](rgb332.md) -[*](billboard.md) -[*](fun.md) -[*](freedom_distance.md) -[*](wiki_authors.md) -[*](trump.md) -[*](minigame.md) -[*](collision_detection.md) -[*](goodbye_world.md) -[*](c_pitfalls.md) -[*](venus_project.md) -[*](people.md) -[*](history.md) -[*](magic.md) -[*](girl.md) -[*](avpd.md) -[*](island.md) -[*](atheism.md) -[*](dungeons_and_dragons.md) -[*](communism.md) -[*](explicit.md) -[*](chinese.md) -[*](atheism.md) -[*](hw.md) -[*](internet.md) -[*](universe.md) -[*](global_discussion.md) -[*](pokitto.md) -[*](boat.md) -[*](mental_outlaw.md) -[*](geek.md) -[*](moderation.md) -[*](life.md) -[*](free_universe.md) -[*](duke3d.md) -[*](nokia.md) -[*](science.md) -[*](42.md) -[*](kids_these_days.md) -[*](programming_style.md) -[*](debugging.md) -[*](neural_network.md) -[*](free.md) -[*](cracking.md) -[*](fight_culture.md) -[*](unicode.md) -[*](facebook.md) -[*](one.md) -[*](3d_model.md) -[*](freedom.md) -[*](egoism.md) -[*](modern.md) -[*](procgen.md) -[*](julia_set.md) -[*](trash_magic.md) -[*](wiki_rights.md) -[*](faq.md) -[*](dependency.md) -[*](update_culture.md) -[*](gopher.md) -[*](encryption.md) -[*](logic.md) -[*](anarch.md) -[*](soyence.md) -[*](marketing.md) -[*](ascii_art.md) -[*](npc.md) -[*](fascist.md) -[*](free_body.md) -[*](axiom_of_choice.md) -[*](moderation.md) -[*](consumerism.md) -[*](graveyard.md) -[*](yes_they_can.md) -[*](liberalism.md) -[*](io.md) -[*](cyber.md) -[*](bytebeat.md) -[*](arch.md) -[*](fixed_point.md) -[*](temple_os.md) -[*](mob_software.md) -[*](wiki_style.md) -[*](kiwifarms.md) -[*](smallchesslib.md) -[*](os.md) -[*](css.md) -[*](programming_language.md) -[*](capitalist_software.md) -[*](sdf.md) -[*](capitalist_singularity.md) -[*](aaron_swartz.md) -[*](rgb332.md) -[*](mud.md) -[*](sorting.md) -[*](cos.md) -[*](stereotype.md) -[*](money.md) [*](idiot_fallacy.md) -[*](cracking.md) -[*](sanism.md) -[*](rights_culture.md) -[*](football.md) -[*](implicit.md) -[*](programming_style.md) -[*](capitalism.md) -[*](work.md) -[*](selflessness.md) -[*](tangram.md) -[*](settled.md) -[*](hack.md) -[*](loc.md) -[*](rms.md) -[*](open_console.md) -[*](audiophilia.md) -[*](less_retarded_society.md) -[*](monad.md) -[*](x86.md) -[*](loquendo.md) -[*](boot.md) -[*](cancer.md) -[*](tom_scott.md) -[*](body_shaming.md) -[*](mud.md) -[*](c_tutorial.md) -[*](bullshit.md) -[*](one.md) -[*](golang.md) -[*](www.md) -[*](plusnigger.md) -[*](foss.md) -[*](avpd.md) -[*](work.md) -[*](trash_magic.md) -[*](how_to.md) -[*](cancel_culture.md) -[*](wow.md) -[*](charity_sex.md) -[*](cloud.md) -[*](flatland.md) -[*](jargon_file.md) -[*](security.md) -[*](pseudo3d.md) -[*](diogenes.md) -[*](hero_culture.md) -[*](sjw.md) -[*](interplanetary_internet.md) -[*](game.md) -[*](fractal.md) -[*](turing_machine.md) -[*](compression.md) -[*](algorithm.md) -[*](dodleston.md) -[*](wikidata.md) -[*](facebook.md) -[*](fork.md) -[*](coding.md) -[*](teletext.md) -[*](trom.md) -[*](normalization.md) -[*](idiot_fallacy.md) -[*](tor.md) -[*](toxic.md) -[*](pride.md) -[*](color.md) -[*](combinatorics.md) -[*](sin.md) -[*](living.md) -[*](openarena.md) -[*](communism.md) -[*](hard_to_learn_easy_to_master.md) -[*](go.md) -[*](iq.md) -[*](langtons_ant.md) -[*](chasm_the_rift.md) -[*](diogenes.md) -[*](wiki_style.md) -[*](f2p.md) -[*](kek.md) -[*](trom.md) -[*](sorting.md) -[*](line.md) -[*](progress.md) -[*](trusting_trust.md) -[*](freedom_distance.md) -[*](xxiivv.md) -[*](collision_detection.md) -[*](math.md) -[*](jokes.md) -[*](version_numbering.md) -[*](chess.md) -[*](love.md) -[*](living.md) -[*](cc0.md) -[*](data_hoarding.md) -[*](motivation.md) -[*](free_software.md) -[*](kids_these_days.md) -[*](function.md) -[*](float.md) -[*](social_inertia.md) -[*](hero.md) -[*](crow_funding.md) -[*](music.md) -[*](programming_style.md) -[*](trolling.md) -[*](antialiasing.md) -[*](kwangmyong.md) -[*](less_retarded_hardware.md) -[*](reddit.md) -[*](free.md) -[*](npc.md) -[*](xd.md) -[*](libre.md) -[*](nc.md) -[*](e.md) -[*](algorithm.md) +[*](gay.md) [*](comment.md) -[*](monad.md) -[*](free.md) -[*](viznut.md) -[*](compiler_bomb.md) -[*](bit_hack.md) -[*](comun.md) -[*](trolling.md) -[*](pseudo3d.md) -[*](quine.md) -[*](data_structure.md) -[*](macrofucker.md) -[*](www.md) -[*](human_language.md) -[*](open_console.md) -[*](assembly.md) -[*](windows.md) -[*](antivirus_paradox.md) -[*](minesweeper.md) -[*](wikiwikiweb.md) -[*](microtheft.md) -[*](paradigm.md) -[*](free_body.md) -[*](pseudominimalism.md) -[*](io.md) -[*](unary.md) -[*](uxn.md) -[*](double_buffering.md) -[*](deferred_shading.md) -[*](compsci.md) -[*](money.md) -[*](race.md) -[*](interesting.md) -[*](terry_davis.md) -[*](physics_engine.md) -[*](ram.md) -[*](stereotype.md) -[*](git.md) -[*](digital.md) -[*](triangle.md) -[*](newspeak.md) -[*](minimalism.md) -[*](wikipedia.md) -[*](dodleston.md) -[*](chasm_the_rift.md) -[*](microsoft.md) -[*](c_tutorial.md) -[*](javascript.md) -[*](neural_network.md) -[*](throwaway_script.md) -[*](programming_tips.md) -[*](ronja.md) -[*](library.md) -[*](phd.md) -[*](microtransaction.md) -[*](kiss.md) -[*](explicit.md) -[*](plan9.md) -[*](trusting_trust.md) -[*](slowly_boiling_the_frog.md) -[*](digital_signature.md) -[*](john_carmack.md) -[*](creative_commons.md) -[*](nc.md) -[*](downto.md) -[*](java.md) -[*](mob_software.md) -[*](ethics.md) -[*](jargon_file.md) -[*](pseudorandomness.md) -[*](lgbt.md) -[*](sqrt.md) -[*](axiom_of_choice.md) -[*](analytic_geometry.md) -[*](technology.md) -[*](programming_language.md) -[*](saf.md) -[*](maintenance.md) -[*](ubi.md) -[*](ai.md) -[*](island.md) -[*](langtons_ant.md) -[*](wikidata.md) -[*](coc.md) -[*](tensor_product.md) -[*](dodleston.md) -[*](game_engine.md) -[*](cancel_culture.md) -[*](p_vs_np.md) -[*](capitalism.md) -[*](bullshit.md) -[*](formal_language.md) -[*](bytecode.md) -[*](main.md) -[*](lil.md) -[*](splinternet.md) -[*](semiconductor.md) -[*](prime.md) -[*](app.md) -[*](nord_vpn.md) -[*](cyber.md) -[*](culture.md) -[*](free_culture.md) -[*](science.md) -[*](fight.md) -[*](how_to.md) -[*](free_will.md) -[*](proprietary.md) -[*](google.md) -[*](tpe.md) -[*](cc.md) -[*](distance.md) -[*](often_misunderstood.md) -[*](morality.md) -[*](kek.md) -[*](magic.md) -[*](lisp.md) -[*](niger.md) -[*](java.md) -[*](dungeons_and_dragons.md) -[*](c_sharp.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](one.md) -[*](byte.md) -[*](physics.md) -[*](binary.md) -[*](rgb565.md) -[*](interplanetary_internet.md) -[*](brainfuck.md) -[*](soydev.md) -[*](cheating.md) -[*](c_pitfalls.md) -[*](floss.md) -[*](web.md) -[*](jesus.md) -[*](mainstream.md) -[*](fuck.md) -[*](disease.md) -[*](open_source.md) -[*](nc.md) -[*](rationalwiki.md) -[*](social_inertia.md) -[*](intellectual_property.md) -[*](capitalist_singularity.md) -[*](trash_magic.md) -[*](settled.md) -[*](wiki_pages.md) -[*](greenwashing.md) -[*](c_tutorial.md) -[*](mouse.md) -[*](cc0.md) -[*](hw.md) -[*](lmao.md) -[*](fixed_point.md) -[*](cpu.md) -[*](military.md) -[*](interaction_net.md) -[*](number.md) -[*](3d_rendering.md) -[*](fsf.md) -[*](love.md) -[*](mouse.md) -[*](compression.md) -[*](justice.md) -[*](egoism.md) -[*](usa.md) -[*](pd.md) -[*](marxism.md) -[*](shader.md) -[*](qubit.md) -[*](universe.md) -[*](wiki_stats.md) -[*](emoticon.md) -[*](e.md) -[*](free_universe.md) -[*](nanogenmo.md) -[*](mandelbrot_set.md) -[*](nanogenmo.md) -[*](tangram.md) -[*](githopping.md) -[*](collapse.md) -[*](woman.md) -[*](pokitto.md) -[*](tensor_product.md) -[*](zen.md) -[*](forth.md) -[*](dick_reveal.md) -[*](paywall.md) -[*](linear_algebra.md) -[*](free_universe.md) -[*](coc.md) -[*](avpd.md) -[*](education.md) +[*](deep_blue.md) [*](tor.md) -[*](compiler_bomb.md) -[*](public_domain_computer.md) -[*](suckless.md) -[*](anal_bead.md) -[*](suicide.md) -[*](programming.md) -[*](faggot.md) -[*](bootstrap.md) -[*](21st_century.md) -[*](js.md) -[*](anpac.md) -[*](c_sharp.md) -[*](saf.md) -[*](determinism.md) -[*](downto.md) -[*](update_culture.md) -[*](future.md) -[*](dynamic_programming.md) -[*](sudoku.md) -[*](gemini.md) -[*](mandelbrot_set.md) -[*](music.md) -[*](io.md) -[*](easy_to_learn_hard_to_master.md) -[*](law.md) -[*](whale.md) -[*](distrohopping.md) -[*](ethics.md) -[*](ascii_art.md) -[*](soyence.md) -[*](brainfuck.md) -[*](often_confused.md) -[*](left_right.md) -[*](used.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](corporation.md) -[*](rock.md) -[*](npc.md) -[*](debugging.md) -[*](physics.md) -[*](bazaar.md) -[*](less_retarded_hardware.md) -[*](css.md) -[*](physics_engine.md) -[*](demo.md) -[*](malware.md) -[*](systemd.md) -[*](netstalking.md) -[*](game_of_life.md) -[*](graveyard.md) -[*](entropy.md) -[*](jedi_engine.md) -[*](proof.md) -[*](monad.md) -[*](shader.md) -[*](zero.md) -[*](atan.md) -[*](primitive_3d.md) -[*](tattoo.md) -[*](usenet.md) -[*](ascii.md) -[*](viznut.md) -[*](bill_gates.md) -[*](disease.md) -[*](piracy.md) -[*](ui.md) -[*](creative_commons.md) -[*](tpe.md) -[*](anarch.md) -[*](exercises.md) -[*](nd.md) -[*](myths.md) -[*](paywall.md) -[*](history.md) -[*](less_retarded_society.md) -[*](analytic_geometry.md) -[*](life.md) -[*](rms.md) -[*](racetrack.md) -[*](interesting.md) -[*](fail_ab.md) -[*](blender.md) -[*](recursion.md) -[*](proof.md) -[*](gopher.md) -[*](hardware.md) -[*](langtons_ant.md) -[*](sudoku.md) -[*](freedom.md) -[*](permacomputing_wiki.md) -[*](dog.md) -[*](youtube.md) -[*](ioccc.md) -[*](libre.md) -[*](ethics.md) -[*](finished.md) -[*](black.md) -[*](complexity.md) -[*](encyclopedia.md) -[*](cyber.md) -[*](fsf.md) -[*](c_pitfalls.md) -[*](democracy.md) -[*](easier_done_than_said.md) -[*](zuckerberg.md) -[*](data_structure.md) -[*](adam_smith.md) -[*](sqrt.md) -[*](dick_reveal.md) -[*](neural_network.md) -[*](game_engine.md) -[*](tangram.md) -[*](fork.md) -[*](altruism.md) -[*](bitreich.md) -[*](greenwashing.md) -[*](memory_management.md) -[*](paywall.md) -[*](piracy.md) -[*](fqa.md) -[*](compsci.md) -[*](morality.md) -[*](throwaway_script.md) -[*](gaywashing.md) -[*](needed.md) -[*](elon_musk.md) -[*](smart.md) -[*](small3dlib.md) -[*](bloat.md) -[*](smart.md) -[*](shogi.md) -[*](wiki_authors.md) -[*](mainstream.md) -[*](marxism.md) -[*](gopher.md) -[*](noise.md) -[*](liberalism.md) -[*](everyone_does_it.md) -[*](cpu.md) -[*](js.md) -[*](black.md) -[*](tom_scott.md) -[*](used.md) -[*](docker.md) -[*](crypto.md) -[*](quantum_gate.md) -[*](gender_studies.md) -[*](3d_model.md) -[*](marxism.md) -[*](21st_century.md) -[*](moderation.md) -[*](turing_machine.md) -[*](rgb332.md) -[*](line.md) -[*](holy_war.md) -[*](lrs_dictionary.md) -[*](bloat_monopoly.md) -[*](anarchism.md) -[*](free_hardware.md) -[*](deep_blue.md) -[*](implicit.md) -[*](unix_philosophy.md) -[*](minigame.md) -[*](distance.md) -[*](attribution.md) -[*](demo.md) -[*](anal_bead.md) -[*](human_language.md) [*](permacomputing.md) -[*](prime.md) -[*](collapse.md) -[*](3d_modeling.md) -[*](cat_v.md) -[*](function.md) -[*](hard_to_learn_easy_to_master.md) -[*](czechia.md) -[*](culture.md) -[*](low_poly.md) -[*](woman.md) -[*](main.md) -[*](twos_complement.md) -[*](free_hardware.md) -[*](color.md) -[*](zero.md) -[*](sorting.md) [*](niggercoin.md) -[*](boot.md) -[*](explicit.md) -[*](cancer.md) -[*](emoticon.md) -[*](backgammon.md) -[*](logic_gate.md) -[*](nokia.md) -[*](cc0.md) -[*](doom.md) -[*](pseudominimalism.md) -[*](altruism.md) -[*](world_broadcast.md) -[*](good_enough.md) -[*](logic_circuit.md) -[*](nigger.md) -[*](adam_smith.md) -[*](racism.md) -[*](ram.md) -[*](lambda_calculus.md) -[*](pedophilia.md) -[*](feminism.md) -[*](settled.md) -[*](charity_sex.md) -[*](hard_to_learn_easy_to_master.md) -[*](dramatica.md) -[*](often_misunderstood.md) -[*](fediverse.md) -[*](minesweeper.md) -[*](bitreich.md) -[*](brain_software.md) -[*](web.md) -[*](fascist.md) -[*](collision.md) -[*](sw_rendering.md) -[*](crime_against_economy.md) -[*](abstraction.md) -[*](f2p.md) -[*](operating_system.md) -[*](free_body.md) -[*](robot.md) -[*](copyfree.md) -[*](ai.md) -[*](crypto.md) -[*](copyright.md) -[*](compiler_bomb.md) -[*](line.md) -[*](brain_software.md) -[*](triangle.md) -[*](charity_sex.md) -[*](saf.md) -[*](fractal.md) -[*](rule110.md) -[*](frameless.md) -[*](modern_software.md) -[*](steganography.md) -[*](x86.md) -[*](entrepreneur.md) -[*](liberalism.md) -[*](graphics.md) -[*](fizzbuzz.md) -[*](security.md) -[*](cos.md) -[*](crime_against_economy.md) -[*](antivirus_paradox.md) -[*](earth.md) -[*](sanism.md) -[*](ssao.md) -[*](3d_rendering.md) -[*](youtube.md) -[*](dependency.md) -[*](golang.md) -[*](linux.md) -[*](left.md) -[*](pd.md) -[*](semiconductor.md) -[*](art.md) -[*](bootstrap.md) -[*](deep_blue.md) -[*](murderer.md) -[*](macrofucker.md) -[*](zen.md) -[*](collapse.md) -[*](chess.md) -[*](mob_software.md) -[*](audiophilia.md) -[*](boat.md) -[*](people.md) -[*](yes_they_can.md) -[*](wiki_post_mortem.md) -[*](facebook.md) -[*](splinternet.md) -[*](internet.md) -[*](minimalism.md) -[*](autostereogram.md) -[*](fsf.md) -[*](java.md) -[*](countercomplex.md) -[*](intellectual_property.md) -[*](microtransaction.md) -[*](justice.md) -[*](exercises.md) -[*](programming_language.md) -[*](bs.md) -[*](arch.md) -[*](unicode.md) -[*](nd.md) -[*](framework.md) -[*](elon_musk.md) -[*](productivity_cult.md) -[*](wiki_rights.md) -[*](piracy.md) -[*](steve_jobs.md) -[*](bill_gates.md) -[*](gui.md) +[*](political_correctness.md) [*](memory_management.md) -[*](anal_bead.md) -[*](racism.md) -[*](mud.md) -[*](bilinear.md) -[*](rust.md) -[*](pedophilia.md) -[*](reactionary_software.md) -[*](fail_ab.md) -[*](terry_davis.md) -[*](billboard.md) -[*](compsci.md) -[*](idiot_fallacy.md) -[*](mipmap.md) -[*](public_domain_computer.md) -[*](terry_davis.md) -[*](ancap.md) -[*](exercises.md) -[*](drummyfish.md) -[*](uxn.md) -[*](backpropagation.md) -[*](ronja.md) -[*](kiwifarms.md) -[*](gender_studies.md) -[*](loc.md) -[*](portal_rendering.md) -[*](books.md) -[*](real_number.md) -[*](proof.md) -[*](thrembo.md) -[*](mainstream.md) -[*](lambda_calculus.md) -[*](modern_software.md) -[*](small3dlib.md) -[*](see_through_clothes.md) -[*](harry_potter.md) -[*](copyfree.md) -[*](iq.md) -[*](dynamic_programming.md) -[*](cracking.md) -[*](digital.md) -[*](fediverse.md) -[*](just_werks.md) -[*](lrs.md) -[*](anarchism.md) -[*](bazaar.md) -[*](3d_rendering.md) -[*](chess.md) -[*](marketing.md) -[*](kiwifarms.md) -[*](bit_hack.md) -[*](qubit.md) -[*](luke_smith.md) -[*](copyleft.md) -[*](math.md) -[*](gnu.md) -[*](c.md) -[*](anpac.md) -[*](apple.md) -[*](plan9.md) -[*](proprietary_software.md) -[*](minigame.md) -[*](wavelet_transform.md) -[*](malware.md) -[*](niggercoin.md) -[*](nationalism.md) -[*](coc.md) -[*](public_domain.md) -[*](gigachad.md) -[*](operating_system.md) -[*](race.md) -[*](demoscene.md) -[*](mipmap.md) -[*](free_culture.md) +[*](geek.md) +[*](linux.md) +[*](python.md) +[*](free_hardware.md) +[*](encyclopedia.md) [*](smol_internet.md) -[*](information.md) -[*](fork.md) -[*](cc.md) -[*](c.md) -[*](tpe.md) -[*](steganography.md) -[*](palette.md) -[*](marble_race.md) +[*](README.md) [*](cracker.md) -[*](jokes.md) -[*](compression.md) -[*](bilinear.md) -[*](distrohopping.md) -[*](wiby.md) -[*](bloat_monopoly.md) -[*](furry.md) -[*](military.md) -[*](living.md) -[*](atan.md) -[*](capitalism.md) -[*](cancer.md) -[*](windows.md) -[*](bloat.md) -[*](art.md) -[*](gnu.md) -[*](fantasy_console.md) -[*](interaction_net.md) -[*](blender.md) -[*](portal_rendering.md) -[*](shader.md) -[*](hexadecimal.md) -[*](anpac.md) -[*](go.md) -[*](shogi.md) -[*](fuck.md) -[*](fractal.md) -[*](suckless.md) -[*](turing_machine.md) -[*](analog.md) -[*](foss.md) -[*](rust.md) -[*](rust.md) -[*](cc.md) -[*](easier_done_than_said.md) -[*](privacy.md) -[*](logic_circuit.md) -[*](wikiwikiweb.md) -[*](linear_algebra.md) -[*](harry_potter.md) -[*](public_domain.md) -[*](app.md) -[*](javascript.md) -[*](lrs_dictionary.md) -[*](fantasy_console.md) -[*](corporation.md) -[*](bit.md) -[*](aliasing.md) -[*](openai.md) -[*](see_through_clothes.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](open_console.md) -[*](antialiasing.md) -[*](marble_race.md) -[*](gemini.md) -[*](encryption.md) -[*](lil.md) -[*](quaternion.md) -[*](wiki_pages.md) -[*](README.md) -[*](logic_circuit.md) -[*](physics.md) -[*](reddit.md) -[*](assembly.md) -[*](nigger.md) -[*](whale.md) -[*](dungeons_and_dragons.md) -[*](island.md) -[*](murderer.md) -[*](progress.md) -[*](flatland.md) -[*](sigbovik.md) -[*](gui.md) -[*](lrs_dictionary.md) -[*](primitive_3d.md) -[*](books.md) -[*](future.md) -[*](soydev.md) -[*](proprietary_software.md) -[*](dog.md) -[*](python.md) -[*](unix_philosophy.md) -[*](speech_synthesis.md) -[*](firmware.md) -[*](version_numbering.md) -[*](evil.md) -[*](low_poly.md) -[*](project.md) +[*](combinatorics.md) +[*](c_pitfalls.md) +[*](ioccc.md) +[*](regex.md) +[*](censorship.md) +[*](ram.md) +[*](often_misunderstood.md) [*](number.md) -[*](assertiveness.md) -[*](zuckerberg.md) -[*](de_facto.md) -[*](crypto.md) -[*](xd.md) -[*](entrepreneur.md) -[*](quine.md) -[*](fear_culture.md) -[*](fight_culture.md) -[*](normalization.md) -[*](devuan.md) -[*](faggot.md) -[*](fear_culture.md) -[*](rapeware.md) -[*](education.md) -[*](viznut.md) -[*](trump.md) -[*](computational_complexity.md) -[*](fqa.md) -[*](often_confused.md) -[*](collision.md) -[*](analog.md) -[*](less_retarded_hardware.md) -[*](openarena.md) -[*](sw.md) -[*](nord_vpn.md) -[*](netstalking.md) -[*](attribution.md) -[*](left_right.md) -[*](old.md) -[*](soydev.md) -[*](logic.md) -[*](trolling.md) -[*](lmao.md) -[*](privacy.md) -[*](hexadecimal.md) -[*](formal_language.md) -[*](bitreich.md) -[*](loquendo.md) -[*](trusting_trust.md) -[*](rgb565.md) -[*](free_software.md) -[*](chasm_the_rift.md) -[*](collision.md) -[*](arduboy.md) -[*](data_structure.md) -[*](pokitto.md) +[*](dynamic_programming.md) +[*](qubit.md) +[*](evil.md) +[*](hw.md) +[*](ioccc.md) +[*](proprietary_software.md) +[*](cyber.md) +[*](justice.md) [*](demoscene.md) -[*](furry.md) -[*](python.md) -[*](doom.md) -[*](love.md) -[*](czechia.md) -[*](license.md) -[*](chaos.md) -[*](computational_complexity.md) -[*](implicit.md) -[*](small3dlib.md) -[*](troll.md) -[*](crow_funding.md) -[*](backgammon.md) -[*](modern.md) -[*](42.md) -[*](frameless.md) +[*](primitive_3d.md) +[*](name_is_important.md) +[*](soyence.md) +[*](lmao.md) +[*](music.md) +[*](cloud.md) +[*](triangle.md) +[*](pokitto.md) +[*](oop.md) +[*](needed.md) +[*](progress.md) +[*](moderation.md) +[*](sudoku.md) +[*](ascii_art.md) +[*](democracy.md) +[*](3d_model.md) +[*](transistor.md) +[*](sw.md) [*](old.md) -[*](social_inertia.md) -[*](real_number.md) -[*](wiki_post_mortem.md) -[*](left_right.md) -[*](greenwashing.md) -[*](thrembo.md) -[*](modern.md) -[*](history.md) -[*](ubi.md) +[*](censorship.md) +[*](21st_century.md) +[*](egoism.md) [*](www.md) -[*](gemini.md) -[*](js.md) -[*](ashley_jones.md) -[*](ssao.md) -[*](vector.md) -[*](easy_to_learn_hard_to_master.md) -[*](free_speech.md) -[*](unix.md) -[*](bit.md) -[*](uxn.md) -[*](backpropagation.md) -[*](communism.md) -[*](free_software.md) -[*](README.md) -[*](public_domain.md) -[*](future.md) +[*](operating_system.md) +[*](boat.md) +[*](foss.md) +[*](wiki_rights.md) +[*](network.md) +[*](noise.md) +[*](portal_rendering.md) +[*](downto.md) +[*](yes_they_can.md) +[*](cancer.md) +[*](web.md) +[*](version_numbering.md) +[*](devuan.md) +[*](cancer.md) +[*](exercises.md) +[*](pokitto.md) +[*](boot.md) [*](tranny_software.md) -[*](cheating.md) -[*](mechanical.md) -[*](trump.md) -[*](hardware.md) -[*](girl.md) -[*](ui.md) -[*](tech.md) -[*](aliasing.md) -[*](quantum_gate.md) -[*](ashley_jones.md) -[*](byte.md) -[*](randomness.md) +[*](mob_software.md) +[*](css.md) +[*](deferred_shading.md) +[*](usenet.md) +[*](computer.md) +[*](hard_to_learn_easy_to_master.md) +[*](wikipedia.md) +[*](pd.md) +[*](bitreich.md) +[*](future.md) +[*](100r.md) +[*](often_misunderstood.md) +[*](science.md) +[*](hexadecimal.md) +[*](libertarianism.md) +[*](rsa.md) +[*](morality.md) +[*](raycastlib.md) +[*](internet.md) +[*](docker.md) +[*](compsci.md) +[*](ai.md) +[*](adam_smith.md) +[*](elo.md) +[*](copyleft.md) +[*](human_language.md) +[*](bs.md) +[*](hacker_culture.md) +[*](malware.md) +[*](color.md) +[*](transistor.md) +[*](needed.md) +[*](3d_model.md) +[*](sin.md) +[*](crime_against_economy.md) +[*](capitalist_singularity.md) +[*](kiwifarms.md) +[*](security.md) +[*](computational_complexity.md) +[*](gigachad.md) +[*](c_sharp.md) +[*](cos.md) +[*](xonotic.md) +[*](determinism.md) +[*](cpp.md) +[*](gui.md) +[*](elon_musk.md) +[*](moderation.md) +[*](niger.md) +[*](modern_software.md) +[*](fear_culture.md) +[*](free_universe.md) +[*](combinatorics.md) +[*](software.md) +[*](no_knowledge_proof.md) +[*](holy_war.md) +[*](brain_software.md) +[*](speech_synthesis.md) +[*](one.md) +[*](fourier_transform.md) +[*](42.md) +[*](troll.md) +[*](pi.md) +[*](cache.md) +[*](nanogenmo.md) +[*](lambda_calculus.md) +[*](trash_magic.md) +[*](4chan.md) +[*](anal_bead.md) +[*](complexity.md) [*](ancap.md) [*](reactionary_software.md) -[*](intellectual_property.md) -[*](czechia.md) -[*](firmware.md) -[*](sw.md) -[*](science.md) -[*](english.md) -[*](chaos.md) -[*](temple_os.md) -[*](faggot.md) -[*](mechanical.md) -[*](100r.md) -[*](oop.md) -[*](lambda_calculus.md) +[*](world_broadcast.md) [*](game_engine.md) -[*](free_hardware.md) -[*](rms.md) -[*](3d_modeling.md) -[*](build_engine.md) -[*](digital.md) -[*](wavelet_transform.md) -[*](throwaway_script.md) -[*](drummyfish.md) -[*](hash.md) -[*](library.md) -[*](framework.md) -[*](encyclopedia.md) -[*](sjw.md) -[*](censorship.md) -[*](yes_they_can.md) -[*](splinternet.md) -[*](wiki_post_mortem.md) -[*](main.md) -[*](censorship.md) -[*](triangle.md) -[*](lrs_wiki.md) +[*](left_right.md) [*](fun.md) -[*](prime.md) -[*](encryption.md) -[*](wiby.md) -[*](noise.md) +[*](graveyard.md) +[*](io.md) +[*](settled.md) [*](function.md) -[*](rationalwiki.md) -[*](bytebeat.md) -[*](openai.md) -[*](raycasting.md) -[*](3d_modeling.md) -[*](free_will.md) -[*](harry_potter.md) -[*](cancel_culture.md) -[*](right.md) -[*](sw_rendering.md) -[*](42.md) -[*](forth.md) -[*](apple.md) -[*](sigbovik.md) -[*](frameless.md) +[*](pseudo3d.md) +[*](tas.md) [*](fight_culture.md) -[*](pseudorandomness.md) +[*](rapeware.md) +[*](trusting_trust.md) +[*](loquendo.md) +[*](42.md) +[*](unretard.md) +[*](license.md) +[*](normalization.md) +[*](wiki_pages.md) +[*](sin.md) +[*](art.md) +[*](music.md) +[*](yes_they_can.md) +[*](firmware.md) +[*](distance.md) +[*](racetrack.md) +[*](go.md) +[*](fascism.md) +[*](cpu.md) +[*](distrohopping.md) +[*](linear_algebra.md) +[*](mandelbrot_set.md) +[*](lambda_calculus.md) +[*](kiss.md) +[*](chinese.md) +[*](loquendo.md) +[*](smart.md) +[*](kwangmyong.md) +[*](egoism.md) +[*](often_confused.md) +[*](reactionary_software.md) +[*](interaction_net.md) +[*](lil.md) +[*](paradigm.md) +[*](how_to.md) +[*](sanism.md) +[*](uxn.md) +[*](girl.md) +[*](programming_tips.md) +[*](good_enough.md) +[*](cheating.md) +[*](soyence.md) +[*](internet.md) +[*](interplanetary_internet.md) +[*](chaos.md) +[*](programming_language.md) +[*](maintenance.md) +[*](semiconductor.md) +[*](tangram.md) +[*](logic_circuit.md) +[*](antialiasing.md) +[*](interpolation.md) +[*](unix.md) +[*](one.md) +[*](adam_smith.md) +[*](less_retarded_software.md) +[*](sw_rendering.md) +[*](shader.md) +[*](fuck.md) +[*](nokia.md) +[*](flatland.md) +[*](framework.md) +[*](small3dlib.md) +[*](diogenes.md) +[*](programming_style.md) +[*](twos_complement.md) +[*](motivation.md) +[*](rights_culture.md) +[*](tattoo.md) +[*](debugging.md) +[*](free_speech.md) +[*](aliasing.md) +[*](splinternet.md) +[*](encryption.md) +[*](malware.md) +[*](sigbovik.md) +[*](xonotic.md) +[*](nigger.md) +[*](fuck.md) +[*](apple.md) +[*](algorithm.md) +[*](portal_rendering.md) +[*](analytic_geometry.md) +[*](ascii.md) +[*](demoscene.md) +[*](intellectual_property.md) +[*](consumerism.md) +[*](implicit.md) +[*](plusnigger.md) +[*](trolling.md) +[*](easy_to_learn_hard_to_master.md) +[*](digital.md) +[*](project.md) +[*](algorithm.md) +[*](3d_modeling.md) +[*](love.md) +[*](raycastlib.md) +[*](finished.md) +[*](whale.md) +[*](wizard.md) +[*](trom.md) +[*](cpp.md) +[*](see_through_clothes.md) +[*](trom.md) +[*](wavelet_transform.md) +[*](chasm_the_rift.md) +[*](piracy.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](monad.md) +[*](rsa.md) +[*](monad.md) +[*](jargon_file.md) +[*](throwaway_script.md) +[*](floss.md) +[*](marketing.md) +[*](bs.md) +[*](nc.md) +[*](everyone_does_it.md) +[*](earth.md) +[*](rapeware.md) +[*](oop.md) +[*](fight.md) +[*](usenet.md) +[*](culture.md) +[*](esolang.md) +[*](hacker_culture.md) +[*](docker.md) +[*](steve_jobs.md) +[*](bit.md) +[*](foss.md) +[*](rms.md) +[*](dungeons_and_dragons.md) +[*](c_tutorial.md) +[*](cloudflare.md) +[*](fascist.md) +[*](patent.md) +[*](plan9.md) +[*](privacy.md) +[*](unary.md) +[*](black.md) +[*](arduboy.md) +[*](mainstream.md) +[*](firmware.md) +[*](systemd.md) +[*](free.md) +[*](race.md) +[*](markov_chain.md) +[*](golang.md) +[*](democracy.md) +[*](flatland.md) +[*](people.md) +[*](prime.md) +[*](openarena.md) +[*](wiki_post_mortem.md) +[*](fight.md) +[*](nokia.md) +[*](viznut.md) +[*](charity_sex.md) +[*](exercises.md) +[*](ubi.md) +[*](wiki_authors.md) +[*](free_will.md) +[*](fqa.md) [*](xxiivv.md) -[*](float.md) -[*](de_facto.md) -[*](tech.md) -[*](assembly.md) -[*](comment.md) +[*](freedom_distance.md) +[*](p_vs_np.md) +[*](fascism.md) +[*](4chan.md) +[*](normalization.md) +[*](comun.md) +[*](patent.md) +[*](brainfuck.md) +[*](hash.md) +[*](steve_jobs.md) +[*](css.md) +[*](fantasy_console.md) +[*](magic.md) +[*](chinese.md) +[*](people.md) +[*](ronja.md) +[*](web.md) +[*](robot.md) +[*](wiki_pages.md) +[*](chinese.md) +[*](justice.md) +[*](vim.md) +[*](computer.md) +[*](history.md) +[*](democracy.md) +[*](3d_rendering.md) +[*](capitalist_singularity.md) +[*](troll.md) +[*](data_structure.md) +[*](education.md) +[*](systemd.md) +[*](left.md) +[*](app.md) +[*](mechanical.md) +[*](jargon_file.md) +[*](free_will.md) +[*](autoupdate.md) +[*](openai.md) +[*](nd.md) +[*](programming_style.md) +[*](abstraction.md) +[*](libertarianism.md) +[*](duskos.md) +[*](exercises.md) +[*](nc.md) +[*](reddit.md) +[*](game_engine.md) +[*](crypto.md) +[*](21st_century.md) +[*](vector.md) +[*](steganography.md) +[*](piracy.md) +[*](bullshit.md) +[*](nd.md) +[*](shit.md) +[*](determinism.md) +[*](comun.md) +[*](axiom_of_choice.md) +[*](normalization.md) +[*](gnu.md) +[*](rgb565.md) +[*](global_discussion.md) +[*](ssao.md) +[*](hash.md) +[*](soydev.md) +[*](patent.md) +[*](raycastlib.md) +[*](magic.md) +[*](ethics.md) +[*](bbs.md) +[*](open_console.md) [*](beauty.md) +[*](egoism.md) +[*](temple_os.md) +[*](phd.md) +[*](easy_to_learn_hard_to_master.md) +[*](pride.md) +[*](cracker.md) +[*](antialiasing.md) +[*](freedom.md) +[*](binary.md) +[*](harry_potter.md) +[*](chasm_the_rift.md) +[*](f2p.md) +[*](bloat.md) +[*](tom_scott.md) +[*](terry_davis.md) +[*](100r.md) +[*](low_poly.md) +[*](countercomplex.md) +[*](trump.md) +[*](assembly.md) +[*](race.md) +[*](duke3d.md) +[*](mainstream.md) +[*](lisp.md) +[*](gaywashing.md) +[*](corporation.md) +[*](deferred_shading.md) +[*](free_culture.md) +[*](math.md) +[*](minimalism.md) +[*](wizard.md) +[*](robot.md) +[*](attribution.md) +[*](kwangmyong.md) +[*](bloat.md) +[*](fediverse.md) +[*](football.md) +[*](quine.md) +[*](thrembo.md) +[*](e.md) +[*](myths.md) +[*](analytic_geometry.md) +[*](ui.md) +[*](elon_musk.md) +[*](people.md) +[*](google.md) +[*](political_correctness.md) +[*](primitive_3d.md) +[*](robot.md) +[*](gopher.md) +[*](boat.md) +[*](fork.md) +[*](girl.md) +[*](cancer.md) +[*](diogenes.md) +[*](throwaway_script.md) +[*](number.md) +[*](anarch.md) +[*](line.md) +[*](wikiwikiweb.md) +[*](tinyphysicsengine.md) +[*](app.md) +[*](watchdog.md) +[*](bloat_monopoly.md) +[*](fork.md) +[*](right.md) +[*](io.md) +[*](less_retarded_society.md) +[*](kek.md) +[*](toxic.md) +[*](plan9.md) +[*](vim.md) +[*](kek.md) +[*](interplanetary_internet.md) +[*](disease.md) +[*](chess.md) +[*](corporation.md) +[*](physics_engine.md) +[*](cancel_culture.md) +[*](gnu.md) +[*](unicode.md) +[*](zuckerberg.md) +[*](java.md) +[*](noise.md) +[*](czechia.md) +[*](cheating.md) +[*](communism.md) +[*](mainstream.md) +[*](jokes.md) +[*](backgammon.md) +[*](cc0.md) +[*](see_through_clothes.md) +[*](doom.md) +[*](arch.md) +[*](tattoo.md) +[*](zen.md) +[*](autostereogram.md) +[*](regex.md) +[*](unretard.md) +[*](quantum_gate.md) +[*](social_inertia.md) +[*](pseudorandomness.md) +[*](smol_internet.md) +[*](aaron_swartz.md) +[*](splinternet.md) +[*](qubit.md) +[*](algorithm.md) +[*](downto.md) +[*](public_domain.md) +[*](sqrt.md) +[*](lil.md) +[*](compression.md) +[*](lrs_dictionary.md) +[*](shit.md) +[*](distrohopping.md) +[*](universe.md) +[*](complexity.md) +[*](golang.md) +[*](blender.md) +[*](color.md) +[*](jesus.md) +[*](foss.md) +[*](facebook.md) +[*](capitalism.md) +[*](libertarianism.md) +[*](programming_language.md) +[*](unix_philosophy.md) +[*](world_broadcast.md) +[*](left_right.md) +[*](girl.md) +[*](wiby.md) +[*](fqa.md) +[*](frameless.md) +[*](math.md) +[*](atan.md) +[*](assembly.md) +[*](palette.md) +[*](coding.md) +[*](shit.md) +[*](hash.md) +[*](luke_smith.md) +[*](open_console.md) +[*](raycasting.md) +[*](real_number.md) +[*](de_facto.md) +[*](bill_gates.md) +[*](plusnigger.md) +[*](bloat_monopoly.md) +[*](crow_funding.md) +[*](furry.md) +[*](fight_culture.md) +[*](langtons_ant.md) +[*](encyclopedia.md) +[*](permacomputing_wiki.md) +[*](tensor_product.md) +[*](interpolation.md) +[*](jedi_engine.md) +[*](project.md) +[*](faq.md) +[*](public_domain_computer.md) +[*](capitalist_software.md) +[*](trolling.md) +[*](political_correctness.md) +[*](os.md) +[*](marxism.md) +[*](murderer.md) +[*](rule110.md) +[*](public_domain_computer.md) +[*](rgb332.md) +[*](fascism.md) +[*](boot.md) +[*](soydev.md) +[*](openarena.md) +[*](ted_kaczynski.md) +[*](wavelet_transform.md) +[*](gemini.md) +[*](recursion.md) +[*](dynamic_programming.md) +[*](wiki_stats.md) +[*](stereotype.md) +[*](gnu.md) +[*](cc.md) +[*](wiki_authors.md) +[*](uxn.md) +[*](nanogenmo.md) +[*](wiby.md) +[*](xd.md) +[*](cyber.md) +[*](competition.md) +[*](raylib.md) +[*](semiconductor.md) +[*](hack.md) +[*](smallchesslib.md) +[*](hw.md) +[*](universe.md) +[*](tor.md) +[*](internet.md) +[*](law.md) +[*](f2p.md) +[*](minesweeper.md) +[*](license.md) +[*](entropy.md) +[*](autostereogram.md) +[*](byte.md) +[*](google.md) +[*](fight.md) +[*](bytebeat.md) +[*](distance.md) +[*](arch.md) +[*](go.md) +[*](cancel_culture.md) +[*](minigame.md) +[*](microtransaction.md) +[*](name_is_important.md) +[*](f2p.md) +[*](wiki_post_mortem.md) +[*](thrembo.md) +[*](lmao.md) +[*](rights_culture.md) +[*](gopher.md) +[*](global_discussion.md) +[*](military.md) +[*](data_hoarding.md) +[*](czechia.md) +[*](shogi.md) +[*](free_culture.md) +[*](free_software.md) +[*](used.md) +[*](proof.md) +[*](gay.md) +[*](game_engine.md) +[*](microsoft.md) +[*](permacomputing.md) +[*](rule110.md) +[*](gigachad.md) +[*](c.md) +[*](ram.md) +[*](racetrack.md) +[*](audiophilia.md) +[*](number.md) +[*](optimization.md) +[*](downto.md) +[*](jokes.md) +[*](rights_culture.md) +[*](bit_hack.md) +[*](c.md) +[*](rust.md) +[*](cheating.md) +[*](no_knowledge_proof.md) +[*](settled.md) +[*](README.md) +[*](john_carmack.md) +[*](chasm_the_rift.md) +[*](graveyard.md) +[*](google.md) +[*](wikidata.md) +[*](sorting.md) +[*](old.md) +[*](needed.md) +[*](dinosaur.md) +[*](sorting.md) +[*](autoupdate.md) +[*](geek.md) +[*](4chan.md) +[*](ancap.md) +[*](byte.md) +[*](collision.md) +[*](football.md) +[*](resnicks_termite.md) +[*](nd.md) +[*](twos_complement.md) +[*](python.md) +[*](twos_complement.md) +[*](hyperoperation.md) +[*](logic.md) +[*](rock.md) +[*](freedom.md) +[*](saf.md) +[*](gaywashing.md) +[*](racism.md) +[*](selflessness.md) +[*](assertiveness.md) +[*](harry_potter.md) +[*](programming_language.md) +[*](speech_synthesis.md) +[*](approximation.md) +[*](niger.md) +[*](everyone_does_it.md) +[*](trump.md) +[*](pseudorandomness.md) +[*](fourier_transform.md) +[*](collision.md) +[*](vector.md) +[*](linear_algebra.md) +[*](brain_software.md) +[*](tranny_software.md) +[*](law.md) +[*](implicit.md) +[*](ascii.md) +[*](copyright.md) +[*](atheism.md) +[*](collapse.md) +[*](progress.md) +[*](art.md) +[*](censorship.md) +[*](physics_engine.md) +[*](feminism.md) +[*](cracker.md) +[*](pedophilia.md) +[*](microtheft.md) +[*](graphics.md) +[*](right.md) +[*](c_pitfalls.md) +[*](fixed_point.md) +[*](hero.md) +[*](malware.md) +[*](wavelet_transform.md) +[*](unicode.md) +[*](kids_these_days.md) +[*](justice.md) +[*](markov_chain.md) +[*](beauty.md) +[*](fun.md) +[*](java.md) +[*](fractal.md) +[*](trom.md) +[*](coding.md) +[*](copyright.md) +[*](encryption.md) +[*](library.md) +[*](wow.md) +[*](crow_funding.md) +[*](love.md) +[*](temple_os.md) +[*](ubi.md) +[*](cloudflare.md) +[*](wow.md) +[*](copyfree.md) +[*](future_proof.md) +[*](explicit.md) +[*](hero_culture.md) +[*](mental_outlaw.md) +[*](nanogenmo.md) +[*](rgb565.md) +[*](military.md) +[*](lisp.md) +[*](femoid.md) +[*](pride.md) +[*](race.md) +[*](wikipedia.md) +[*](rationalwiki.md) +[*](work.md) +[*](diogenes.md) +[*](fsf.md) +[*](elo.md) +[*](goodbye_world.md) +[*](loquendo.md) +[*](game.md) +[*](hexadecimal.md) +[*](paradigm.md) +[*](license.md) +[*](adam_smith.md) +[*](beauty.md) +[*](drummyfish.md) +[*](vim.md) +[*](aaron_swartz.md) +[*](recursion.md) +[*](entrepreneur.md) +[*](technology.md) +[*](sqrt.md) +[*](dramatica.md) +[*](xd.md) +[*](zero.md) +[*](fizzbuzz.md) +[*](global_discussion.md) +[*](education.md) +[*](everyone_does_it.md) +[*](comun.md) +[*](morality.md) +[*](free.md) +[*](assertiveness.md) +[*](see_through_clothes.md) +[*](ethics.md) +[*](old.md) +[*](youtube.md) +[*](kids_these_days.md) +[*](lrs.md) +[*](charity_sex.md) +[*](splinternet.md) +[*](cat_v.md) +[*](mouse.md) +[*](fizzbuzz.md) +[*](charity_sex.md) +[*](cancel_culture.md) +[*](future.md) +[*](racetrack.md) +[*](island.md) +[*](czechia.md) +[*](graphics.md) +[*](moderation.md) +[*](crypto.md) +[*](slowly_boiling_the_frog.md) +[*](git.md) +[*](nord_vpn.md) +[*](english.md) +[*](debugging.md) +[*](c_tutorial.md) +[*](fractal.md) +[*](tech.md) +[*](tom_scott.md) +[*](neural_network.md) +[*](quantum_gate.md) +[*](windows.md) +[*](prime.md) +[*](information.md) +[*](books.md) +[*](project.md) +[*](human_language.md) +[*](shader.md) +[*](programming_style.md) +[*](procgen.md) +[*](feminism.md) +[*](sqrt.md) +[*](c.md) +[*](sigbovik.md) +[*](3d_modeling.md) +[*](modern.md) +[*](wiki_rights.md) +[*](bit_hack.md) +[*](network.md) +[*](sdf.md) +[*](infinity.md) +[*](collapse.md) +[*](steganography.md) +[*](productivity_cult.md) +[*](elo.md) +[*](backgammon.md) +[*](left.md) +[*](suckless.md) +[*](cpu.md) +[*](body_shaming.md) +[*](collision.md) +[*](culture.md) +[*](racism.md) +[*](demo.md) +[*](implicit.md) +[*](main.md) +[*](plan9.md) +[*](rms.md) +[*](bootstrap.md) +[*](loc.md) +[*](c_tutorial.md) +[*](troll.md) +[*](chaos.md) +[*](intellectual_property.md) +[*](js.md) +[*](free_body.md) +[*](collision_detection.md) +[*](os.md) +[*](morality.md) +[*](less_retarded_hardware.md) +[*](free_will.md) +[*](forth.md) +[*](niggercoin.md) +[*](lgbt.md) +[*](information.md) +[*](interesting.md) +[*](nc.md) +[*](pedophilia.md) +[*](analog.md) +[*](lrs.md) +[*](john_carmack.md) +[*](bytebeat.md) +[*](zuckerberg.md) +[*](life.md) +[*](emoticon.md) +[*](anal_bead.md) +[*](netstalking.md) +[*](build_engine.md) +[*](procgen.md) +[*](floss.md) +[*](tensor_product.md) +[*](coc.md) +[*](nigger.md) +[*](phd.md) +[*](anarch.md) +[*](duke3d.md) +[*](fail_ab.md) +[*](permacomputing_wiki.md) +[*](unix.md) +[*](shader.md) +[*](minesweeper.md) +[*](raycasting.md) +[*](freedom_distance.md) +[*](explicit.md) +[*](iq.md) +[*](reddit.md) +[*](motivation.md) +[*](neural_network.md) +[*](interpolation.md) +[*](often_misunderstood.md) +[*](lgbt.md) +[*](nord_vpn.md) +[*](open_source.md) +[*](privacy.md) +[*](luke_smith.md) +[*](unix.md) +[*](tor.md) +[*](anarchism.md) +[*](countercomplex.md) +[*](black.md) +[*](work.md) +[*](atan.md) +[*](openai.md) +[*](data_structure.md) +[*](niggercoin.md) +[*](free_universe.md) +[*](proprietary.md) +[*](bullshit.md) +[*](backgammon.md) +[*](youtube.md) +[*](furry.md) +[*](productivity_cult.md) +[*](dinosaur.md) +[*](frameless.md) +[*](tranny_software.md) +[*](jedi_engine.md) +[*](ashley_jones.md) +[*](toxic.md) +[*](mud.md) +[*](money.md) +[*](comment.md) +[*](e.md) +[*](binary.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](science.md) +[*](duskos.md) +[*](capitalist_singularity.md) +[*](billboard.md) +[*](kiss.md) +[*](money.md) +[*](toxic.md) +[*](triangle.md) +[*](dynamic_programming.md) +[*](bytebeat.md) +[*](boot.md) +[*](windows.md) +[*](free_software.md) +[*](library.md) +[*](langtons_ant.md) +[*](lrs.md) +[*](dungeons_and_dragons.md) +[*](marketing.md) +[*](oop.md) +[*](femoid.md) +[*](fsf.md) +[*](3d_modeling.md) +[*](logic_circuit.md) +[*](antialiasing.md) +[*](approximation.md) +[*](blender.md) +[*](update_culture.md) +[*](formal_language.md) +[*](cloud.md) +[*](suicide.md) +[*](wiki_style.md) +[*](dinosaur.md) +[*](viznut.md) +[*](quaternion.md) +[*](fear_culture.md) +[*](kiss.md) +[*](avpd.md) +[*](saf.md) +[*](left_right.md) +[*](island.md) +[*](noise.md) +[*](wiki_rights.md) +[*](audiophilia.md) +[*](hacker_culture.md) +[*](compression.md) +[*](dependency.md) +[*](axiom_of_choice.md) +[*](rust.md) +[*](youtube.md) +[*](trusting_trust.md) +[*](marble_race.md) +[*](operating_system.md) +[*](logic_gate.md) +[*](fsf.md) +[*](io.md) +[*](www.md) +[*](rationalwiki.md) +[*](good_enough.md) +[*](docker.md) +[*](cos.md) +[*](js.md) +[*](suckless.md) +[*](antivirus_paradox.md) +[*](microtransaction.md) +[*](history.md) +[*](creative_commons.md) +[*](operating_system.md) +[*](coc.md) +[*](social_inertia.md) +[*](web.md) +[*](bitreich.md) +[*](facebook.md) +[*](facebook.md) +[*](mipmap.md) +[*](fixed_point.md) +[*](cache.md) +[*](emoticon.md) +[*](hacking.md) +[*](interesting.md) +[*](steganography.md) +[*](hero_culture.md) +[*](pd.md) +[*](pseudominimalism.md) +[*](countercomplex.md) +[*](zuckerberg.md) +[*](memory_management.md) +[*](anpac.md) +[*](marxism.md) +[*](free_body.md) +[*](teletext.md) +[*](throwaway_script.md) +[*](sin.md) +[*](gender_studies.md) +[*](c_sharp.md) +[*](bazaar.md) +[*](fizzbuzz.md) +[*](os.md) +[*](free_speech.md) +[*](programming.md) +[*](programming.md) +[*](3d_model.md) +[*](fantasy_console.md) +[*](devuan.md) +[*](libre.md) +[*](recursion.md) +[*](bazaar.md) +[*](pseudo3d.md) +[*](human_language.md) +[*](earth.md) +[*](often_confused.md) +[*](kek.md) +[*](myths.md) +[*](less_retarded_software.md) +[*](mouse.md) +[*](bbs.md) +[*](x86.md) +[*](dodleston.md) +[*](consumerism.md) +[*](temple_os.md) +[*](abstraction.md) +[*](art.md) +[*](jesus.md) +[*](bs.md) +[*](minigame.md) +[*](modern.md) +[*](hard_to_learn_easy_to_master.md) +[*](app.md) +[*](mouse.md) +[*](slowly_boiling_the_frog.md) +[*](one.md) +[*](float.md) +[*](pseudoleft.md) +[*](consumerism.md) +[*](proof.md) +[*](law.md) +[*](earth.md) +[*](mud.md) +[*](woman.md) +[*](dependency.md) +[*](network.md) +[*](military.md) +[*](wikiwikiweb.md) +[*](life.md) +[*](hexadecimal.md) +[*](julia_set.md) +[*](settled.md) +[*](newspeak.md) +[*](wiki_stats.md) +[*](body_shaming.md) +[*](freedom.md) +[*](ashley_jones.md) +[*](prime.md) +[*](english.md) +[*](steve_jobs.md) +[*](microtheft.md) +[*](sudoku.md) +[*](collision_detection.md) +[*](goodbye_world.md) +[*](mud.md) +[*](newspeak.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](de_facto.md) +[*](gemini.md) +[*](data_hoarding.md) +[*](trash_magic.md) +[*](wiki_style.md) +[*](bbs.md) +[*](smallchesslib.md) +[*](hack.md) +[*](just_werks.md) +[*](arduboy.md) +[*](lil.md) +[*](slowly_boiling_the_frog.md) +[*](sw_rendering.md) +[*](copyright.md) +[*](tinyphysicsengine.md) +[*](tattoo.md) +[*](physics.md) +[*](marble_race.md) +[*](wiki_authors.md) +[*](update_culture.md) +[*](quine.md) +[*](tangram.md) +[*](wiki_pages.md) +[*](pseudoleft.md) +[*](free_culture.md) +[*](cat_v.md) +[*](software.md) +[*](blender.md) +[*](woman.md) +[*](cloud.md) +[*](build_engine.md) +[*](body_shaming.md) +[*](bit_hack.md) +[*](rgb332.md) +[*](viznut.md) +[*](lgbt.md) +[*](hack.md) +[*](work.md) +[*](whale.md) +[*](sw.md) +[*](motivation.md) +[*](42.md) +[*](computational_complexity.md) +[*](tinyphysicsengine.md) +[*](cpp.md) +[*](zero.md) +[*](randomness.md) +[*](fediverse.md) +[*](sjw.md) +[*](gay.md) +[*](low_poly.md) +[*](unretard.md) +[*](optimization.md) +[*](shortcut_thinking.md) +[*](ui.md) +[*](randomness.md) +[*](free_software.md) +[*](line.md) +[*](turing_machine.md) +[*](analytic_geometry.md) +[*](uxn.md) +[*](newspeak.md) +[*](venus_project.md) +[*](deep_blue.md) +[*](proprietary.md) +[*](xxiivv.md) +[*](liberalism.md) +[*](crypto.md) +[*](competition.md) +[*](cyber.md) +[*](paywall.md) +[*](crime_against_economy.md) +[*](coding.md) +[*](less_retarded_hardware.md) +[*](graphics.md) +[*](anarchism.md) +[*](21st_century.md) +[*](x86.md) +[*](open_console.md) +[*](left.md) +[*](digital_signature.md) +[*](logic.md) +[*](jesus.md) +[*](demo.md) +[*](determinism.md) +[*](tech.md) +[*](myths.md) +[*](fascist.md) +[*](lrs_wiki.md) +[*](interplanetary_internet.md) +[*](zen.md) +[*](nationalism.md) +[*](data_structure.md) +[*](physics_engine.md) +[*](pseudoleft.md) +[*](sanism.md) +[*](gender_studies.md) +[*](copyleft.md) +[*](githopping.md) +[*](rock.md) +[*](rock.md) +[*](public_domain_computer.md) +[*](evil.md) +[*](sorting.md) +[*](bill_gates.md) +[*](bytecode.md) +[*](bilinear.md) +[*](suicide.md) +[*](harry_potter.md) +[*](emoticon.md) +[*](double_buffering.md) +[*](resnicks_termite.md) +[*](dramatica.md) +[*](quaternion.md) +[*](world_broadcast.md) +[*](universe.md) +[*](easy_to_learn_hard_to_master.md) +[*](holy_war.md) +[*](combinatorics.md) +[*](dependency.md) +[*](permacomputing.md) +[*](nord_vpn.md) +[*](soyence.md) +[*](used.md) +[*](dog.md) +[*](analog.md) +[*](cracking.md) +[*](whale.md) +[*](books.md) +[*](proprietary_software.md) +[*](corporation.md) +[*](small3dlib.md) +[*](e.md) +[*](microtheft.md) +[*](love.md) +[*](ascii_art.md) +[*](free.md) +[*](watchdog.md) +[*](anpac.md) +[*](fail_ab.md) +[*](flatland.md) +[*](capitalism.md) +[*](creative_commons.md) +[*](usa.md) +[*](logic_gate.md) +[*](libre.md) +[*](mipmap.md) +[*](devuan.md) +[*](cache.md) +[*](assertiveness.md) +[*](esolang.md) +[*](murderer.md) +[*](rapeware.md) +[*](proprietary_software.md) +[*](ram.md) +[*](billboard.md) +[*](atan.md) +[*](raylib.md) +[*](saf.md) +[*](kiwifarms.md) +[*](future.md) +[*](living.md) +[*](duke3d.md) +[*](quantum_gate.md) +[*](murderer.md) +[*](julia_set.md) +[*](mandelbrot_set.md) +[*](free_body.md) +[*](deep_blue.md) +[*](free_hardware.md) +[*](cracking.md) +[*](usa.md) +[*](pokitto.md) +[*](compiler_bomb.md) +[*](collision_detection.md) +[*](progress.md) +[*](raycasting.md) +[*](fear_culture.md) +[*](kwangmyong.md) +[*](idiot_fallacy.md) +[*](nokia.md) +[*](infinity.md) +[*](digital.md) +[*](teletext.md) +[*](xonotic.md) +[*](explicit.md) +[*](nationalism.md) +[*](capitalist_software.md) +[*](apple.md) +[*](altruism.md) +[*](palette.md) +[*](history.md) +[*](ubi.md) +[*](good_enough.md) +[*](name_is_important.md) +[*](wikipedia.md) +[*](linux.md) +[*](qubit.md) +[*](shortcut_thinking.md) +[*](monad.md) +[*](shogi.md) +[*](tpe.md) +[*](acronym.md) +[*](liberalism.md) +[*](mental_outlaw.md) +[*](venus_project.md) +[*](triangle.md) +[*](terry_davis.md) +[*](sanism.md) +[*](js.md) +[*](island.md) +[*](encryption.md) +[*](rgb332.md) +[*](gemini.md) +[*](dick_reveal.md) +[*](game_of_life.md) +[*](thrembo.md) +[*](tech.md) +[*](hacking.md) +[*](demo.md) +[*](goodbye_world.md) +[*](venus_project.md) +[*](duskos.md) +[*](abstraction.md) +[*](luke_smith.md) +[*](pseudominimalism.md) +[*](evil.md) +[*](portability.md) +[*](floss.md) +[*](selflessness.md) +[*](npc.md) +[*](autostereogram.md) +[*](sudoku.md) +[*](drummyfish.md) +[*](githopping.md) +[*](feminism.md) +[*](aaron_swartz.md) +[*](cc0.md) +[*](ashley_jones.md) +[*](randomness.md) +[*](jokes.md) +[*](game.md) +[*](wizard.md) +[*](logic.md) +[*](portal_rendering.md) +[*](quaternion.md) +[*](optimization.md) +[*](idiot_fallacy.md) +[*](pseudominimalism.md) +[*](tangram.md) +[*](culture.md) +[*](shogi.md) +[*](fractal.md) +[*](iq.md) +[*](disease.md) +[*](acronym.md) +[*](less_retarded_hardware.md) +[*](bit.md) +[*](attribution.md) +[*](hardware.md) +[*](sw.md) +[*](gaywashing.md) +[*](living.md) +[*](trash_magic.md) +[*](ronja.md) +[*](sdf.md) +[*](mechanical.md) +[*](bitreich.md) +[*](entrepreneur.md) +[*](fail_ab.md) +[*](greenwashing.md) +[*](ai.md) +[*](pseudo3d.md) +[*](comment.md) +[*](sw_rendering.md) +[*](forth.md) +[*](java.md) +[*](lmao.md) +[*](wiki_stats.md) +[*](golang.md) +[*](gui.md) +[*](maintenance.md) +[*](hacking.md) +[*](acronym.md) +[*](piracy.md) +[*](interaction_net.md) +[*](logic_gate.md) +[*](less_retarded_society.md) +[*](audiophilia.md) +[*](npc.md) +[*](gigachad.md) +[*](mob_software.md) +[*](mob_software.md) +[*](teletext.md) +[*](backpropagation.md) +[*](loc.md) +[*](README.md) +[*](nigger.md) +[*](xxiivv.md) +[*](double_buffering.md) +[*](openai.md) +[*](markov_chain.md) +[*](hero.md) +[*](compiler_bomb.md) +[*](julia_set.md) +[*](right.md) +[*](often_confused.md) +[*](compiler_bomb.md) +[*](coc.md) +[*](terry_davis.md) +[*](how_to.md) +[*](float.md) +[*](living.md) +[*](attribution.md) +[*](axiom_of_choice.md) +[*](line.md) +[*](bullshit.md) +[*](modern.md) +[*](copyfree.md) +[*](dog.md) +[*](macrofucker.md) +[*](finished.md) +[*](hero.md) +[*](small3dlib.md) +[*](linear_algebra.md) +[*](information.md) +[*](zero.md) +[*](usenet.md) +[*](faggot.md) +[*](avpd.md) +[*](gender_studies.md) +[*](git.md) +[*](magic.md) +[*](formal_language.md) +[*](fourier_transform.md) +[*](hyperoperation.md) +[*](rust.md) +[*](reactionary_software.md) +[*](python.md) +[*](arch.md) +[*](linux.md) +[*](programming_tips.md) +[*](library.md) +[*](pi.md) +[*](microtransaction.md) +[*](phd.md) +[*](bilinear.md) +[*](suckless.md) +[*](how_to.md) +[*](autoupdate.md) +[*](entrepreneur.md) +[*](faggot.md) +[*](soydev.md) +[*](modern_software.md) +[*](color.md) +[*](logic_circuit.md) +[*](fediverse.md) +[*](communism.md) +[*](smol_internet.md) +[*](mipmap.md) +[*](macrofucker.md) +[*](ui.md) +[*](debugging.md) +[*](copyfree.md) +[*](faq.md) +[*](dodleston.md) +[*](rgb565.md) +[*](ioccc.md) +[*](entropy.md) +[*](minimalism.md) +[*](bytecode.md) +[*](microsoft.md) +[*](unicode.md) +[*](javascript.md) +[*](billboard.md) +[*](entropy.md) +[*](ascii_art.md) +[*](version_numbering.md) +[*](bloat_monopoly.md) +[*](p_vs_np.md) +[*](hardware.md) +[*](gui.md) +[*](ai.md) +[*](float.md) +[*](iq.md) +[*](life.md) +[*](bootstrap.md) +[*](free_hardware.md) +[*](bloat.md) +[*](interesting.md) +[*](elon_musk.md) +[*](compsci.md) +[*](paywall.md) +[*](proprietary.md) +[*](cloudflare.md) +[*](aliasing.md) +[*](sigbovik.md) +[*](low_poly.md) +[*](dick_reveal.md) +[*](communism.md) +[*](lisp.md) +[*](gopher.md) +[*](chaos.md) +[*](javascript.md) +[*](procgen.md) +[*](racism.md) +[*](speech_synthesis.md) +[*](faq.md) +[*](complexity.md) +[*](marble_race.md) +[*](bytecode.md) +[*](altruism.md) +[*](ethics.md) +[*](computer.md) +[*](sjw.md) +[*](anpac.md) +[*](cpu.md) +[*](doom.md) +[*](tom_scott.md) +[*](jargon_file.md) +[*](drummyfish.md) +[*](3d_rendering.md) +[*](education.md) +[*](permacomputing_wiki.md) +[*](plusnigger.md) +[*](netstalking.md) +[*](esolang.md) +[*](dog.md) +[*](cc.md) +[*](formal_language.md) +[*](lrs_wiki.md) +[*](easier_done_than_said.md) +[*](antivirus_paradox.md) +[*](infinity.md) +[*](dramatica.md) +[*](frameless.md) +[*](wikiwikiweb.md) +[*](proof.md) +[*](mental_outlaw.md) +[*](competition.md) +[*](approximation.md) +[*](productivity_cult.md) +[*](regex.md) +[*](kiwifarms.md) +[*](free_speech.md) +[*](atheism.md) +[*](anarchism.md) +[*](transistor.md) +[*](assembly.md) +[*](free_universe.md) +[*](fixed_point.md) +[*](programming_tips.md) +[*](physics.md) +[*](ancap.md) +[*](binary.md) +[*](tensor_product.md) +[*](easier_done_than_said.md) +[*](technology.md) +[*](de_facto.md) +[*](tpe.md) +[*](tas.md) +[*](wiby.md) +[*](intellectual_property.md) +[*](turing_machine.md) +[*](shortcut_thinking.md) +[*](trolling.md) +[*](git.md) +[*](just_werks.md) +[*](copyleft.md) +[*](digital_signature.md) +[*](less_retarded_software.md) +[*](byte.md) +[*](ssao.md) +[*](bilinear.md) +[*](wiki_post_mortem.md) +[*](turing_machine.md) +[*](wikidata.md) +[*](liberalism.md) +[*](hard_to_learn_easy_to_master.md) +[*](brainfuck.md) +[*](brainfuck.md) +[*](suicide.md) +[*](watchdog.md) +[*](sdf.md) +[*](version_numbering.md) +[*](english.md) +[*](backpropagation.md) +[*](3d_rendering.md) +[*](compsci.md) +[*](unary.md) +[*](c_pitfalls.md) +[*](chess.md) +[*](tas.md) +[*](mandelbrot_set.md) +[*](wow.md) +[*](wikidata.md) +[*](capitalist_software.md) +[*](money.md) +[*](update_culture.md) +[*](niger.md) +[*](tpe.md) +[*](x86.md) +[*](githopping.md) +[*](privacy.md) +[*](greenwashing.md) +[*](brain_software.md) +[*](fork.md) +[*](security.md) +[*](reddit.md) +[*](systemd.md) +[*](openarena.md) +[*](game.md) +[*](semiconductor.md) +[*](neural_network.md) +[*](cc.md) +[*](loc.md) +[*](maintenance.md) +[*](100r.md) +[*](rule110.md) +[*](john_carmack.md) +[*](fuck.md) +[*](fun.md) +[*](cat_v.md) +[*](dick_reveal.md) +[*](smart.md) +[*](football.md) +[*](compression.md) +[*](fqa.md) +[*](antivirus_paradox.md) +[*](framework.md) +[*](vector.md) +[*](faggot.md) +[*](raylib.md) +[*](trump.md) +[*](main.md) +[*](unix_philosophy.md) +[*](microsoft.md) +[*](bit.md) +[*](ted_kaczynski.md) +[*](langtons_ant.md) +[*](apple.md) +[*](windows.md) +[*](encyclopedia.md) +[*](xd.md) +[*](public_domain.md) +[*](yes_they_can.md) +[*](woman.md) +[*](easier_done_than_said.md) +[*](stereotype.md) +[*](sjw.md) [*](hyperoperation.md) [*](distance.md) -[*](ai.md) -[*](de_facto.md) -[*](bbs.md) -[*](cracker.md) -[*](military.md) -[*](debugging.md) -[*](mandelbrot_set.md) -[*](physics_engine.md) -[*](procgen.md) -[*](comun.md) -[*](watchdog.md) -[*](unary.md) -[*](float.md) -[*](freedom.md) -[*](digital_signature.md) -[*](capitalist_singularity.md) -[*](vector.md) -[*](creative_commons.md) -[*](rsa.md) -[*](corporation.md) -[*](lisp.md) -[*](acronym.md) -[*](procgen.md) -[*](libertarianism.md) -[*](evil.md) -[*](shit.md) -[*](watchdog.md) -[*](fight.md) -[*](software.md) -[*](smallchesslib.md) -[*](bbs.md) -[*](README.md) -[*](microtransaction.md) -[*](life.md) -[*](countercomplex.md) -[*](femoid.md) -[*](everyone_does_it.md) -[*](how_to.md) -[*](fascism.md) -[*](dog.md) -[*](portal_rendering.md) -[*](interplanetary_internet.md) -[*](feminism.md) -[*](brainfuck.md) -[*](shit.md) -[*](approximation.md) -[*](tinyphysicsengine.md) -[*](computational_complexity.md) -[*](bs.md) -[*](left.md) -[*](unretard.md) -[*](app.md) -[*](loquendo.md) -[*](law.md) -[*](copyright.md) -[*](analytic_geometry.md) -[*](dinosaur.md) -[*](portability.md) -[*](wavelet_transform.md) -[*](quantum_gate.md) -[*](english.md) -[*](furry.md) -[*](vector.md) -[*](nanogenmo.md) -[*](combinatorics.md) -[*](unretard.md) -[*](comment.md) -[*](software.md) -[*](cache.md) -[*](linux.md) -[*](rgb565.md) -[*](unix.md) -[*](sqrt.md) -[*](security.md) -[*](suicide.md) -[*](ascii_art.md) -[*](nokia.md) -[*](femoid.md) -[*](interpolation.md) -[*](capitalist_software.md) -[*](ascii.md) -[*](wiby.md) -[*](just_werks.md) -[*](wow.md) -[*](productivity_cult.md) -[*](cpp.md) +[*](geek.md) +[*](finished.md) [*](usa.md) -[*](tech.md) -[*](sin.md) -[*](holy_war.md) -[*](byte.md) -[*](bytecode.md) -[*](downto.md) +[*](go.md) +[*](lrs_dictionary.md) +[*](disease.md) +[*](palette.md) +[*](ssao.md) +[*](just_werks.md) +[*](trusting_trust.md) +[*](graveyard.md) +[*](c_sharp.md) +[*](paywall.md) +[*](crow_funding.md) +[*](pd.md) +[*](bill_gates.md) +[*](marketing.md) +[*](digital_signature.md) +[*](stereotype.md) +[*](css.md) +[*](social_inertia.md) +[*](fight_culture.md) +[*](dodleston.md) +[*](cos.md) +[*](macrofucker.md) +[*](fantasy_console.md) +[*](paradigm.md) +[*](framework.md) +[*](lrs_wiki.md) +[*](dungeons_and_dragons.md) +[*](nationalism.md) +[*](pride.md) +[*](greenwashing.md) +[*](science.md) +[*](minigame.md) +[*](bazaar.md) +[*](npc.md) +[*](marxism.md) +[*](pi.md) +[*](demoscene.md) +[*](open_source.md) +[*](programming.md) +[*](distrohopping.md) +[*](mechanical.md) +[*](hero_culture.md) +[*](portability.md) +[*](no_knowledge_proof.md) +[*](unary.md) +[*](smallchesslib.md) +[*](game_of_life.md) +[*](real_number.md) +[*](anarch.md) +[*](doom.md) +[*](black.md) +[*](bootstrap.md) +[*](libre.md) +[*](wiki_style.md) +[*](hardware.md) +[*](crime_against_economy.md) +[*](javascript.md) +[*](physics.md) +[*](chess.md) +[*](music.md) +[*](zen.md) +[*](aliasing.md) +[*](backpropagation.md) +[*](memory_management.md) +[*](lambda_calculus.md) +[*](creative_commons.md) +[*](collapse.md) [*](arduboy.md) -[*](universe.md) -[*](newspeak.md) -[*](speech_synthesis.md) -[*](libertarianism.md) -[*](trom.md) +[*](holy_war.md) +[*](atheism.md) +[*](modern_software.md) +[*](computational_complexity.md) +[*](technology.md) +[*](used.md) +[*](ascii.md) +[*](kids_these_days.md) +[*](cracking.md) +[*](hw.md) +[*](future_proof.md) +[*](function.md) +[*](primitive_3d.md) +[*](netstalking.md) +[*](minesweeper.md) +[*](function.md) +[*](pedophilia.md) +[*](femoid.md) +[*](real_number.md) +[*](build_engine.md) +[*](math.md) +[*](capitalism.md) +[*](books.md) +[*](game_of_life.md) +[*](security.md) +[*](fascist.md) +[*](deferred_shading.md) +[*](freedom_distance.md) +[*](selflessness.md) +[*](firmware.md) +[*](smart.md) +[*](less_retarded_society.md) +[*](double_buffering.md) +[*](rsa.md) +[*](data_hoarding.md) +[*](p_vs_np.md) +[*](future_proof.md) +[*](www.md) +[*](unix_philosophy.md) +[*](minimalism.md) +[*](analog.md) +[*](altruism.md) +[*](rms.md) +[*](furry.md) +[*](cc0.md) +[*](ronja.md) +[*](interaction_net.md) +[*](portability.md) +[*](open_source.md) +[*](pseudorandomness.md) +[*](public_domain.md) +[*](avpd.md) +[*](digital.md) +[*](quine.md) +[*](forth.md) +[*](main.md) +[*](resnicks_termite.md) +[*](jedi_engine.md) +[*](software.md) +[*](anal_bead.md) diff --git a/raycasting.md b/raycasting.md index 6e8ab46..c42ca16 100644 --- a/raycasting.md +++ b/raycasting.md @@ -1,6 +1,6 @@ # Raycasting -In [computer graphics](graphics.md) raycasting refers to a rendering technique in which we determine which parts of the scene should be drawn according to which parts of the scene are hit by rays cast from the camera; it is a simpler version of **[raytracing](raytracing.md)**. The whole idea is based on the observation that we can trace rays of light that enter the camera by going BACKWARDS, i.e. instead of tracing light from light sources we rather start from the camera and go towards the parts of the scene that reflected the light (by which we ensure we are only considering the RELEVANT paths of light that actually end up hitting the camera) -- that is we are asking the question "in order for this screen pixel to light up, where would the light be coming from?", and then computing the answer to the question. A simplified way to quickly imagine what's going on is therefore to think of drawing the scene via "scanning" it with some kind of laser beam originating from the camera -- of course we do this [mathematically](math.md), using [analytic geometry](analytic_geometry.md), i.e. finding intersections of the rays with geometric shapes by solving algebraic equations. Despite perhaps sounding intimidating at first, raycasting is one of the [simplest](minimalism.md) rendering methods, and for that it is also quite elegant -- [we](lrs.md) definitely do recommend it. +In [computer graphics](graphics.md) raycasting refers to a rendering technique in which we determine which parts of the scene should be drawn according to which parts of the scene are hit by rays cast from the camera. We may also say it's a simpler version of the popular algorithm called **[raytracing](raytracing.md)**, or perhaps that raycasting is the initial idea of rendering via casting rays, which subsequently inspires many improvements and extensions like recursive rays (raytracing), [Monte Carlo](monte_carlo.md) sampling (pathtracing), using cones instead of lines (conetracting) etc. The whole idea is based on the observation that we can trace rays of light that enter the camera by going BACKWARDS, i.e. instead of tracing light from light sources we rather start from the camera and go towards the parts of the scene that reflected the light (by which we ensure we are only considering the RELEVANT paths of light that actually end up hitting the camera) -- that is we are asking the question "in order for this screen pixel to light up, where would the light be coming from?", and then computing the answer to the question. A simplified way to quickly imagine what's going on is therefore to think of drawing the scene via "scanning" it with some kind of laser beam originating from the camera -- of course we do this [mathematically](math.md), using [analytic geometry](analytic_geometry.md), i.e. finding intersections of the rays with geometric shapes by solving algebraic equations. Despite perhaps sounding intimidating at first, raycasting is one of the [simplest](minimalism.md) rendering methods, and for that it is also quite elegant -- [we](lrs.md) definitely do recommend it. Raycasting is an **image order** rendering method, meaning that we iterate over the pixels of the screen and for each determine its [color](color.md) (as opposed to object order methods that iterate over 3D objects that are then "pasted" to the screen). I.e. the image can be drawn in any order -- let's say from top left to bottom right -- and without drawing any pixel more than once or leaving out any. This is advantageous as we may leave out [double buffering](double_buffering.md) and save A LOT of memory on the extra frame buffer. We may also utilize for example [frameless rendering](frameless.md). All these attributes are why we consider raycasting so nice. @@ -510,4 +510,5 @@ And voila, this is what we get: - [raytracing](raytracing.md) - [pathtracing](pathtracing.md) - [conetracing](conetracing.md) -- [raymarching](raymarching.md) \ No newline at end of file +- [raymarching](raymarching.md) +- [3D rendering](3d_rendering.md) \ No newline at end of file diff --git a/shortcut_thinking.md b/shortcut_thinking.md index 8dd8a5b..2a59983 100644 --- a/shortcut_thinking.md +++ b/shortcut_thinking.md @@ -66,6 +66,22 @@ We should remember that this shortcut in fact means we oppose the evil behind it This is how capitalism will be able to sustain itself no matter what -- even if people slowly realized capitalism is bad, it will just be renamed to something else like "Progressive Lesbian Smart Communist [Modern](modern.md) Technologianism" -- it will be exactly the same as capitalism but people will accept it because it won't have the letters C, A, P, I, T, A, L, I, S and M in this exact succession in it. China for example has already done this by just renaming capitalism to "communism". +## Example Of Abuse No. 2: How Feminists Will Cage All Men + +Let's take a look at how [feminists](feminism.md) can achieve caging all men through shortcut thinking and slowly shifting the meaning of the term *sexual abuse*. + +In 1990 the definition of sexual abuse against a [woman](woman.md) might have been something like "PHYSICAL sexual actions against her will, for example touching her genitals, breasts, kissing her and so on". Here feminists start a campaign and force everyone to state they're against sexual abuse, and indeed, most people do because indeed it's not good to physically sexually bully someone, there is little reason for anyone to disagree. Here they establish a shortcut "sexual abuse = bad", which at this stage is not harmful yet. However they slowly start changing the definition of *sexual abuse*. + +By 2000 the new definition of sexual abuse may additionally also include VERBAL actions, such as asking a girl about her sexual life. Here we'll already starting to limit [free speech](free_speech.md) but most people didn't notice the subtle change in the definition of sexual abuse, they just remember they're against sexual abuse. + +By 2010 the definition of sexual abuse will also include ANY PHYSICAL action such as any touching at all -- if you touch a woman's hand against her will, you're committing sexual abuse. But most people still only remember they're against sexual abuse, whatever it means -- additionally the few people that notice and criticize the changes in definition start to be bullied for supporting sexual abuse or are told to shut up and not make big deal of a small change in definitions. The changes [happen slowly](slowly_boiling_the_frog.md) so that at no point people notice a sudden jump which they could protest -- individuals may protest on occasion but one man can do nothing and there will happen no sudden change that would synchronize a mass protest. + +By 2020 sexual abuse will include practically any action towards a woman which the woman dislikes in any way, such as making eye contact, talking, smiling, holding door open for her, sending her a friend request on social media sites and so on. Now men are bullied, they're scared of just meeting a woman and talking to her -- if the woman decides it's sexual abuse, it is. But if you ask anyone "Are you against sexual abuse?" of course he has to answer "yes" -- answering "no" is absurd because everyone is against sexual abuse, no matter that definition now is completely different from the original definition, it's just the power of words that can keep people approve of and support insanity. + +Soon enough it will be observed that practically all men are sexual abusers because sexual abuse now means just interacting with women and basically all men want to or even just have to interact with women in some way. Now feminists may say: since [gender studies](gender_studies.md) proved all men are sexually dangerous, it is "logical" that we have to cage all men, it would be insane to let predators run free, right? And just like that we arrive at our dystopia. + +If you think they can't do it, [you are wrong](yes_they_can.md). + ## See Also - [idiot fallacy](idiot_fallacy.md) diff --git a/ubi.md b/ubi.md index 452c556..fb10a4f 100644 --- a/ubi.md +++ b/ubi.md @@ -1,6 +1,6 @@ # Universal Basic Income -Universal basic income (UBI) is the idea that all people should get regular pay from the state without any conditions, i.e. even if they don't work, even if they are rich, criminals etc. It is a great idea and **[we](lrs.md) fully support it** as the first step towards the [ideal society](less_retarded_society.md) in which people don't have to work. As [automation](automation.md) takes away more and more jobs, it is being discussed more and experiments with UBI are being conducted, even though capitalist idiots rather try to invent more and more [bullshit jobs](bullshit_job.md) to keep people enslaved. +Universal basic income (UBI) is the idea that all people should get regular pay from the state without any conditions, i.e. even if they don't [work](work.md), even if they are rich, criminals etc. It is a great idea and **[we](lrs.md) fully support it** as the first step towards the [ideal society](less_retarded_society.md) in which people don't have to work. As [automation](automation.md) takes away more and more jobs, it is being discussed more and experiments with UBI are being conducted, even though capitalist idiots rather try to invent more and more [bullshit jobs](bullshit_job.md) to keep people enslaved. UBI that itself covers all basic needs is called full, otherwise it is called partial. UBI subscribes to the idea that **the goal of progress is to eliminate the need for work**, which is correct -- we should leave all work to machines eventually, that's why we started civilization. This doesn't mean we can't work, just that we aren't obliged. @@ -15,6 +15,7 @@ Advantages of UBI: - **People will seize to be slaves of capitalist employers** as it will no longer be mandatory to work somewhere. Nowadays people have to accept shitty working conditions because they have no other choice. They can't go elsewhere because it is the same everywhere or their conditions don't allow them to move, every employer abuses his employees as much as possible so people today can only choose their slave master but they can't choose not being slaves. **If people can actually leave, employers will have to offer good conditions to keep people working for them**. It may also lead to e.g. greater freedom from consumerism as people can e.g. decide to not use certain bad technology which they are nowadays forced to use by employers. - **It will greatly suppress [bullshit jobs](bullshit_job.md)** and undesirable phenomena such as the [antivirus paradox](antivirus_paradox.md). People who stop doing bullshit jobs will be able to actually focus on useful things. - **Suffering of many people will be lowered or eliminated**. Simple as that. +- **We will solve the issue of societal aging and prevent an otherwise likely [collapse](collapse.md) caused by it** -- increasing of average age of population due to advance of medicine along with decreasing fertility and willingness of people to have children is becoming a big, threatening issue; soon there will be too many old people incapable of working and too few young people to take care of everything. Establishing UBI will allow us to fully accept and utilize automation and eliminate all unnecessary work, making society be able to function with only a few people actually working. In this sense rejecting UBI is a nothing less than a societal threat. - **We will actually save money and other resources** because the system will simplify a lot. Nowadays we have complex bureaucracy and commissions that judge who can get social welfare, who can get disability pensions etc. Huge amounts of money are wasted to just keep unnecessary jobs existing, e.g. people have to commute to their bullshit jobs, which implies cars and roads have to be maintained more, also workplaces have to be maintained, cleaned, maintain work safety, etcetc. If everyone just gets money to live, we can save on this bureaucracy, maintenance, commissions, on doctor examinations, caring about the homeless, maintaining hugely complex laws etc. If people become less stressed, mental health will also improve and we will save money on treatment of mentally ill people. Money may also be saved on organization of worker unions as they may become much less important etc. - **Society will become more [ecological](ecology.md)** thanks to the elimination of bullshit and saving resources, as mentioned above. - **People will become less stressed**, happier, will have security and as a result perhaps even become more "productive" (this has been confirmed by some experiments). diff --git a/wiki_pages.md b/wiki_pages.md index 6428805..60e4133 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)** (25) -- **[3d_model](3d_model.md)** (256) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (590) -- **[42](42.md)** (14) -- **[4chan](4chan.md)** (30) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (390) -- **[adam_smith](adam_smith.md)** (35) -- **[ai](ai.md)** (30) -- **[algorithm](algorithm.md)** (367) -- **[aliasing](aliasing.md)** (61) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (6) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (107) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (31) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (8) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (19) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (16) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (206) -- **[ashley_jones](ashley_jones.md)** (27) -- **[assembly](assembly.md)** (262) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (23) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autostereogram](autostereogram.md)** (120) -- **[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)** (25) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (31) -- **[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)** (197) -- **[bloat_monopoly](bloat_monopoly.md)** (13) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (35) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (49) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (383) -- **[c_pitfalls](c_pitfalls.md)** (156) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2155) -- **[cache](cache.md)** (27) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (25) -- **[capitalism](capitalism.md)** (156) -- **[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)** (15) -- **[censorship](censorship.md)** (49) -- **[chaos](chaos.md)** (109) -- **[charity_sex](charity_sex.md)** (6) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (8) -- **[chess](chess.md)** (303) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (25) -- **[coc](coc.md)** (19) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (29) -- **[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)** (182) -- **[consumerism](consumerism.md)** (16) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (56) -- **[corporation](corporation.md)** (20) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[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)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[czechia](czechia.md)** (26) -- **[data_hoarding](data_hoarding.md)** (31) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (126) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (17) -- **[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)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (38) -- **[disease](disease.md)** (49) -- **[distance](distance.md)** (129) -- **[distrohopping](distrohopping.md)** (10) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (35) -- **[doom](doom.md)** (59) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (30) -- **[drummyfish](drummyfish.md)** (40) -- **[duke3d](duke3d.md)** (29) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (32) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (22) -- **[earth](earth.md)** (67) -- **[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)** (21) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (74) -- **[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)** (18) -- **[evil](evil.md)** (26) -- **[exercises](exercises.md)** (345) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (4) -- **[fail_ab](fail_ab.md)** (45) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (271) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (56) -- **[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)** (54) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (79) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (38) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (76) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (17) -- **[freedom_distance](freedom_distance.md)** (4) -- **[fsf](fsf.md)** (26) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (32) -- **[function](function.md)** (138) -- **[furry](furry.md)** (19) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (45) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (37) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (72) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (59) -- **[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)** (36) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (31) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (78) -- **[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)** (18) -- **[hexadecimal](hexadecimal.md)** (37) -- **[history](history.md)** (104) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (220) -- **[human_language](human_language.md)** (30) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (19) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (25) -- **[internet](internet.md)** (107) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (116) -- **[island](island.md)** (49) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (128) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (97) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (96) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (23) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (7) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (40) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (4) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (13) -- **[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)** (145) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (126) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (57) -- **[life](life.md)** (12) -- **[lil](lil.md)** (21) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (71) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (44) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (17) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[loquendo](loquendo.md)** (14) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (163) -- **[lrs_dictionary](lrs_dictionary.md)** (114) -- **[lrs_wiki](lrs_wiki.md)** (41) -- **[luke_smith](luke_smith.md)** (18) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (6) -- **[main](main.md)** (141) -- **[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)** (12) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (80) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (39) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (16) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (59) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (71) -- **[netstalking](netstalking.md)** (9) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (11) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (61) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (7) -- **[number](number.md)** (301) -- **[often_confused](often_confused.md)** (127) -- **[often_misunderstood](often_misunderstood.md)** (15) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (386) -- **[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)** (73) -- **[optimization](optimization.md)** (100) -- **[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)** (57) -- **[people](people.md)** (71) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (78) -- **[portability](portability.md)** (183) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (4) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (28) -- **[procgen](procgen.md)** (352) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (44) -- **[programming_language](programming_language.md)** (174) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (17) -- **[progress](progress.md)** (30) -- **[project](project.md)** (31) -- **[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)** (150) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (52) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1780) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (10) -- **[raycasting](raycasting.md)** (300) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (109) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (207) -- **[rgb332](rgb332.md)** (95) -- **[rgb565](rgb565.md)** (32) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (55) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (24) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (22) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (17) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (19) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (16) -- **[shit](shit.md)** (31) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (71) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (182) -- **[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)** (10) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (39) -- **[soyence](soyence.md)** (71) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (79) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (162) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (212) -- **[suicide](suicide.md)** (13) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (71) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (8) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (20) -- **[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)** (29) -- **[transistor](transistor.md)** (29) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (82) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (46) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (208) -- **[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)** (24) -- **[usa](usa.md)** (62) -- **[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)** (54) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (15) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (213) -- **[wiki_style](wiki_style.md)** (76) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (96) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (55) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (154) -- **[work](work.md)** (48) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (112) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (103) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (29) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (31) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file +**[100r](100r.md)** (3) -- **[21st_century](21st_century.md)** (25) -- **[3d_model](3d_model.md)** (256) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (590) -- **[42](42.md)** (14) -- **[4chan](4chan.md)** (30) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (390) -- **[adam_smith](adam_smith.md)** (35) -- **[ai](ai.md)** (30) -- **[algorithm](algorithm.md)** (367) -- **[aliasing](aliasing.md)** (61) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (6) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (107) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (31) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (8) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (19) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (16) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (206) -- **[ashley_jones](ashley_jones.md)** (27) -- **[assembly](assembly.md)** (262) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (23) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autostereogram](autostereogram.md)** (120) -- **[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)** (25) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (31) -- **[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)** (197) -- **[bloat_monopoly](bloat_monopoly.md)** (13) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (35) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (49) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (383) -- **[c_pitfalls](c_pitfalls.md)** (156) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2155) -- **[cache](cache.md)** (27) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (25) -- **[capitalism](capitalism.md)** (156) -- **[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)** (15) -- **[censorship](censorship.md)** (49) -- **[chaos](chaos.md)** (109) -- **[charity_sex](charity_sex.md)** (6) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (8) -- **[chess](chess.md)** (303) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (25) -- **[coc](coc.md)** (19) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (29) -- **[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)** (182) -- **[consumerism](consumerism.md)** (16) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (56) -- **[corporation](corporation.md)** (20) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[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)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[czechia](czechia.md)** (26) -- **[data_hoarding](data_hoarding.md)** (31) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (126) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (17) -- **[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)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (38) -- **[disease](disease.md)** (49) -- **[distance](distance.md)** (129) -- **[distrohopping](distrohopping.md)** (10) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (35) -- **[doom](doom.md)** (59) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (30) -- **[drummyfish](drummyfish.md)** (40) -- **[duke3d](duke3d.md)** (29) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (32) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (22) -- **[earth](earth.md)** (67) -- **[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)** (21) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (74) -- **[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)** (18) -- **[evil](evil.md)** (26) -- **[exercises](exercises.md)** (345) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (4) -- **[fail_ab](fail_ab.md)** (45) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (271) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (56) -- **[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)** (54) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (79) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (38) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (76) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (17) -- **[freedom_distance](freedom_distance.md)** (4) -- **[fsf](fsf.md)** (26) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (32) -- **[function](function.md)** (138) -- **[furry](furry.md)** (19) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (45) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (37) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (72) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (59) -- **[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)** (36) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (31) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (78) -- **[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)** (18) -- **[hexadecimal](hexadecimal.md)** (37) -- **[history](history.md)** (104) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (220) -- **[human_language](human_language.md)** (30) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (19) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (25) -- **[internet](internet.md)** (107) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (116) -- **[island](island.md)** (49) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (128) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (97) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (96) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (23) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (7) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (40) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (4) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (13) -- **[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)** (145) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (126) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (57) -- **[life](life.md)** (12) -- **[lil](lil.md)** (21) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (71) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (44) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (17) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[loquendo](loquendo.md)** (14) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (163) -- **[lrs_dictionary](lrs_dictionary.md)** (114) -- **[lrs_wiki](lrs_wiki.md)** (41) -- **[luke_smith](luke_smith.md)** (18) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (6) -- **[main](main.md)** (141) -- **[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)** (12) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (80) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (39) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (16) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (59) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (71) -- **[netstalking](netstalking.md)** (9) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (11) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (63) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (7) -- **[number](number.md)** (301) -- **[often_confused](often_confused.md)** (127) -- **[often_misunderstood](often_misunderstood.md)** (15) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (386) -- **[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)** (73) -- **[optimization](optimization.md)** (100) -- **[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)** (57) -- **[people](people.md)** (71) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (78) -- **[portability](portability.md)** (183) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (4) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (28) -- **[procgen](procgen.md)** (352) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (44) -- **[programming_language](programming_language.md)** (174) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (17) -- **[progress](progress.md)** (30) -- **[project](project.md)** (31) -- **[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)** (150) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (52) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1780) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (10) -- **[raycasting](raycasting.md)** (512) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (109) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (207) -- **[rgb332](rgb332.md)** (95) -- **[rgb565](rgb565.md)** (32) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (55) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (24) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (22) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (17) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (19) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (16) -- **[shit](shit.md)** (31) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (71) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (182) -- **[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)** (10) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (39) -- **[soyence](soyence.md)** (71) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (116) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (162) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (212) -- **[suicide](suicide.md)** (13) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (71) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (8) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (20) -- **[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)** (29) -- **[transistor](transistor.md)** (29) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (82) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (46) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (208) -- **[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)** (24) -- **[usa](usa.md)** (62) -- **[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)** (54) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (15) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (211) -- **[wiki_style](wiki_style.md)** (76) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (96) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (55) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (154) -- **[work](work.md)** (48) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (112) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (103) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (29) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (31) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file diff --git a/wiki_stats.md b/wiki_stats.md index 7529bc8..2dc898b 100644 --- a/wiki_stats.md +++ b/wiki_stats.md @@ -3,11 +3,11 @@ This is an autogenerated article holding stats about this wiki. - number of articles: 593 -- number of commits: 879 -- total size of all texts in bytes: 4303045 -- total number of lines of article texts: 32742 +- number of commits: 880 +- total size of all texts in bytes: 4313662 +- total number of lines of article texts: 32993 - number of script lines: 294 -- occurrences of the word "person": 7 +- occurrences of the word "person": 8 - occurrences of the word "nigger": 93 longest articles: @@ -27,68 +27,80 @@ longest articles: - [bloat](bloat.md): 36K - [internet](internet.md): 36K - [woman](woman.md): 36K +- [raycasting](raycasting.md): 36K - [main](main.md): 32K - [history](history.md): 32K - [random_page](random_page.md): 32K - [game](game.md): 32K -- [optimization](optimization.md): 32K top 50 5+ letter words: - which (2431) - there (1866) - people (1663) -- example (1454) -- other (1321) -- number (1237) -- about (1167) +- example (1455) +- other (1323) +- number (1238) +- about (1169) - software (1157) - program (981) -- because (906) +- because (907) - their (893) - would (889) - language (833) - called (829) -- being (815) -- something (812) +- being (816) +- something (813) - things (806) -- numbers (801) -- simple (773) +- numbers (802) +- simple (778) - computer (757) - without (727) -- programming (717) -- function (711) +- programming (718) +- function (713) - these (684) -- different (680) -- however (670) +- different (681) +- however (673) - system (651) -- world (629) +- world (630) - doesn (620) -- should (617) -- while (595) -- point (590) +- should (618) +- while (601) +- point (594) - games (584) -- society (580) -- drummyfish (564) -- simply (557) -- using (553) -- still (552) +- society (583) +- drummyfish (565) +- simply (559) +- using (555) +- still (553) - though (550) -- possible (541) +- possible (542) - memory (525) - similar (520) - https (517) -- course (512) -- value (504) -- always (499) +- course (515) +- value (507) +- always (500) - technology (498) -- basically (489) +- basically (490) - really (486) -- probably (476) +- probably (478) latest changes: ``` +Date: Mon Sep 9 14:10:06 2024 +0200 + free_speech.md + fun.md + nigger.md + often_confused.md + random_page.md + raycasting.md + sqrt.md + unix.md + wiki_pages.md + wiki_stats.md + woman.md Date: Sun Sep 8 02:25:27 2024 +0200 lrs_dictionary.md random_page.md @@ -108,20 +120,6 @@ Date: Sat Sep 7 16:47:08 2024 +0200 steve_jobs.md wiki_pages.md wiki_stats.md -Date: Fri Sep 6 15:31:02 2024 +0200 - ai.md - doom.md - exercises.md - free_software.md - gnu.md - law.md - lgbt.md - main.md - optimization.md - random_page.md - wiki_pages.md - wiki_stats.md - windows.md ``` most wanted pages: @@ -151,7 +149,7 @@ most popular and lonely pages: - [lrs](lrs.md) (299) - [capitalism](capitalism.md) (248) -- [c](c.md) (224) +- [c](c.md) (225) - [bloat](bloat.md) (214) - [free_software](free_software.md) (179) - [game](game.md) (142) @@ -161,12 +159,12 @@ most popular and lonely pages: - [computer](computer.md) (99) - [kiss](kiss.md) (98) - [modern](modern.md) (96) +- [fun](fun.md) (94) - [gnu](gnu.md) (93) -- [fun](fun.md) (93) - [linux](linux.md) (92) +- [programming](programming.md) (91) - [censorship](censorship.md) (91) -- [programming](programming.md) (90) -- [math](math.md) (88) +- [math](math.md) (89) - [hacking](hacking.md) (83) - [fight_culture](fight_culture.md) (83) - [free_culture](free_culture.md) (82) @@ -176,8 +174,8 @@ most popular and lonely pages: - [art](art.md) (79) - [public_domain](public_domain.md) (77) - [corporation](corporation.md) (77) +- [foss](foss.md) (76) - [programming_language](programming_language.md) (75) -- [foss](foss.md) (75) - [internet](internet.md) (73) - ... - [atan](atan.md) (5) diff --git a/woman.md b/woman.md index fa912a7..a885abe 100644 --- a/woman.md +++ b/woman.md @@ -108,7 +108,7 @@ Here is a list of almost all historically notable women (this is NOT cherrypicke - **Emily Wilding Davison**: injured an innocent horse by jumping under it in a protest. - **Eve of the Bible**: achieved probably the biggest fuck up in [history](history.md), she did the single one thing she was forbidden from doing without even gaining much benefit from it, she ate some kind of [God](god.md) forbidden fruit, enraged God and doomed all people who will ever live to be banished from paradise :D - **Helen of Troy**: caused the Troy war. -- **Hermione Granger**: smart girl, also fictional (these two attributes seem to go together in girls). +- **Hermione Granger**: smart girl, also fictional (these two attributes seem to go together in girls). { I kinda liked Luna Lovegood though <3 ~drummyfish } - **Jack The Ripper's victims**: prostitutes famous for being killed by a famous serial killer. - **J. K. Rowling**: woman who wrote 7 books on a toilet paper because she didn't have money for normal paper, pretty impressive. - **Joan of Arc**: [militant](military.md) nationalist [fascist](fascism.md), basically Christian [jihadist](jihad.md).