From bf2ed8760e7b2fe57b46db9fd011c5c650d9f409 Mon Sep 17 00:00:00 2001 From: Miloslav Ciz Date: Tue, 14 May 2024 13:35:32 +0200 Subject: [PATCH] Update --- books.md | 2 +- computer.md | 2 +- exercises.md | 6 +- fsf.md | 2 +- minimalism.md | 5 +- network.md | 160 +++ oop.md | 2 +- random_page.md | 3412 ++++++++++++++++++++++---------------------- unix_philosophy.md | 2 +- wiki_pages.md | 2 +- wiki_stats.md | 78 +- woman.md | 1 + 12 files changed, 1919 insertions(+), 1755 deletions(-) create mode 100644 network.md diff --git a/books.md b/books.md index 044dbfb..09b8515 100644 --- a/books.md +++ b/books.md @@ -15,7 +15,7 @@ Here there will be a constantly WIP list of [books](book.md) that might be of in - **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. - **Industrial Society and Its Future** (Kaczynski, 1995): A bit boring read by the famous [Unabomber](ted_kaczynski.md), criticizing rapid technology advancement, but an important read for those who are more into politics, if only for the memes :) - **ISO/IEC 9899:1999** (1999): Specification of the version of [C](c.md) programming language that [suckless](suckless.md)/[LRS](lrs.md) very often uses. It's nice to skim over it to get an idea how a language is actually specified. You'll also probably learn something new about C in the process. -- **Just for Fun** (2001): Official biography of [Linux Torvalds](torvalds.md), the original creator of [Linux](linux.md). It recounts valuable historical moments with comments by Linus himself, revealing many interesting details and also a bit of Torvalds' personality (shows some of his evil side). +- **Just for Fun** (2001): Official biography of [Linus Torvalds](torvalds.md), the original creator of [Linux](linux.md). It recounts valuable historical moments with comments by Linus himself, revealing many interesting details and also a bit of Torvalds' personality (shows some of his evil side). - **Larousse Desk Reference Encyclopedia** (1995): Very nice single-volume [encyclopedia](encyclopedia.md) that's sorted by topic, with many nice illustrations, published back then when censorship wasn't so extreme, provides overview of all topics of human knowledge. - **Masters of Doom** (Kushner, 2003): Another nice book for [Doom](doom.md) fans, this time not really technical but rather just retelling the story of the game's development -- quite comfy, a lot if interesting trivia. - **[The Jargon File](jargon_file.md)** (1975...): [Hacker culture](hacking.md) dictionary, a lot of wisdom, inside jokes, and things related to oldschool hacking. diff --git a/computer.md b/computer.md index 5d2f4df..489dbda 100644 --- a/computer.md +++ b/computer.md @@ -45,7 +45,7 @@ Computers are theoretically studied by [computer science](compsci.md). The kind **The power of computers is mathematically limited**, [Alan Turing](turing.md) mathematically proved that there exist problems that can never be completely solved by any [algorithm](algorithm.md), i.e. there are problems a computer (including our [brain](brain.md)) will never be able to solve (even if solution exists). This is related to the fact that the power of mathematics itself is limited in a similar way (see [Godel's theorems](incompleteness_theorems.md)). Turing also invented the theoretical model of a computer called the [Turing machine](turing_machine.md). Besides the mentioned theoretical limitation, many solvable problems may take too long to compute, at least with computers we currently know (see [computational complexity](computational_complexity.md) and [P vs NP](p_vs_np.md)). -And let's also mention some [curious](interesting.md) **statistics** and facts about computers as of the year 2024. The fist computer in modern sense of the word is frequently considered to have been the Analytical Engine designed in 1837 by an Englishman Charles Babbage, a general purpose [mechanical computer](mechanical_computer.md) which he however never constructed. After this the computers such as the Z1 (1938) and Z3 (1941) of a German inventor Konrad Zuse are considered to be the truly first "modern" computers. Shortly after the year 2000 the number of US households that had a computer surpassed 50%. The fastest [supercomputer](supercomputer.md) of today is Frontier (Tennessee, [USA](usa.md)) which achieved computation speed of 1.102 exaFLOPS (that is over 10^18 [floating point](float.md) operations per second) with power 22.7 MW, using the [Linux](linux.md) kernel (like all top 500 supercomputers). Over time transistors have been getting much smaller -- there is the famous **[Moore's law](moores_law.md)** which states that number of transistors in a chip doubles about every two years. Currently we are able to manufacture [transistors](transistor.md) as small as a few nanometers and chips have billions of them. { There's some blurriness about exact size, apparently the new "X nanometers" labels are just [marketing](marketing.md) lies. ~drummyfish } +And let's also mention some [curious](interesting.md) **statistics** and facts about computers as of the year 2024. The fist computer in modern sense of the word is frequently considered to have been the Analytical Engine designed in 1837 by an Englishman Charles Babbage, a general purpose [mechanical computer](mechanical_computer.md) which he however never constructed. After this the computers such as the Z1 (1938) and Z3 (1941) of a German inventor Konrad Zuse are considered to be the truly first "modern" computers. Shortly after the year 2000 the number of US households that had a computer surpassed 50%. The fastest [supercomputer](supercomputer.md) of today is Frontier (Tennessee, [USA](usa.md)) which achieved computation speed of 1.102 exaFLOPS (that is over 10^18 [floating point](float.md) operations per second) with power 22.7 MW, using [Linux](linux.md) as its kernel (like all top 500 supercomputers). Over time transistors have been getting much smaller -- there is the famous **[Moore's law](moores_law.md)** which states that number of transistors in a chip doubles about every two years. Currently we are able to manufacture [transistors](transistor.md) as small as a few nanometers and chips have billions of them. { There's some blurriness about exact size, apparently the new "X nanometers" labels are just [marketing](marketing.md) lies. ~drummyfish } ## Typical Computer diff --git a/exercises.md b/exercises.md index feb4d99..8c25a82 100644 --- a/exercises.md +++ b/exercises.md @@ -177,7 +177,8 @@ Bear in mind the main purpose of this quiz is for you to test your understanding 74. If your computer resides in a private network that's connected to the Internet through a router that performs network address translation ([NAT](nat.md), common with many ISPs), why you typically cannot host a server that would be publicly accessible from the outside [Internet](internet.md)? I.e. explain how NAT works and say what's preventing outside computers from reaching your server behind it. How can you make your server work even behind NAT? 75. We know that in C (C99) we can kind of use arrays and pointers "interchangeably", we are taught they are really the same. However show at least one example of when the difference matters, i.e. considering e.g. `int *a;` vs `int a[N];` write some expressions with `a` in it where the distinction will be significant. 76. Write sed substitution command (the one that starts with `s/`) that will convert Markdown links (format: `[link text](destination)`) to HTML links (format: `link text`). You probably need [regular expression](regex.md) capture groups for this. -77. Did you enjoy this quiz? +77. Give at least three examples of palindromic English words (read the same forward and backwards), each at least four letters long. +78. Did you enjoy this quiz? ### Answers @@ -257,7 +258,8 @@ Bear in mind the main purpose of this quiz is for you to test your understanding 74. Behind NAT you're in a private network, computers inside it have no public addresses (their IP addresses are in the private range and potentially same as addresses of computers in other private networks), only the router has a public IP address that's unique within the Internet, i.e. from Internet's point of view there is only one device connected -- your router. Computers behind this router are invisible, so no one can connect to the server that's behind it. The possibility of you having a two way communication from within this private network with the outside Internet is enabled by the router who communicates for you when you ask for it, i.e. when you (from inside the private network) initiate the connection -- the router then creates the connection for you and talks to the outside world for you (translating your private address to its public address, hence *network address translation*). But no one can initiate communication from the outside, the router wouldn't know to whom he wants to speak. This can be solved e.g. by port forwarding (setting some default computer to which communication from outside will be redirected) or tunneling (keeping a constant connection with some outside proxy server that's listening to requests and resending them). 75. For example `sizeof(a)`: if `a` is a pointer, size of pointer will be returned whereas in case of array the size of the whole array will be returned. Similarly e.g. `&a`: if `a` is a pointer, we'll get a pointer to pointer (generally a different address) whereas in case of array `a` and `&a` gives the same address -- that of the array's first element (though the type will be different). 76. Something like `s/\[\([^]]*\)\](\([^)]*\))/\1<\/a>/g`. -77. yes +77. For example: poop, boob, civic, deed, level, rotor, madam, refer, stats etc. +78. yes ## Other diff --git a/fsf.md b/fsf.md index d175c77..36e2782 100644 --- a/fsf.md +++ b/fsf.md @@ -8,7 +8,7 @@ FSF stands for Free Software Foundation, a non-profit organization established b TODO -In September 2019 Richard Stallman, the founder and president of the FSF, was cyberbullied and [cancelled](cancel_culture.md) by SJW fascists for simply stating a rational but unpopular opinion on child sexuality and was forced to resign as a president. This might have been the last nail in the coffin for the FSF. The new president would come to be [Geoffrey Knauth](geoffrey_knauth.md), an idiot who spent his life writing [proprietary](proprietary.md) software in such shit as [C#](c_sharp.md) and helped built military software for killing people (just read his cv online). What's next, a porn actor becoming the next Pope? Would be less surprising. +In September 2019 Richard Stallman, the founder and president of the FSF, was cyberbullied and [cancelled](cancel_culture.md) by SJW fascists for simply stating a rational but unpopular opinion on child sexuality and was forced to resign as a president. This might have been the last nail in the coffin for the FSF. The new president would come to be [Geoffrey Knauth](geoffrey_knauth.md), an idiot who spent his life writing [proprietary](proprietary.md) software in such shit as [C#](c_sharp.md) and helped make [military](military.md) software for killing people (just read his cv online). What's next, a porn actor becoming the next Pope? Would be less surprising. After this the FSF definitely died. diff --git a/minimalism.md b/minimalism.md index 6f9d122..f462f76 100644 --- a/minimalism.md +++ b/minimalism.md @@ -36,10 +36,10 @@ Up until recently in history every engineer would tell you that *the better mach Under [capitalism](capitalism.md) technological minimalism is suppressed in the mainstream as it goes against [corporate](corporation.md) interests, i.e. those of having monopoly control over technology, even if such technology is "[FOSS](foss.md)" (which then becomes just a cool brand, see [openwashing](openwashing.md)). We may, at best, encounter a "shallow" kind of minimalism, so called [pseudominimalism](pseudominimalism.md) which only tries to make things appear minimal, e.g. aesthetically, and hides ugly overcomplicated internals under the facade. [Apple](apple.md) is infamous for this [shit](shit.md). -There are movements such as [appropriate technology](appropriate_tech.md) (described by E. F. Schumacher in a work named *Small Is Beautiful: A Study of Economics As If People Mattered*) advocating for small, efficient, decentralized technology, because that is what best helps people. - **Does minimalism mean we have to give up the nice things?** Well, not really, it is more about giving up the [bullshit](bullshit.md), getting rid of addiction and changing an attitude. People addicted to [modern](modern.md) consumerist technology often worry that with minimalism they will lose their drug, typically [games](game.md) or something similar. Remember that with minimalism **we can still have technology for entertainment**, just a non-consumerist one -- instead of consuming a new game each month we may rather focus on creating deeper games that may last longer, e.g. those of a [easy to learn, hard to master](easy_to_learn_hard_to_master.md) kind and building communities around them, or on modifying existing games rather than creating new ones from scratch over and over. Sure, technology would LOOK different, our computer interfaces may become less of a thing of fashion, our games may rely more on aesthetics than realism, but ultimately minimalism can be seen just as trying to achieve the same effect while minimizing waste. If you've been made addicted to bullshit such as buying a new GPU each month so that you can run games at 1000 FPS at progressively higher resolution then of course yes, you will have to suffer a bit of a withdrawal just as a heroin addict suffers when quitting the drug, but just as him in the end you'll be glad you did it. +Remember, you can't lose if you don't play. + ## Importance Of Minimalism: Simplicity Brings Freedom It can't be stressed enough that minimalism is absolutely required for technological freedom, i.e. people having, in **practical** ways, control over their tools. While in today's society it is important to have legal freedoms, i.e. support [free software](free_software.md), we must not forget that this isn't enough, a freedom on paper means nothing if it can't be practiced. We need both legal AND [de facto](de_facto.md) freedom over technology, the former being guaranteed by a free [license](license.md), the latter by minimalism. Minimal, simple technology will increase the pool of people and parties who may practice the legal freedoms -- i.e. those to use, study, modify and share -- and therefore ensure that the technology will be developed according to what people need, NOT according to what a corporation needs (which is usually the opposite). @@ -52,5 +52,6 @@ Minimalism and simplicity increases freedom even of [proprietary](proprietary.md ## See Also +- [KISS](kiss.md) - [primitivism](primitivism.md) - [single instruction computer](single_instruction.md) \ No newline at end of file diff --git a/network.md b/network.md new file mode 100644 index 0000000..3508ed4 --- /dev/null +++ b/network.md @@ -0,0 +1,160 @@ +# Network + +TODO + +## Code Examples + +First let's try writing some **UDP** C program under [Unix](unix.md). Remember that UDP is the unreliable protocol, so it's possible our messages may get lost or distorted, but in programs that can handle some losses this is the faster and more KISS way. Our program will be peer-to-peer, it will create two sockets, one listening and one sending. It will make a few message exchange turns, in each turn it will send something to its partner, it will check if it itself got any message and then will wait for some time before the next round. Note that we will use a non-blocking receiving socket, i.e. checking if we have any messages won't pause our program if there is nothing to be received, we'll simply move on if there is nothing (that's how realtime games may do it, but other kinds of server may rather a use blocking socket if they intend to do nothing while waiting for a message). Also pay attention to the fact that the program will choose its port number based on a one letter "name" we give to the program -- this is so that if we test the programs on the same computer (where both will have the same IP address), they will choose different ports (different processes on the same computer cannot of course use the same port). + +``` +#include +#include // for sleep + +#include +#include + +#define BUFFER_LEN 8 +#define PORT_BASE 1230 + +// run as ./program partner_addr partner_letter my_letter + +char buffer[BUFFER_LEN + 1]; // extra space for zero terminator +char name; // name of this agent (single char) +int sockIn = -1, sockOut = -1; // receive/send socket file descriptors + +void error(const char *msg) +{ + printf("%c: ERROR, %s\n",name,msg); + + if (sockIn >= 0) + close(sockIn); + + if (sockOut >= 0) + close(sockOut); + + exit(1); +} + +int main(int argc, char **argv) +{ + if (argc < 4) + error("give me correct arguments bitch"); + + name = argv[3][0]; + char *addrStrDst = argv[1]; + int portSrc = PORT_BASE + name, // different name => different port + portDst = PORT_BASE + argv[2][0]; + + struct sockaddr_in addrSrc, addrDst; + + sockIn = socket(AF_INET,SOCK_DGRAM | SOCK_NONBLOCK,IPPROTO_UDP); + + if (sockIn < 0) + error("couldn't create listen socket"); + + sockOut = socket(AF_INET,SOCK_DGRAM,IPPROTO_UDP); + + if (sockOut < 0) + error("couldn't create send socket"); + + addrSrc.sin_family = AF_INET; + addrSrc.sin_port = htons(portSrc); + addrSrc.sin_addr.s_addr = htonl(INADDR_ANY); + + if (bind(sockIn,(struct sockaddr *) &addrSrc,sizeof(addrSrc)) < 0) + error("couldn't bind listen socket"); + + addrDst.sin_family = AF_INET; + addrDst.sin_port = htons(portDst); + + if (inet_aton(addrStrDst,&addrDst.sin_addr) == 0) + error("couldn't translate address"); + + printf("%c: My name is %c, listening on port %d, " + "gonna talk to %c (address %s, port %d).\n", + name,name,portSrc,argv[2][0],addrStrDst,portDst); + + for (int i = 0; i < 4; ++i) + { + printf("%c: Checking messages...\n",name); + + int len = recv(sockIn,buffer,BUFFER_LEN,0); + + if (len > 0) + { + buffer[len] = 0; + printf("%c: Got \"%s\"\n",name,buffer); + } + else + printf("%c: Nothing.\n",name); + + for (int j = 0; j < BUFFER_LEN; ++j) // make some gibberish message + buffer[j] = 'a' + (name + i * 3 + j * 2) % 26; + + printf("%c: Sending \"%s\"\n",name,buffer); + + if (sendto(sockOut,buffer,BUFFER_LEN,0, + (struct sockaddr *) &addrDst,sizeof(addrDst)) < 0) + printf("%c: Couldn't send it!\n",name); + + printf("%c: Waiting...\n",name); + usleep(2000000); + } + + printf("%c: That's enough, bye.\n",name); + + close(sockIn); + close(sockOut); + + return 0; +} +``` + +We can test this for example like this: + +``` +./program 127.0.0.1 A B & { sleep 1; ./program 127.0.0.1 B A; } & +``` + +Which may print out something like this: + +``` +B: My name is B, listening on port 1296, gonna talk to A (address 127.0.0.1, port 1295). +B: Checking messages... +B: Nothing. +B: Sending "oqsuwyac" +B: Waiting... +A: My name is A, listening on port 1295, gonna talk to B (address 127.0.0.1, port 1296). +A: Checking messages... +A: Nothing. +A: Sending "nprtvxzb" +A: Waiting... +B: Checking messages... +B: Got "nprtvxzb" +B: Sending "rtvxzbdf" +B: Waiting... +A: Checking messages... +A: Got "rtvxzbdf" +A: Sending "qsuwyace" +A: Waiting... +B: Checking messages... +B: Got "qsuwyace" +B: Sending "uwyacegi" +B: Waiting... +A: Checking messages... +A: Got "uwyacegi" +A: Sending "tvxzbdfh" +A: Waiting... +B: Checking messages... +B: Got "tvxzbdfh" +B: Sending "xzbdfhjl" +B: Waiting... +A: Checking messages... +A: Got "xzbdfhjl" +A: Sending "wyacegik" +A: Waiting... +B: That's enough, bye. +A: That's enough, bye. +``` + +TODO: TCP \ No newline at end of file diff --git a/oop.md b/oop.md index 4a3151e..f37bea3 100644 --- a/oop.md +++ b/oop.md @@ -2,7 +2,7 @@ *"I invented the term 'object oriented' and [C++](cpp.md) was not what I had in mind"* --[Alan Kay](alan_kay.md), inventor of OOP -Object-oriented programming (OOP, also object-obsessed programming, objectfuscated programming, capital-oriented programming or artificial inelegance) is a [programming paradigm](paradigm.md) that tries to model reality as a collection of abstract objects that communicate with each other and obey some specific rules. While the idea itself isn't bad and can be useful in certain cases and while pure OOP in very old languages like [Smalltalk](smalltalk.md) may have even been quite elegant, by later adoption by [capitalist businesses](capitalist_software.md) the concept has been extremely twisted and degenerated to unbelievable levels -- **OOP has become extremely overused, extremely badly implemented and downright forced in programming languages** that nowadays try to apply this [abstraction](abstraction.md) to every single program and concept, creating [anti-patterns](anti_pattern.md), unnecessary issues and of course greatly significant amounts of [bloat](bloat.md). [We](lrs.md) therefore see the OOP of today as a **[cancer](cancer.md) of programming**. OOP was basically a software development fashion wave that scarred the industry for decades, it has poisoned minds of several generations. Nowadays despite OOP still keeping many fans the critical stance towards it isn't even controversial anymore, many others have voiced the criticism over and over, usually the most competent programmers like [Richard Stallman](rms.md) and [Linux Torvalds](torvalds.md) and groups like [suckless](suckless.md) and [bitreich](bitreich.md). Ugly examples of OOP gone bad include [Java](java.md) and [C++](cpp.md) (which at least doesn't force it). Other languages such as [Python](python.md) and [Javascript](javascript.md) include OOP but have lightened it up a bit and at least allow you to avoid using it. You should probably learn OOP but only to see why it's bad (and to actually understand 99% of code written nowadays). +Object-oriented programming (OOP, also object-obsessed programming, objectfuscated programming, capital-oriented programming or artificial inelegance) is a [programming paradigm](paradigm.md) that tries to model reality as a collection of abstract objects that communicate with each other and obey some specific rules. While the idea itself isn't bad and can be useful in certain cases and while pure OOP in very old languages like [Smalltalk](smalltalk.md) may have even been quite elegant, by later adoption by [capitalist businesses](capitalist_software.md) the concept has been extremely twisted and degenerated to unbelievable levels -- **OOP has become extremely overused, extremely badly implemented and downright forced in programming languages** that nowadays try to apply this [abstraction](abstraction.md) to every single program and concept, creating [anti-patterns](anti_pattern.md), unnecessary issues and of course greatly significant amounts of [bloat](bloat.md). [We](lrs.md) therefore see the OOP of today as a **[cancer](cancer.md) of programming**. OOP was basically a software development fashion wave that scarred the industry for decades, it has poisoned minds of several generations. Nowadays despite OOP still keeping many fans the critical stance towards it isn't even controversial anymore, many others have voiced the criticism over and over, usually the most competent programmers like [Richard Stallman](rms.md) and [Linus Torvalds](torvalds.md) and groups like [suckless](suckless.md) and [bitreich](bitreich.md). Ugly examples of OOP gone bad include [Java](java.md) and [C++](cpp.md) (which at least doesn't force it). Other languages such as [Python](python.md) and [Javascript](javascript.md) include OOP but have lightened it up a bit and at least allow you to avoid using it. You should probably learn OOP but only to see why it's bad (and to actually understand 99% of code written nowadays). **A [real life](irl.md) analogy** to give a bit of high level overview: the original [Smalltalk](smalltalk.md) style OOP was kind of like when society invented [democracy](democracy.md) -- a simple idea which everyone understands (we are 10 cavemen, let's just vote on stuff mkay?) that's many times useful and works well, e.g. on a scale of a village or a small city. Then cities grew bigger (just as software did), into states and empires and the idea kept getting more and more complicated -- people just wanted to keep the democracy, apply it to everything and scale it indefinitely, but for that they had to add more complexity, they implemented representatives, parliaments, senates, presidents, vicepresidents, ministers, judges, more and more bureaucracy, hybrid ideas (free market, controlled economy, ...), corruption and inefficiencies crept in, the system degenerated into what we have today -- a hugely expensive paperworking machine that's exploited and hacked, with laws so complicated no one really understands them, with [magic](magic.md), randomness and unpredictability, producing just waste and bullshit, crumbling under own weight. This is also the way OOP went -- they started inventing static classes/methods, abstract classes/methods, multiple inheritances, interfaces, design patterns, overriding, hybrid paradigms and so on until we ended up with ugly abominations on which today's technology stands. Now a few things have to be noted. Firstly these abominations are a disaster, they came from our mistake of taking the original simple idea (simple small scale voting democracy) and saying "let's make this the only thing in the world and let's scale it a million times!" Such idea is stupid from the start and there is no doubt about that. However another evil is that people are taught to do everything this way -- today's programmers will use the mainstream OOP everywhere, even in simple programs, they don't even think about if they should, they are simply taught "always use this". This is like in real life wanting to govern a family by having elections each year to vote for the head of the family, then having members of family vote for other members of the family to be their representatives that will talk for them (the same kind of craziness as wanting to strictly respect encapsulation even in trivial programs), then if someone wants to buy anything he has to ask for a budget several months in advance and have others vote on it while an elected anti corruption committee is watching etcetc. This kind of insanity is what's normal in software nowadays. Now the only sane discussion can be had only about the usefulness and scope of the original, simple idea (simple voting in small groups, simple pure OOP) and here we say that it may be good, but only applied to just some specific situations, i.e. we say simple OOP is good for some problems but not all, just like voting is a good solution to some problems (e.g. a group of friends deciding where to go party), but not all (e.g. passengers in a car voting on which way to steer and which pedals to press). diff --git a/random_page.md b/random_page.md index 65da05b..7cd28ab 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1737 +2,1737 @@ Please kindly click random link. -[*](mouse.md) -[*](lrs_dictionary.md) -[*](float.md) -[*](deep_blue.md) -[*](often_confused.md) -[*](hack.md) -[*](dependency.md) -[*](books.md) -[*](drummyfish.md) -[*](see_through_clothes.md) -[*](living.md) -[*](interesting.md) -[*](githopping.md) -[*](kwangmyong.md) -[*](digital_signature.md) -[*](rationalwiki.md) -[*](crime_against_economy.md) -[*](digital_signature.md) -[*](data_structure.md) -[*](marxism.md) -[*](unretard.md) -[*](see_through_clothes.md) -[*](nc.md) -[*](sigbovik.md) -[*](formal_language.md) -[*](exercises.md) -[*](rms.md) -[*](portal_rendering.md) -[*](microsoft.md) -[*](css.md) -[*](reddit.md) -[*](used.md) -[*](quantum_gate.md) -[*](p_vs_np.md) -[*](unix.md) -[*](freedom.md) -[*](tas.md) -[*](double_buffering.md) -[*](lrs_wiki.md) -[*](cos.md) -[*](how_to.md) -[*](go.md) -[*](bytecode.md) -[*](fqa.md) -[*](portability.md) -[*](finished.md) -[*](music.md) -[*](saf.md) -[*](tas.md) -[*](aliasing.md) -[*](soydev.md) -[*](elon_musk.md) -[*](social_inertia.md) -[*](vector.md) -[*](implicit.md) -[*](qubit.md) -[*](hash.md) -[*](tas.md) -[*](racetrack.md) -[*](anarch.md) -[*](julia_set.md) -[*](brain_software.md) -[*](assembly.md) -[*](web.md) -[*](quine.md) -[*](anpac.md) -[*](gaywashing.md) -[*](open_source.md) -[*](woman.md) -[*](firmware.md) -[*](collision.md) -[*](paywall.md) -[*](yes_they_can.md) -[*](wiby.md) -[*](cat_v.md) -[*](global_discussion.md) -[*](libre.md) -[*](nigger.md) -[*](logic.md) -[*](fascism.md) -[*](interaction_net.md) -[*](interesting.md) -[*](lrs_dictionary.md) -[*](comment.md) -[*](git.md) -[*](stereotype.md) -[*](interplanetary_internet.md) -[*](music.md) -[*](downto.md) -[*](capitalist_singularity.md) -[*](cache.md) -[*](ssao.md) -[*](gay.md) -[*](langtons_ant.md) -[*](disease.md) -[*](reactionary_software.md) -[*](twos_complement.md) -[*](openai.md) -[*](wow.md) -[*](c_tutorial.md) -[*](graphics.md) -[*](less_retarded_society.md) -[*](dependency.md) -[*](pseudominimalism.md) -[*](audiophilia.md) -[*](collision.md) -[*](systemd.md) -[*](wiki_style.md) -[*](algorithm.md) -[*](countercomplex.md) -[*](emoticon.md) -[*](football.md) -[*](dog.md) -[*](web.md) -[*](graphics.md) -[*](lambda_calculus.md) -[*](used.md) -[*](e.md) -[*](capitalist_software.md) -[*](sorting.md) -[*](modern.md) -[*](chinese.md) -[*](arch.md) -[*](censorship.md) -[*](www.md) -[*](logic_circuit.md) -[*](proprietary.md) -[*](rapeware.md) -[*](wiki_stats.md) -[*](wiki_rights.md) -[*](systemd.md) -[*](comment.md) -[*](public_domain.md) -[*](coc.md) -[*](wiki_authors.md) -[*](coc.md) -[*](3d_rendering.md) -[*](githopping.md) -[*](everyone_does_it.md) -[*](bitreich.md) -[*](free_software.md) -[*](bit_hack.md) -[*](css.md) -[*](3d_model.md) -[*](tranny_software.md) -[*](optimization.md) -[*](entrepreneur.md) -[*](python.md) -[*](security.md) -[*](hardware.md) -[*](langtons_ant.md) -[*](free.md) -[*](aaron_swartz.md) -[*](needed.md) -[*](cheating.md) -[*](zen.md) -[*](sin.md) -[*](troll.md) -[*](logic_circuit.md) -[*](x86.md) -[*](wiki_rights.md) -[*](software.md) -[*](free_hardware.md) -[*](jedi_engine.md) -[*](gender_studies.md) -[*](everyone_does_it.md) -[*](lrs_dictionary.md) -[*](phd.md) -[*](explicit.md) -[*](libertarianism.md) -[*](quantum_gate.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](bloat_monopoly.md) -[*](whale.md) -[*](less_retarded_hardware.md) -[*](game_of_life.md) -[*](mandelbrot_set.md) -[*](game.md) -[*](gopher.md) -[*](copyright.md) -[*](build_engine.md) -[*](proprietary_software.md) -[*](books.md) -[*](jargon_file.md) -[*](xd.md) -[*](privacy.md) -[*](linear_algebra.md) -[*](smallchesslib.md) -[*](docker.md) -[*](watchdog.md) -[*](open_console.md) -[*](quaternion.md) -[*](crime_against_economy.md) -[*](collapse.md) -[*](graveyard.md) -[*](less_retarded_hardware.md) -[*](duke3d.md) -[*](markov_chain.md) -[*](rights_culture.md) -[*](oop.md) -[*](trump.md) -[*](saf.md) -[*](shogi.md) -[*](oop.md) -[*](arch.md) -[*](duskos.md) -[*](wiki_stats.md) +[*](apple.md) [*](copyfree.md) -[*](needed.md) -[*](devuan.md) -[*](approximation.md) -[*](evil.md) -[*](mandelbrot_set.md) -[*](zero.md) -[*](debugging.md) -[*](cracking.md) -[*](furry.md) -[*](technology.md) -[*](ascii_art.md) -[*](pedophilia.md) -[*](kek.md) -[*](mud.md) -[*](plan9.md) -[*](english.md) -[*](sw.md) -[*](plan9.md) -[*](body_shaming.md) -[*](fixed_point.md) -[*](jesus.md) -[*](less_retarded_software.md) -[*](real_number.md) -[*](often_confused.md) -[*](settled.md) -[*](boot.md) -[*](neural_network.md) -[*](fixed_point.md) -[*](memory_management.md) -[*](dick_reveal.md) -[*](compiler_bomb.md) -[*](comun.md) -[*](programming_tips.md) -[*](teletext.md) -[*](nd.md) -[*](pi.md) -[*](data_hoarding.md) -[*](dynamic_programming.md) -[*](antialiasing.md) -[*](often_confused.md) -[*](smart.md) -[*](audiophilia.md) -[*](coding.md) -[*](bit.md) -[*](antivirus_paradox.md) -[*](lrs.md) -[*](iq.md) -[*](boot.md) -[*](blender.md) -[*](rust.md) -[*](dodleston.md) -[*](coc.md) -[*](distance.md) -[*](copyleft.md) -[*](hw.md) -[*](beauty.md) -[*](cache.md) -[*](loc.md) -[*](watchdog.md) -[*](morality.md) -[*](README.md) -[*](love.md) -[*](music.md) -[*](interplanetary_internet.md) -[*](throwaway_script.md) -[*](combinatorics.md) -[*](monad.md) -[*](lrs.md) -[*](comun.md) -[*](myths.md) -[*](devuan.md) -[*](lmao.md) -[*](c.md) -[*](nokia.md) -[*](mechanical.md) -[*](island.md) -[*](work.md) -[*](progress.md) -[*](firmware.md) -[*](wikiwikiweb.md) -[*](chaos.md) -[*](tor.md) -[*](hardware.md) -[*](rule110.md) -[*](c_pitfalls.md) -[*](kids_these_days.md) -[*](rule110.md) -[*](trolling.md) -[*](free_hardware.md) -[*](disease.md) -[*](harry_potter.md) -[*](gaywashing.md) -[*](vector.md) -[*](ubi.md) -[*](kek.md) -[*](easier_done_than_said.md) -[*](hash.md) -[*](sorting.md) -[*](social_inertia.md) -[*](just_werks.md) -[*](countercomplex.md) -[*](faggot.md) -[*](pokitto.md) -[*](gay.md) +[*](dependency.md) +[*](cyber.md) [*](brainfuck.md) -[*](xxiivv.md) -[*](procgen.md) -[*](sanism.md) -[*](crypto.md) -[*](wikipedia.md) -[*](money.md) -[*](watchdog.md) -[*](hexadecimal.md) -[*](trolling.md) -[*](less_retarded_society.md) -[*](math.md) -[*](raylib.md) -[*](beauty.md) -[*](deferred_shading.md) -[*](raycasting.md) -[*](fourier_transform.md) -[*](left_right.md) -[*](fight.md) -[*](javascript.md) -[*](shit.md) -[*](assembly.md) -[*](suicide.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](paradigm.md) -[*](unretard.md) -[*](trash_magic.md) -[*](unary.md) [*](lgbt.md) -[*](moderation.md) -[*](logic_circuit.md) -[*](lmao.md) -[*](soyence.md) -[*](ancap.md) -[*](liberalism.md) -[*](windows.md) -[*](shader.md) -[*](rsa.md) -[*](hardware.md) -[*](history.md) -[*](temple_os.md) -[*](boat.md) -[*](nanogenmo.md) -[*](graveyard.md) -[*](free.md) -[*](fail_ab.md) -[*](ancap.md) -[*](human_language.md) -[*](noise.md) -[*](sjw.md) -[*](entrepreneur.md) -[*](devuan.md) -[*](abstraction.md) -[*](copyright.md) -[*](jesus.md) -[*](distrohopping.md) -[*](social_inertia.md) -[*](update_culture.md) -[*](demo.md) -[*](racetrack.md) -[*](memory_management.md) -[*](computer.md) -[*](hack.md) -[*](ted_kaczynski.md) -[*](ioccc.md) -[*](gaywashing.md) -[*](dog.md) -[*](netstalking.md) -[*](kiss.md) -[*](dynamic_programming.md) -[*](attribution.md) -[*](sdf.md) -[*](version_numbering.md) -[*](hero_culture.md) -[*](elon_musk.md) -[*](boat.md) -[*](tech.md) -[*](license.md) -[*](game_engine.md) -[*](f2p.md) -[*](gui.md) -[*](terry_davis.md) -[*](fascist.md) -[*](version_numbering.md) -[*](3d_model.md) -[*](trusting_trust.md) -[*](mechanical.md) -[*](copyfree.md) -[*](left.md) -[*](usa.md) -[*](toxic.md) -[*](debugging.md) -[*](bootstrap.md) -[*](uxn.md) -[*](determinism.md) -[*](mob_software.md) -[*](girl.md) -[*](smallchesslib.md) -[*](regex.md) -[*](privacy.md) -[*](crypto.md) -[*](ioccc.md) -[*](netstalking.md) -[*](one.md) -[*](rapeware.md) -[*](speech_synthesis.md) -[*](freedom.md) -[*](niger.md) -[*](js.md) -[*](diogenes.md) -[*](xxiivv.md) -[*](graveyard.md) -[*](robot.md) -[*](computational_complexity.md) -[*](toxic.md) -[*](randomness.md) -[*](microtheft.md) -[*](just_werks.md) -[*](triangle.md) -[*](pokitto.md) -[*](gemini.md) -[*](tech.md) -[*](antialiasing.md) -[*](abstraction.md) -[*](README.md) -[*](function.md) -[*](microtheft.md) -[*](bootstrap.md) -[*](girl.md) -[*](how_to.md) -[*](sanism.md) -[*](patent.md) -[*](soyence.md) -[*](harry_potter.md) -[*](f2p.md) -[*](gopher.md) -[*](collision_detection.md) -[*](english.md) -[*](military.md) -[*](interesting.md) -[*](js.md) -[*](game_of_life.md) -[*](cc0.md) -[*](no_knowledge_proof.md) -[*](free_culture.md) -[*](recursion.md) -[*](information.md) -[*](digital.md) -[*](terry_davis.md) -[*](atheism.md) -[*](hexadecimal.md) -[*](information.md) -[*](openai.md) -[*](free_culture.md) -[*](pd.md) -[*](triangle.md) -[*](p_vs_np.md) -[*](golang.md) -[*](rgb565.md) -[*](woman.md) -[*](czechia.md) -[*](c.md) -[*](axiom_of_choice.md) -[*](sw_rendering.md) -[*](shader.md) -[*](go.md) -[*](openarena.md) -[*](smart.md) -[*](gay.md) -[*](quine.md) -[*](woman.md) -[*](democracy.md) -[*](byte.md) -[*](fail_ab.md) -[*](cheating.md) -[*](slowly_boiling_the_frog.md) -[*](foss.md) -[*](sorting.md) -[*](data_hoarding.md) -[*](yes_they_can.md) -[*](global_discussion.md) -[*](reactionary_software.md) -[*](ascii.md) -[*](magic.md) -[*](xd.md) -[*](nc.md) -[*](number.md) -[*](holy_war.md) -[*](pride.md) -[*](jokes.md) -[*](number.md) -[*](3d_modeling.md) -[*](proof.md) -[*](sdf.md) -[*](bytebeat.md) -[*](old.md) -[*](turing_machine.md) -[*](education.md) -[*](chaos.md) -[*](duke3d.md) -[*](rust.md) -[*](duskos.md) -[*](sqrt.md) -[*](python.md) -[*](autostereogram.md) -[*](fediverse.md) -[*](floss.md) -[*](nationalism.md) -[*](www.md) -[*](avpd.md) -[*](public_domain_computer.md) -[*](communism.md) -[*](maintenance.md) -[*](programming.md) -[*](21st_century.md) -[*](wiby.md) -[*](zuckerberg.md) -[*](future_proof.md) -[*](xonotic.md) -[*](fun.md) -[*](duskos.md) -[*](de_facto.md) -[*](interaction_net.md) -[*](determinism.md) -[*](x86.md) -[*](fight.md) -[*](feminism.md) -[*](suckless.md) -[*](fight_culture.md) -[*](brainfuck.md) -[*](microtransaction.md) -[*](mud.md) -[*](capitalism.md) -[*](furry.md) -[*](paradigm.md) -[*](throwaway_script.md) -[*](normalization.md) -[*](femoid.md) -[*](nc.md) -[*](wow.md) -[*](floss.md) -[*](hacker_culture.md) -[*](hero.md) -[*](fuck.md) -[*](openarena.md) -[*](twos_complement.md) -[*](wiki_style.md) -[*](luke_smith.md) -[*](hero_culture.md) -[*](teletext.md) -[*](bytecode.md) -[*](technology.md) -[*](ram.md) -[*](sw_rendering.md) -[*](chasm_the_rift.md) -[*](fizzbuzz.md) -[*](software.md) -[*](pd.md) -[*](intellectual_property.md) -[*](gemini.md) -[*](steganography.md) -[*](usa.md) -[*](suicide.md) -[*](fight.md) -[*](cc.md) -[*](low_poly.md) -[*](sin.md) -[*](sudoku.md) -[*](chess.md) -[*](golang.md) -[*](anal_bead.md) -[*](capitalism.md) -[*](chess.md) -[*](web.md) -[*](earth.md) -[*](lambda_calculus.md) -[*](steve_jobs.md) -[*](wiki_post_mortem.md) -[*](less_retarded_software.md) -[*](anpac.md) -[*](compiler_bomb.md) -[*](pseudorandomness.md) -[*](iq.md) -[*](unicode.md) -[*](race.md) -[*](logic_gate.md) -[*](small3dlib.md) -[*](proprietary.md) -[*](splinternet.md) -[*](javascript.md) -[*](wikiwikiweb.md) -[*](public_domain.md) -[*](dinosaur.md) -[*](how_to.md) -[*](bit_hack.md) -[*](tangram.md) -[*](cat_v.md) -[*](cpp.md) -[*](competition.md) -[*](bloat_monopoly.md) -[*](3d_modeling.md) -[*](football.md) -[*](needed.md) -[*](license.md) -[*](framework.md) -[*](complexity.md) -[*](avpd.md) -[*](c_pitfalls.md) -[*](dick_reveal.md) -[*](100r.md) -[*](free_body.md) -[*](foss.md) -[*](progress.md) -[*](ai.md) -[*](black.md) -[*](consumerism.md) -[*](cracking.md) -[*](marble_race.md) -[*](fascism.md) -[*](line.md) -[*](piracy.md) -[*](double_buffering.md) -[*](ethics.md) -[*](smol_internet.md) -[*](nationalism.md) -[*](bs.md) -[*](bs.md) -[*](morality.md) -[*](left.md) -[*](markov_chain.md) -[*](bbs.md) -[*](acronym.md) -[*](culture.md) -[*](openarena.md) -[*](flatland.md) -[*](frameless.md) -[*](tech.md) -[*](marketing.md) -[*](john_carmack.md) -[*](kiss.md) -[*](recursion.md) -[*](logic.md) -[*](hero.md) -[*](firmware.md) -[*](computer.md) -[*](randomness.md) -[*](graphics.md) -[*](semiconductor.md) -[*](smol_internet.md) -[*](minigame.md) -[*](software.md) -[*](fizzbuzz.md) -[*](3d_modeling.md) -[*](selflessness.md) -[*](suckless.md) -[*](shit.md) -[*](viznut.md) -[*](sqrt.md) -[*](wikidata.md) -[*](free_universe.md) -[*](suicide.md) -[*](right.md) -[*](universe.md) -[*](world_broadcast.md) -[*](audiophilia.md) -[*](distance.md) -[*](fight_culture.md) -[*](paradigm.md) -[*](stereotype.md) -[*](game_engine.md) -[*](demoscene.md) [*](money.md) -[*](holy_war.md) -[*](autostereogram.md) -[*](gemini.md) -[*](forth.md) -[*](neural_network.md) -[*](game.md) -[*](programming_style.md) -[*](tinyphysicsengine.md) -[*](egoism.md) -[*](nokia.md) -[*](free_body.md) -[*](wizard.md) -[*](public_domain_computer.md) -[*](bloat.md) -[*](brainfuck.md) -[*](atan.md) -[*](gender_studies.md) -[*](microsoft.md) -[*](kiss.md) -[*](explicit.md) -[*](jesus.md) -[*](czechia.md) -[*](plusnigger.md) -[*](ascii.md) -[*](proprietary.md) -[*](left_right.md) -[*](faq.md) -[*](internet.md) -[*](encyclopedia.md) -[*](fork.md) -[*](free_speech.md) -[*](viznut.md) -[*](copyleft.md) -[*](universe.md) -[*](sudoku.md) -[*](ronja.md) -[*](portal_rendering.md) -[*](less_retarded_hardware.md) -[*](permacomputing_wiki.md) -[*](boat.md) -[*](consumerism.md) -[*](modern_software.md) -[*](used.md) -[*](digital_signature.md) -[*](free_will.md) -[*](hexadecimal.md) -[*](competition.md) -[*](dodleston.md) [*](cancer.md) -[*](libre.md) -[*](wow.md) -[*](deferred_shading.md) -[*](mental_outlaw.md) -[*](pseudominimalism.md) -[*](complexity.md) -[*](antivirus_paradox.md) -[*](golang.md) -[*](monad.md) -[*](prime.md) -[*](tangram.md) -[*](color.md) -[*](emoticon.md) -[*](phd.md) -[*](soyence.md) -[*](digital.md) -[*](algorithm.md) -[*](trolling.md) -[*](sigbovik.md) [*](marketing.md) -[*](motivation.md) -[*](chasm_the_rift.md) -[*](trusting_trust.md) -[*](3d_model.md) -[*](wiby.md) -[*](blender.md) -[*](primitive_3d.md) -[*](zen.md) -[*](version_numbering.md) -[*](compression.md) -[*](steganography.md) -[*](wizard.md) -[*](cloud.md) -[*](science.md) -[*](linux.md) -[*](racism.md) -[*](evil.md) -[*](c_sharp.md) -[*](racetrack.md) -[*](fantasy_console.md) -[*](marble_race.md) -[*](recursion.md) -[*](ubi.md) -[*](hyperoperation.md) -[*](free_software.md) -[*](charity_sex.md) -[*](fork.md) -[*](axiom_of_choice.md) -[*](art.md) -[*](cat_v.md) -[*](shader.md) -[*](ascii_art.md) -[*](microtheft.md) -[*](faggot.md) -[*](distrohopping.md) -[*](global_discussion.md) -[*](license.md) -[*](rsa.md) -[*](privacy.md) -[*](free_hardware.md) -[*](books.md) -[*](windows.md) -[*](wikipedia.md) -[*](jedi_engine.md) -[*](palette.md) -[*](brain_software.md) -[*](fourier_transform.md) -[*](monad.md) -[*](unretard.md) -[*](tor.md) -[*](mainstream.md) -[*](gigachad.md) -[*](wikidata.md) -[*](cc0.md) -[*](hw.md) -[*](modern.md) -[*](low_poly.md) -[*](mipmap.md) -[*](internet.md) -[*](slowly_boiling_the_frog.md) -[*](resnicks_termite.md) -[*](proof.md) -[*](c_sharp.md) -[*](primitive_3d.md) -[*](raylib.md) -[*](wiki_authors.md) -[*](attribution.md) -[*](hyperoperation.md) -[*](newspeak.md) -[*](magic.md) -[*](permacomputing.md) -[*](semiconductor.md) -[*](cracking.md) -[*](cos.md) -[*](encryption.md) -[*](doom.md) -[*](rgb565.md) -[*](bazaar.md) -[*](wiki_authors.md) -[*](free_speech.md) -[*](technology.md) -[*](dungeons_and_dragons.md) -[*](float.md) -[*](open_console.md) -[*](free_body.md) -[*](resnicks_termite.md) -[*](phd.md) -[*](debugging.md) -[*](hero.md) -[*](moderation.md) -[*](future_proof.md) -[*](mouse.md) -[*](mental_outlaw.md) -[*](duke3d.md) -[*](hyperoperation.md) -[*](doom.md) -[*](one.md) -[*](low_poly.md) -[*](number.md) -[*](fqa.md) -[*](billboard.md) -[*](zuckerberg.md) -[*](bilinear.md) -[*](faq.md) -[*](transistor.md) -[*](physics_engine.md) -[*](viznut.md) -[*](data_structure.md) -[*](physics_engine.md) -[*](real_number.md) -[*](compsci.md) -[*](capitalism.md) -[*](linear_algebra.md) -[*](lrs.md) -[*](main.md) -[*](julia_set.md) -[*](lgbt.md) -[*](human_language.md) -[*](c_pitfalls.md) -[*](proprietary_software.md) -[*](sjw.md) -[*](xxiivv.md) -[*](piracy.md) -[*](game.md) -[*](42.md) -[*](myths.md) -[*](line.md) -[*](noise.md) -[*](selflessness.md) -[*](elo.md) -[*](trash_magic.md) -[*](copyleft.md) -[*](deep_blue.md) -[*](girl.md) -[*](speech_synthesis.md) -[*](billboard.md) -[*](unary.md) -[*](analog.md) -[*](determinism.md) -[*](pride.md) -[*](x86.md) -[*](game_of_life.md) -[*](bs.md) -[*](ui.md) -[*](optimization.md) -[*](raycasting.md) -[*](earth.md) -[*](people.md) -[*](old.md) -[*](downto.md) -[*](apple.md) -[*](physics.md) -[*](palette.md) -[*](less_retarded_software.md) -[*](boot.md) -[*](operating_system.md) -[*](anarch.md) -[*](bilinear.md) -[*](binary.md) -[*](backgammon.md) -[*](formal_language.md) -[*](distrohopping.md) -[*](bullshit.md) -[*](rgb332.md) -[*](palette.md) -[*](plan9.md) -[*](permacomputing.md) -[*](autoupdate.md) -[*](portability.md) -[*](atheism.md) -[*](island.md) -[*](femoid.md) -[*](maintenance.md) -[*](io.md) -[*](programming_language.md) -[*](modern.md) -[*](science.md) -[*](bootstrap.md) -[*](stereotype.md) -[*](raycasting.md) -[*](deferred_shading.md) -[*](charity_sex.md) -[*](oop.md) -[*](easier_done_than_said.md) -[*](justice.md) -[*](data_structure.md) -[*](os.md) -[*](sw.md) -[*](plusnigger.md) -[*](ronja.md) -[*](resnicks_termite.md) -[*](temple_os.md) -[*](life.md) -[*](free_software.md) -[*](bitreich.md) -[*](world_broadcast.md) -[*](security.md) -[*](right.md) -[*](elo.md) -[*](gopher.md) -[*](culture.md) -[*](npc.md) -[*](speech_synthesis.md) -[*](suckless.md) -[*](football.md) -[*](raycastlib.md) -[*](john_carmack.md) -[*](ui.md) -[*](computational_complexity.md) -[*](cpu.md) -[*](tinyphysicsengine.md) -[*](cloud.md) -[*](unix_philosophy.md) -[*](google.md) -[*](geek.md) -[*](computational_complexity.md) -[*](backpropagation.md) -[*](lil.md) -[*](anarchism.md) -[*](operating_system.md) -[*](dependency.md) -[*](jokes.md) -[*](build_engine.md) -[*](esolang.md) -[*](libre.md) -[*](rule110.md) -[*](gender_studies.md) -[*](foss.md) -[*](f2p.md) -[*](military.md) -[*](bilinear.md) -[*](assembly.md) -[*](steve_jobs.md) -[*](dungeons_and_dragons.md) -[*](no_knowledge_proof.md) -[*](bill_gates.md) -[*](complexity.md) -[*](anpac.md) -[*](freedom.md) -[*](e.md) -[*](rms.md) -[*](mob_software.md) -[*](gigachad.md) -[*](crime_against_economy.md) -[*](one.md) [*](trump.md) -[*](dick_reveal.md) -[*](maintenance.md) -[*](unix_philosophy.md) -[*](zen.md) -[*](de_facto.md) -[*](venus_project.md) -[*](trump.md) -[*](free_culture.md) -[*](google.md) -[*](history.md) -[*](programming_style.md) -[*](microtransaction.md) -[*](patent.md) -[*](kiwifarms.md) -[*](mipmap.md) -[*](langtons_ant.md) -[*](people.md) -[*](goodbye_world.md) -[*](rationalwiki.md) -[*](niger.md) -[*](robot.md) -[*](marble_race.md) -[*](fsf.md) -[*](dinosaur.md) -[*](float.md) -[*](slowly_boiling_the_frog.md) -[*](pseudominimalism.md) -[*](myths.md) -[*](raycastlib.md) -[*](physics_engine.md) -[*](logic_gate.md) -[*](capitalist_singularity.md) -[*](earth.md) -[*](permacomputing_wiki.md) -[*](algorithm.md) -[*](greenwashing.md) -[*](xd.md) -[*](chinese.md) -[*](love.md) -[*](corporation.md) -[*](minigame.md) -[*](bytebeat.md) -[*](demoscene.md) -[*](sudoku.md) -[*](pi.md) -[*](rgb565.md) -[*](wikiwikiweb.md) -[*](normalization.md) -[*](rsa.md) -[*](venus_project.md) -[*](toxic.md) -[*](42.md) -[*](sw.md) -[*](robot.md) -[*](git.md) -[*](p_vs_np.md) -[*](pseudoleft.md) -[*](gui.md) -[*](tpe.md) -[*](capitalist_singularity.md) -[*](abstraction.md) -[*](app.md) -[*](gigachad.md) -[*](cc0.md) -[*](lrs_wiki.md) -[*](billboard.md) -[*](english.md) -[*](bill_gates.md) -[*](4chan.md) -[*](cloud.md) -[*](blender.md) -[*](vector.md) -[*](anarchism.md) -[*](markov_chain.md) -[*](elon_musk.md) -[*](kwangmyong.md) -[*](ethics.md) -[*](splinternet.md) -[*](facebook.md) -[*](update_culture.md) -[*](memory_management.md) -[*](lrs_wiki.md) -[*](productivity_cult.md) -[*](name_is_important.md) -[*](teletext.md) -[*](entrepreneur.md) -[*](sw_rendering.md) -[*](fear_culture.md) -[*](capitalist_software.md) -[*](pseudo3d.md) -[*](rock.md) -[*](math.md) -[*](bbs.md) -[*](left_right.md) -[*](interpolation.md) -[*](good_enough.md) -[*](body_shaming.md) -[*](justice.md) -[*](pi.md) -[*](binary.md) -[*](cyber.md) -[*](anarch.md) -[*](assertiveness.md) -[*](fork.md) -[*](nord_vpn.md) -[*](world_broadcast.md) -[*](living.md) -[*](app.md) -[*](cc.md) -[*](rock.md) -[*](arch.md) -[*](quaternion.md) -[*](ui.md) -[*](libertarianism.md) -[*](zero.md) -[*](raycastlib.md) -[*](body_shaming.md) -[*](3d_rendering.md) -[*](nigger.md) -[*](lmao.md) -[*](paywall.md) -[*](consumerism.md) -[*](ai.md) -[*](tranny_software.md) -[*](nord_vpn.md) -[*](compsci.md) -[*](dungeons_and_dragons.md) -[*](programming_tips.md) -[*](money.md) -[*](steganography.md) -[*](often_misunderstood.md) -[*](loc.md) -[*](black.md) -[*](frameless.md) -[*](bit.md) -[*](esolang.md) -[*](jargon_file.md) -[*](public_domain_computer.md) -[*](hw.md) -[*](mob_software.md) -[*](microsoft.md) -[*](hard_to_learn_easy_to_master.md) -[*](niggercoin.md) -[*](ethics.md) -[*](avpd.md) -[*](computer.md) -[*](charity_sex.md) -[*](egoism.md) -[*](chasm_the_rift.md) -[*](downto.md) -[*](acronym.md) -[*](bytecode.md) -[*](wavelet_transform.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](bbs.md) -[*](nd.md) -[*](exercises.md) -[*](hacking.md) -[*](physics.md) -[*](information.md) -[*](wiki_pages.md) -[*](coding.md) -[*](communism.md) -[*](wikipedia.md) -[*](tattoo.md) -[*](encyclopedia.md) -[*](fixed_point.md) -[*](racism.md) -[*](universe.md) -[*](vim.md) -[*](3d_rendering.md) -[*](wiki_post_mortem.md) -[*](bullshit.md) -[*](tom_scott.md) -[*](esolang.md) -[*](build_engine.md) -[*](beauty.md) -[*](smol_internet.md) -[*](rationalwiki.md) -[*](saf.md) -[*](modern_software.md) -[*](interplanetary_internet.md) -[*](fizzbuzz.md) -[*](ram.md) -[*](bit_hack.md) -[*](nokia.md) -[*](tinyphysicsengine.md) -[*](prime.md) -[*](wiki_pages.md) -[*](cpp.md) -[*](reddit.md) -[*](ted_kaczynski.md) -[*](os.md) -[*](unicode.md) -[*](tangram.md) -[*](hash.md) -[*](free_universe.md) -[*](aliasing.md) -[*](smart.md) -[*](google.md) -[*](terry_davis.md) -[*](anal_bead.md) -[*](axiom_of_choice.md) -[*](magic.md) -[*](raylib.md) -[*](rgb332.md) -[*](censorship.md) -[*](art.md) -[*](political_correctness.md) -[*](demo.md) -[*](usenet.md) -[*](programming_language.md) -[*](niger.md) -[*](README.md) -[*](fsf.md) -[*](internet.md) -[*](tensor_product.md) -[*](cracker.md) -[*](shortcut_thinking.md) -[*](rights_culture.md) -[*](programming_tips.md) -[*](chess.md) -[*](formal_language.md) -[*](game_engine.md) -[*](copyfree.md) -[*](egoism.md) -[*](communism.md) -[*](hero_culture.md) -[*](gui.md) -[*](sdf.md) -[*](mainstream.md) -[*](combinatorics.md) -[*](kwangmyong.md) -[*](mandelbrot_set.md) -[*](js.md) -[*](femoid.md) -[*](hacking.md) -[*](thrembo.md) -[*](docker.md) -[*](ai.md) -[*](cpp.md) -[*](old.md) -[*](wiki_pages.md) -[*](primitive_3d.md) -[*](21st_century.md) -[*](programming.md) -[*](procgen.md) -[*](mouse.md) -[*](steve_jobs.md) -[*](name_is_important.md) -[*](niggercoin.md) -[*](tpe.md) -[*](unary.md) -[*](reactionary_software.md) -[*](java.md) -[*](plusnigger.md) -[*](disease.md) -[*](morality.md) -[*](competition.md) -[*](wavelet_transform.md) -[*](distance.md) -[*](npc.md) -[*](good_enough.md) -[*](motivation.md) -[*](fear_culture.md) -[*](emoticon.md) -[*](collision_detection.md) -[*](data_hoarding.md) -[*](mechanical.md) -[*](analog.md) -[*](minimalism.md) -[*](io.md) -[*](soydev.md) -[*](history.md) -[*](luke_smith.md) -[*](mainstream.md) -[*](chaos.md) -[*](main.md) -[*](procgen.md) -[*](good_enough.md) -[*](transistor.md) -[*](antialiasing.md) -[*](physics.md) -[*](trom.md) -[*](analytic_geometry.md) -[*](neural_network.md) -[*](thrembo.md) -[*](unix.md) -[*](no_knowledge_proof.md) -[*](qubit.md) -[*](ioccc.md) -[*](bytebeat.md) -[*](entropy.md) -[*](race.md) -[*](troll.md) -[*](settled.md) -[*](4chan.md) -[*](real_number.md) -[*](altruism.md) -[*](free_universe.md) -[*](100r.md) -[*](unix_philosophy.md) -[*](byte.md) -[*](de_facto.md) -[*](altruism.md) -[*](quaternion.md) -[*](motivation.md) -[*](soydev.md) -[*](goodbye_world.md) -[*](wiki_style.md) -[*](political_correctness.md) -[*](function.md) -[*](kids_these_days.md) -[*](intellectual_property.md) -[*](cheating.md) -[*](education.md) -[*](john_carmack.md) -[*](autoupdate.md) -[*](linux.md) -[*](encryption.md) -[*](democracy.md) -[*](collision.md) -[*](niggercoin.md) -[*](backpropagation.md) -[*](binary.md) -[*](newspeak.md) -[*](fascist.md) -[*](kiwifarms.md) -[*](cracker.md) -[*](drummyfish.md) -[*](www.md) -[*](framework.md) -[*](open_console.md) -[*](usa.md) -[*](sanism.md) -[*](regex.md) -[*](thrembo.md) -[*](fractal.md) -[*](iq.md) -[*](minimalism.md) -[*](zero.md) -[*](library.md) -[*](vim.md) -[*](pseudo3d.md) -[*](autoupdate.md) -[*](permacomputing_wiki.md) -[*](implicit.md) -[*](bloat.md) -[*](rock.md) -[*](c_sharp.md) -[*](doom.md) -[*](rms.md) -[*](brain_software.md) -[*](atheism.md) -[*](xonotic.md) -[*](reddit.md) -[*](unicode.md) -[*](lil.md) -[*](exercises.md) -[*](selflessness.md) -[*](javascript.md) -[*](systemd.md) -[*](wavelet_transform.md) -[*](proof.md) -[*](uxn.md) -[*](easy_to_learn_hard_to_master.md) -[*](pedophilia.md) -[*](rights_culture.md) -[*](faggot.md) -[*](atan.md) -[*](military.md) -[*](black.md) -[*](arduboy.md) -[*](netstalking.md) -[*](island.md) -[*](trash_magic.md) -[*](throwaway_script.md) -[*](entropy.md) -[*](compression.md) -[*](optimization.md) -[*](free_will.md) -[*](see_through_clothes.md) -[*](fuck.md) -[*](culture.md) -[*](fascist.md) -[*](100r.md) -[*](explicit.md) -[*](kids_these_days.md) -[*](drummyfish.md) -[*](bloat_monopoly.md) -[*](rust.md) -[*](trom.md) -[*](update_culture.md) -[*](comment.md) -[*](color.md) -[*](programming.md) -[*](jokes.md) -[*](randomness.md) -[*](race.md) -[*](tor.md) -[*](shortcut_thinking.md) -[*](democracy.md) -[*](tranny_software.md) -[*](hacking.md) -[*](ascii_art.md) -[*](color.md) -[*](easy_to_learn_hard_to_master.md) -[*](free.md) -[*](flatland.md) -[*](logic_gate.md) -[*](noise.md) -[*](quine.md) -[*](fantasy_console.md) -[*](often_misunderstood.md) -[*](fantasy_console.md) -[*](tensor_product.md) -[*](mipmap.md) -[*](rapeware.md) -[*](floss.md) -[*](loc.md) -[*](gnu.md) -[*](dog.md) -[*](pseudorandomness.md) -[*](math.md) -[*](hard_to_learn_easy_to_master.md) -[*](life.md) -[*](operating_system.md) -[*](quantum_gate.md) -[*](dynamic_programming.md) -[*](copyright.md) -[*](mental_outlaw.md) -[*](fediverse.md) -[*](encyclopedia.md) -[*](sjw.md) -[*](pokitto.md) -[*](forth.md) -[*](fediverse.md) -[*](political_correctness.md) -[*](anal_bead.md) -[*](collapse.md) -[*](jedi_engine.md) -[*](tom_scott.md) -[*](microtransaction.md) -[*](bitreich.md) -[*](flatland.md) -[*](capitalist_software.md) -[*](future_proof.md) -[*](coding.md) -[*](demoscene.md) -[*](framework.md) -[*](bazaar.md) -[*](lil.md) -[*](backgammon.md) -[*](minesweeper.md) -[*](often_misunderstood.md) -[*](everyone_does_it.md) -[*](usenet.md) -[*](cpu.md) -[*](encryption.md) -[*](uxn.md) -[*](free_will.md) -[*](productivity_cult.md) -[*](linux.md) -[*](geek.md) -[*](double_buffering.md) -[*](harry_potter.md) -[*](wiki_rights.md) -[*](malware.md) -[*](nd.md) -[*](nanogenmo.md) -[*](hacker_culture.md) -[*](gnu.md) -[*](twos_complement.md) -[*](wizard.md) -[*](implicit.md) -[*](name_is_important.md) -[*](tpe.md) [*](czechia.md) -[*](life.md) -[*](just_werks.md) -[*](java.md) -[*](newspeak.md) -[*](fuck.md) -[*](minimalism.md) -[*](holy_war.md) -[*](liberalism.md) -[*](compression.md) -[*](42.md) -[*](public_domain.md) -[*](open_source.md) -[*](diogenes.md) -[*](marketing.md) -[*](facebook.md) -[*](semiconductor.md) -[*](greenwashing.md) +[*](bbs.md) +[*](speech_synthesis.md) +[*](jedi_engine.md) +[*](byte.md) [*](interaction_net.md) -[*](lambda_calculus.md) -[*](acronym.md) -[*](vim.md) -[*](smallchesslib.md) -[*](pseudorandomness.md) -[*](ronja.md) -[*](ssao.md) -[*](progress.md) -[*](normalization.md) -[*](python.md) -[*](malware.md) -[*](mud.md) -[*](java.md) -[*](git.md) -[*](c.md) -[*](main.md) -[*](forth.md) -[*](fun.md) -[*](infinity.md) -[*](os.md) -[*](malware.md) -[*](bloat.md) -[*](wikidata.md) -[*](portal_rendering.md) -[*](gnu.md) -[*](aliasing.md) -[*](piracy.md) -[*](facebook.md) -[*](bullshit.md) -[*](linear_algebra.md) -[*](lgbt.md) -[*](shogi.md) -[*](marxism.md) -[*](approximation.md) -[*](arduboy.md) -[*](cpu.md) -[*](css.md) -[*](whale.md) -[*](programming_style.md) -[*](moderation.md) -[*](io.md) -[*](githopping.md) -[*](windows.md) -[*](easier_done_than_said.md) [*](intellectual_property.md) -[*](tattoo.md) -[*](cos.md) -[*](attribution.md) +[*](data_hoarding.md) +[*](trash_magic.md) +[*](digital.md) +[*](money.md) +[*](compression.md) +[*](ronja.md) +[*](license.md) +[*](patent.md) +[*](disease.md) +[*](lil.md) +[*](cpu.md) +[*](kiwifarms.md) +[*](mob_software.md) +[*](exercises.md) +[*](old.md) +[*](openarena.md) +[*](billboard.md) +[*](hyperoperation.md) +[*](rapeware.md) +[*](raycastlib.md) +[*](anal_bead.md) +[*](vector.md) +[*](facebook.md) +[*](python.md) +[*](jargon_file.md) +[*](earth.md) +[*](p_vs_np.md) +[*](noise.md) +[*](randomness.md) +[*](bytebeat.md) +[*](political_correctness.md) +[*](3d_modeling.md) +[*](unary.md) +[*](jokes.md) +[*](hash.md) +[*](racetrack.md) +[*](morality.md) +[*](iq.md) +[*](graveyard.md) +[*](binary.md) +[*](wiki_stats.md) +[*](twos_complement.md) +[*](just_werks.md) +[*](see_through_clothes.md) +[*](teletext.md) +[*](infinity.md) +[*](digital_signature.md) +[*](physics_engine.md) +[*](nigger.md) +[*](game_of_life.md) +[*](trash_magic.md) +[*](4chan.md) +[*](collapse.md) +[*](c_pitfalls.md) +[*](steve_jobs.md) +[*](plusnigger.md) +[*](floss.md) +[*](charity_sex.md) +[*](crypto.md) +[*](esolang.md) [*](transistor.md) -[*](interpolation.md) -[*](racism.md) -[*](apple.md) -[*](logic.md) -[*](work.md) -[*](justice.md) -[*](geek.md) -[*](creative_commons.md) -[*](youtube.md) -[*](bill_gates.md) -[*](pd.md) -[*](feminism.md) -[*](trom.md) -[*](usenet.md) -[*](c_tutorial.md) -[*](crow_funding.md) -[*](backpropagation.md) -[*](xonotic.md) -[*](murderer.md) -[*](ssao.md) -[*](science.md) -[*](less_retarded_society.md) -[*](greenwashing.md) -[*](wiki_post_mortem.md) -[*](evil.md) -[*](nanogenmo.md) -[*](apple.md) -[*](aaron_swartz.md) -[*](altruism.md) -[*](turing_machine.md) -[*](compsci.md) -[*](entropy.md) +[*](niger.md) +[*](saf.md) +[*](coding.md) +[*](human_language.md) +[*](wikidata.md) +[*](rsa.md) +[*](how_to.md) +[*](fascist.md) +[*](chinese.md) +[*](faggot.md) +[*](capitalist_software.md) +[*](bit.md) +[*](transistor.md) +[*](explicit.md) +[*](plan9.md) +[*](formal_language.md) [*](liberalism.md) -[*](tensor_product.md) -[*](approximation.md) +[*](free_software.md) +[*](culture.md) +[*](interplanetary_internet.md) +[*](modern_software.md) +[*](quaternion.md) +[*](build_engine.md) +[*](nanogenmo.md) +[*](nationalism.md) +[*](monad.md) +[*](p_vs_np.md) +[*](c_tutorial.md) +[*](unix.md) +[*](openai.md) +[*](rights_culture.md) +[*](watchdog.md) +[*](free.md) +[*](devuan.md) +[*](niggercoin.md) +[*](3d_model.md) +[*](geek.md) +[*](capitalism.md) +[*](lgbt.md) +[*](quaternion.md) +[*](line.md) +[*](distrohopping.md) +[*](smart.md) +[*](css.md) +[*](nokia.md) +[*](smallchesslib.md) +[*](python.md) +[*](fantasy_console.md) +[*](audiophilia.md) +[*](arch.md) +[*](paradigm.md) +[*](foss.md) +[*](smol_internet.md) +[*](xd.md) +[*](niger.md) +[*](mental_outlaw.md) +[*](bazaar.md) +[*](wiki_pages.md) +[*](diogenes.md) +[*](rust.md) +[*](libre.md) +[*](arduboy.md) +[*](technology.md) +[*](public_domain.md) +[*](wikiwikiweb.md) +[*](golang.md) +[*](gigachad.md) +[*](backgammon.md) +[*](os.md) +[*](dependency.md) +[*](real_number.md) +[*](assertiveness.md) +[*](ui.md) +[*](attribution.md) +[*](distrohopping.md) +[*](graveyard.md) +[*](gopher.md) +[*](history.md) +[*](left_right.md) +[*](newspeak.md) +[*](security.md) +[*](systemd.md) +[*](youtube.md) +[*](duke3d.md) +[*](disease.md) +[*](crime_against_economy.md) +[*](facebook.md) +[*](creative_commons.md) +[*](regex.md) +[*](oop.md) +[*](unicode.md) +[*](books.md) +[*](race.md) +[*](3d_modeling.md) +[*](free.md) +[*](less_retarded_software.md) +[*](microtheft.md) +[*](quine.md) +[*](free_speech.md) +[*](lrs.md) +[*](wiki_rights.md) [*](cyber.md) -[*](minesweeper.md) -[*](corporation.md) -[*](fun.md) +[*](ancap.md) +[*](lrs_wiki.md) +[*](patent.md) +[*](copyright.md) +[*](suckless.md) +[*](gaywashing.md) +[*](copyleft.md) +[*](hardware.md) +[*](life.md) +[*](old.md) +[*](interplanetary_internet.md) +[*](fsf.md) +[*](permacomputing.md) +[*](wiby.md) +[*](free_will.md) +[*](randomness.md) +[*](sjw.md) +[*](gigachad.md) +[*](cracking.md) +[*](collision_detection.md) +[*](bloat.md) +[*](morality.md) +[*](build_engine.md) +[*](just_werks.md) +[*](girl.md) +[*](fediverse.md) +[*](c_sharp.md) +[*](deferred_shading.md) +[*](3d_rendering.md) +[*](cloud.md) +[*](comun.md) +[*](sanism.md) +[*](egoism.md) +[*](attribution.md) +[*](bazaar.md) +[*](oop.md) +[*](tranny_software.md) +[*](ai.md) +[*](diogenes.md) +[*](tinyphysicsengine.md) +[*](nd.md) +[*](pseudoleft.md) +[*](assertiveness.md) +[*](jargon_file.md) +[*](free_body.md) +[*](bit.md) +[*](procgen.md) +[*](myths.md) +[*](gopher.md) +[*](open_console.md) +[*](motivation.md) +[*](dodleston.md) [*](e.md) +[*](rationalwiki.md) +[*](future_proof.md) +[*](mob_software.md) [*](comun.md) [*](pseudo3d.md) -[*](bazaar.md) -[*](julia_set.md) +[*](elo.md) +[*](mental_outlaw.md) +[*](mental_outlaw.md) +[*](countercomplex.md) +[*](procgen.md) +[*](marble_race.md) +[*](toxic.md) +[*](raycasting.md) +[*](altruism.md) +[*](loc.md) [*](tom_scott.md) -[*](work.md) -[*](ram.md) -[*](splinternet.md) -[*](pedophilia.md) -[*](library.md) -[*](settled.md) -[*](love.md) -[*](youtube.md) -[*](libertarianism.md) -[*](interpolation.md) -[*](human_language.md) -[*](programming_language.md) -[*](unix.md) -[*](infinity.md) -[*](assertiveness.md) -[*](nigger.md) -[*](feminism.md) -[*](prime.md) -[*](proprietary_software.md) -[*](crypto.md) -[*](demo.md) -[*](easy_to_learn_hard_to_master.md) -[*](creative_commons.md) -[*](nationalism.md) -[*](trusting_trust.md) -[*](deep_blue.md) -[*](shortcut_thinking.md) -[*](art.md) -[*](temple_os.md) -[*](ancap.md) -[*](fsf.md) -[*](compiler_bomb.md) -[*](minigame.md) -[*](hack.md) -[*](goodbye_world.md) -[*](pseudoleft.md) -[*](collapse.md) -[*](aaron_swartz.md) -[*](21st_century.md) -[*](murderer.md) -[*](chinese.md) -[*](faq.md) -[*](fractal.md) -[*](education.md) -[*](analytic_geometry.md) -[*](free_speech.md) -[*](cyber.md) -[*](minesweeper.md) -[*](cancer.md) -[*](anarchism.md) -[*](censorship.md) -[*](yes_they_can.md) -[*](assertiveness.md) -[*](shogi.md) -[*](sin.md) -[*](paywall.md) -[*](fractal.md) -[*](fail_ab.md) -[*](troll.md) -[*](pseudoleft.md) +[*](kiss.md) +[*](evil.md) +[*](hard_to_learn_easy_to_master.md) +[*](linear_algebra.md) +[*](easier_done_than_said.md) +[*](portability.md) [*](sigbovik.md) -[*](4chan.md) +[*](pi.md) +[*](watchdog.md) +[*](mechanical.md) +[*](physics_engine.md) +[*](technology.md) +[*](logic_circuit.md) +[*](shit.md) +[*](interplanetary_internet.md) +[*](security.md) +[*](soyence.md) +[*](saf.md) +[*](nd.md) +[*](interaction_net.md) +[*](permacomputing_wiki.md) +[*](coding.md) +[*](assembly.md) +[*](determinism.md) +[*](procgen.md) +[*](splinternet.md) +[*](often_confused.md) +[*](fractal.md) +[*](backpropagation.md) +[*](zen.md) +[*](rsa.md) +[*](tattoo.md) +[*](programming.md) +[*](anal_bead.md) +[*](version_numbering.md) +[*](life.md) +[*](needed.md) +[*](css.md) +[*](bitreich.md) +[*](tensor_product.md) +[*](interpolation.md) +[*](culture.md) +[*](interaction_net.md) +[*](game_engine.md) +[*](go.md) +[*](entropy.md) +[*](entrepreneur.md) +[*](john_carmack.md) +[*](see_through_clothes.md) +[*](proprietary.md) +[*](tinyphysicsengine.md) +[*](wiki_rights.md) +[*](everyone_does_it.md) +[*](openarena.md) +[*](facebook.md) +[*](low_poly.md) +[*](wiki_style.md) +[*](fixed_point.md) +[*](cos.md) +[*](jesus.md) +[*](bullshit.md) +[*](shader.md) +[*](blender.md) +[*](number.md) +[*](update_culture.md) +[*](zero.md) +[*](float.md) +[*](systemd.md) +[*](vector.md) +[*](primitive_3d.md) +[*](tas.md) +[*](ram.md) +[*](wiki_post_mortem.md) +[*](intellectual_property.md) +[*](kiss.md) +[*](rms.md) +[*](deferred_shading.md) +[*](bloat.md) +[*](cancer.md) +[*](crypto.md) +[*](abstraction.md) +[*](emoticon.md) +[*](boot.md) +[*](anal_bead.md) +[*](fight_culture.md) +[*](trusting_trust.md) +[*](smart.md) +[*](wizard.md) +[*](21st_century.md) +[*](stereotype.md) +[*](distance.md) +[*](anarchism.md) +[*](atheism.md) +[*](ted_kaczynski.md) +[*](permacomputing.md) +[*](often_misunderstood.md) +[*](wiki_stats.md) +[*](gemini.md) +[*](tangram.md) +[*](optimization.md) +[*](library.md) +[*](suicide.md) +[*](antivirus_paradox.md) +[*](small3dlib.md) +[*](elon_musk.md) +[*](soyence.md) +[*](git.md) +[*](infinity.md) +[*](ethics.md) +[*](openai.md) +[*](viznut.md) +[*](software.md) +[*](money.md) +[*](pokitto.md) +[*](open_console.md) +[*](unix_philosophy.md) +[*](c.md) +[*](beauty.md) +[*](black.md) +[*](everyone_does_it.md) +[*](hacking.md) +[*](tranny_software.md) +[*](temple_os.md) +[*](finished.md) +[*](computational_complexity.md) +[*](normalization.md) +[*](apple.md) +[*](race.md) +[*](fascism.md) +[*](minesweeper.md) +[*](hardware.md) +[*](monad.md) +[*](quantum_gate.md) +[*](microsoft.md) +[*](smallchesslib.md) +[*](free_universe.md) +[*](jesus.md) +[*](duke3d.md) +[*](xonotic.md) +[*](paywall.md) +[*](digital_signature.md) +[*](lrs.md) +[*](compsci.md) +[*](bit_hack.md) +[*](football.md) +[*](less_retarded_hardware.md) +[*](hero_culture.md) +[*](body_shaming.md) +[*](everyone_does_it.md) +[*](harry_potter.md) +[*](exercises.md) +[*](x86.md) +[*](piracy.md) +[*](bytecode.md) +[*](beauty.md) +[*](small3dlib.md) +[*](free_body.md) +[*](compression.md) +[*](music.md) +[*](qubit.md) +[*](formal_language.md) +[*](wikiwikiweb.md) +[*](shogi.md) +[*](collision.md) +[*](audiophilia.md) +[*](software.md) +[*](racism.md) +[*](linear_algebra.md) +[*](tas.md) +[*](acronym.md) +[*](disease.md) +[*](approximation.md) +[*](coc.md) +[*](free_will.md) +[*](cos.md) +[*](backpropagation.md) +[*](logic_gate.md) +[*](www.md) +[*](history.md) +[*](3d_rendering.md) +[*](de_facto.md) +[*](trump.md) +[*](fascist.md) +[*](xxiivv.md) +[*](island.md) +[*](bootstrap.md) +[*](antialiasing.md) +[*](living.md) +[*](youtube.md) +[*](one.md) +[*](slowly_boiling_the_frog.md) +[*](data_hoarding.md) +[*](backpropagation.md) +[*](old.md) +[*](splinternet.md) +[*](mandelbrot_set.md) +[*](proof.md) +[*](complexity.md) +[*](uxn.md) +[*](wiki_authors.md) +[*](100r.md) +[*](history.md) +[*](trolling.md) +[*](hexadecimal.md) +[*](firmware.md) +[*](fizzbuzz.md) +[*](rule110.md) +[*](programming_language.md) +[*](logic_gate.md) +[*](boot.md) +[*](netstalking.md) +[*](computer.md) +[*](gender_studies.md) +[*](collapse.md) +[*](often_confused.md) +[*](pd.md) +[*](primitive_3d.md) +[*](julia_set.md) +[*](optimization.md) +[*](io.md) +[*](markov_chain.md) +[*](sdf.md) +[*](zero.md) +[*](collision.md) +[*](modern.md) +[*](rust.md) +[*](sw.md) +[*](prime.md) +[*](sorting.md) +[*](wiki_style.md) +[*](feminism.md) +[*](mainstream.md) +[*](fail_ab.md) +[*](pride.md) +[*](comment.md) +[*](hash.md) +[*](game.md) +[*](langtons_ant.md) +[*](javascript.md) +[*](throwaway_script.md) +[*](cos.md) +[*](tpe.md) +[*](fork.md) +[*](cloud.md) +[*](crow_funding.md) +[*](dick_reveal.md) +[*](binary.md) +[*](military.md) +[*](easier_done_than_said.md) +[*](pi.md) +[*](f2p.md) +[*](capitalist_software.md) +[*](go.md) +[*](c_sharp.md) +[*](graphics.md) +[*](rgb565.md) +[*](kek.md) +[*](physics_engine.md) +[*](cloud.md) +[*](dungeons_and_dragons.md) +[*](recursion.md) +[*](wavelet_transform.md) +[*](small3dlib.md) +[*](tas.md) +[*](ascii_art.md) +[*](productivity_cult.md) +[*](chess.md) +[*](wavelet_transform.md) +[*](autostereogram.md) +[*](niggercoin.md) +[*](hack.md) +[*](demo.md) +[*](app.md) +[*](bullshit.md) +[*](nd.md) +[*](less_retarded_hardware.md) +[*](f2p.md) +[*](collision.md) +[*](regex.md) +[*](sanism.md) +[*](left_right.md) +[*](rust.md) +[*](demoscene.md) +[*](jokes.md) +[*](rationalwiki.md) +[*](programming_language.md) +[*](app.md) +[*](libre.md) +[*](combinatorics.md) +[*](bs.md) +[*](hack.md) +[*](100r.md) +[*](free_body.md) +[*](42.md) +[*](mechanical.md) +[*](hash.md) +[*](free_universe.md) +[*](anarch.md) +[*](niger.md) +[*](internet.md) +[*](fear_culture.md) +[*](recursion.md) +[*](cache.md) +[*](marble_race.md) +[*](anarchism.md) +[*](physics.md) +[*](double_buffering.md) +[*](fourier_transform.md) +[*](pride.md) +[*](framework.md) +[*](game_of_life.md) +[*](progress.md) +[*](copyfree.md) +[*](robot.md) +[*](resnicks_termite.md) +[*](newspeak.md) +[*](data_structure.md) +[*](science.md) +[*](doom.md) +[*](bloat_monopoly.md) +[*](freedom.md) +[*](wiki_post_mortem.md) +[*](floss.md) +[*](tor.md) +[*](thrembo.md) +[*](lambda_calculus.md) +[*](pd.md) +[*](copyleft.md) +[*](sin.md) +[*](global_discussion.md) +[*](gaywashing.md) +[*](pokitto.md) +[*](mipmap.md) +[*](prime.md) +[*](abstraction.md) +[*](fail_ab.md) +[*](holy_war.md) +[*](f2p.md) +[*](sw_rendering.md) +[*](ancap.md) +[*](julia_set.md) +[*](crow_funding.md) +[*](mainstream.md) +[*](hero.md) +[*](speech_synthesis.md) +[*](greenwashing.md) +[*](atan.md) +[*](egoism.md) +[*](axiom_of_choice.md) +[*](music.md) +[*](analytic_geometry.md) +[*](libre.md) +[*](fuck.md) +[*](portal_rendering.md) +[*](anpac.md) +[*](fqa.md) +[*](world_broadcast.md) +[*](low_poly.md) +[*](byte.md) +[*](usenet.md) +[*](version_numbering.md) +[*](reactionary_software.md) +[*](explicit.md) +[*](audiophilia.md) +[*](nigger.md) +[*](terry_davis.md) +[*](yes_they_can.md) +[*](music.md) +[*](nokia.md) +[*](e.md) +[*](piracy.md) +[*](name_is_important.md) +[*](game.md) +[*](magic.md) +[*](permacomputing.md) +[*](encyclopedia.md) +[*](git.md) +[*](21st_century.md) +[*](complexity.md) +[*](sudoku.md) +[*](githopping.md) +[*](exercises.md) +[*](implicit.md) +[*](reactionary_software.md) +[*](graveyard.md) +[*](gay.md) +[*](bitreich.md) +[*](license.md) +[*](ted_kaczynski.md) +[*](rapeware.md) +[*](unary.md) +[*](normalization.md) +[*](implicit.md) +[*](terry_davis.md) +[*](semiconductor.md) +[*](malware.md) +[*](ubi.md) +[*](zuckerberg.md) +[*](lrs.md) +[*](bytebeat.md) +[*](maintenance.md) +[*](doom.md) +[*](collision_detection.md) +[*](venus_project.md) +[*](xxiivv.md) +[*](less_retarded_hardware.md) +[*](cc.md) +[*](steve_jobs.md) +[*](mipmap.md) +[*](justice.md) +[*](furry.md) [*](frameless.md) +[*](portal_rendering.md) +[*](plusnigger.md) +[*](dynamic_programming.md) +[*](creative_commons.md) +[*](tom_scott.md) +[*](stereotype.md) +[*](fun.md) +[*](capitalist_singularity.md) +[*](usa.md) +[*](data_structure.md) +[*](global_discussion.md) +[*](os.md) +[*](english.md) +[*](security.md) +[*](jesus.md) +[*](dinosaur.md) +[*](wiki_pages.md) +[*](arch.md) +[*](line.md) +[*](information.md) +[*](game.md) +[*](trash_magic.md) +[*](luke_smith.md) +[*](foss.md) +[*](elo.md) +[*](work.md) +[*](left.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](tattoo.md) +[*](plan9.md) +[*](web.md) +[*](fizzbuzz.md) +[*](teletext.md) +[*](terry_davis.md) +[*](mud.md) +[*](hard_to_learn_easy_to_master.md) +[*](web.md) +[*](aaron_swartz.md) +[*](dog.md) +[*](pedophilia.md) +[*](furry.md) +[*](zuckerberg.md) +[*](function.md) +[*](blender.md) +[*](maintenance.md) +[*](crow_funding.md) +[*](soydev.md) +[*](hexadecimal.md) +[*](encryption.md) +[*](tor.md) +[*](operating_system.md) +[*](linux.md) +[*](downto.md) +[*](bloat_monopoly.md) +[*](used.md) +[*](raylib.md) +[*](wiki_post_mortem.md) +[*](paradigm.md) +[*](zero.md) +[*](sw_rendering.md) +[*](fascism.md) +[*](lrs_dictionary.md) +[*](data_hoarding.md) +[*](rock.md) +[*](compiler_bomb.md) +[*](programming_style.md) +[*](21st_century.md) +[*](internet.md) +[*](free_hardware.md) +[*](future_proof.md) +[*](sigbovik.md) +[*](pokitto.md) +[*](football.md) +[*](real_number.md) +[*](frameless.md) +[*](minigame.md) +[*](cpu.md) +[*](duskos.md) +[*](fsf.md) +[*](gui.md) +[*](io.md) +[*](modern_software.md) +[*](coc.md) +[*](tangram.md) +[*](computer.md) +[*](science.md) +[*](sjw.md) +[*](e.md) +[*](consumerism.md) +[*](yes_they_can.md) +[*](ubi.md) +[*](shogi.md) +[*](suckless.md) +[*](hardware.md) +[*](settled.md) +[*](xonotic.md) +[*](vim.md) +[*](capitalist_singularity.md) +[*](marxism.md) +[*](ascii_art.md) +[*](fear_culture.md) +[*](vector.md) +[*](cheating.md) +[*](normalization.md) +[*](library.md) +[*](elon_musk.md) +[*](cheating.md) +[*](drummyfish.md) +[*](4chan.md) +[*](cache.md) +[*](dungeons_and_dragons.md) +[*](main.md) +[*](neural_network.md) +[*](faggot.md) +[*](sdf.md) +[*](emoticon.md) +[*](tech.md) +[*](kids_these_days.md) +[*](algorithm.md) +[*](bloat.md) +[*](frameless.md) +[*](lil.md) +[*](motivation.md) +[*](billboard.md) +[*](ascii.md) +[*](moderation.md) +[*](aliasing.md) +[*](dinosaur.md) +[*](forth.md) +[*](algorithm.md) +[*](youtube.md) +[*](brain_software.md) +[*](fantasy_console.md) +[*](data_structure.md) +[*](brainfuck.md) +[*](fediverse.md) +[*](free_speech.md) +[*](proprietary_software.md) +[*](nc.md) +[*](chess.md) +[*](girl.md) +[*](faggot.md) +[*](infinity.md) +[*](avpd.md) +[*](number.md) +[*](twos_complement.md) +[*](demo.md) +[*](dick_reveal.md) +[*](gemini.md) +[*](cc0.md) +[*](fun.md) +[*](throwaway_script.md) +[*](framework.md) +[*](lmao.md) +[*](proof.md) +[*](floss.md) +[*](fight.md) +[*](palette.md) +[*](suicide.md) +[*](operating_system.md) +[*](kwangmyong.md) +[*](hero_culture.md) +[*](triangle.md) +[*](faq.md) +[*](freedom.md) +[*](version_numbering.md) +[*](pseudominimalism.md) +[*](pseudorandomness.md) +[*](universe.md) +[*](zuckerberg.md) +[*](jedi_engine.md) +[*](operating_system.md) +[*](sqrt.md) +[*](racism.md) +[*](zen.md) +[*](fun.md) +[*](google.md) +[*](myths.md) +[*](rights_culture.md) +[*](license.md) +[*](bs.md) +[*](faq.md) +[*](digital.md) +[*](logic.md) +[*](feminism.md) +[*](magic.md) +[*](good_enough.md) +[*](neural_network.md) +[*](chess.md) +[*](quantum_gate.md) +[*](drummyfish.md) +[*](unicode.md) +[*](graphics.md) +[*](software.md) +[*](wavelet_transform.md) +[*](goodbye_world.md) +[*](openai.md) +[*](justice.md) +[*](analog.md) +[*](wikipedia.md) +[*](mouse.md) +[*](niggercoin.md) +[*](hyperoperation.md) +[*](czechia.md) +[*](axiom_of_choice.md) +[*](microtheft.md) +[*](game_engine.md) +[*](diogenes.md) +[*](progress.md) +[*](chaos.md) +[*](anpac.md) +[*](femoid.md) +[*](de_facto.md) +[*](whale.md) +[*](anarchism.md) +[*](graphics.md) +[*](sorting.md) +[*](hard_to_learn_easy_to_master.md) +[*](watchdog.md) +[*](magic.md) +[*](venus_project.md) +[*](pseudominimalism.md) +[*](jokes.md) +[*](people.md) +[*](sw.md) +[*](living.md) +[*](plusnigger.md) +[*](nanogenmo.md) +[*](mandelbrot_set.md) +[*](game_of_life.md) +[*](kiwifarms.md) +[*](world_broadcast.md) +[*](corporation.md) +[*](pi.md) +[*](reddit.md) +[*](steganography.md) +[*](shit.md) +[*](gay.md) +[*](tech.md) +[*](dungeons_and_dragons.md) +[*](quaternion.md) +[*](interesting.md) +[*](cracking.md) +[*](suicide.md) +[*](cracking.md) +[*](shortcut_thinking.md) +[*](earth.md) +[*](javascript.md) +[*](pseudo3d.md) +[*](regex.md) +[*](cpp.md) +[*](x86.md) +[*](luke_smith.md) +[*](main.md) +[*](beauty.md) +[*](selflessness.md) +[*](antialiasing.md) +[*](windows.md) +[*](trump.md) +[*](pseudoleft.md) +[*](x86.md) +[*](goodbye_world.md) +[*](body_shaming.md) +[*](communism.md) +[*](3d_model.md) +[*](emoticon.md) +[*](windows.md) +[*](distrohopping.md) +[*](soydev.md) +[*](java.md) +[*](memory_management.md) +[*](pseudorandomness.md) +[*](see_through_clothes.md) +[*](world_broadcast.md) +[*](boat.md) +[*](mechanical.md) +[*](free_universe.md) +[*](deep_blue.md) +[*](README.md) +[*](greenwashing.md) +[*](pseudo3d.md) +[*](minigame.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](yes_they_can.md) +[*](needed.md) +[*](free_culture.md) +[*](fork.md) +[*](fuck.md) +[*](sanism.md) +[*](communism.md) +[*](coding.md) +[*](education.md) +[*](privacy.md) +[*](hacker_culture.md) +[*](autoupdate.md) +[*](open_source.md) +[*](brain_software.md) +[*](entropy.md) +[*](c_pitfalls.md) +[*](atan.md) +[*](faq.md) +[*](modern_software.md) +[*](chaos.md) +[*](free_hardware.md) +[*](hacker_culture.md) +[*](autostereogram.md) +[*](wikidata.md) +[*](distance.md) +[*](4chan.md) +[*](bootstrap.md) +[*](fight.md) +[*](monad.md) +[*](lil.md) +[*](turing_machine.md) +[*](crime_against_economy.md) +[*](langtons_ant.md) +[*](google.md) +[*](flatland.md) +[*](c.md) +[*](political_correctness.md) +[*](www.md) +[*](quantum_gate.md) +[*](bill_gates.md) +[*](shogi.md) +[*](global_discussion.md) +[*](sigbovik.md) +[*](john_carmack.md) +[*](dog.md) +[*](tranny_software.md) +[*](democracy.md) +[*](political_correctness.md) +[*](cc0.md) +[*](autostereogram.md) +[*](randomness.md) +[*](shortcut_thinking.md) +[*](fail_ab.md) +[*](viznut.md) +[*](ioccc.md) +[*](noise.md) +[*](entrepreneur.md) +[*](one.md) +[*](raycastlib.md) +[*](backgammon.md) +[*](communism.md) +[*](saf.md) +[*](earth.md) +[*](docker.md) +[*](mouse.md) +[*](work.md) +[*](color.md) +[*](woman.md) +[*](furry.md) +[*](bilinear.md) +[*](fractal.md) +[*](temple_os.md) +[*](no_knowledge_proof.md) +[*](analytic_geometry.md) +[*](left.md) +[*](name_is_important.md) +[*](fascism.md) +[*](smallchesslib.md) +[*](assertiveness.md) +[*](main.md) +[*](rapeware.md) +[*](nationalism.md) +[*](thrembo.md) +[*](evil.md) +[*](cpp.md) +[*](rgb332.md) +[*](stereotype.md) +[*](competition.md) +[*](shader.md) +[*](comment.md) +[*](hexadecimal.md) +[*](loc.md) +[*](bit.md) +[*](bloat_monopoly.md) +[*](motivation.md) +[*](proprietary.md) +[*](nanogenmo.md) +[*](hacker_culture.md) +[*](kiwifarms.md) +[*](ethics.md) +[*](xd.md) +[*](complexity.md) +[*](anarch.md) +[*](uxn.md) +[*](collapse.md) +[*](xonotic.md) +[*](compsci.md) +[*](wiki_authors.md) +[*](gemini.md) +[*](chinese.md) +[*](fight_culture.md) +[*](nord_vpn.md) +[*](moderation.md) +[*](island.md) +[*](trom.md) +[*](programming_tips.md) +[*](finished.md) +[*](wiki_stats.md) +[*](temple_os.md) +[*](computational_complexity.md) +[*](web.md) +[*](public_domain_computer.md) +[*](crypto.md) +[*](rights_culture.md) +[*](antivirus_paradox.md) +[*](unicode.md) +[*](binary.md) +[*](future_proof.md) +[*](elon_musk.md) +[*](duskos.md) +[*](hacking.md) +[*](how_to.md) +[*](love.md) +[*](math.md) +[*](portal_rendering.md) +[*](collision_detection.md) +[*](math.md) +[*](interpolation.md) +[*](go.md) +[*](gui.md) +[*](atheism.md) +[*](smol_internet.md) +[*](wizard.md) +[*](rock.md) +[*](analog.md) +[*](rock.md) +[*](explicit.md) +[*](dependency.md) +[*](czechia.md) +[*](microtheft.md) +[*](wizard.md) +[*](racetrack.md) +[*](soyence.md) +[*](intellectual_property.md) +[*](forth.md) +[*](abstraction.md) +[*](lrs_dictionary.md) +[*](float.md) +[*](productivity_cult.md) +[*](pedophilia.md) +[*](john_carmack.md) +[*](love.md) +[*](boat.md) +[*](maintenance.md) +[*](cracker.md) +[*](murderer.md) +[*](fight.md) +[*](dinosaur.md) +[*](rgb565.md) +[*](vim.md) +[*](quine.md) +[*](lrs_wiki.md) +[*](c_tutorial.md) +[*](splinternet.md) +[*](3d_modeling.md) +[*](hack.md) +[*](smart.md) +[*](compiler_bomb.md) +[*](bullshit.md) +[*](billboard.md) +[*](encyclopedia.md) +[*](human_language.md) +[*](piracy.md) +[*](analytic_geometry.md) +[*](js.md) +[*](copyleft.md) +[*](fear_culture.md) +[*](flatland.md) +[*](deep_blue.md) +[*](english.md) +[*](math.md) +[*](nationalism.md) +[*](xd.md) +[*](kwangmyong.md) +[*](kek.md) +[*](troll.md) +[*](no_knowledge_proof.md) +[*](modern.md) +[*](reddit.md) +[*](js.md) +[*](dog.md) +[*](esolang.md) +[*](wiby.md) +[*](triangle.md) +[*](unix_philosophy.md) +[*](langtons_ant.md) +[*](bill_gates.md) +[*](mud.md) +[*](programming.md) +[*](lambda_calculus.md) +[*](p_vs_np.md) +[*](ssao.md) +[*](gui.md) +[*](universe.md) +[*](shader.md) +[*](netstalking.md) +[*](sqrt.md) +[*](fsf.md) +[*](usenet.md) +[*](work.md) +[*](ui.md) +[*](neural_network.md) +[*](linear_algebra.md) +[*](good_enough.md) +[*](logic.md) +[*](ronja.md) +[*](bitreich.md) +[*](settled.md) +[*](microtransaction.md) +[*](usenet.md) +[*](black.md) +[*](prime.md) +[*](physics.md) +[*](liberalism.md) +[*](selflessness.md) +[*](acronym.md) +[*](js.md) +[*](computational_complexity.md) +[*](luke_smith.md) +[*](censorship.md) +[*](teletext.md) +[*](elo.md) +[*](kek.md) +[*](python.md) +[*](mud.md) +[*](capitalist_software.md) +[*](consumerism.md) +[*](iq.md) +[*](goodbye_world.md) +[*](soydev.md) +[*](c_tutorial.md) +[*](gnu.md) +[*](left.md) +[*](quine.md) +[*](unix_philosophy.md) +[*](semiconductor.md) +[*](easy_to_learn_hard_to_master.md) +[*](os.md) +[*](censorship.md) +[*](windows.md) +[*](sudoku.md) +[*](ascii.md) +[*](42.md) +[*](malware.md) +[*](pedophilia.md) +[*](npc.md) +[*](resnicks_termite.md) +[*](right.md) +[*](unretard.md) +[*](countercomplex.md) +[*](liberalism.md) +[*](free_software.md) +[*](lgbt.md) +[*](minesweeper.md) +[*](fqa.md) +[*](military.md) +[*](malware.md) +[*](approximation.md) +[*](hero_culture.md) +[*](hw.md) +[*](io.md) +[*](phd.md) +[*](open_console.md) +[*](tpe.md) +[*](mouse.md) +[*](unix.md) +[*](racism.md) +[*](nc.md) +[*](encryption.md) +[*](README.md) +[*](debugging.md) +[*](bill_gates.md) +[*](fizzbuzz.md) +[*](fight_culture.md) +[*](c_sharp.md) +[*](computer.md) +[*](less_retarded_software.md) +[*](number.md) +[*](interesting.md) +[*](public_domain.md) +[*](palette.md) +[*](nord_vpn.md) +[*](harry_potter.md) +[*](reactionary_software.md) +[*](css.md) +[*](easier_done_than_said.md) +[*](rms.md) +[*](tpe.md) +[*](books.md) +[*](sjw.md) +[*](creative_commons.md) +[*](ioccc.md) +[*](countercomplex.md) +[*](programming.md) +[*](murderer.md) +[*](lrs_dictionary.md) +[*](turing_machine.md) +[*](autoupdate.md) +[*](copyright.md) +[*](selflessness.md) +[*](cat_v.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](bytecode.md) +[*](google.md) +[*](javascript.md) +[*](name_is_important.md) +[*](aaron_swartz.md) +[*](marketing.md) +[*](tech.md) +[*](left_right.md) +[*](cc.md) +[*](githopping.md) +[*](ssao.md) +[*](trom.md) +[*](gay.md) +[*](bazaar.md) +[*](pseudominimalism.md) +[*](wikiwikiweb.md) +[*](education.md) +[*](brainfuck.md) +[*](boat.md) +[*](byte.md) +[*](drummyfish.md) +[*](gender_studies.md) +[*](oop.md) +[*](technology.md) +[*](approximation.md) +[*](docker.md) +[*](steganography.md) +[*](blender.md) +[*](used.md) +[*](boot.md) +[*](capitalist_singularity.md) +[*](autoupdate.md) +[*](attribution.md) +[*](jargon_file.md) +[*](zen.md) +[*](gopher.md) +[*](tattoo.md) +[*](vim.md) +[*](woman.md) +[*](egoism.md) +[*](ram.md) +[*](logic_circuit.md) +[*](less_retarded_software.md) +[*](anarch.md) +[*](myths.md) +[*](needed.md) +[*](unix.md) +[*](shortcut_thinking.md) +[*](anpac.md) +[*](kids_these_days.md) +[*](trolling.md) +[*](whale.md) +[*](wikipedia.md) +[*](holy_war.md) +[*](rgb332.md) +[*](public_domain_computer.md) +[*](dick_reveal.md) +[*](ascii_art.md) +[*](body_shaming.md) +[*](speech_synthesis.md) +[*](often_misunderstood.md) +[*](cracker.md) +[*](open_source.md) +[*](bbs.md) +[*](ai.md) +[*](mainstream.md) +[*](chasm_the_rift.md) +[*](logic_circuit.md) +[*](charity_sex.md) +[*](rgb332.md) +[*](privacy.md) +[*](formal_language.md) +[*](cc.md) +[*](wiki_style.md) +[*](programming_style.md) +[*](cat_v.md) +[*](microtransaction.md) +[*](competition.md) +[*](semiconductor.md) +[*](julia_set.md) +[*](wiki_pages.md) [*](function.md) [*](fourier_transform.md) -[*](autostereogram.md) -[*](wiki_stats.md) -[*](digital.md) -[*](pride.md) -[*](fqa.md) -[*](hard_to_learn_easy_to_master.md) -[*](infinity.md) -[*](people.md) -[*](crow_funding.md) -[*](living.md) -[*](fascism.md) -[*](ted_kaczynski.md) -[*](hacker_culture.md) -[*](rgb332.md) -[*](go.md) -[*](countercomplex.md) -[*](sqrt.md) -[*](triangle.md) -[*](npc.md) -[*](corporation.md) -[*](patent.md) -[*](bit.md) -[*](ascii.md) -[*](library.md) -[*](youtube.md) -[*](openai.md) -[*](small3dlib.md) -[*](app.md) -[*](ubi.md) -[*](diogenes.md) -[*](left.md) -[*](venus_project.md) -[*](open_source.md) -[*](cc.md) -[*](analytic_geometry.md) -[*](small3dlib.md) -[*](kiwifarms.md) [*](marxism.md) -[*](whale.md) -[*](fear_culture.md) -[*](collision_detection.md) -[*](jargon_file.md) -[*](furry.md) -[*](qubit.md) -[*](zuckerberg.md) -[*](nord_vpn.md) -[*](productivity_cult.md) +[*](trusting_trust.md) +[*](debugging.md) +[*](duke3d.md) +[*](newspeak.md) +[*](mob_software.md) +[*](ui.md) +[*](hw.md) +[*](fantasy_console.md) +[*](implicit.md) +[*](wikipedia.md) +[*](nokia.md) +[*](phd.md) +[*](thrembo.md) +[*](rsa.md) +[*](femoid.md) +[*](sin.md) +[*](free_speech.md) +[*](finished.md) +[*](bytecode.md) +[*](hero.md) +[*](kids_these_days.md) +[*](pseudorandomness.md) +[*](nc.md) +[*](rgb565.md) +[*](wikidata.md) +[*](often_misunderstood.md) +[*](viznut.md) +[*](transistor.md) +[*](sqrt.md) +[*](steganography.md) [*](portability.md) -[*](cache.md) -[*](docker.md) -[*](cancer.md) -[*](crow_funding.md) -[*](line.md) +[*](double_buffering.md) +[*](how_to.md) +[*](memory_management.md) +[*](mipmap.md) +[*](trom.md) +[*](hacking.md) +[*](cpu.md) +[*](minesweeper.md) +[*](bbs.md) +[*](game_engine.md) +[*](fixed_point.md) +[*](float.md) +[*](gnu.md) +[*](pseudoleft.md) +[*](smol_internet.md) +[*](paywall.md) +[*](easy_to_learn_hard_to_master.md) +[*](digital.md) +[*](love.md) +[*](information.md) [*](right.md) -[*](c_tutorial.md) -[*](turing_machine.md) -[*](combinatorics.md) -[*](elo.md) -[*](byte.md) -[*](dodleston.md) -[*](finished.md) -[*](antivirus_paradox.md) -[*](shit.md) -[*](atan.md) -[*](regex.md) +[*](tensor_product.md) +[*](sw.md) +[*](c_pitfalls.md) +[*](antialiasing.md) +[*](rationalwiki.md) +[*](social_inertia.md) +[*](trusting_trust.md) +[*](42.md) +[*](sin.md) +[*](english.md) +[*](golang.md) +[*](logic_gate.md) +[*](unretard.md) +[*](democracy.md) +[*](golang.md) +[*](java.md) +[*](ram.md) +[*](palette.md) +[*](openarena.md) +[*](free_culture.md) +[*](just_werks.md) +[*](dynamic_programming.md) +[*](ubi.md) +[*](noise.md) +[*](raycasting.md) +[*](tom_scott.md) +[*](twos_complement.md) +[*](paywall.md) +[*](usa.md) +[*](bootstrap.md) +[*](geek.md) +[*](slowly_boiling_the_frog.md) +[*](distance.md) +[*](100r.md) +[*](public_domain_computer.md) +[*](permacomputing_wiki.md) [*](analog.md) -[*](kek.md) -[*](modern_software.md) -[*](permacomputing.md) -[*](security.md) -[*](finished.md) -[*](luke_smith.md) -[*](fight_culture.md) +[*](evil.md) +[*](duskos.md) +[*](wow.md) +[*](encryption.md) +[*](tinyphysicsengine.md) +[*](corporation.md) +[*](rms.md) +[*](slowly_boiling_the_frog.md) +[*](java.md) +[*](double_buffering.md) +[*](combinatorics.md) +[*](demoscene.md) +[*](harry_potter.md) +[*](deferred_shading.md) +[*](less_retarded_society.md) +[*](privacy.md) +[*](free_culture.md) +[*](proprietary.md) +[*](ioccc.md) +[*](suckless.md) +[*](ssao.md) +[*](fixed_point.md) +[*](libertarianism.md) +[*](determinism.md) +[*](bilinear.md) +[*](justice.md) +[*](productivity_cult.md) +[*](freedom.md) +[*](hyperoperation.md) +[*](githopping.md) +[*](fork.md) +[*](gigachad.md) +[*](combinatorics.md) +[*](wiby.md) +[*](algorithm.md) +[*](markov_chain.md) +[*](microsoft.md) +[*](capitalism.md) +[*](downto.md) +[*](marble_race.md) +[*](dodleston.md) +[*](charity_sex.md) +[*](jedi_engine.md) +[*](antivirus_paradox.md) +[*](easy_to_learn_hard_to_master.md) +[*](minimalism.md) +[*](greenwashing.md) +[*](comment.md) +[*](plan9.md) +[*](patent.md) +[*](cheating.md) +[*](science.md) [*](murderer.md) -[*](dinosaur.md) -[*](cracker.md) -[*](tattoo.md) +[*](bilinear.md) +[*](libertarianism.md) +[*](bs.md) +[*](toxic.md) +[*](wow.md) +[*](programming_tips.md) +[*](lmao.md) +[*](minimalism.md) +[*](good_enough.md) +[*](build_engine.md) +[*](devuan.md) +[*](firmware.md) +[*](library.md) +[*](README.md) +[*](universe.md) +[*](microtransaction.md) +[*](atan.md) +[*](linux.md) +[*](minimalism.md) +[*](woman.md) +[*](island.md) +[*](lmao.md) +[*](markov_chain.md) +[*](dodleston.md) +[*](bit_hack.md) +[*](raylib.md) +[*](de_facto.md) +[*](proprietary_software.md) +[*](npc.md) +[*](firmware.md) +[*](nord_vpn.md) +[*](libertarianism.md) +[*](trolling.md) +[*](digital_signature.md) +[*](art.md) +[*](memory_management.md) +[*](free_will.md) +[*](programming_language.md) +[*](femoid.md) +[*](robot.md) +[*](reddit.md) +[*](social_inertia.md) +[*](cyber.md) +[*](holy_war.md) +[*](app.md) +[*](docker.md) +[*](avpd.md) +[*](deep_blue.md) +[*](resnicks_termite.md) +[*](color.md) +[*](axiom_of_choice.md) +[*](paradigm.md) +[*](assembly.md) +[*](brain_software.md) +[*](entrepreneur.md) +[*](marketing.md) +[*](censorship.md) +[*](used.md) +[*](aliasing.md) +[*](proprietary_software.md) +[*](encyclopedia.md) +[*](free_hardware.md) +[*](assembly.md) +[*](arch.md) +[*](wiki_rights.md) [*](arduboy.md) +[*](gender_studies.md) +[*](optimization.md) +[*](interpolation.md) +[*](altruism.md) +[*](culture.md) +[*](cc0.md) +[*](minigame.md) +[*](kwangmyong.md) +[*](update_culture.md) +[*](www.md) +[*](marxism.md) +[*](toxic.md) +[*](avpd.md) +[*](race.md) +[*](social_inertia.md) +[*](democracy.md) +[*](aliasing.md) +[*](morality.md) +[*](feminism.md) +[*](qubit.md) +[*](aaron_swartz.md) +[*](devuan.md) +[*](less_retarded_society.md) +[*](demo.md) +[*](kiss.md) +[*](debugging.md) +[*](update_culture.md) +[*](fuck.md) +[*](crime_against_economy.md) +[*](color.md) +[*](c.md) +[*](raycastlib.md) +[*](rule110.md) +[*](free_software.md) +[*](proof.md) +[*](racetrack.md) +[*](phd.md) +[*](netstalking.md) +[*](turing_machine.md) +[*](books.md) +[*](rule110.md) +[*](corporation.md) +[*](logic.md) +[*](doom.md) +[*](flatland.md) +[*](one.md) +[*](geek.md) +[*](moderation.md) +[*](wiki_authors.md) +[*](fourier_transform.md) +[*](living.md) +[*](systemd.md) +[*](military.md) +[*](football.md) +[*](nigger.md) +[*](ethics.md) +[*](whale.md) +[*](sdf.md) +[*](people.md) +[*](bytebeat.md) +[*](permacomputing_wiki.md) +[*](npc.md) +[*](settled.md) +[*](comun.md) +[*](forth.md) +[*](cache.md) +[*](ted_kaczynski.md) +[*](bit_hack.md) +[*](fractal.md) +[*](ascii.md) +[*](less_retarded_society.md) +[*](pd.md) +[*](throwaway_script.md) +[*](framework.md) +[*](foss.md) +[*](sorting.md) +[*](hero.md) +[*](chasm_the_rift.md) +[*](tangram.md) +[*](iq.md) +[*](recursion.md) +[*](chasm_the_rift.md) +[*](venus_project.md) +[*](art.md) +[*](tensor_product.md) +[*](qubit.md) +[*](apple.md) +[*](fascist.md) +[*](cancer.md) +[*](internet.md) +[*](shit.md) +[*](physics.md) +[*](black.md) +[*](cpp.md) +[*](uxn.md) +[*](lambda_calculus.md) +[*](capitalism.md) +[*](art.md) +[*](robot.md) +[*](loc.md) +[*](microsoft.md) +[*](free.md) +[*](low_poly.md) +[*](cracker.md) +[*](determinism.md) +[*](primitive_3d.md) +[*](dynamic_programming.md) +[*](copyfree.md) +[*](competition.md) +[*](xxiivv.md) +[*](modern.md) +[*](right.md) +[*](information.md) +[*](mandelbrot_set.md) +[*](gnu.md) +[*](demoscene.md) +[*](girl.md) +[*](no_knowledge_proof.md) +[*](troll.md) +[*](sw_rendering.md) +[*](fediverse.md) +[*](arduboy.md) +[*](line.md) +[*](people.md) +[*](cat_v.md) +[*](unary.md) [*](backgammon.md) -[*](creative_commons.md) +[*](coc.md) +[*](consumerism.md) +[*](programming_style.md) +[*](wow.md) +[*](ancap.md) +[*](progress.md) +[*](3d_model.md) +[*](tor.md) +[*](usa.md) +[*](real_number.md) +[*](linux.md) +[*](sudoku.md) +[*](human_language.md) +[*](fqa.md) +[*](public_domain.md) +[*](compsci.md) +[*](downto.md) +[*](pride.md) +[*](ai.md) +[*](altruism.md) +[*](portability.md) +[*](often_confused.md) +[*](raylib.md) +[*](triangle.md) +[*](esolang.md) +[*](chinese.md) +[*](hw.md) +[*](lrs_wiki.md) +[*](git.md) +[*](troll.md) +[*](3d_rendering.md) +[*](acronym.md) +[*](raycasting.md) +[*](function.md) +[*](compiler_bomb.md) +[*](life.md) +[*](copyright.md) +[*](unretard.md) +[*](interesting.md) +[*](steve_jobs.md) +[*](compression.md) +[*](open_source.md) +[*](entropy.md) +[*](ronja.md) +[*](chaos.md) +[*](atheism.md) +[*](gaywashing.md) +[*](programming_tips.md) +[*](education.md) diff --git a/unix_philosophy.md b/unix_philosophy.md index 0781809..eb8de4c 100644 --- a/unix_philosophy.md +++ b/unix_philosophy.md @@ -1,6 +1,6 @@ # Unix Philosophy -Unix philosophy is one of the most important and essential approaches to [programming](programming.md) (and by extension all [technology](tech.md) design) which advocates great [minimalism](minimalism.md) and is best known by the saying that **a program should only do one thing and do it well**. Unix philosophy is a collective [wisdom](wisdom.md), a set of design recommendations evolved during the development of one of the earliest (and most historically important) [operating systems](os.md) called [Unix](unix.md), hence the name. Having been defined by [hackers](hacking.md) (the true, old style ones) the philosophy naturally advises for providing a set of many highly effective tools that can be combined in various ways, i.e. to perform [hacking](hacking.md), rather than being restricted by a fixed, intended functionality of huge do-it-all programs. Unix philosophy advocates [simplicity](kiss.md), clarity, modularity, reusability and composition of larger programs out of very small programs rather than designing huge monolithic programs as a whole. Unix philosophy, at least partially, lives on in many project and Unix-like operating systems such as [Linux](linux.md) (though Linux is more and more distancing from Unix), has been wholly adopted by groups such as [suckless](suckless.md) and [LRS](lrs.md) (us), and is even being reiterated in such projects as [plan9](plan9.md). +Unix philosophy is one of the most important and essential approaches to [programming](programming.md) (and by extension all [technology](tech.md) design) which advocates great [minimalism](minimalism.md) and is best known by the saying that **a program should only do one thing and do it well**. Unix philosophy is a collective [wisdom](wisdom.md), a set of design recommendations evolved during the development of one of the earliest (and most historically important) [operating systems](os.md) called [Unix](unix.md), hence the name. Having been defined by [hackers](hacking.md) (the true, old style ones) the philosophy naturally advises for providing a set of many highly effective tools that can be combined in various ways, i.e. to perform [hacking](hacking.md), rather than being restricted by a fixed, intended functionality of huge do-it-all programs. Unix philosophy advocates [simplicity](kiss.md), clarity, modularity, reusability and composition of larger programs out of very small programs rather than designing huge monolithic programs as a whole. Unix philosophy, at least partially, lives on in many project and Unix-like operating systems such as [GNU](gnu.md)/[Linux](linux.md) (though GNU/Linux distros are more and more distancing from Unix), has been wholly adopted by groups such as [suckless](suckless.md) and [LRS](lrs.md) (us), and is even being reiterated in such projects as [plan9](plan9.md). NOTE: see also *[everything is a file](everything_is_a_file.md)*, another famous design principle of Unix -- this one is rather seen as a Unix-specific design choice rather than part of the general Unix philosophy itself, but it helps paint the whole picture. diff --git a/wiki_pages.md b/wiki_pages.md index bac2214..5b280a4 100644 --- a/wiki_pages.md +++ b/wiki_pages.md @@ -2,4 +2,4 @@ This is an autogenerated page listing all pages. -**[100r](100r.md)** (3) -- **[21st_century](21st_century.md)** (4) -- **[3d_model](3d_model.md)** (243) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (285) -- **[42](42.md)** (13) -- **[4chan](4chan.md)** (25) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (388) -- **[ai](ai.md)** (12) -- **[algorithm](algorithm.md)** (219) -- **[aliasing](aliasing.md)** (60) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (2) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (93) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (29) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (4) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (18) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (12) -- **[ascii](ascii.md)** (151) -- **[ascii_art](ascii_art.md)** (206) -- **[assembly](assembly.md)** (255) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (22) -- **[atheism](atheism.md)** (14) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autostereogram](autostereogram.md)** (119) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (28) -- **[beauty](beauty.md)** (22) -- **[bilinear](bilinear.md)** (117) -- **[bill_gates](bill_gates.md)** (27) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (138) -- **[bit](bit.md)** (4) -- **[bit_hack](bit_hack.md)** (172) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (195) -- **[bloat_monopoly](bloat_monopoly.md)** (11) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (32) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (41) -- **[brain_software](brain_software.md)** (10) -- **[brainfuck](brainfuck.md)** (122) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (48) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (280) -- **[c](c.md)** (309) -- **[c_pitfalls](c_pitfalls.md)** (156) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2151) -- **[cache](cache.md)** (27) -- **[cancer](cancer.md)** (24) -- **[capitalism](capitalism.md)** (134) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (12) -- **[censorship](censorship.md)** (43) -- **[chaos](chaos.md)** (108) -- **[charity_sex](charity_sex.md)** (2) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (8) -- **[chess](chess.md)** (303) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[coc](coc.md)** (15) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (20) -- **[color](color.md)** (25) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (19) -- **[communism](communism.md)** (27) -- **[competition](competition.md)** (12) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (233) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (95) -- **[consumerism](consumerism.md)** (12) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (29) -- **[copyright](copyright.md)** (47) -- **[corporation](corporation.md)** (18) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (4) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (15) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (34) -- **[css](css.md)** (66) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[czechia](czechia.md)** (14) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[debugging](debugging.md)** (119) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (50) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (14) -- **[digital_signature](digital_signature.md)** (8) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (34) -- **[disease](disease.md)** (38) -- **[distance](distance.md)** (124) -- **[distrohopping](distrohopping.md)** (10) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (31) -- **[doom](doom.md)** (50) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[drummyfish](drummyfish.md)** (35) -- **[duke3d](duke3d.md)** (20) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (28) -- **[dynamic_programming](dynamic_programming.md)** (44) -- **[e](e.md)** (22) -- **[earth](earth.md)** (66) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (15) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (73) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (15) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (262) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (2) -- **[fail_ab](fail_ab.md)** (38) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (243) -- **[fascism](fascism.md)** (23) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (47) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (8) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (151) -- **[fizzbuzz](fizzbuzz.md)** (158) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (49) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (128) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (69) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (36) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (60) -- **[free_speech](free_speech.md)** (16) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (14) -- **[fsf](fsf.md)** (17) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (30) -- **[function](function.md)** (137) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (44) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (10) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (70) -- **[githopping](githopping.md)** (4) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (55) -- **[go](go.md)** (96) -- **[golang](golang.md)** (18) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (24) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (28) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (75) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (12) -- **[hexadecimal](hexadecimal.md)** (4) -- **[history](history.md)** (98) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (206) -- **[human_language](human_language.md)** (28) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (23) -- **[internet](internet.md)** (105) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (45) -- **[io](io.md)** (16) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (113) -- **[island](island.md)** (38) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (86) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (89) -- **[john_carmack](john_carmack.md)** (20) -- **[jokes](jokes.md)** (81) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (22) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (6) -- **[kids_these_days](kids_these_days.md)** (2) -- **[kiss](kiss.md)** (37) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (158) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (53) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (136) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (22) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (56) -- **[life](life.md)** (6) -- **[lil](lil.md)** (20) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (116) -- **[linux](linux.md)** (63) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (43) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (11) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[love](love.md)** (26) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (156) -- **[lrs_dictionary](lrs_dictionary.md)** (97) -- **[lrs_wiki](lrs_wiki.md)** (36) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (125) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (8) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (55) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (37) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (14) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (43) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (10) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (69) -- **[netstalking](netstalking.md)** (9) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (8) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (27) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (112) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (2) -- **[number](number.md)** (292) -- **[often_confused](often_confused.md)** (111) -- **[often_misunderstood](often_misunderstood.md)** (15) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (62) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (39) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (70) -- **[optimization](optimization.md)** (99) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (23) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (34) -- **[people](people.md)** (62) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (8) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (70) -- **[portability](portability.md)** (166) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (2) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (24) -- **[procgen](procgen.md)** (352) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (33) -- **[programming_language](programming_language.md)** (171) -- **[programming_style](programming_style.md)** (73) -- **[programming_tips](programming_tips.md)** (16) -- **[progress](progress.md)** (30) -- **[proof](proof.md)** (4) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (10) -- **[pseudorandomness](pseudorandomness.md)** (4) -- **[public_domain](public_domain.md)** (86) -- **[public_domain_computer](public_domain_computer.md)** (55) -- **[python](python.md)** (26) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (50) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (9) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1738) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (8) -- **[raycasting](raycasting.md)** (291) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (22) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (48) -- **[recursion](recursion.md)** (64) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (206) -- **[rgb332](rgb332.md)** (91) -- **[rgb565](rgb565.md)** (4) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (51) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (107) -- **[rust](rust.md)** (24) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (22) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (15) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (17) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (15) -- **[shit](shit.md)** (29) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (12) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (181) -- **[sjw](sjw.md)** (25) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (8) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (234) -- **[soydev](soydev.md)** (37) -- **[soyence](soyence.md)** (45) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (74) -- **[ssao](ssao.md)** (10) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (153) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (207) -- **[suicide](suicide.md)** (8) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (63) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (70) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (2) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (6) -- **[ted_kaczynski](ted_kaczynski.md)** (26) -- **[teletext](teletext.md)** (13) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (11) -- **[thrembo](thrembo.md)** (15) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny_software](tranny_software.md)** (27) -- **[transistor](transistor.md)** (30) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (23) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (207) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (30) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unicode](unicode.md)** (6) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (11) -- **[update_culture](update_culture.md)** (21) -- **[usa](usa.md)** (57) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (45) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (50) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (8) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (14) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (213) -- **[wiki_style](wiki_style.md)** (71) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (95) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (8) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (113) -- **[work](work.md)** (32) -- **[world_broadcast](world_broadcast.md)** (12) -- **[wow](wow.md)** (8) -- **[www](www.md)** (107) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (101) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (8) -- **[youtube](youtube.md)** (22) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (30) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file +**[100r](100r.md)** (3) -- **[21st_century](21st_century.md)** (4) -- **[3d_model](3d_model.md)** (243) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (285) -- **[42](42.md)** (13) -- **[4chan](4chan.md)** (25) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (388) -- **[ai](ai.md)** (12) -- **[algorithm](algorithm.md)** (219) -- **[aliasing](aliasing.md)** (60) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (2) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (93) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (29) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (4) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (18) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (12) -- **[ascii](ascii.md)** (151) -- **[ascii_art](ascii_art.md)** (206) -- **[assembly](assembly.md)** (255) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (22) -- **[atheism](atheism.md)** (14) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autostereogram](autostereogram.md)** (119) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (28) -- **[beauty](beauty.md)** (22) -- **[bilinear](bilinear.md)** (117) -- **[bill_gates](bill_gates.md)** (27) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (138) -- **[bit](bit.md)** (4) -- **[bit_hack](bit_hack.md)** (172) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (195) -- **[bloat_monopoly](bloat_monopoly.md)** (11) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (32) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (41) -- **[brain_software](brain_software.md)** (10) -- **[brainfuck](brainfuck.md)** (122) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (48) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (280) -- **[c](c.md)** (309) -- **[c_pitfalls](c_pitfalls.md)** (156) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2151) -- **[cache](cache.md)** (27) -- **[cancer](cancer.md)** (24) -- **[capitalism](capitalism.md)** (134) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (12) -- **[censorship](censorship.md)** (43) -- **[chaos](chaos.md)** (108) -- **[charity_sex](charity_sex.md)** (2) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (8) -- **[chess](chess.md)** (303) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[coc](coc.md)** (17) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (20) -- **[color](color.md)** (25) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (19) -- **[communism](communism.md)** (27) -- **[competition](competition.md)** (12) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (233) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (95) -- **[consumerism](consumerism.md)** (12) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (29) -- **[copyright](copyright.md)** (47) -- **[corporation](corporation.md)** (18) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (4) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (15) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (34) -- **[css](css.md)** (66) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[czechia](czechia.md)** (14) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[debugging](debugging.md)** (119) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (50) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (14) -- **[digital_signature](digital_signature.md)** (8) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (34) -- **[disease](disease.md)** (38) -- **[distance](distance.md)** (124) -- **[distrohopping](distrohopping.md)** (10) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (31) -- **[doom](doom.md)** (50) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[drummyfish](drummyfish.md)** (35) -- **[duke3d](duke3d.md)** (20) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (28) -- **[dynamic_programming](dynamic_programming.md)** (44) -- **[e](e.md)** (22) -- **[earth](earth.md)** (66) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (15) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (73) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (15) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (264) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (2) -- **[fail_ab](fail_ab.md)** (38) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (243) -- **[fascism](fascism.md)** (23) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (47) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (8) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (151) -- **[fizzbuzz](fizzbuzz.md)** (158) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (49) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (128) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (69) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (36) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (60) -- **[free_speech](free_speech.md)** (16) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (14) -- **[fsf](fsf.md)** (19) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (30) -- **[function](function.md)** (137) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (44) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (10) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (70) -- **[githopping](githopping.md)** (4) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (55) -- **[go](go.md)** (96) -- **[golang](golang.md)** (18) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (24) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (28) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (75) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (12) -- **[hexadecimal](hexadecimal.md)** (7) -- **[history](history.md)** (98) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (206) -- **[human_language](human_language.md)** (28) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (23) -- **[internet](internet.md)** (105) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (45) -- **[io](io.md)** (16) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (113) -- **[island](island.md)** (38) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (86) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (97) -- **[john_carmack](john_carmack.md)** (20) -- **[jokes](jokes.md)** (81) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (22) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (6) -- **[kids_these_days](kids_these_days.md)** (2) -- **[kiss](kiss.md)** (38) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (158) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (53) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (136) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (22) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (56) -- **[life](life.md)** (6) -- **[lil](lil.md)** (20) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (116) -- **[linux](linux.md)** (63) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (43) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (11) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[love](love.md)** (26) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (156) -- **[lrs_dictionary](lrs_dictionary.md)** (97) -- **[lrs_wiki](lrs_wiki.md)** (36) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (125) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (8) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (55) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (37) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (14) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (43) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (10) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (69) -- **[netstalking](netstalking.md)** (9) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (8) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (27) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (112) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (2) -- **[number](number.md)** (292) -- **[often_confused](often_confused.md)** (111) -- **[often_misunderstood](often_misunderstood.md)** (15) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (62) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (39) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (70) -- **[optimization](optimization.md)** (99) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (23) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (34) -- **[people](people.md)** (62) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (8) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (70) -- **[portability](portability.md)** (166) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (2) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (24) -- **[procgen](procgen.md)** (352) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (33) -- **[programming_language](programming_language.md)** (171) -- **[programming_style](programming_style.md)** (73) -- **[programming_tips](programming_tips.md)** (16) -- **[progress](progress.md)** (30) -- **[proof](proof.md)** (4) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (10) -- **[pseudorandomness](pseudorandomness.md)** (4) -- **[public_domain](public_domain.md)** (86) -- **[public_domain_computer](public_domain_computer.md)** (55) -- **[python](python.md)** (26) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (50) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (9) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1738) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (8) -- **[raycasting](raycasting.md)** (291) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (22) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (48) -- **[recursion](recursion.md)** (64) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (206) -- **[rgb332](rgb332.md)** (91) -- **[rgb565](rgb565.md)** (4) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (51) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (107) -- **[rust](rust.md)** (24) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (22) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (15) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (17) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (15) -- **[shit](shit.md)** (29) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (12) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (181) -- **[sjw](sjw.md)** (25) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (8) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (234) -- **[soydev](soydev.md)** (37) -- **[soyence](soyence.md)** (45) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (74) -- **[ssao](ssao.md)** (10) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (153) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (207) -- **[suicide](suicide.md)** (8) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (63) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (70) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (2) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (6) -- **[ted_kaczynski](ted_kaczynski.md)** (26) -- **[teletext](teletext.md)** (13) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (11) -- **[thrembo](thrembo.md)** (15) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny_software](tranny_software.md)** (27) -- **[transistor](transistor.md)** (30) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (23) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (207) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (30) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unicode](unicode.md)** (6) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (11) -- **[update_culture](update_culture.md)** (21) -- **[usa](usa.md)** (57) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (45) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (50) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (8) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (14) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (213) -- **[wiki_style](wiki_style.md)** (71) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (95) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (8) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (113) -- **[work](work.md)** (32) -- **[world_broadcast](world_broadcast.md)** (12) -- **[wow](wow.md)** (8) -- **[www](www.md)** (107) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (101) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (8) -- **[youtube](youtube.md)** (22) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (30) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file diff --git a/wiki_stats.md b/wiki_stats.md index e500ea0..337ce2c 100644 --- a/wiki_stats.md +++ b/wiki_stats.md @@ -3,9 +3,9 @@ This is an autogenerated article holding stats about this wiki. - number of articles: 579 -- number of commits: 798 -- total size of all texts in bytes: 3771245 -- total number of lines of article texts: 28949 +- number of commits: 799 +- total size of all texts in bytes: 3777760 +- total number of lines of article texts: 28967 - number of script lines: 262 - occurences of the word "person": 8 - occurences of the word "nigger": 74 @@ -35,60 +35,72 @@ longest articles: top 50 5+ letter words: -- which (2158) +- which (2162) - there (1637) -- people (1425) +- people (1429) - other (1181) -- example (1164) -- software (1062) +- example (1166) +- software (1067) - number (1034) -- about (980) -- program (858) -- their (808) -- because (769) -- would (757) +- about (985) +- program (859) +- their (809) +- because (771) +- would (760) - called (746) - language (734) -- computer (729) +- computer (730) - being (710) +- things (697) - simple (696) -- things (693) - numbers (688) -- something (665) -- without (655) +- something (668) +- without (656) - programming (645) - function (643) - these (608) -- however (604) -- different (603) +- however (605) +- different (605) - world (571) - system (555) - should (544) - games (539) -- doesn (537) +- doesn (538) - point (531) - society (530) - though (504) - while (498) - memory (497) - drummyfish (494) -- using (490) +- using (491) - technology (479) -- still (477) +- still (478) - similar (472) -- course (470) +- course (471) - simply (455) - possible (454) -- https (445) +- https (446) - really (424) - computers (418) -- extremely (412) +- extremely (413) +- actually (412) - always (411) -- first (409) latest changes: ``` +Date: Mon May 13 17:20:02 2024 +0200 + coc.md + exercises.md + fsf.md + hexadecimal.md + jesus.md + kiss.md + name_is_important.md + programming_tips.md + random_page.md + wiki_pages.md + wiki_stats.md Date: Sat May 11 20:41:35 2024 +0200 ascii_art.md disease.md @@ -110,18 +122,6 @@ Date: Wed May 8 22:32:14 2024 +0200 gnu.md military.md needed.md - random_page.md - stereotype.md - sw.md - wiki_pages.md - wiki_stats.md -Date: Tue May 7 21:18:26 2024 +0200 - 21st_century.md - 4chan.md - bloat.md - communism.md - debugging.md - exercises.md ``` most wanted pages: @@ -149,7 +149,7 @@ most wanted pages: most popular and lonely pages: -- [lrs](lrs.md) (278) +- [lrs](lrs.md) (279) - [capitalism](capitalism.md) (211) - [c](c.md) (210) - [bloat](bloat.md) (200) @@ -165,7 +165,7 @@ most popular and lonely pages: - [programming](programming.md) (80) - [free_culture](free_culture.md) (80) - [gnu](gnu.md) (78) -- [fun](fun.md) (78) +- [fun](fun.md) (77) - [math](math.md) (76) - [censorship](censorship.md) (75) - [public_domain](public_domain.md) (74) diff --git a/woman.md b/woman.md index 6ed7bf0..169c7bd 100644 --- a/woman.md +++ b/woman.md @@ -100,6 +100,7 @@ Here is a list of almost all historically notable women: - **Judit Polgar**: best non-fictional female [chess](chess.md) player that at her peak managed the incredible feat of ranking #56 in the world while actually existing. - **[Marie Curie](marie_curie.md)**: this one was actually probably quite skilled and based, won two Nobel Prizes (at the time when there were no diversity quotas so it actually counts), though she probably stole most of her work from her husband. She was quite ugly tho. - **Lisa Nowak**: a female astronaut, military pilot, i.e. someone who would ideally be among those with highest mental stability and reliability, who nonetheless one day went on a rage frenzy over a sexual affair with some army chad, pepper sprayed some other bitch and was subsequently charged with attempted murder after weapons were found in her car... women... :D +- **Miss Marple**: smart woman detective, fictional. - **Olga Hepnarova**: ran over 8 people with a truck, later executed. - **Yoko Ono**: destroyed the most famous music band in history. - ...