diff --git a/3d_model.md b/3d_model.md index 6cd39d3..b9ae0cb 100644 --- a/3d_model.md +++ b/3d_model.md @@ -216,7 +216,7 @@ TODO: other types of models, texturing etcetc. **Do you want to start 3D modeling?** Or do you already know a bit about it and **just want some advice to get better?** Then let us share a few words of advice here. -Let us preface with mentioning the **[hacker](hacking.md) chad way of making 3D models**, i.e. the [LRS](lrs.md) way 3D models should ideally be made. Remeber, **you don't need any program to create 3D models**, you don't have to be a Blender whore, you can make 3D models perfectly fine without Blender or any similar program, and even without computers. Sure, a certain kind of highly artistic, animated, very high poly models will be very hard or impossible to make without an interactive tool like Blender, but you can still make very complex 3D models, such as that of a whole city, without any fancy tools. Of course people were making statues and similar kinds of "physical 3D models" for thousands of years -- sometimes it's actually simpler to make the model by hand out of clay and later scan it into the computer, you can just make a physical wireframe model, measure the positions of vertices, hand type them into a file and you have a perfectly valid 3d model -- you may also easily make a polygonal model out of paper, BUT even virtual 3D models can simply be made with pen and paper, it's just numbers, vertices and [triangles](triangle.md), very manageable if you keep it simple and well organized. You can directly write the models in text formats like obj or collada. First computer 3D models were actually made by hand, just with pen and paper, because there were simply no computers fast enough to even allow real time manipulation of 3D models; back then the modelers simply measured positions of someone object's "key points" (vertices) in 3D space which can simply be done with tools like rulers and strings, no need for complex 3D scanners (but if you have a digital camera, you have a quite advanced 3D scanner already). They then fed the manually made models to the computer to visualize them, but again, you don't even need a computer to draw a 3D model, in fact there is a whole area called [descriptive geometry](descriptive_geometry.md) that's all about drawing 3D models on paper and which was used by engineers before computers came. Anyway, you don't have to go as far as avoiding computers of course -- if you have a programmable computer, you already have the luxury which the first 3D artists didn't have, a whole new world opens up to you, you can now make very complex 3D models just with your programming language of choice. Imagine you want to make the said 3D model of a city just using the [C](c.md) programming language. You can first define the terrain as [heightmap](heightmap.md) simply as a 2D array of numbers, then you write a simple code that will iterate over this array and converts it to the obj format (a very simple plain text 3D format, it will be like 20 lines of code) -- now you have the basic terrain, you can render it with any tool that can load 3D models in obj format (basically every 3D tool), AND you may of course write your own 3D visualizer, there is nothing difficult about it, you don't even have to use perspective, just draw it in orthographic projection (again, that will be probably like 20 lines of code). Now you may start adding houses to your terrain -- make a C array of vertices and another array of triangle indices, manually make a simple 3D model of a house (a basic shape will have fewer than 20 vertices, you can cut it out of paper to see what it will look like). That's your house geometry, now just keep making instances of this house and placing them on the terrain, i.e. you make some kind of struct that will keep the house transformation (its position, rotation and scale) and each such struct will represent one house having the geometry you created (if you later improve the house model, all houses will be updates like this). You don't have to worry about placing the houses vertically, their height will be computed automatically so they sit right on the terrain. Now you can update your model exporter to take into account the houses, it will output the obj model along with them and again, you can view this whole model in any 3D software or with your own tools. You can continue by adding trees, roads, simple materials (maybe just something like per triangle colors) and so on. This approach may actually even be superior for some projects just as scripting is superior to many GUI programs, you can collaborate on this model just like you can collaborate on any other text program, you can automatize things greatly, you'll be independent of proprietary formats and platforms etcetc. This is how 3D models would ideally be made. +Let us preface by mentioning the **[hacker](hacking.md) chad way of making 3D models**, i.e. the [LRS](lrs.md) way 3D models should ideally be made. Remeber, **you don't need any program to create 3D models**, you don't have to be a Blender whore, you can make 3D models perfectly fine without Blender or any similar program, and even without computers. Sure, a certain kind of highly artistic, animated, very high poly models will be very hard or impossible to make without an interactive tool like Blender, but you can still make very complex 3D models, such as that of a whole city, without any fancy tools. Of course people were making statues and similar kinds of "physical 3D models" for thousands of years -- sometimes it's actually simpler to make the model by hand out of clay and later scan it into the computer, you can just make a physical wireframe model, measure the positions of vertices, hand type them into a file and you have a perfectly valid 3d model -- you may also easily make a polygonal model out of paper, BUT even virtual 3D models can simply be made with pen and paper, it's just numbers, vertices and [triangles](triangle.md), very manageable if you keep it simple and well organized. You can directly write the models in text formats like obj or collada. First computer 3D models were actually made by hand, just with pen and paper, because there were simply no computers fast enough to even allow real time manipulation of 3D models; back then the modelers simply measured positions of someone object's "key points" (vertices) in 3D space which can simply be done with tools like rulers and strings, no need for complex 3D scanners (but if you have a digital camera, you have a quite advanced 3D scanner already). They then fed the manually made models to the computer to visualize them, but again, you don't even need a computer to draw a 3D model, in fact there is a whole area called [descriptive geometry](descriptive_geometry.md) that's all about drawing 3D models on paper and which was used by engineers before computers came. Anyway, you don't have to go as far as avoiding computers of course -- if you have a programmable computer, you already have the luxury which the first 3D artists didn't have, a whole new world opens up to you, you can now make very complex 3D models just with your programming language of choice. Imagine you want to make the said 3D model of a city just using the [C](c.md) programming language. You can first define the terrain as [heightmap](heightmap.md) simply as a 2D array of numbers, then you write a simple code that will iterate over this array and converts it to the obj format (a very simple plain text 3D format, it will be like 20 lines of code) -- now you have the basic terrain, you can render it with any tool that can load 3D models in obj format (basically every 3D tool), AND you may of course write your own 3D visualizer, there is nothing difficult about it, you don't even have to use perspective, just draw it in orthographic projection (again, that will be probably like 20 lines of code). Now you may start adding houses to your terrain -- make a C array of vertices and another array of triangle indices, manually make a simple 3D model of a house (a basic shape will have fewer than 20 vertices, you can cut it out of paper to see what it will look like). That's your house geometry, now just keep making instances of this house and placing them on the terrain, i.e. you make some kind of struct that will keep the house transformation (its position, rotation and scale) and each such struct will represent one house having the geometry you created (if you later improve the house model, all houses will be updates like this). You don't have to worry about placing the houses vertically, their height will be computed automatically so they sit right on the terrain. Now you can update your model exporter to take into account the houses, it will output the obj model along with them and again, you can view this whole model in any 3D software or with your own tools. You can continue by adding trees, roads, simple materials (maybe just something like per triangle colors) and so on. This approach may actually even be superior for some projects just as scripting is superior to many GUI programs, you can collaborate on this model just like you can collaborate on any other text program, you can automatize things greatly, you'll be independent of proprietary formats and platforms etcetc. This is how 3D models would ideally be made. OK, back to the mainstream now. Nowadays as a [FOSS](foss.md) user you will most likely do 3D modeling with [Blender](blender.md) -- we recommended it to start learning 3D modeling as it is powerful, [free](free_software.md), gratis, has many tutorials etc. Do NOT use anything [proprietary](proprietary.md) no matter what anyone tells you! Once you know a bit about the art, you may play around with alternative programs or approaches (such as writing programs that generate 3D models etc.). However **as a beginner just start with Blender**, which is from now on in this article the software we'll suppose you're using. diff --git a/4chan.md b/4chan.md index 5ffa92e..03967bc 100644 --- a/4chan.md +++ b/4chan.md @@ -12,7 +12,7 @@ For us the most important part of 4chan is the technology board known as /g/ (fo UPDATE: As of 2022 /g/ became literally unreadable, ABANDON SHIP. The board became flooded with [capitalists](capitalism.md), cryptofascists, proprietary [shills](shill.md), [productivity](productivity_cult.md) freaks and other uber retards, it's really not worth reading anymore, it is pure, distilled consumerism, religious flame wars and diseases. You can still read good old threads on archives such as https://desuarchive.org/g/page/280004/. ALSO 2024 update: 4chan is also completely unusable now because it's [cuckflared](cloudflare.md) and posting requires unsolvable captchas (they are actually unsolvable, you must have PAID account to bypass it, so to post you now de facto have to pay). Lurking on some other more relaxed boards such as /x, /an or /vr may still be cool, but in general accept that the site is dead, find something else. -Despite dwelling slightly [underground](underground.md) -- maybe better said being isolated from the normie "safespace" [censornet](censorship.md) -- 4chan has really been very notably significant for the whole Internet [culture](culture.md), long [books](book.md) could be written about its [history](history.md), culture, unique, intricate social mechanism of its ways of communication and impact on the rest of the cyberspace; the "4chan experience" is one of the things that can't faithfully be described by words, it has to be lived. Just like reddit mixed some interesting concepts into a unique, yet more powerful combination that's more than a sum of its ingredients, so did 4chan -- yes, other boards are to be credited for this too, but 4chan is the flagship, the center of it all. Especially important seems to be the anonymity aspect, you never know who you are talking to, it's never clear if someone is [trolling](troll.md), serious, shilling, extremely dumb or something in between. There is no karma, no handles, no profile pictures, no upvotes (at best there are numbers of replies), no post history, no account age, you have to rely on judging people by unusual attributes, for example by the style of their talk, their knowledge of the [lore](lore.md) and latest [memes](meme.md), by how they format their posts (e.g. the infamously hated empty lines), what images they attach (and what they're file names are), as these are the only clues. A thread on 4chan isn't something with a clear goal, you don't know if someone is asking a question because he wants a genuine answer or because he's just bored and wants to see funny answers, or if he's posting a bait and is trying to trigger others, so each discussion is a bit of a game, you're trying to guess what's going on. A famous post, for example, had itself heard that the poster despises translations of books and always reads any book in its original language despite not understanding a word of it, and that he already read works such as Don Quixote and Les Miserables in their respective languages without knowing what they were about -- this stupidity combined with extreme determination and dedication captures part of what makes 4chan what it is. Also everything is temporary, every thread and image is deleted in a short time, which is an important factor too, everything is constantly in motion, people have to react quickly, there is no turning back, reactions are quick and genuine, if you miss something it's gone. Also the image memes themselves show how [art](art.md) (who cares if low) evolves if completely unrestrained, anyone can try to spawn a new meme or download anyone else's posted meme, repost it or [modify](remix_culture.md) it, copyright mostly [de facto](de_facto.md) won't apply as the authors are unknown; bad works are filtered out while good ones remain simply by making others save them and keep reposting them, it's art without authors, separated from the people, evolving completely on its own, purely by its intrinsic attributes, unconstrained evolution at work right before our eyes -- this is a seriously scientifically [interesting](interesting.md) stuff. +Despite dwelling slightly [underground](underground.md) -- maybe better said being isolated from the normie "safespace" [censornet](censorship.md) -- 4chan has really been very notably significant for the whole Internet [culture](culture.md), long [books](book.md) could be written about its [history](history.md), culture, unique, intricate social mechanism of its ways of communication and impact on the rest of the cyberspace; the "4chan experience" is one of the things that can't faithfully be described by words, it has to be lived. Just like reddit mixed some interesting concepts into a unique, yet more powerful combination that's more than a sum of its ingredients, so did 4chan -- yes, other boards are to be credited for this too, but 4chan is the flagship, the center of it all. Especially important seems to be the anonymity aspect, you never know who you are talking to, it's never clear if someone is [trolling](troll.md), serious, shilling, extremely dumb or something in between. There is no karma, no handles, no profile pictures, no upvotes (at best there are numbers of replies), no post history, no account age, you have to rely on judging people by unusual attributes, for example by the style of their talk, their knowledge of the [lore](lore.md) and latest [memes](meme.md), by how they format their posts (e.g. the infamously hated empty lines), what images they attach, as these are the only clues. A thread on 4chan isn't something with a clear goal, you don't know if someone is asking a question because he wants a genuine answer or because he's just bored and wants to see funny answers, or if he's posting a bait and is trying to trigger others, so each discussion is a bit of a game, you're trying to guess what's going on. A famous post, for example, had itself heard that the poster despises translations of books and always reads any book in its original language despite not understanding a word of it, and that he already read works such as Don Quixote and Les Miserables in their respective languages without knowing what they were about -- this stupidity combined with extreme determination and dedication (usually known as [autism](autism.md)) captures part of what makes 4chan what it is. Also everything is temporary, every thread and image is deleted in a short time, which is an important factor too, everything is constantly in motion, people have to react quickly, there is no turning back, reactions are quick and genuine, if you miss something it's gone. Also the image memes themselves show how [art](art.md) (who cares if low) evolves if completely unrestrained, anyone can try to spawn a new meme or download anyone else's posted meme, repost it or [modify](remix_culture.md) it, copyright mostly [de facto](de_facto.md) won't apply as the authors are unknown; bad works are filtered out while good ones remain simply by making others save them and keep reposting them, it's art without authors, separated from the people, evolving completely on its own, purely by its intrinsic attributes, unconstrained evolution at work right before our eyes -- this is a seriously scientifically [interesting](interesting.md) stuff. As of writing this https://4stats.io/ reports /pol as the most active board (~80 posts/min, ~150 threads/hour), followed by /v, /tv and /b. diff --git a/chess.md b/chess.md index 9cf2103..07b2df4 100644 --- a/chess.md +++ b/chess.md @@ -240,11 +240,14 @@ Threefold repetition is a rule allowing a player to claim a draw if the same pos Besides similar games such as [shogi](shogi.md) there are many variants of chess, i.e. slight modifications of rules, foremost worth mentioning is for example chess 960. The following is a list of some variants: +- **3D chess**: [3D](3d.md) generalization of chess, possible are also other dimensions (4D, 5D, ... maybe even 1D?). - **antichess** ([suicide](suicide.md), ...): The goal is to lose all men or get stalemated, rules are a bit changed, e.g. castling and checks are removed and taking is forced. +- **chess 324**: Chess with randomly modified starting position to prevent opening theory and draws, similar to chess 960. Here queens, knights and bishops are randomly shuffled in the start position with the condition that bishops must be on different color squares (no symmetry of position is required). Advantage against chess 960 is that otherwise the rules (i.e. basically castling) stay exactly the same, so basically any chess engine can also play chess 324 without modification. - **chess 960** aka **Fischer's random**: Starting position is randomly modified by shuffling the non-pawn rows (with these rules: king must be between rooks, bishops on opposite colors and black/white's positions are mirrored). The rules are the same with a slight modification to castling. This was invented by Bobby Fischer to emphasize pure chess skill as opposed to memorizing the best opening moves, he saw the opening theory as harmful to chess. Chess 960 is nowadays even advocated by some to become the "main" version of chess. - **[chess boxing](chess_boxing.md)**: Chess combined with box, players switch between the two games, one wins either by checkmate or knockout. - **crazyhouse**: When a player captures a man, it goes into his reserve. From the reserve a man can be dropped (as a man of the current player's color) to an empty square instead of making a normal move. This is a rule taken from [shogi](shogi.md). - **custom starting positions**: Creating custom starting positions is a big fun in itself, for example one can make an epic battle by replacing all pieces with queens, or a very strategic scenario in which both queens are trapped and have to be freed, or an asymmetric battle of many weak men versus a few stronger ones, or trollish ones such as the standard setup, only flipped vertically. Only one's imagination is the limit. +- **different board geometries/topologies:** e.g. [non-Euclidean](non_euclidean.md) ([hyperbolic](hyperbolic.md), [spherical](spherical.md), [torus](torus.md), ...), hexagonal chess (had some considerable following) etc. - **different men**: Some variants use different men, e.g. empress (moves like rook and knight) or amazon (queen/knight). - **duck chess**: After each move players place a duck on an empty square, the duck blocks the square. The duck cannot be left on the same square, it has to be moved. There are no checks, players win by capturing the king. - **fog of war**: Makes chess an incomplete-information game by allowing players to only see squares they can immediately move to (this is similarly to some strategy video games). @@ -255,8 +258,7 @@ Besides similar games such as [shogi](shogi.md) there are many variants of chess - **old chess**: The rules of chess itself have been changing over time (e.g. adding the 50 move rule etc.). The older rule sets can be seen as variants as well. - **puzzle**: For single player, chess positions are presented and the player has to find the best move or sequence of moves. - **racing kings**: The starting position has both players on the same side, the goal is to get one's king to the other side first. -- **different board geometries/topologies:** e.g. [non-Euclidean](non_euclidean.md) ([hyperbolic](hyperbolic.md), [spherical](spherical.md), [torus](torus.md), ...), hexagonal chess (had some considerable following) etc. -- **3D chess**: [3D](3d.md) generalization of chess, possible are also other dimensions (4D, 5D, ... maybe even 1D?). +- **r-mobility** (reset mobility): Modifications of rules so that draws become impossible (on very high level chess becomes very drawish, this is one way to deal with the issue, even if it's used e.g. in tiebreaks). R-mobility basically generalizes mate/stalemate and works as follows. When the game ends (mate, stalemate, timed out, ...) the player with lowest number *Rp* (*p* is the player) wins. *Rp* is computed like this: at start and after any pawn more or capture it is set to infinity (reset). After player *p*'s move if the the number of opponent's legal moves, plus 1/2 if he's not in check, is lower than *Rp*, it becomes the new *Rp* (i.e. we take the minimum). So checkmating opponent means achieving 0 (the best possible), stalemating him achieves 1/2 etcetc. - **randomly chosen variant**: Here a chess variant to be played is chosen at random before the game, e.g. by dice roll. { This is an idea I got, not sure if this exists or has a different name. ~drummyfish } ## Playing Tips @@ -272,7 +274,7 @@ Some general tips and rules of thumb, mostly for beginners: - Pawn structure is very important (avoid doubled and isolated pawn, watch out for the weak back pawns etc.). - Watch out for back rank checkmates, make an escape square for your king. - Rooks want to be on open files, you also want to CONNECT them (have both guard each other). Also a rook in the opponents second row (2nd/7th rank) is pretty good. -- Stack rooks, i.e. place them on the same open file -- this is very powerful. You can also stack two rooks and a queen and create a so call legendary triple stack which is extremely powerful. +- Stack rooks, i.e. place them on the same open file -- this is very powerful. You can also stack two rooks and a queen and create a so called legendary triple stack which is extremely powerful. - If you find a good move, look for a better one. There seems to be this pattern in which if you spot a good move, it indicates that opponent's position is falling apart and usually there is a much more powerful, crashing move to play. - Bishops are generally seen a bit more valuable than knights, especially in pairs -- if you can trade your knight for opponent's bishop, it's often good. If your opponent has two bishops and you only have one, you want to trade yours for his so he doesn't have the pair. A knight pair is also pretty powerful though, especially when the knights are guarding each other. - Consider the bishop difference: one only covers white squares, the other only black ones. Take this into account when exchanging bishops, sacrificing them, placing your pieces on white vs dark squares etc. diff --git a/drummyfish.md b/drummyfish.md index d03eb02..585b524 100644 --- a/drummyfish.md +++ b/drummyfish.md @@ -32,7 +32,7 @@ In 2012 drummyfish fell into deep [depression](depression.md) and became convinc **Does drummyfish have [divine intellect](terry_davis.md)?** Hell no, he's pretty retarded at most things and would be a complete failure wasn't it for some of his special features -- thanks to his extraordinary tendency for isolation, grand curiosity and obsession with [truth](truth.md) he is possibly the only man on [Earth](earth.md) completely immune to propaganda, he can see the world as it is, not as it is presented, so he feels it is his moral duty to share what he is seeing. He is able to overcome his natural dumbness by tryharding and sacrificing his social and sexual life so that he can program more. If drummyfish can learn to program [LRS](lrs.md), so can you. -**What is drummyfish's fucking problem?** The biggest burden for drummyfish -- the one that he has always struggled with (even if he realized this very late in his life) and which will be with him until death -- is that he is simply extremely, extremely alone. NO, not "alone" in the [incel](incel.md) sense, and not alone in the "[geeky](geek.md)" way, not alone as in being introverted and shy or hated, missing sex or company or attention or compassion, not at all. He has been struggling his whole life to find a HUMAN, a true human being like himself -- of perhaps we should rather say human subspecies of which drummyfish is and always will be the only member. He feels much closer to animals than to people. On the Internet he found a considerable number of "followers" through [LRS](lrs.md), the expression of his life philosophy, but he never really met a being of the same human subspecies as he is himself. He is alien in a sense -- people exist around him, even what would be called "friends", supporters, "fans", but he has never met a single true human being of the same kind as himself, someone to find absolute mutual understanding with and someone to have a true admiration for. { The closest is probably my mom, only her I ever really admired and felt the closest bond with. I think no one else ever came closer to understanding me and loving me like that. This is probably nothing surprising though. ~drummyfish } A feeling perhaps similar to what the last member of a species that is dying out must feel, except that he doesn't even have any ancestors to think of, it is a feeling of being absolutely alone in the whole Universe, the whole timespace. { Also please don't try to fix me or comfort me by saying nice things like "I was like this too, you will find someone", it just pisses me off, you don't know what's going on. I know your intentions are good but don't do it cause it's no use. ~drummyfish } But the feeling of loneliness is only part of the whole tragedy -- it would even be bearable, however the worst part is that drummyfish LOOKS LIKE a normal human so others treat him so, they try to apply things that normally work on people on drummyfish, like talking to him or thanking him or keeping him in company of other people because apparently "humans are social animals" or whatever, and it's just fucking killing him. It's as if you try to treat literal fish like a human, trying to keep it out of water because humans dislike breathing water, trying to feed it human food, put it in human clothes -- you're just going to torture the animal to death. +**What is drummyfish's fucking problem?** The biggest burden for drummyfish -- the one that he has always struggled with (even if he realized this very late in his life) and which will be with him until death -- is that he is simply extremely, extremely alone. NO, not "alone" in the [incel](incel.md) sense, and not alone in the "[geeky](geek.md)" way, not alone as in being introverted and shy or hated, missing sex or company or attention or compassion, not at all. He has been struggling his whole life to find a HUMAN, a true human being like himself -- of perhaps we should rather say human subspecies of which drummyfish is and always will be the only member. He feels much closer to animals than to people. On the Internet he found a considerable number of "followers" through [LRS](lrs.md), the expression of his life philosophy, but he never really met a being of the same human subspecies as he is himself. He is alien in a sense -- people exist around him, even what would be called "friends", supporters, "fans", but he has never met a single true human being of the same kind as himself, someone to find absolute mutual understanding with and someone to have a true admiration for. { The closest is probably my mom, only her I ever really admired and felt the closest bond with. I think no one else ever came closer to understanding me and loving me like that. This is probably nothing surprising though. ~drummyfish } A feeling perhaps similar to what the last member of a species that is dying out must feel, except that he doesn't even have any ancestors to think of, it is a feeling of being absolutely alone in the whole Universe, the whole timespace. Hell, he is so lonely he created a whole virtual world, lore, ideology and Internet community with huge ass [wiki](lrs_wiki.md) where he is still the only participant and where he basically just keeps talking to himself. { Also please don't try to fix me or comfort me by saying nice things like "I was like this too, you will find someone", it just pisses me off, you don't know what's going on. I know your intentions are good but don't do it cause it's no use. ~drummyfish } But the feeling of loneliness is only part of the whole tragedy -- it would even be bearable, however the worst part is that drummyfish LOOKS LIKE a normal human so others treat him so, they try to apply things that normally work on people on drummyfish, like talking to him or thanking him or keeping him in company of other people because apparently "humans are social animals" or whatever, and it's just fucking killing him. It's as if you try to treat literal fish like a human, trying to keep it out of water because humans dislike breathing water, trying to feed it human food, put it in human clothes -- you're just going to torture the animal to death. Drummyfish will probably [kill himself](suicide.md) one day -- likely not that soon (who knows), but it's planned, after all there is nothing worse than living under [capitalism](capitalism.md), death sounds like such a relief. There are still some [projects](needed.md) he wants to finish first; unless something triggers him and he just randomly jumps under a train one day or gets nuked by Putin, he is planning to finish some of the projects to leave something behind. The current plan is to try to live somehow, outside or on the edge of society, minimize contact with people, do good and avoid evil as much as possible. Once closest relatives are gone, then with no more ties to the current [shitty place](czechia.md), he will walk on foot towards the Mediterranean sea, a place that has always attracted him more than anywhere else, and there he will simply die either of illness, injury or hunger, or he will simply swim for the sunset and never return. That's a death one can even look forward to. There, at his beloved sea, drummyfish will meet his fate and find his final resting place and the peace he so much desired and struggled for through his whole life. Hopefully his body will feed a few hungry fish. diff --git a/jokes.md b/jokes.md index ecf0c30..636798e 100644 --- a/jokes.md +++ b/jokes.md @@ -90,6 +90,7 @@ Also remember the worst thing you can do to a joke is put a [disclaimer](disclai - Autocorrect is my worst enema. - If man speaks in the forest and there is no [woman](woman.md) around to hear him, is he still wrong? - Hey I won a box with lifetime supply of condoms in an [assembly](assembly.md) programming competition! Turns out the box was just empty. +- In C++ friends have access to your private members. - Hey, do you like podcasts? I don't need that, I have schizophrenia. - The new version of [Windows](windows.md) is going to be backdoor free! The backdoor will be free of charge. diff --git a/lmao.md b/lmao.md index b9519e3..394e2ef 100644 --- a/lmao.md +++ b/lmao.md @@ -28,7 +28,7 @@ On this wiki we kind of use LMAO as a synonym to [LULZ](lulz.md) as used on [Enc - Some people believe there is a fictional whole number between 6 and 7 called [thrembo](thrembo.md). - Some company was accused of racism when its policies forbid hiring people with criminal history, the accusation was that such policy is discriminatory against [black](black.md) people. This left many [SJW](sjw.md)s scratching their heads in confusion -- are the accusers in fact good because they help black people get jobs or bad because they assume criminals are mostly black? :D - { Once a friend had trouble compiling something, so I asked what error the compiler gave. He said it printed this: `error: too many errors`. Thank you very much compiler :D ~drummyfish } -- God's miracle caught on stream! On April 5th 2013 a "disabled" twitch streamer ZilianOP who was supposedly paralyzed and couldn't walk forgot for a while during live stream that he was paralyzed, he stood up from the wheelchair and went for something, revealing he was in fact just faking the disability so as be considered an American [hero](hero_culture.md) and get more of those viewers seeking inspirational motivators or something :D I'M DISABLED BUT STILL PLAY VIDEO GAMES, WHAT'S YOUR EXCUSE! He then hilariously tried to cover it up along with his girlfriend, saying shit like "nonono, I fell from the chair" and then switching to "I could walk a bit thanks to therapy but I was keeping it secret because I wanted to surprise my girlfriend", you wouldn't believe to what lengths they went lol. On the other hand if you're white and not a [female](woman.md) with large breasts, being disabled is the only chance to ever get any views, so can we really blame him? +- God's miracle caught on stream! On April 5th 2013 a "disabled" twitch streamer ZilianOP who was supposedly paralyzed and couldn't walk forgot for a while during live stream that he was paralyzed, he stood up from the wheelchair and went for something, revealing he was in fact just faking the disability so as to be considered an American [hero](hero_culture.md) and get more of those viewers seeking inspirational motivators or something :D I'M DISABLED BUT STILL PLAY VIDEO GAMES, WHAT'S YOUR EXCUSE! He then hilariously tried to cover it up along with his girlfriend, saying shit like "nonono, I fell from the chair" and then switching to "I could walk a bit thanks to therapy but I was keeping it secret because I wanted to surprise my girlfriend", you wouldn't believe to what lengths they went lol. On the other hand if you're white and not a [female](woman.md) with large breasts, being disabled is the only chance to ever get any views, so can we really blame him? - On occasion [reddit](reddit.md) offered its fair share of quality material as well, for example one TIFU (today I fucked up... might actually even have been the TIL subreddit lol) thread recounted a true story of a guy who grew up well into adulthood thinking that toilet seats were ONLY MEANT TO BE USED BY [WOMEN](woman.md) and that men simply sit on the cold toilet edge when they shit :D Apparently no one ever taught him and he only learned about the fact that men can use the seat too when he was buying a new toilet seat and joked with the salesman by saying something along the lines of "haha, if I didn't have a wife I wouldn't have to be spending money on toilet seats" -- then when the guy just stared in confusion all came to be revealed. - In 2024 the twitter account of Greta Thunberg's father, Svante Thunberg, was hijacked by soyjak.party and started posting some funny stuff about [niggas](nigger.md), telling Greta she was adopted, offending journalists in DMs and so on. - ... diff --git a/magic.md b/magic.md index 4b0526b..ed49f8a 100644 --- a/magic.md +++ b/magic.md @@ -4,4 +4,5 @@ Magic stands for unknown mechanisms. Once mechanisms of magic are revealed and u ## See Also +- [wizard](wizard.md) - [Harry Potter](harry_potter.md) \ No newline at end of file diff --git a/money.md b/money.md index 27d8a21..24ada6e 100644 --- a/money.md +++ b/money.md @@ -2,11 +2,11 @@ *THIS IS YOUR GOD* -Money is an item (physical or [virtual](virtual.md)) whose main and usually sole purpose is to carry economic value so as to be used for making payments. **Money spoils everything** and in [capitalism](capitalism.md) money is everywhere. As Richard Muller says in one of his songs: "happiness is a beautiful thing, but it can't buy you money". It is said that money is the root of all [evil](evil.md) -- it is so because money embodies a system of competition for resources, and [competition](competition.md) itself is root of all evil. Evil people are attracted by money and money is attracted by evil people. Standardized money (for example specific bank notes, coins or [cryptocurrency](crypto.md)) is called [currency](currency.md). +Money is an item (physical, such as a coin or a bill, or [virtual](virtual.md), such as a record somewhere in a database) that is widely used with the primary (and usually only) purpose of carrying economic value so as to be used for making payments. **Money spoils everything** and in [capitalism](capitalism.md) money is everywhere. As Richard Muller says in one of his songs: "happiness is a beautiful thing, but it can't buy you money". It is said that money is the root of all [evil](evil.md) -- it is so because money embodies a system of competition for resources, and [competition](competition.md) itself is root of all evil. Evil people are attracted by money and money is attracted by evil people. Money enables, creates and supports social inequality, corruption, oppression, greed, loss of morality, materialistic thinking, economic instability and many other undesirable phenomena. Standardized money (for example specific bank notes, coins or [cryptocurrency](crypto.md)) is called [currency](currency.md). Things that money can buy include happiness, [love](love.md), [sex](sex.md), family, [people](people.md), stress-free life, luxury, freedom, food, health, [education](education.md), awards, skills, authority, good looks, [law](law.md), power, fame, [rights](rights_culture.md), [anonymity](anonymity.md), safety, [science](soyence.md), [logic](logic.md), [truth](truth.md), [justice](justice.md), injustice, voters, slaves, [life](life.md), [death](death.md), [war](war.md), peace, victory, loss, information, advice, public opinion, obedience, respect, entertainment, media, countries, all physical things and more money. So does selling your soul to the devil. -Money is a tool of oppression, it forces people into [slavery](work.md) while creating an illusion of "[progress](progress.md)" by adding an indirection that makes stupid people think we no longer use physical violence to force people to work -- in the past physical violence was often used directly to force slaves to work, nowadays if a slave refuses to work, we don't use violence directly, we just refuse the slave money which will lead to violence and torture only indirectly: for example he will be forced to live in homelessness, healthcare will be refused to him and his hunger will force him to stealing which will lead to him being beaten by police. So we still use violence to force people to work, we just use it indirectly through money, which idiots with microbrains can no longer see. By this the capitalist system eliminated the possibility of being overthrown by workers as revolution requires masses of people revolting and because majority of people are stupid, not being able to see the abuse (not being able to comprehend indirection), they will never revolt. +Money is a tool of oppression, it forces [slavery](work.md) onto people while creating an illusion of "[progress](progress.md)" by adding an indirection that tricks the stupid into thinking we no longer use physical violence to force people to labor -- in the past physical violence was often used directly to force slaves to do the bidding of a master, today if a slave refuses to work, we don't use violence directly, we just refuse the slave money which will lead to violence and torture only indirectly: for example he will be forced to live in homelessness, in a place of poverty and increased criminality, he will be denied healthcare and hunger will eventually force him to steal which will result in him being beaten by the police. So we still use violence to force people to work, we just do it indirectly through money, which idiots with microbrains can no longer see. By this the capitalist system eliminated the possibility of being overthrown by workers as revolution requires masses of people revolting and because majority of people are stupid, not being able to see the abuse (not being able to comprehend indirection), they will never revolt. Sadly capitalism forced EVERYONE to deal with money, even those who hate it. How to handle this? **Correct relationship towards money** you should have as an [LRS](lrs.md) follower: diff --git a/random_page.md b/random_page.md index 5a2086d..6d44917 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1806 +2,1806 @@ Please kindly click random link. -[*](zen.md) -[*](cloud.md) -[*](cheating.md) -[*](aliasing.md) -[*](pseudoleft.md) -[*](woman.md) -[*](update_culture.md) -[*](countercomplex.md) -[*](crime_against_economy.md) -[*](debugging.md) -[*](cos.md) -[*](bazaar.md) -[*](art.md) -[*](lisp.md) -[*](cc0.md) -[*](minimalism.md) -[*](nd.md) -[*](fixed_point.md) -[*](p_vs_np.md) -[*](graveyard.md) -[*](sw_rendering.md) -[*](tranny.md) -[*](netstalking.md) -[*](lil.md) -[*](morality.md) -[*](moderation.md) -[*](facebook.md) -[*](sorting.md) -[*](gaywashing.md) -[*](smol_internet.md) -[*](emoticon.md) -[*](anal_bead.md) -[*](ascii_art.md) -[*](gigachad.md) -[*](loquendo.md) -[*](cracker.md) -[*](macrofucker.md) -[*](raycastlib.md) -[*](systemd.md) -[*](disease.md) -[*](newspeak.md) -[*](xxiivv.md) -[*](blender.md) -[*](math.md) -[*](interaction_net.md) -[*](unix_philosophy.md) -[*](chasm_the_rift.md) -[*](abstraction.md) -[*](sudoku.md) -[*](disease.md) -[*](marxism.md) -[*](bit.md) -[*](coding.md) -[*](dinosaur.md) -[*](pride.md) -[*](internet.md) -[*](free_universe.md) -[*](hyperoperation.md) -[*](js.md) -[*](malware.md) -[*](faq.md) -[*](free_speech.md) -[*](robot.md) -[*](mechanical.md) -[*](brainfuck.md) -[*](capitalism.md) -[*](dungeons_and_dragons.md) -[*](wiki_rights.md) -[*](cancer.md) -[*](how_to.md) -[*](julia_set.md) -[*](version_numbering.md) -[*](steganography.md) -[*](debugging.md) -[*](art.md) -[*](autostereogram.md) -[*](altruism.md) -[*](nigeria.md) -[*](security.md) -[*](cloudflare.md) -[*](pride.md) -[*](100r.md) -[*](liberalism.md) -[*](cloudflare.md) -[*](faggot.md) -[*](less_retarded_hardware.md) -[*](libre.md) -[*](gnu.md) -[*](app.md) -[*](normalization.md) -[*](chinese.md) -[*](data_hoarding.md) -[*](hash.md) -[*](nonogram.md) -[*](black.md) -[*](no_knowledge_proof.md) -[*](free_body.md) -[*](vim.md) -[*](john_carmack.md) -[*](pokitto.md) -[*](beauty.md) -[*](patent.md) -[*](nigger.md) -[*](regex.md) -[*](rapeware.md) -[*](less_retarded_software.md) -[*](communism.md) -[*](jedi_engine.md) -[*](luke_smith.md) -[*](apple.md) -[*](loc.md) -[*](tor.md) -[*](collision_detection.md) -[*](open_source.md) -[*](ascii.md) -[*](build_engine.md) -[*](hash.md) -[*](political_correctness.md) -[*](markov_chain.md) -[*](boat.md) -[*](wizard.md) -[*](function.md) -[*](4chan.md) -[*](communism.md) -[*](fizzbuzz.md) -[*](youtube.md) -[*](fediverse.md) -[*](loquendo.md) -[*](pseudo3d.md) -[*](privacy.md) -[*](quine.md) -[*](tattoo.md) -[*](ram.md) -[*](game.md) -[*](proprietary.md) -[*](cc.md) -[*](cpp.md) -[*](iq.md) -[*](femoid.md) -[*](README.md) -[*](global_discussion.md) -[*](goodbye_world.md) -[*](digital.md) -[*](cyberbullying.md) -[*](fight.md) -[*](nokia.md) -[*](public_domain.md) -[*](czechia.md) -[*](living.md) -[*](computational_complexity.md) -[*](gigachad.md) -[*](usenet.md) -[*](main.md) -[*](color.md) -[*](dependency.md) -[*](wiki_pages.md) -[*](racism.md) -[*](primitive_3d.md) -[*](trusting_trust.md) -[*](trolling.md) -[*](pi.md) -[*](logic_circuit.md) -[*](black.md) -[*](assembly.md) -[*](fantasy_console.md) -[*](main.md) -[*](english.md) -[*](books.md) -[*](global_discussion.md) -[*](physics_engine.md) -[*](web.md) -[*](emoticon.md) -[*](ethics.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](assembly.md) -[*](unfuck.md) -[*](bloat_monopoly.md) -[*](social_inertia.md) -[*](hacker_culture.md) -[*](rule110.md) -[*](rationalwiki.md) -[*](pseudo3d.md) -[*](de_facto.md) -[*](small3dlib.md) -[*](analog.md) -[*](progress.md) -[*](quantum_gate.md) -[*](cyber.md) -[*](approximation.md) -[*](trump.md) -[*](fractal.md) -[*](logic_circuit.md) -[*](magic.md) -[*](gemini.md) -[*](elon_musk.md) -[*](iq.md) -[*](law.md) -[*](abstraction.md) -[*](terry_davis.md) -[*](progress.md) -[*](mob_software.md) -[*](nonogram.md) -[*](universe.md) -[*](soyence.md) -[*](right.md) -[*](operating_system.md) -[*](cache.md) -[*](brainfuck.md) -[*](axiom_of_choice.md) -[*](ioccc.md) -[*](paradigm.md) -[*](steve_jobs.md) -[*](normalization.md) -[*](technology.md) -[*](computational_complexity.md) -[*](libre.md) -[*](yes_they_can.md) -[*](color.md) -[*](phd.md) -[*](capitalism.md) -[*](floss.md) -[*](network.md) -[*](aaron_swartz.md) -[*](hacking.md) -[*](interesting.md) -[*](altruism.md) -[*](tpe.md) -[*](john_carmack.md) -[*](physics.md) -[*](systemd.md) -[*](number.md) -[*](avpd.md) -[*](coc.md) -[*](trusting_trust.md) -[*](work.md) -[*](elo.md) -[*](less_retarded_society.md) -[*](tor.md) -[*](diogenes.md) -[*](communism.md) -[*](splinternet.md) -[*](fight_culture.md) -[*](sw.md) -[*](often_confused.md) -[*](interplanetary_internet.md) -[*](java.md) -[*](graphics.md) -[*](capitalist_software.md) -[*](npc.md) -[*](proprietary_software.md) -[*](ashley_jones.md) -[*](democracy.md) -[*](cos.md) -[*](bloat_monopoly.md) -[*](culture.md) -[*](optimization.md) -[*](langtons_ant.md) -[*](pseudo3d.md) -[*](tas.md) -[*](macrofucker.md) -[*](kiss.md) -[*](nationalism.md) -[*](bloat.md) -[*](usa.md) -[*](suicide.md) -[*](physics.md) -[*](toxic.md) -[*](autoupdate.md) -[*](explicit.md) -[*](lambda_calculus.md) -[*](bytecode.md) -[*](music.md) -[*](ascii_art.md) -[*](marble_race.md) -[*](assertiveness.md) -[*](analytic_geometry.md) -[*](gemini.md) -[*](minigame.md) -[*](apple.md) -[*](framework.md) -[*](free_software.md) -[*](4chan.md) -[*](bilinear.md) -[*](deferred_shading.md) -[*](linux.md) -[*](czechia.md) -[*](pokitto.md) -[*](shader.md) -[*](tas.md) -[*](pd.md) -[*](demo.md) -[*](arduboy.md) -[*](bs.md) -[*](compression.md) -[*](wiki_post_mortem.md) -[*](forth.md) -[*](qubit.md) -[*](robot.md) -[*](cc0.md) -[*](everyone_does_it.md) -[*](sqrt.md) -[*](fail_ab.md) -[*](turing_machine.md) -[*](sudoku.md) -[*](fqa.md) -[*](go.md) -[*](devuan.md) -[*](girl.md) -[*](hexadecimal.md) -[*](censorship.md) -[*](finished.md) -[*](ioccc.md) -[*](c_tutorial.md) -[*](kek.md) -[*](library.md) -[*](kek.md) -[*](procgen.md) -[*](README.md) -[*](permacomputing_wiki.md) -[*](coding.md) -[*](raylib.md) -[*](fractal.md) -[*](chinese.md) -[*](demoscene.md) -[*](data_structure.md) -[*](flatland.md) -[*](wikidata.md) -[*](fail_ab.md) -[*](rights_culture.md) -[*](anal_bead.md) -[*](bytebeat.md) -[*](jesus.md) -[*](see_through_clothes.md) -[*](firmware.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](saf.md) -[*](goodbye_world.md) -[*](elon_musk.md) -[*](raycasting.md) -[*](data_hoarding.md) -[*](line.md) -[*](tpe.md) -[*](one.md) -[*](sdf.md) -[*](primitive_3d.md) -[*](neural_network.md) -[*](crypto.md) -[*](atheism.md) -[*](pseudorandomness.md) -[*](collapse.md) -[*](logic_gate.md) -[*](shogi.md) -[*](exercises.md) -[*](coc.md) -[*](rgb332.md) -[*](consumerism.md) -[*](90s.md) -[*](ai.md) -[*](programming.md) -[*](lisp.md) -[*](gay.md) -[*](sw_rendering.md) -[*](suicide.md) -[*](xd.md) -[*](bitreich.md) -[*](compsci.md) -[*](mud.md) -[*](hard_to_learn_easy_to_master.md) -[*](entropy.md) -[*](left_right.md) -[*](teletext.md) -[*](duskos.md) -[*](vim.md) -[*](blender.md) -[*](modern_software.md) -[*](global_discussion.md) -[*](audiophilia.md) -[*](free_hardware.md) -[*](troll.md) -[*](luke_smith.md) -[*](determinism.md) -[*](raycastlib.md) -[*](ssao.md) -[*](library.md) -[*](byte.md) -[*](lambda_calculus.md) -[*](ted_kaczynski.md) -[*](pokitto.md) -[*](less_retarded_society.md) -[*](fantasy_console.md) -[*](nc.md) -[*](devuan.md) -[*](capitalism.md) -[*](analog.md) -[*](foss.md) -[*](capitalist_singularity.md) -[*](rock.md) -[*](raylib.md) -[*](cracking.md) -[*](gay.md) -[*](www.md) -[*](viznut.md) -[*](comun.md) -[*](21st_century.md) -[*](plan9.md) -[*](elo.md) -[*](deep_blue.md) -[*](fear_culture.md) -[*](mental_outlaw.md) -[*](acronym.md) -[*](lgbt.md) -[*](normalization.md) -[*](jargon_file.md) -[*](sqrt.md) -[*](speech_synthesis.md) -[*](comun.md) -[*](pedophilia.md) -[*](smart.md) -[*](docker.md) -[*](x86.md) -[*](windows.md) -[*](sorting.md) -[*](competition.md) -[*](egoism.md) -[*](future_proof.md) -[*](fqa.md) -[*](web.md) -[*](frameless.md) -[*](unfuck.md) -[*](island.md) -[*](free_culture.md) -[*](moderation.md) -[*](fixed_point.md) -[*](murderer.md) -[*](forth.md) -[*](byte.md) -[*](project.md) -[*](bitreich.md) -[*](kiss.md) -[*](kiwifarms.md) -[*](bill_gates.md) -[*](acronym.md) -[*](open_console.md) -[*](faggot.md) -[*](easy_to_learn_hard_to_master.md) -[*](kwangmyong.md) -[*](throwaway_script.md) -[*](racetrack.md) -[*](encyclopedia.md) -[*](lrs_dictionary.md) -[*](nc.md) -[*](hack.md) -[*](floss.md) -[*](3d_model.md) -[*](ui.md) -[*](furry.md) -[*](crypto.md) -[*](fascist.md) -[*](digital.md) -[*](version_numbering.md) -[*](hyperoperation.md) -[*](golang.md) -[*](used.md) -[*](science.md) -[*](boat.md) -[*](holy_war.md) -[*](public_domain.md) -[*](logic.md) -[*](kiwifarms.md) -[*](ai.md) -[*](antivirus_paradox.md) -[*](gaywashing.md) -[*](tinyphysicsengine.md) -[*](internet.md) -[*](murderer.md) -[*](paywall.md) -[*](billboard.md) -[*](fascism.md) -[*](comment.md) -[*](42.md) -[*](nationalism.md) -[*](wiki_post_mortem.md) -[*](egoism.md) -[*](portal_rendering.md) -[*](technology.md) -[*](harry_potter.md) -[*](reddit.md) -[*](bazaar.md) -[*](unary.md) -[*](morality.md) -[*](combinatorics.md) -[*](marble_race.md) -[*](graveyard.md) -[*](thrembo.md) -[*](unary.md) -[*](mipmap.md) -[*](attribution.md) -[*](niger.md) -[*](fuck.md) -[*](fqa.md) -[*](audiophilia.md) -[*](everyone_does_it.md) -[*](hardware.md) -[*](atan.md) -[*](antialiasing.md) -[*](mainstream.md) -[*](terry_davis.md) -[*](smallchesslib.md) -[*](axiom_of_choice.md) -[*](git.md) -[*](motivation.md) -[*](wow.md) -[*](splinternet.md) -[*](wikiwikiweb.md) -[*](usenet.md) -[*](golang.md) -[*](compiler_bomb.md) -[*](go.md) -[*](charity_sex.md) -[*](holy_war.md) -[*](compsci.md) -[*](bytebeat.md) -[*](dog.md) -[*](boot.md) -[*](microtheft.md) -[*](approximation.md) -[*](google.md) -[*](steve_jobs.md) -[*](public_domain.md) -[*](political_correctness.md) -[*](arch.md) -[*](tensor_product.md) -[*](zuckerberg.md) -[*](xxiivv.md) -[*](jargon_file.md) -[*](programming_style.md) -[*](sin.md) -[*](interaction_net.md) -[*](soydev.md) -[*](easier_done_than_said.md) -[*](gui.md) -[*](determinism.md) -[*](woman.md) -[*](sw_rendering.md) -[*](wiki_pages.md) -[*](wikipedia.md) -[*](plusnigger.md) -[*](soydev.md) -[*](troll.md) -[*](distance.md) -[*](magic.md) -[*](kids_these_days.md) -[*](slowly_boiling_the_frog.md) -[*](hack.md) -[*](wiki_rights.md) -[*](uxn.md) -[*](binary.md) -[*](c_sharp.md) -[*](portability.md) -[*](css.md) -[*](loquendo.md) -[*](42.md) -[*](nord_vpn.md) -[*](furry.md) -[*](nc.md) -[*](microtheft.md) -[*](often_confused.md) -[*](collapse.md) -[*](chasm_the_rift.md) -[*](jesus.md) -[*](real_number.md) -[*](compsci.md) -[*](music.md) -[*](downto.md) -[*](collision_detection.md) -[*](race.md) -[*](lrs_wiki.md) -[*](duke3d.md) -[*](see_through_clothes.md) -[*](rgb332.md) -[*](one.md) -[*](education.md) -[*](free_will.md) -[*](hw.md) -[*](free_hardware.md) -[*](fun.md) -[*](real_number.md) -[*](whale.md) -[*](just_werks.md) -[*](capitalist_singularity.md) -[*](lrs_dictionary.md) -[*](human_language.md) -[*](ancap.md) -[*](tranny.md) -[*](game.md) -[*](macrofucker.md) -[*](information.md) -[*](good_enough.md) -[*](compiler_bomb.md) -[*](cyberbullying.md) -[*](suckless.md) -[*](trump.md) -[*](suckless.md) -[*](exercises.md) -[*](drummyfish.md) -[*](free.md) -[*](temple_os.md) -[*](murderer.md) -[*](chess.md) -[*](fun.md) -[*](optimization.md) -[*](sanism.md) -[*](java.md) -[*](procgen.md) -[*](encryption.md) -[*](jesus.md) -[*](adam_smith.md) -[*](lmao.md) -[*](fuck.md) -[*](memory_management.md) -[*](gender_studies.md) -[*](libertarianism.md) -[*](cpu.md) -[*](floss.md) -[*](greenwashing.md) -[*](free.md) -[*](hacker_culture.md) -[*](sw.md) -[*](science.md) -[*](100r.md) -[*](trash_magic.md) -[*](music.md) -[*](proof.md) -[*](law.md) -[*](prime.md) -[*](netstalking.md) -[*](logic.md) -[*](randomness.md) -[*](selflessness.md) -[*](bit.md) -[*](anarch.md) -[*](open_source.md) -[*](life.md) -[*](copyleft.md) -[*](security.md) -[*](complexity.md) -[*](public_domain_computer.md) -[*](bootstrap.md) -[*](vector.md) -[*](suckless.md) -[*](duke3d.md) -[*](competition.md) -[*](arduboy.md) -[*](twos_complement.md) -[*](capitalist_singularity.md) -[*](cat_v.md) -[*](rms.md) -[*](algorithm.md) -[*](consumerism.md) -[*](oop.md) -[*](computer.md) -[*](os.md) -[*](unretard.md) -[*](newspeak.md) -[*](langtons_ant.md) -[*](firmware.md) -[*](terry_davis.md) -[*](debugging.md) -[*](free_body.md) -[*](paywall.md) -[*](lrs_wiki.md) -[*](love.md) -[*](wizard.md) -[*](hw.md) -[*](disease.md) -[*](see_through_clothes.md) -[*](living.md) -[*](ronja.md) -[*](game_engine.md) -[*](regex.md) -[*](less_retarded_hardware.md) -[*](niger.md) -[*](public_domain_computer.md) -[*](faq.md) -[*](minesweeper.md) -[*](build_engine.md) -[*](mipmap.md) -[*](slowly_boiling_the_frog.md) -[*](unary.md) -[*](selflessness.md) -[*](resnicks_termite.md) -[*](dramatica.md) -[*](framework.md) -[*](tangram.md) -[*](e.md) -[*](easier_done_than_said.md) -[*](watchdog.md) -[*](transsexual.md) -[*](soyence.md) -[*](wiki_tldr.md) -[*](diogenes.md) -[*](minigame.md) -[*](quine.md) -[*](body_shaming.md) -[*](programming.md) -[*](fsf.md) -[*](easy_to_learn_hard_to_master.md) -[*](golang.md) -[*](hero.md) -[*](just_werks.md) -[*](vector.md) -[*](anpac.md) -[*](transistor.md) -[*](line.md) -[*](encyclopedia.md) -[*](nanogenmo.md) -[*](motivation.md) -[*](military.md) -[*](software.md) -[*](number.md) -[*](atheism.md) -[*](flatland.md) -[*](digital_signature.md) -[*](political_correctness.md) -[*](no_knowledge_proof.md) -[*](myths.md) -[*](lil.md) -[*](bitreich.md) -[*](semiconductor.md) -[*](npc.md) -[*](kids_these_days.md) -[*](money.md) -[*](doom.md) -[*](21st_century.md) -[*](open_source.md) -[*](ancap.md) -[*](operating_system.md) -[*](fediverse.md) -[*](game_of_life.md) -[*](minigame.md) -[*](books.md) -[*](love.md) -[*](idiot_fallacy.md) -[*](xd.md) -[*](zero.md) -[*](jargon_file.md) -[*](deferred_shading.md) -[*](sudoku.md) -[*](democracy.md) -[*](21st_century.md) -[*](free.md) -[*](smart.md) -[*](proof.md) -[*](plusnigger.md) -[*](oop.md) -[*](dog.md) -[*](combinatorics.md) -[*](cracker.md) -[*](anpac.md) -[*](marxism.md) -[*](love.md) -[*](transistor.md) -[*](collision.md) -[*](quaternion.md) -[*](rationalwiki.md) -[*](piracy.md) -[*](drummyfish.md) -[*](zero.md) -[*](crime_against_economy.md) -[*](often_misunderstood.md) -[*](x86.md) -[*](aaron_swartz.md) -[*](gender_studies.md) -[*](zero.md) -[*](entrepreneur.md) -[*](line.md) -[*](venus_project.md) -[*](wiki_post_mortem.md) -[*](free_will.md) -[*](real_number.md) -[*](encryption.md) -[*](bullshit.md) -[*](dinosaur.md) -[*](easy_to_learn_hard_to_master.md) -[*](game_engine.md) -[*](dynamic_programming.md) -[*](smallchesslib.md) -[*](rust.md) -[*](capitalist_software.md) -[*](hero.md) -[*](backpropagation.md) -[*](jedi_engine.md) -[*](software.md) -[*](john_carmack.md) -[*](corporation.md) -[*](race.md) -[*](racism.md) -[*](semiconductor.md) -[*](rsa.md) -[*](niggercoin.md) -[*](linear_algebra.md) -[*](history.md) -[*](geek.md) -[*](future_proof.md) -[*](google.md) -[*](tpe.md) -[*](linear_algebra.md) -[*](c_tutorial.md) -[*](microsoft.md) -[*](quantum_gate.md) -[*](js.md) -[*](os.md) -[*](niggercoin.md) -[*](compression.md) -[*](f2p.md) -[*](kiss.md) -[*](hero.md) [*](shortcut_thinking.md) -[*](aliasing.md) -[*](black.md) -[*](mipmap.md) -[*](raycastlib.md) -[*](ubi.md) -[*](entrepreneur.md) -[*](pseudominimalism.md) -[*](portability.md) -[*](wiki_authors.md) -[*](README.md) -[*](rgb565.md) -[*](future_proof.md) -[*](coding.md) -[*](ui.md) -[*](distrohopping.md) -[*](universe.md) -[*](plan9.md) -[*](bloat.md) -[*](tom_scott.md) -[*](rsa.md) -[*](free_software.md) -[*](float.md) -[*](bs.md) -[*](data_hoarding.md) -[*](reddit.md) -[*](left.md) -[*](sin.md) -[*](optimization.md) -[*](cancel_culture.md) -[*](unretard.md) -[*](recursion.md) -[*](fork.md) -[*](implicit.md) -[*](iq.md) -[*](english.md) -[*](jokes.md) -[*](resnicks_termite.md) -[*](world_broadcast.md) -[*](formal_language.md) -[*](web.md) -[*](information.md) -[*](noise.md) -[*](antialiasing.md) -[*](assembly.md) -[*](body_shaming.md) -[*](formal_language.md) -[*](wavelet_transform.md) -[*](markov_chain.md) -[*](operating_system.md) -[*](earth.md) -[*](cancel_culture.md) -[*](tom_scott.md) -[*](3d_modeling.md) -[*](hack.md) -[*](nord_vpn.md) -[*](racetrack.md) -[*](mud.md) -[*](usa.md) -[*](lambda_calculus.md) -[*](css.md) -[*](social_inertia.md) -[*](gopher.md) -[*](ssao.md) -[*](how_to.md) -[*](programming_tips.md) -[*](left_right.md) -[*](3d_rendering.md) -[*](culture.md) -[*](steve_jobs.md) -[*](watchdog.md) -[*](quaternion.md) -[*](smol_internet.md) -[*](portal_rendering.md) -[*](marketing.md) -[*](approximation.md) -[*](math.md) -[*](python.md) -[*](c_pitfalls.md) -[*](lrs.md) -[*](bit_hack.md) -[*](rights_culture.md) -[*](x86.md) -[*](sigbovik.md) -[*](bbs.md) -[*](toxic.md) -[*](tech.md) -[*](hyperoperation.md) -[*](copyleft.md) -[*](math.md) -[*](bit_hack.md) -[*](foss.md) -[*](censorship.md) -[*](atheism.md) -[*](needed.md) -[*](competition.md) -[*](freedom_distance.md) -[*](corporation.md) -[*](collision_detection.md) -[*](anarch.md) -[*](cpu.md) -[*](cat_v.md) -[*](cancel_culture.md) -[*](permacomputing.md) -[*](fascist.md) -[*](copyright.md) -[*](world_broadcast.md) -[*](pride.md) -[*](tranny.md) -[*](3d_model.md) -[*](modern.md) -[*](blender.md) -[*](game_of_life.md) -[*](freedom.md) -[*](left.md) -[*](trom.md) -[*](forth.md) -[*](altruism.md) -[*](fsf.md) -[*](rapeware.md) -[*](game.md) -[*](arduboy.md) -[*](io.md) -[*](woman.md) -[*](rgb332.md) -[*](app.md) -[*](gnu.md) -[*](law.md) -[*](doom.md) -[*](faq.md) -[*](hero_culture.md) -[*](digital.md) -[*](demo.md) -[*](collision.md) -[*](tech.md) -[*](wikiwikiweb.md) -[*](js.md) -[*](elon_musk.md) -[*](sqrt.md) -[*](freedom_distance.md) -[*](sanism.md) -[*](neural_network.md) -[*](backgammon.md) -[*](rationalwiki.md) -[*](sigbovik.md) -[*](ram.md) -[*](loc.md) -[*](physics_engine.md) -[*](algorithm.md) -[*](de_facto.md) -[*](fourier_transform.md) -[*](name_is_important.md) -[*](primitive_3d.md) -[*](antialiasing.md) -[*](wow.md) -[*](watchdog.md) -[*](wiki_authors.md) -[*](ethics.md) -[*](tranny_software.md) -[*](feminism.md) -[*](good_enough.md) -[*](egoism.md) -[*](sjw.md) -[*](recursion.md) -[*](bbs.md) -[*](os.md) -[*](crow_funding.md) -[*](hacking.md) -[*](analytic_geometry.md) -[*](io.md) -[*](trom.md) -[*](logic_circuit.md) -[*](analog.md) -[*](fractal.md) -[*](countercomplex.md) -[*](programming.md) -[*](atan.md) -[*](books.md) -[*](intellectual_property.md) -[*](wikidata.md) -[*](bullshit.md) -[*](paradigm.md) -[*](reactionary_software.md) -[*](www.md) -[*](double_buffering.md) -[*](censorship.md) -[*](cc.md) -[*](public_domain_computer.md) -[*](fourier_transform.md) -[*](bill_gates.md) -[*](modern_software.md) -[*](libertarianism.md) -[*](tensor_product.md) -[*](people.md) -[*](entropy.md) -[*](shit.md) -[*](mainstream.md) -[*](robot.md) -[*](racism.md) -[*](jedi_engine.md) -[*](slowly_boiling_the_frog.md) -[*](duskos.md) -[*](anarchism.md) -[*](justice.md) -[*](good_enough.md) -[*](interesting.md) -[*](yes_they_can.md) -[*](freedom.md) -[*](trump.md) -[*](3d_model.md) -[*](bytecode.md) -[*](geek.md) -[*](unicode.md) -[*](c.md) -[*](chaos.md) -[*](trash_magic.md) -[*](liberalism.md) -[*](palette.md) -[*](cyber.md) -[*](exercises.md) -[*](whale.md) -[*](monad.md) -[*](noise.md) -[*](gaywashing.md) -[*](old.md) -[*](twos_complement.md) -[*](tensor_product.md) -[*](less_retarded_hardware.md) -[*](smol_internet.md) -[*](antivirus_paradox.md) -[*](p_vs_np.md) -[*](computer.md) -[*](unicode.md) -[*](rust.md) -[*](network.md) -[*](diogenes.md) -[*](wiki_stats.md) -[*](elo.md) -[*](tangram.md) -[*](venus_project.md) -[*](graveyard.md) -[*](apple.md) -[*](oop.md) -[*](openarena.md) -[*](proof.md) -[*](systemd.md) -[*](interesting.md) -[*](e.md) -[*](evil.md) -[*](lmao.md) -[*](microtransaction.md) -[*](cracking.md) -[*](racetrack.md) -[*](demoscene.md) -[*](progress.md) -[*](copyfree.md) -[*](everyone_does_it.md) -[*](anarchism.md) -[*](double_buffering.md) -[*](microsoft.md) -[*](temple_os.md) -[*](git.md) -[*](entropy.md) -[*](cos.md) -[*](moderation.md) -[*](devuan.md) -[*](bilinear.md) -[*](anpac.md) -[*](fight_culture.md) -[*](free_culture.md) -[*](zen.md) -[*](information.md) -[*](rsa.md) -[*](duke3d.md) -[*](sdf.md) -[*](project.md) -[*](paywall.md) -[*](creative_commons.md) -[*](pedophilia.md) -[*](military.md) -[*](brain_software.md) -[*](qubit.md) -[*](microtheft.md) -[*](small3dlib.md) -[*](coc.md) -[*](evil.md) -[*](used.md) -[*](f2p.md) -[*](luke_smith.md) -[*](name_is_important.md) -[*](smart.md) -[*](backpropagation.md) -[*](greenwashing.md) -[*](viznut.md) -[*](easier_done_than_said.md) -[*](settled.md) -[*](aaron_swartz.md) -[*](tranny_software.md) -[*](fizzbuzz.md) -[*](furry.md) -[*](de_facto.md) -[*](beauty.md) -[*](wikipedia.md) -[*](function.md) -[*](openai.md) -[*](raycasting.md) -[*](piracy.md) -[*](fork.md) -[*](attribution.md) -[*](triangle.md) -[*](git.md) -[*](mouse.md) -[*](dick_reveal.md) -[*](tool_slave.md) -[*](monad.md) -[*](encyclopedia.md) -[*](earth.md) -[*](tangram.md) -[*](javascript.md) -[*](tattoo.md) -[*](venus_project.md) -[*](wiby.md) -[*](proprietary_software.md) -[*](docker.md) -[*](left.md) -[*](entrepreneur.md) -[*](idiot_fallacy.md) -[*](linear_algebra.md) -[*](quine.md) -[*](nonogram.md) -[*](hash.md) -[*](qubit.md) -[*](programming_language.md) -[*](bilinear.md) -[*](thrembo.md) -[*](creative_commons.md) -[*](right.md) -[*](rgb565.md) -[*](paradigm.md) -[*](marketing.md) -[*](minimalism.md) -[*](windows.md) -[*](saf.md) +[*](4chan.md) +[*](capitalist_singularity.md) [*](collapse.md) -[*](regex.md) -[*](microtransaction.md) -[*](float.md) -[*](procgen.md) -[*](monad.md) -[*](digital_signature.md) -[*](mouse.md) -[*](malware.md) -[*](open_console.md) -[*](computational_complexity.md) -[*](charity_sex.md) -[*](anarchism.md) -[*](tool_slave.md) -[*](netstalking.md) -[*](palette.md) -[*](xonotic.md) -[*](soyence.md) -[*](kids_these_days.md) -[*](turing_machine.md) -[*](wiki_style.md) -[*](arch.md) [*](security.md) -[*](wiki_tldr.md) -[*](goodbye_world.md) -[*](island.md) -[*](license.md) -[*](wiki_tldr.md) -[*](permacomputing_wiki.md) -[*](compiler_bomb.md) -[*](work.md) -[*](democracy.md) -[*](wavelet_transform.md) -[*](dramatica.md) -[*](programming_language.md) -[*](kwangmyong.md) -[*](fantasy_console.md) -[*](distrohopping.md) -[*](ashley_jones.md) -[*](drummyfish.md) -[*](teletext.md) -[*](soydev.md) -[*](often_misunderstood.md) -[*](pseudominimalism.md) -[*](app.md) -[*](bullshit.md) -[*](githopping.md) -[*](shogi.md) -[*](google.md) -[*](hardware.md) -[*](femoid.md) -[*](xonotic.md) -[*](c.md) -[*](military.md) -[*](pseudoleft.md) [*](free_software.md) +[*](rock.md) +[*](reactionary_software.md) +[*](x86.md) +[*](quantum_gate.md) +[*](c_pitfalls.md) +[*](backpropagation.md) +[*](cache.md) +[*](education.md) +[*](css.md) +[*](minigame.md) +[*](gui.md) +[*](antivirus_paradox.md) +[*](library.md) +[*](backpropagation.md) +[*](teletext.md) +[*](microtheft.md) +[*](faq.md) +[*](physics_engine.md) +[*](3d_rendering.md) +[*](atheism.md) +[*](left_right.md) +[*](fourier_transform.md) +[*](axiom_of_choice.md) +[*](floss.md) +[*](cat_v.md) +[*](steganography.md) +[*](good_enough.md) +[*](sw.md) +[*](bilinear.md) +[*](usa.md) +[*](gnu.md) +[*](pi.md) +[*](deferred_shading.md) +[*](malware.md) +[*](web.md) +[*](ai.md) +[*](compsci.md) +[*](art.md) +[*](duke3d.md) +[*](demo.md) +[*](netstalking.md) [*](chasm_the_rift.md) -[*](lrs_dictionary.md) -[*](io.md) -[*](hacker_culture.md) -[*](often_misunderstood.md) -[*](comun.md) +[*](lrs_wiki.md) +[*](john_carmack.md) +[*](sigbovik.md) +[*](e.md) +[*](vim.md) +[*](free_will.md) +[*](deferred_shading.md) +[*](fork.md) +[*](free_culture.md) +[*](openai.md) +[*](ascii.md) +[*](logic_circuit.md) +[*](neural_network.md) +[*](fuck.md) +[*](fascism.md) +[*](gigachad.md) +[*](steganography.md) +[*](xd.md) +[*](moderation.md) +[*](elo.md) +[*](programming.md) +[*](bilinear.md) +[*](cpp.md) +[*](linux.md) +[*](plan9.md) +[*](everyone_does_it.md) +[*](project.md) +[*](shit.md) +[*](fear_culture.md) +[*](less_retarded_software.md) +[*](tangram.md) +[*](left_right.md) +[*](double_buffering.md) +[*](fizzbuzz.md) +[*](digital_signature.md) +[*](approximation.md) +[*](mob_software.md) +[*](moderation.md) +[*](wikiwikiweb.md) +[*](primitive_3d.md) +[*](programming_tips.md) +[*](python.md) +[*](lil.md) +[*](nonogram.md) +[*](plusnigger.md) +[*](history.md) +[*](soydev.md) +[*](morality.md) +[*](goodbye_world.md) +[*](logic.md) +[*](small3dlib.md) +[*](kids_these_days.md) +[*](permacomputing_wiki.md) +[*](graphics.md) +[*](physics.md) +[*](less_retarded_hardware.md) +[*](free_universe.md) +[*](cloudflare.md) +[*](git.md) +[*](debugging.md) +[*](bytebeat.md) +[*](czechia.md) +[*](90s.md) +[*](permacomputing.md) +[*](python.md) +[*](democracy.md) +[*](42.md) +[*](unretard.md) +[*](arduboy.md) +[*](kiss.md) +[*](color.md) +[*](computational_complexity.md) +[*](prime.md) +[*](randomness.md) [*](computer.md) +[*](cpu.md) +[*](privacy.md) +[*](public_domain.md) +[*](nanogenmo.md) +[*](good_enough.md) +[*](palette.md) +[*](collapse.md) +[*](small3dlib.md) +[*](oop.md) +[*](compression.md) +[*](combinatorics.md) +[*](information.md) +[*](update_culture.md) +[*](python.md) +[*](collision.md) +[*](lrs_dictionary.md) +[*](cache.md) +[*](public_domain_computer.md) +[*](assembly.md) +[*](memory_management.md) +[*](randomness.md) +[*](usenet.md) +[*](100r.md) +[*](90s.md) +[*](slowly_boiling_the_frog.md) +[*](computer.md) +[*](arch.md) +[*](lgbt.md) +[*](gui.md) +[*](stereotype.md) +[*](quaternion.md) +[*](fight.md) +[*](nord_vpn.md) +[*](githopping.md) +[*](egoism.md) +[*](trolling.md) +[*](prime.md) +[*](democracy.md) +[*](coding.md) +[*](xd.md) +[*](love.md) +[*](work.md) +[*](military.md) +[*](lrs.md) +[*](venus_project.md) +[*](plan9.md) +[*](blender.md) +[*](cpp.md) +[*](exercises.md) +[*](just_werks.md) +[*](libertarianism.md) +[*](capitalist_singularity.md) +[*](less_retarded_hardware.md) +[*](interesting.md) +[*](bootstrap.md) +[*](trash_magic.md) +[*](robot.md) +[*](3d_modeling.md) +[*](temple_os.md) +[*](splinternet.md) +[*](tattoo.md) +[*](io.md) +[*](ethics.md) +[*](how_to.md) +[*](watchdog.md) +[*](sqrt.md) +[*](javascript.md) +[*](duskos.md) +[*](history.md) +[*](fixed_point.md) +[*](qubit.md) +[*](float.md) +[*](old.md) +[*](zen.md) +[*](culture.md) +[*](oop.md) +[*](social_inertia.md) +[*](gemini.md) +[*](fqa.md) +[*](security.md) +[*](smol_internet.md) +[*](wiki_stats.md) +[*](hard_to_learn_easy_to_master.md) +[*](firmware.md) +[*](tranny_software.md) +[*](shortcut_thinking.md) +[*](pride.md) +[*](e.md) +[*](robot.md) +[*](nd.md) +[*](ethics.md) +[*](brainfuck.md) +[*](girl.md) +[*](bootstrap.md) +[*](comun.md) +[*](transsexual.md) +[*](often_confused.md) +[*](nigger.md) +[*](collision.md) +[*](lisp.md) +[*](hero_culture.md) +[*](cpp.md) +[*](sdf.md) +[*](creative_commons.md) +[*](smart.md) +[*](js.md) +[*](bit_hack.md) +[*](antialiasing.md) +[*](billboard.md) +[*](jokes.md) +[*](line.md) +[*](tech.md) +[*](unicode.md) +[*](prime.md) +[*](zuckerberg.md) +[*](island.md) +[*](explicit.md) +[*](sorting.md) +[*](science.md) +[*](proprietary_software.md) +[*](README.md) +[*](shit.md) +[*](wiki_rights.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](attribution.md) +[*](racism.md) +[*](lrs.md) +[*](recursion.md) +[*](smol_internet.md) +[*](kids_these_days.md) +[*](hacking.md) +[*](avpd.md) +[*](fun.md) +[*](thrembo.md) +[*](fsf.md) +[*](culture.md) +[*](compression.md) +[*](atheism.md) +[*](iq.md) +[*](wiki_style.md) +[*](law.md) +[*](internet.md) +[*](open_source.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](holy_war.md) +[*](jargon_file.md) +[*](cat_v.md) +[*](internet.md) +[*](privacy.md) +[*](viznut.md) +[*](how_to.md) +[*](mental_outlaw.md) +[*](abstraction.md) +[*](yes_they_can.md) +[*](life.md) +[*](optimization.md) +[*](crypto.md) +[*](beauty.md) +[*](world_broadcast.md) +[*](data_hoarding.md) +[*](zero.md) +[*](geek.md) +[*](raycastlib.md) +[*](graphics.md) +[*](motivation.md) +[*](monad.md) +[*](npc.md) +[*](raylib.md) +[*](google.md) +[*](arch.md) +[*](proprietary_software.md) +[*](tas.md) +[*](less_retarded_society.md) [*](future.md) -[*](boot.md) -[*](dodleston.md) -[*](settled.md) -[*](game_of_life.md) +[*](smart.md) +[*](hyperoperation.md) +[*](encryption.md) +[*](chasm_the_rift.md) +[*](tinyphysicsengine.md) +[*](gay.md) +[*](island.md) +[*](bazaar.md) +[*](rust.md) +[*](productivity_cult.md) +[*](bit_hack.md) +[*](game.md) +[*](twos_complement.md) +[*](furry.md) +[*](version_numbering.md) +[*](cloud.md) +[*](software.md) +[*](information.md) +[*](intellectual_property.md) +[*](unix.md) +[*](consumerism.md) +[*](newspeak.md) +[*](90s.md) +[*](zuckerberg.md) +[*](anal_bead.md) +[*](dungeons_and_dragons.md) +[*](gaywashing.md) +[*](neural_network.md) +[*](demo.md) +[*](music.md) [*](corporation.md) -[*](wikipedia.md) -[*](maintenance.md) +[*](nonogram.md) +[*](anarchism.md) +[*](wiki_tldr.md) +[*](progress.md) +[*](jedi_engine.md) +[*](open_source.md) +[*](downto.md) +[*](steve_jobs.md) +[*](emoticon.md) +[*](qubit.md) +[*](racism.md) +[*](left_right.md) +[*](analytic_geometry.md) +[*](unix_philosophy.md) +[*](free_software.md) +[*](randomness.md) +[*](life.md) +[*](competition.md) +[*](shit.md) +[*](race.md) +[*](mouse.md) +[*](entropy.md) +[*](autostereogram.md) +[*](cyberbullying.md) +[*](arch.md) +[*](lmao.md) +[*](go.md) +[*](pseudominimalism.md) +[*](money.md) +[*](attribution.md) +[*](cheating.md) +[*](semiconductor.md) +[*](app.md) +[*](proprietary.md) +[*](science.md) +[*](egoism.md) +[*](altruism.md) +[*](capitalism.md) +[*](blender.md) +[*](mud.md) +[*](shader.md) +[*](downto.md) +[*](capitalist_singularity.md) +[*](hw.md) +[*](p_vs_np.md) +[*](suicide.md) +[*](ashley_jones.md) +[*](jargon_file.md) +[*](human_language.md) +[*](mandelbrot_set.md) +[*](web.md) +[*](julia_set.md) +[*](rms.md) +[*](formal_language.md) +[*](nokia.md) +[*](pi.md) +[*](censorship.md) +[*](algorithm.md) +[*](free_hardware.md) +[*](lil.md) +[*](hyperoperation.md) +[*](byte.md) +[*](myths.md) +[*](wiki_authors.md) +[*](regex.md) +[*](holy_war.md) +[*](gay.md) +[*](charity_sex.md) +[*](npc.md) [*](earth.md) [*](open_console.md) -[*](boat.md) -[*](privacy.md) -[*](esolang.md) -[*](cloud.md) -[*](fight.md) -[*](used.md) -[*](wiby.md) -[*](programming_tips.md) -[*](bootstrap.md) -[*](double_buffering.md) -[*](lgbt.md) -[*](recursion.md) -[*](graphics.md) -[*](anal_bead.md) -[*](deep_blue.md) -[*](pseudominimalism.md) -[*](hero_culture.md) -[*](kek.md) -[*](finished.md) -[*](mob_software.md) -[*](future.md) -[*](copyfree.md) -[*](network.md) -[*](bytebeat.md) -[*](game_engine.md) -[*](demoscene.md) -[*](programming_style.md) -[*](chaos.md) -[*](binary.md) -[*](myths.md) -[*](tech.md) -[*](universe.md) -[*](data_structure.md) -[*](distrohopping.md) -[*](czechia.md) -[*](productivity_cult.md) -[*](collision.md) -[*](fun.md) -[*](gopher.md) -[*](3d_modeling.md) -[*](wiki_stats.md) -[*](dick_reveal.md) -[*](f2p.md) -[*](90s.md) -[*](sdf.md) -[*](free_universe.md) -[*](sjw.md) -[*](less_retarded_software.md) -[*](3d_modeling.md) -[*](crypto.md) -[*](femoid.md) -[*](nationalism.md) -[*](patent.md) -[*](unfuck.md) -[*](gemini.md) -[*](dodleston.md) -[*](ram.md) -[*](brain_software.md) -[*](rms.md) -[*](software.md) -[*](antivirus_paradox.md) -[*](malware.md) -[*](chinese.md) -[*](plusnigger.md) -[*](aliasing.md) -[*](chess.md) -[*](trolling.md) -[*](cheating.md) -[*](phd.md) -[*](fascism.md) -[*](productivity_cult.md) -[*](troll.md) -[*](shit.md) -[*](crime_against_economy.md) -[*](idiot_fallacy.md) -[*](zuckerberg.md) -[*](c.md) -[*](twos_complement.md) -[*](transsexual.md) -[*](palette.md) -[*](money.md) -[*](permacomputing.md) -[*](smallchesslib.md) -[*](hard_to_learn_easy_to_master.md) -[*](comment.md) -[*](lgbt.md) -[*](sjw.md) -[*](ssao.md) -[*](faggot.md) -[*](audiophilia.md) -[*](cc0.md) -[*](javascript.md) -[*](mouse.md) -[*](jokes.md) -[*](geek.md) -[*](downto.md) -[*](c_sharp.md) -[*](greenwashing.md) -[*](gay.md) -[*](90s.md) -[*](cracking.md) -[*](framework.md) -[*](project.md) -[*](evil.md) -[*](mob_software.md) -[*](hero_culture.md) -[*](no_knowledge_proof.md) -[*](flatland.md) -[*](nigeria.md) -[*](niger.md) -[*](hardware.md) -[*](small3dlib.md) -[*](docker.md) -[*](attribution.md) -[*](githopping.md) -[*](nanogenmo.md) -[*](vim.md) -[*](openarena.md) -[*](kwangmyong.md) -[*](cpp.md) -[*](python.md) -[*](dick_reveal.md) -[*](wiby.md) -[*](consumerism.md) -[*](wizard.md) -[*](gender_studies.md) -[*](wikidata.md) -[*](e.md) -[*](update_culture.md) -[*](feminism.md) -[*](resnicks_termite.md) -[*](billboard.md) -[*](sorting.md) -[*](marketing.md) -[*](nokia.md) -[*](reddit.md) -[*](harry_potter.md) -[*](human_language.md) -[*](dramatica.md) -[*](pedophilia.md) -[*](saf.md) -[*](rms.md) -[*](algorithm.md) -[*](dependency.md) -[*](money.md) -[*](backgammon.md) +[*](copyleft.md) +[*](os.md) +[*](easy_to_learn_hard_to_master.md) [*](sin.md) -[*](girl.md) -[*](world_broadcast.md) -[*](complexity.md) -[*](42.md) -[*](pseudorandomness.md) -[*](football.md) -[*](wavelet_transform.md) -[*](copyright.md) -[*](maintenance.md) -[*](charity_sex.md) -[*](wiki_stats.md) -[*](history.md) -[*](people.md) -[*](pi.md) -[*](pi.md) -[*](firmware.md) -[*](plan9.md) -[*](build_engine.md) -[*](boot.md) -[*](encryption.md) -[*](langtons_ant.md) +[*](copyfree.md) +[*](patent.md) +[*](distance.md) +[*](cat_v.md) +[*](fork.md) +[*](hack.md) +[*](arduboy.md) +[*](luke_smith.md) [*](ted_kaczynski.md) +[*](acronym.md) +[*](saf.md) +[*](bytecode.md) +[*](harry_potter.md) +[*](tor.md) +[*](chinese.md) +[*](open_console.md) +[*](uxn.md) +[*](doom.md) +[*](tas.md) [*](thrembo.md) -[*](portal_rendering.md) -[*](gigachad.md) +[*](linux.md) +[*](pseudo3d.md) +[*](pd.md) +[*](fun.md) +[*](gender_studies.md) +[*](information.md) +[*](beauty.md) +[*](optimization.md) +[*](capitalism.md) +[*](money.md) +[*](cyberbullying.md) +[*](used.md) +[*](proof.md) +[*](less_retarded_society.md) +[*](hero_culture.md) +[*](mob_software.md) +[*](easier_done_than_said.md) +[*](markov_chain.md) [*](education.md) -[*](memory_management.md) +[*](altruism.md) +[*](c_tutorial.md) +[*](debugging.md) +[*](neural_network.md) +[*](splinternet.md) +[*](procgen.md) +[*](hardware.md) +[*](censorship.md) +[*](encyclopedia.md) +[*](autoupdate.md) +[*](bazaar.md) +[*](abstraction.md) +[*](feminism.md) +[*](openai.md) +[*](temple_os.md) +[*](distance.md) +[*](easy_to_learn_hard_to_master.md) +[*](raycastlib.md) +[*](saf.md) +[*](css.md) +[*](triangle.md) +[*](pseudominimalism.md) +[*](countercomplex.md) +[*](minesweeper.md) [*](chess.md) -[*](cloudflare.md) -[*](cyber.md) -[*](kiwifarms.md) +[*](e.md) +[*](black.md) +[*](pseudoleft.md) +[*](see_through_clothes.md) +[*](antivirus_paradox.md) +[*](soyence.md) +[*](golang.md) +[*](future_proof.md) +[*](trolling.md) +[*](lrs_wiki.md) +[*](lrs.md) +[*](devuan.md) +[*](piracy.md) +[*](comment.md) +[*](john_carmack.md) +[*](wikiwikiweb.md) +[*](trolling.md) +[*](morality.md) +[*](kek.md) +[*](real_number.md) +[*](faggot.md) +[*](ram.md) +[*](disease.md) +[*](niger.md) +[*](bit.md) +[*](distrohopping.md) +[*](geek.md) +[*](duke3d.md) +[*](audiophilia.md) +[*](procgen.md) +[*](racetrack.md) +[*](wiby.md) +[*](racetrack.md) +[*](fascist.md) +[*](compsci.md) +[*](reddit.md) +[*](java.md) +[*](analog.md) +[*](hacker_culture.md) +[*](technology.md) +[*](www.md) +[*](aliasing.md) +[*](fractal.md) +[*](sanism.md) +[*](love.md) +[*](boot.md) +[*](saf.md) +[*](hyperoperation.md) [*](youtube.md) -[*](cache.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](transsexual.md) +[*](f2p.md) +[*](tinyphysicsengine.md) +[*](free_hardware.md) +[*](microtheft.md) +[*](implicit.md) +[*](golang.md) +[*](cracking.md) +[*](terry_davis.md) +[*](pedophilia.md) +[*](modern_software.md) +[*](brainfuck.md) +[*](rock.md) +[*](project.md) +[*](nonogram.md) +[*](minesweeper.md) +[*](forth.md) +[*](wiki_stats.md) +[*](drummyfish.md) +[*](kiwifarms.md) +[*](disease.md) +[*](global_discussion.md) +[*](selflessness.md) +[*](throwaway_script.md) +[*](evil.md) +[*](settled.md) +[*](jesus.md) +[*](fight_culture.md) +[*](tensor_product.md) +[*](aliasing.md) +[*](firmware.md) +[*](build_engine.md) +[*](tor.md) +[*](raycasting.md) +[*](free_will.md) +[*](cc.md) +[*](hero.md) +[*](wizard.md) +[*](programming_language.md) +[*](countercomplex.md) +[*](diogenes.md) +[*](entropy.md) +[*](macrofucker.md) +[*](niggercoin.md) +[*](assembly.md) +[*](malware.md) +[*](steve_jobs.md) +[*](john_carmack.md) +[*](shogi.md) +[*](cos.md) +[*](bitreich.md) +[*](interplanetary_internet.md) +[*](downto.md) +[*](ronja.md) +[*](boat.md) +[*](czechia.md) +[*](unary.md) +[*](rust.md) +[*](crime_against_economy.md) +[*](name_is_important.md) +[*](island.md) +[*](sorting.md) +[*](girl.md) +[*](logic_gate.md) +[*](just_werks.md) +[*](loquendo.md) +[*](wiki_post_mortem.md) +[*](autoupdate.md) +[*](trump.md) +[*](moderation.md) +[*](hacking.md) +[*](quantum_gate.md) +[*](abstraction.md) +[*](atan.md) +[*](uxn.md) +[*](dungeons_and_dragons.md) +[*](suckless.md) +[*](bbs.md) +[*](corporation.md) +[*](toxic.md) +[*](lisp.md) +[*](raycastlib.md) +[*](analog.md) +[*](operating_system.md) +[*](3d_model.md) +[*](complexity.md) +[*](hard_to_learn_easy_to_master.md) +[*](zero.md) +[*](niggercoin.md) +[*](infinity.md) +[*](tangram.md) +[*](intellectual_property.md) +[*](kiss.md) +[*](productivity_cult.md) +[*](ui.md) +[*](capitalist_software.md) +[*](normalization.md) +[*](rapeware.md) +[*](woman.md) [*](number.md) +[*](less_retarded_software.md) +[*](less_retarded_society.md) +[*](cracker.md) +[*](cpu.md) +[*](motivation.md) +[*](collapse.md) +[*](interpolation.md) +[*](often_misunderstood.md) +[*](game_of_life.md) +[*](fizzbuzz.md) +[*](programming_language.md) +[*](minigame.md) +[*](entrepreneur.md) +[*](rapeware.md) +[*](main.md) +[*](facebook.md) +[*](niger.md) +[*](cancer.md) +[*](graveyard.md) +[*](cyber.md) +[*](data_structure.md) +[*](debugging.md) +[*](emoticon.md) +[*](reddit.md) +[*](combinatorics.md) +[*](anal_bead.md) +[*](determinism.md) +[*](c_pitfalls.md) +[*](build_engine.md) +[*](rapeware.md) +[*](just_werks.md) +[*](science.md) +[*](dynamic_programming.md) +[*](music.md) +[*](jesus.md) +[*](books.md) +[*](mental_outlaw.md) +[*](unfuck.md) +[*](wavelet_transform.md) +[*](bs.md) +[*](libertarianism.md) +[*](dinosaur.md) +[*](demoscene.md) +[*](pseudo3d.md) +[*](crime_against_economy.md) +[*](game_engine.md) +[*](paradigm.md) +[*](vector.md) +[*](javascript.md) +[*](game_engine.md) +[*](idiot_fallacy.md) +[*](throwaway_script.md) +[*](collision_detection.md) +[*](nc.md) +[*](speech_synthesis.md) +[*](crime_against_economy.md) +[*](atan.md) +[*](hero.md) +[*](boat.md) +[*](no_knowledge_proof.md) +[*](sigbovik.md) +[*](proprietary.md) +[*](art.md) +[*](physics.md) +[*](programming_style.md) +[*](chinese.md) +[*](usenet.md) +[*](bloat.md) +[*](communism.md) +[*](distance.md) +[*](monad.md) +[*](css.md) +[*](nigeria.md) +[*](portal_rendering.md) +[*](hacking.md) +[*](often_confused.md) +[*](flatland.md) +[*](dodleston.md) +[*](universe.md) +[*](quine.md) +[*](markov_chain.md) +[*](free_speech.md) +[*](countercomplex.md) +[*](smol_internet.md) +[*](fixed_point.md) +[*](music.md) +[*](comun.md) +[*](build_engine.md) +[*](turing_machine.md) +[*](xonotic.md) +[*](smallchesslib.md) +[*](wikidata.md) +[*](npc.md) +[*](autoupdate.md) +[*](human_language.md) +[*](wizard.md) +[*](microtransaction.md) +[*](memory_management.md) +[*](nanogenmo.md) +[*](anal_bead.md) +[*](fractal.md) +[*](axiom_of_choice.md) +[*](rights_culture.md) +[*](wizard.md) +[*](reactionary_software.md) +[*](usa.md) [*](newspeak.md) -[*](shit.md) -[*](ted_kaczynski.md) +[*](esolang.md) +[*](rgb565.md) +[*](sqrt.md) +[*](antialiasing.md) +[*](game_of_life.md) +[*](fantasy_console.md) +[*](smallchesslib.md) +[*](java.md) +[*](troll.md) +[*](bloat.md) +[*](public_domain.md) +[*](flatland.md) +[*](comment.md) +[*](permacomputing.md) +[*](noise.md) +[*](soyence.md) +[*](combinatorics.md) +[*](optimization.md) +[*](exercises.md) +[*](complexity.md) +[*](noise.md) +[*](demoscene.md) +[*](public_domain.md) +[*](tpe.md) +[*](autostereogram.md) +[*](ssao.md) +[*](openai.md) +[*](anpac.md) +[*](julia_set.md) +[*](main.md) +[*](portal_rendering.md) +[*](cyber.md) +[*](approximation.md) +[*](how_to.md) +[*](anarch.md) +[*](coding.md) +[*](google.md) +[*](hw.md) +[*](free_body.md) +[*](rgb565.md) +[*](patent.md) +[*](billboard.md) +[*](coc.md) +[*](transistor.md) +[*](soydev.md) +[*](universe.md) +[*](mud.md) +[*](interaction_net.md) +[*](compiler_bomb.md) +[*](recursion.md) +[*](floss.md) +[*](english.md) +[*](graveyard.md) +[*](tangram.md) +[*](social_inertia.md) +[*](fantasy_console.md) +[*](emoticon.md) +[*](exercises.md) +[*](libre.md) +[*](duke3d.md) +[*](3d_modeling.md) +[*](tas.md) +[*](frameless.md) +[*](marxism.md) +[*](digital_signature.md) +[*](people.md) +[*](fight.md) [*](fediverse.md) [*](cpu.md) -[*](portability.md) -[*](piracy.md) -[*](combinatorics.md) -[*](rights_culture.md) -[*](arch.md) -[*](fascist.md) -[*](finished.md) -[*](brain_software.md) -[*](bs.md) -[*](css.md) -[*](just_werks.md) -[*](windows.md) -[*](ancap.md) -[*](microsoft.md) -[*](free_hardware.md) -[*](libertarianism.md) -[*](fsf.md) -[*](holy_war.md) -[*](julia_set.md) -[*](bill_gates.md) -[*](free_culture.md) -[*](binary.md) -[*](julia_set.md) -[*](function.md) -[*](jokes.md) -[*](low_poly.md) -[*](raylib.md) -[*](ashley_jones.md) -[*](main.md) -[*](noise.md) -[*](explicit.md) -[*](linux.md) -[*](uxn.md) -[*](teletext.md) -[*](formal_language.md) -[*](justice.md) -[*](xd.md) -[*](dungeons_and_dragons.md) -[*](one.md) -[*](physics_engine.md) -[*](beauty.md) -[*](c_pitfalls.md) -[*](tinyphysicsengine.md) -[*](cc.md) -[*](turing_machine.md) -[*](speech_synthesis.md) -[*](facebook.md) -[*](3d_rendering.md) -[*](shader.md) -[*](fixed_point.md) -[*](nigeria.md) -[*](gui.md) -[*](rule110.md) -[*](speech_synthesis.md) -[*](autostereogram.md) -[*](fork.md) -[*](technology.md) -[*](unix.md) -[*](youtube.md) -[*](free_universe.md) -[*](c_pitfalls.md) -[*](bootstrap.md) -[*](ioccc.md) -[*](go.md) -[*](deep_blue.md) -[*](markov_chain.md) -[*](viznut.md) -[*](infinity.md) -[*](copyright.md) [*](trusting_trust.md) -[*](magic.md) -[*](steganography.md) -[*](programming_tips.md) -[*](ubi.md) -[*](update_culture.md) -[*](tool_slave.md) -[*](race.md) -[*](right.md) -[*](logic_gate.md) -[*](implicit.md) -[*](frameless.md) -[*](modern.md) -[*](life.md) -[*](ethics.md) -[*](zen.md) -[*](tattoo.md) -[*](privacy.md) -[*](shader.md) -[*](tom_scott.md) -[*](left_right.md) -[*](hard_to_learn_easy_to_master.md) -[*](interpolation.md) -[*](java.md) -[*](mandelbrot_set.md) -[*](minesweeper.md) -[*](proprietary_software.md) -[*](dog.md) -[*](nanogenmo.md) -[*](dodleston.md) -[*](avpd.md) -[*](needed.md) -[*](prime.md) -[*](unix_philosophy.md) -[*](gnu.md) -[*](shogi.md) -[*](openarena.md) -[*](lrs.md) -[*](javascript.md) -[*](old.md) -[*](tranny_software.md) -[*](adam_smith.md) -[*](fizzbuzz.md) -[*](openai.md) -[*](logic.md) -[*](mechanical.md) -[*](niggercoin.md) -[*](emoticon.md) -[*](nokia.md) -[*](low_poly.md) -[*](zuckerberg.md) -[*](rgb565.md) -[*](byte.md) -[*](liberalism.md) -[*](duskos.md) -[*](mud.md) -[*](unix_philosophy.md) -[*](triangle.md) -[*](proprietary.md) -[*](anarch.md) -[*](creative_commons.md) -[*](foss.md) -[*](free_will.md) -[*](interplanetary_internet.md) -[*](copyfree.md) -[*](doom.md) -[*](lil.md) -[*](esolang.md) -[*](wiki_pages.md) -[*](girl.md) -[*](comment.md) -[*](freedom.md) -[*](xonotic.md) -[*](nd.md) -[*](living.md) -[*](programming_style.md) -[*](art.md) -[*](triangle.md) -[*](wiki_style.md) -[*](mental_outlaw.md) -[*](dependency.md) -[*](people.md) -[*](shortcut_thinking.md) -[*](phd.md) -[*](unretard.md) -[*](cancer.md) -[*](wiki_rights.md) -[*](wow.md) -[*](c_sharp.md) -[*](dynamic_programming.md) -[*](wiki_authors.md) -[*](library.md) -[*](autoupdate.md) -[*](fuck.md) -[*](downto.md) -[*](nigger.md) -[*](trom.md) -[*](harry_potter.md) -[*](cyberbullying.md) -[*](float.md) -[*](backgammon.md) -[*](less_retarded_society.md) -[*](lisp.md) -[*](human_language.md) -[*](c_tutorial.md) -[*](reactionary_software.md) -[*](graphics.md) -[*](axiom_of_choice.md) -[*](suicide.md) -[*](brainfuck.md) -[*](avpd.md) -[*](3d_rendering.md) -[*](cache.md) -[*](maintenance.md) -[*](adam_smith.md) -[*](chaos.md) -[*](microtransaction.md) -[*](ui.md) -[*](marble_race.md) -[*](determinism.md) -[*](uxn.md) -[*](dynamic_programming.md) -[*](logic_gate.md) -[*](fight_culture.md) -[*](explicit.md) -[*](trash_magic.md) -[*](dungeons_and_dragons.md) -[*](minimalism.md) -[*](bloat.md) -[*](capitalist_software.md) -[*](modern_software.md) -[*](cancer.md) -[*](linux.md) -[*](bytecode.md) -[*](interpolation.md) -[*](nord_vpn.md) -[*](permacomputing.md) -[*](digital_signature.md) -[*](npc.md) -[*](4chan.md) -[*](bazaar.md) -[*](proprietary.md) -[*](island.md) -[*](lrs.md) -[*](permacomputing_wiki.md) -[*](fascism.md) -[*](steganography.md) -[*](intellectual_property.md) -[*](cpp.md) -[*](githopping.md) -[*](dinosaur.md) -[*](english.md) -[*](ai.md) -[*](football.md) -[*](free_speech.md) -[*](xxiivv.md) -[*](needed.md) -[*](gopher.md) -[*](throwaway_script.md) -[*](demo.md) -[*](mandelbrot_set.md) -[*](stereotype.md) -[*](libre.md) -[*](hexadecimal.md) -[*](version_numbering.md) -[*](vector.md) -[*](internet.md) -[*](intellectual_property.md) -[*](bit_hack.md) -[*](body_shaming.md) -[*](backpropagation.md) -[*](python.md) -[*](freedom_distance.md) -[*](hw.md) -[*](patent.md) -[*](sw.md) -[*](trolling.md) -[*](rock.md) -[*](science.md) -[*](autostereogram.md) -[*](neural_network.md) -[*](cracker.md) -[*](fear_culture.md) -[*](old.md) -[*](assertiveness.md) -[*](www.md) -[*](pseudoleft.md) -[*](loc.md) -[*](rock.md) -[*](license.md) -[*](cheating.md) -[*](cloud.md) -[*](lrs_wiki.md) -[*](free_speech.md) -[*](crow_funding.md) -[*](low_poly.md) -[*](license.md) -[*](transistor.md) -[*](ascii_art.md) -[*](pd.md) -[*](minesweeper.md) -[*](usa.md) -[*](justice.md) -[*](name_is_important.md) -[*](fear_culture.md) -[*](hacking.md) -[*](distance.md) -[*](quantum_gate.md) -[*](infinity.md) -[*](complexity.md) -[*](wiki_style.md) -[*](bloat_monopoly.md) -[*](gui.md) -[*](fourier_transform.md) -[*](ascii.md) -[*](often_confused.md) -[*](motivation.md) -[*](nigger.md) -[*](ubi.md) -[*](frameless.md) -[*](toxic.md) -[*](reactionary_software.md) -[*](myths.md) -[*](interpolation.md) -[*](hexadecimal.md) -[*](stereotype.md) -[*](selflessness.md) -[*](color.md) -[*](history.md) -[*](pd.md) -[*](infinity.md) -[*](compression.md) -[*](data_structure.md) -[*](future.md) -[*](education.md) -[*](mainstream.md) -[*](bit.md) -[*](prime.md) -[*](free_body.md) -[*](usenet.md) -[*](mandelbrot_set.md) -[*](shortcut_thinking.md) -[*](bbs.md) -[*](distance.md) -[*](feminism.md) -[*](football.md) -[*](modern.md) -[*](raycasting.md) -[*](unix.md) -[*](lmao.md) -[*](settled.md) -[*](interaction_net.md) -[*](cat_v.md) [*](morality.md) -[*](crow_funding.md) -[*](memory_management.md) -[*](temple_os.md) -[*](fight.md) -[*](productivity_cult.md) -[*](mechanical.md) -[*](randomness.md) -[*](tas.md) -[*](less_retarded_software.md) -[*](wikiwikiweb.md) -[*](autoupdate.md) -[*](tinyphysicsengine.md) -[*](culture.md) -[*](marxism.md) -[*](physics.md) -[*](splinternet.md) -[*](unix.md) -[*](p_vs_np.md) -[*](copyleft.md) -[*](how_to.md) -[*](ascii.md) -[*](implicit.md) -[*](billboard.md) -[*](rapeware.md) -[*](100r.md) -[*](abstraction.md) -[*](analytic_geometry.md) -[*](assertiveness.md) -[*](quaternion.md) -[*](countercomplex.md) -[*](ronja.md) -[*](tor.md) -[*](atan.md) -[*](life.md) -[*](esolang.md) -[*](rust.md) -[*](rule110.md) -[*](pseudorandomness.md) -[*](yes_they_can.md) -[*](whale.md) -[*](deferred_shading.md) -[*](stereotype.md) -[*](ronja.md) -[*](semiconductor.md) -[*](programming_language.md) -[*](social_inertia.md) -[*](acronym.md) -[*](mental_outlaw.md) +[*](shortcut_thinking.md) +[*](jedi_engine.md) +[*](bytebeat.md) +[*](mainstream.md) +[*](wiki_post_mortem.md) +[*](consumerism.md) +[*](README.md) +[*](devuan.md) [*](unicode.md) -[*](interplanetary_internet.md) -[*](openai.md) +[*](framework.md) +[*](primitive_3d.md) +[*](art.md) +[*](ssao.md) +[*](chess.md) +[*](suckless.md) +[*](ascii.md) +[*](f2p.md) +[*](wikipedia.md) +[*](earth.md) +[*](boot.md) +[*](bytecode.md) +[*](proprietary.md) +[*](gender_studies.md) +[*](golang.md) +[*](programming_tips.md) +[*](competition.md) +[*](cancel_culture.md) +[*](beauty.md) +[*](primitive_3d.md) +[*](football.md) +[*](turing_machine.md) +[*](infinity.md) +[*](dinosaur.md) +[*](girl.md) +[*](tranny.md) +[*](easier_done_than_said.md) +[*](nigeria.md) +[*](comun.md) +[*](dog.md) +[*](nationalism.md) +[*](tranny.md) +[*](everyone_does_it.md) +[*](blender.md) +[*](bbs.md) +[*](internet.md) +[*](wiki_pages.md) +[*](interesting.md) +[*](fork.md) +[*](law.md) +[*](settled.md) +[*](troll.md) +[*](suicide.md) +[*](lisp.md) +[*](js.md) +[*](qubit.md) +[*](military.md) +[*](gopher.md) +[*](rms.md) +[*](elon_musk.md) +[*](maintenance.md) +[*](freedom.md) +[*](dog.md) +[*](fear_culture.md) +[*](tpe.md) +[*](free.md) +[*](newspeak.md) +[*](justice.md) +[*](piracy.md) +[*](modern_software.md) +[*](normalization.md) +[*](ai.md) +[*](bbs.md) +[*](nc.md) +[*](marxism.md) +[*](mob_software.md) +[*](patent.md) +[*](phd.md) +[*](chaos.md) +[*](formal_language.md) +[*](murderer.md) +[*](free_body.md) +[*](tom_scott.md) +[*](anpac.md) +[*](permacomputing.md) +[*](binary.md) +[*](paradigm.md) +[*](distrohopping.md) +[*](earth.md) +[*](racetrack.md) +[*](furry.md) +[*](fail_ab.md) +[*](pseudorandomness.md) +[*](compsci.md) +[*](determinism.md) +[*](docker.md) +[*](p_vs_np.md) +[*](3d_model.md) +[*](data_structure.md) +[*](sdf.md) +[*](double_buffering.md) +[*](xxiivv.md) +[*](pseudo3d.md) +[*](furry.md) +[*](ioccc.md) +[*](name_is_important.md) +[*](cache.md) +[*](dodleston.md) +[*](fourier_transform.md) +[*](assertiveness.md) +[*](procgen.md) +[*](small3dlib.md) +[*](3d_model.md) +[*](marble_race.md) +[*](finished.md) +[*](tool_slave.md) +[*](vector.md) +[*](sudoku.md) +[*](unary.md) +[*](productivity_cult.md) +[*](iq.md) +[*](sw_rendering.md) +[*](dramatica.md) +[*](shogi.md) +[*](communism.md) +[*](ascii_art.md) +[*](c_tutorial.md) +[*](trusting_trust.md) +[*](paywall.md) +[*](cracking.md) +[*](splinternet.md) +[*](mipmap.md) +[*](avpd.md) +[*](shogi.md) +[*](unretard.md) +[*](sjw.md) +[*](openarena.md) +[*](murderer.md) +[*](rgb332.md) +[*](3d_modeling.md) +[*](faggot.md) +[*](bloat.md) +[*](anarchism.md) +[*](de_facto.md) +[*](lrs_dictionary.md) +[*](free_culture.md) +[*](real_number.md) +[*](c.md) +[*](holy_war.md) +[*](elon_musk.md) +[*](liberalism.md) +[*](main.md) +[*](rgb332.md) +[*](computational_complexity.md) +[*](acronym.md) +[*](faq.md) +[*](rule110.md) +[*](go.md) +[*](rationalwiki.md) +[*](racism.md) +[*](javascript.md) +[*](rock.md) +[*](pseudorandomness.md) +[*](femoid.md) +[*](kids_these_days.md) +[*](modern_software.md) +[*](tool_slave.md) +[*](less_retarded_hardware.md) +[*](ronja.md) +[*](trash_magic.md) +[*](trusting_trust.md) +[*](assertiveness.md) +[*](aaron_swartz.md) [*](work.md) [*](sanism.md) -[*](nd.md) -[*](throwaway_script.md) -[*](randomness.md) +[*](security.md) +[*](digital.md) [*](fail_ab.md) -[*](facebook.md) +[*](resnicks_termite.md) +[*](microtheft.md) +[*](ioccc.md) +[*](gay.md) +[*](future.md) +[*](42.md) +[*](teletext.md) +[*](audiophilia.md) +[*](pi.md) +[*](freedom_distance.md) +[*](unix_philosophy.md) +[*](sqrt.md) +[*](minesweeper.md) +[*](tor.md) +[*](hash.md) +[*](one.md) +[*](venus_project.md) +[*](c.md) +[*](4chan.md) +[*](xxiivv.md) +[*](langtons_ant.md) +[*](watchdog.md) +[*](military.md) +[*](free_speech.md) +[*](ssao.md) +[*](cloudflare.md) +[*](lrs_wiki.md) +[*](cloud.md) +[*](implicit.md) +[*](wiby.md) +[*](fixed_point.md) +[*](zen.md) +[*](attribution.md) +[*](tensor_product.md) +[*](chess.md) +[*](gui.md) +[*](needed.md) +[*](3d_rendering.md) +[*](math.md) +[*](permacomputing_wiki.md) +[*](marketing.md) +[*](brain_software.md) +[*](backgammon.md) +[*](nc.md) +[*](interaction_net.md) +[*](game.md) +[*](langtons_ant.md) +[*](lil.md) +[*](pokitto.md) +[*](stereotype.md) +[*](free_will.md) +[*](unicode.md) +[*](turing_machine.md) +[*](freedom_distance.md) +[*](low_poly.md) +[*](justice.md) +[*](kek.md) +[*](trom.md) +[*](freedom_distance.md) +[*](jesus.md) +[*](world_broadcast.md) +[*](quaternion.md) +[*](football.md) +[*](czechia.md) +[*](mechanical.md) +[*](steganography.md) +[*](luke_smith.md) +[*](free_universe.md) +[*](42.md) +[*](quine.md) +[*](programming_style.md) +[*](adam_smith.md) +[*](brain_software.md) +[*](c_pitfalls.md) +[*](youtube.md) +[*](float.md) +[*](web.md) +[*](21st_century.md) +[*](bullshit.md) +[*](vector.md) +[*](noise.md) +[*](magic.md) +[*](world_broadcast.md) +[*](README.md) +[*](programming_style.md) +[*](library.md) +[*](feminism.md) +[*](zuckerberg.md) +[*](cracker.md) +[*](digital.md) +[*](hw.md) +[*](number.md) +[*](ethics.md) +[*](collision.md) +[*](ashley_jones.md) +[*](freedom.md) +[*](wikidata.md) +[*](mainstream.md) +[*](capitalist_software.md) +[*](faq.md) +[*](jargon_file.md) +[*](soydev.md) +[*](terry_davis.md) +[*](troll.md) +[*](systemd.md) +[*](living.md) +[*](portability.md) +[*](ascii_art.md) +[*](global_discussion.md) +[*](everyone_does_it.md) +[*](fear_culture.md) +[*](slowly_boiling_the_frog.md) +[*](binary.md) +[*](adam_smith.md) +[*](intellectual_property.md) +[*](algorithm.md) +[*](gopher.md) +[*](aliasing.md) +[*](social_inertia.md) +[*](encyclopedia.md) +[*](venus_project.md) +[*](forth.md) +[*](whale.md) +[*](21st_century.md) +[*](football.md) +[*](wow.md) +[*](demoscene.md) +[*](rationalwiki.md) +[*](bullshit.md) +[*](x86.md) +[*](elo.md) +[*](data_hoarding.md) +[*](competition.md) +[*](paradigm.md) +[*](marketing.md) +[*](books.md) +[*](lrs_dictionary.md) +[*](good_enough.md) +[*](cancer.md) +[*](free_body.md) +[*](apple.md) +[*](deferred_shading.md) +[*](bitreich.md) +[*](duskos.md) +[*](yes_they_can.md) +[*](raylib.md) +[*](dick_reveal.md) +[*](pokitto.md) +[*](programming_tips.md) +[*](proof.md) +[*](palette.md) +[*](color.md) +[*](unix.md) +[*](io.md) +[*](whale.md) +[*](transistor.md) +[*](entrepreneur.md) +[*](data_structure.md) +[*](stereotype.md) +[*](disease.md) +[*](duskos.md) +[*](p_vs_np.md) +[*](bytecode.md) +[*](microsoft.md) +[*](yes_they_can.md) +[*](mipmap.md) +[*](pd.md) +[*](dick_reveal.md) +[*](diogenes.md) +[*](game_of_life.md) +[*](proof.md) +[*](brainfuck.md) +[*](dependency.md) +[*](entrepreneur.md) +[*](charity_sex.md) +[*](sin.md) +[*](right.md) +[*](easier_done_than_said.md) +[*](ted_kaczynski.md) +[*](wiki_pages.md) +[*](woman.md) +[*](pseudorandomness.md) +[*](no_knowledge_proof.md) +[*](motivation.md) +[*](zero.md) +[*](systemd.md) +[*](ashley_jones.md) +[*](hack.md) +[*](doom.md) +[*](openarena.md) +[*](adam_smith.md) +[*](unretard.md) +[*](books.md) +[*](ancap.md) +[*](harry_potter.md) +[*](windows.md) +[*](piracy.md) +[*](lmao.md) +[*](elon_musk.md) +[*](determinism.md) +[*](real_number.md) +[*](people.md) +[*](kwangmyong.md) +[*](c.md) +[*](phd.md) +[*](langtons_ant.md) +[*](black.md) +[*](needed.md) +[*](black.md) +[*](old.md) +[*](compiler_bomb.md) +[*](woman.md) +[*](vim.md) +[*](magic.md) +[*](cancer.md) +[*](mainstream.md) +[*](mouse.md) +[*](bytebeat.md) +[*](math.md) +[*](recursion.md) +[*](greenwashing.md) +[*](greenwashing.md) +[*](os.md) +[*](wiki_stats.md) +[*](audiophilia.md) +[*](dependency.md) +[*](21st_century.md) +[*](tensor_product.md) +[*](lambda_calculus.md) +[*](future_proof.md) +[*](free.md) +[*](version_numbering.md) +[*](function.md) +[*](reactionary_software.md) +[*](evil.md) +[*](usenet.md) +[*](frameless.md) +[*](gigachad.md) +[*](marble_race.md) +[*](technology.md) +[*](trump.md) +[*](unix_philosophy.md) +[*](rsa.md) +[*](dick_reveal.md) +[*](cyber.md) +[*](minimalism.md) +[*](antivirus_paradox.md) +[*](color.md) +[*](uxn.md) +[*](100r.md) +[*](wow.md) +[*](wiki_authors.md) +[*](chinese.md) +[*](logic_gate.md) +[*](monad.md) +[*](bullshit.md) +[*](minimalism.md) +[*](liberalism.md) +[*](wiki_style.md) +[*](crow_funding.md) +[*](education.md) +[*](fractal.md) +[*](dungeons_and_dragons.md) +[*](chaos.md) +[*](wiki_authors.md) +[*](lambda_calculus.md) +[*](shader.md) +[*](bloat_monopoly.md) +[*](youtube.md) +[*](copyfree.md) +[*](openarena.md) +[*](sw_rendering.md) +[*](progress.md) +[*](c_tutorial.md) +[*](geek.md) +[*](global_discussion.md) +[*](cancel_culture.md) +[*](triangle.md) +[*](used.md) +[*](rule110.md) +[*](graveyard.md) +[*](unary.md) +[*](collision_detection.md) +[*](selflessness.md) +[*](ui.md) +[*](www.md) +[*](consumerism.md) +[*](c_sharp.md) +[*](gemini.md) +[*](interpolation.md) +[*](quaternion.md) +[*](marketing.md) +[*](unfuck.md) +[*](idiot_fallacy.md) +[*](speech_synthesis.md) +[*](portal_rendering.md) +[*](crow_funding.md) +[*](network.md) +[*](fascism.md) +[*](wikipedia.md) +[*](google.md) +[*](nationalism.md) +[*](free_speech.md) +[*](femoid.md) +[*](sdf.md) +[*](sorting.md) +[*](library.md) +[*](cloudflare.md) +[*](political_correctness.md) +[*](sudoku.md) +[*](xonotic.md) +[*](app.md) +[*](transistor.md) +[*](idiot_fallacy.md) +[*](coc.md) +[*](interaction_net.md) +[*](3d_rendering.md) +[*](linear_algebra.md) +[*](copyleft.md) +[*](cracker.md) +[*](niger.md) +[*](lambda_calculus.md) +[*](hexadecimal.md) +[*](race.md) +[*](feminism.md) +[*](open_source.md) +[*](hard_to_learn_easy_to_master.md) +[*](boat.md) +[*](rights_culture.md) +[*](often_confused.md) +[*](smallchesslib.md) +[*](creative_commons.md) +[*](doom.md) +[*](see_through_clothes.md) +[*](fuck.md) +[*](greenwashing.md) +[*](license.md) +[*](update_culture.md) +[*](de_facto.md) +[*](free.md) +[*](ancap.md) +[*](fizzbuzz.md) +[*](chaos.md) +[*](nigger.md) +[*](app.md) +[*](pseudoleft.md) +[*](physics.md) +[*](justice.md) [*](sigbovik.md) +[*](universe.md) +[*](phd.md) +[*](docker.md) +[*](toxic.md) +[*](deep_blue.md) +[*](atheism.md) +[*](portability.md) +[*](software.md) +[*](cc0.md) +[*](pedophilia.md) +[*](fediverse.md) +[*](fight_culture.md) +[*](life.md) +[*](trom.md) +[*](comment.md) +[*](fqa.md) +[*](marxism.md) +[*](license.md) +[*](bootstrap.md) +[*](rsa.md) +[*](hash.md) +[*](flatland.md) +[*](distrohopping.md) +[*](liberalism.md) +[*](formal_language.md) +[*](harry_potter.md) +[*](rule110.md) +[*](magic.md) +[*](collision_detection.md) +[*](fight_culture.md) +[*](line.md) +[*](sin.md) +[*](byte.md) +[*](ascii.md) +[*](pedophilia.md) +[*](bill_gates.md) +[*](dependency.md) +[*](hexadecimal.md) +[*](network.md) +[*](finished.md) +[*](microsoft.md) +[*](egoism.md) +[*](ronja.md) +[*](less_retarded_software.md) +[*](physics_engine.md) +[*](viznut.md) +[*](c_sharp.md) +[*](wiki_tldr.md) +[*](bill_gates.md) +[*](drummyfish.md) +[*](bitreich.md) +[*](transsexual.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](apple.md) +[*](java.md) +[*](git.md) +[*](approximation.md) +[*](framework.md) +[*](throwaway_script.md) +[*](political_correctness.md) +[*](pseudominimalism.md) +[*](minigame.md) +[*](line.md) +[*](hero.md) +[*](semiconductor.md) +[*](pride.md) +[*](nord_vpn.md) +[*](bloat_monopoly.md) +[*](esolang.md) +[*](docker.md) +[*](version_numbering.md) +[*](wiki_tldr.md) +[*](interplanetary_internet.md) +[*](left.md) +[*](c_sharp.md) +[*](english.md) +[*](watchdog.md) +[*](free_software.md) +[*](lgbt.md) +[*](toxic.md) +[*](selflessness.md) +[*](charity_sex.md) +[*](plan9.md) +[*](plusnigger.md) +[*](deep_blue.md) +[*](coc.md) +[*](foss.md) +[*](people.md) +[*](kiwifarms.md) +[*](murderer.md) +[*](de_facto.md) +[*](often_misunderstood.md) +[*](loc.md) +[*](kwangmyong.md) +[*](assertiveness.md) +[*](software.md) +[*](transsexual.md) +[*](project.md) +[*](mandelbrot_set.md) +[*](backpropagation.md) +[*](computational_complexity.md) +[*](name_is_important.md) +[*](raycasting.md) +[*](resnicks_termite.md) +[*](modern.md) +[*](f2p.md) +[*](wikiwikiweb.md) +[*](digital_signature.md) +[*](used.md) +[*](hexadecimal.md) +[*](kiwifarms.md) +[*](sudoku.md) +[*](copyright.md) +[*](rust.md) +[*](crypto.md) +[*](operating_system.md) +[*](low_poly.md) +[*](sjw.md) +[*](wiki_style.md) +[*](libre.md) +[*](pd.md) +[*](body_shaming.md) +[*](ubi.md) +[*](analog.md) +[*](gnu.md) +[*](fail_ab.md) +[*](english.md) +[*](reddit.md) +[*](100r.md) +[*](regex.md) +[*](drummyfish.md) +[*](os.md) +[*](pseudoleft.md) +[*](tpe.md) +[*](programming_language.md) +[*](luke_smith.md) +[*](operating_system.md) +[*](esolang.md) +[*](lgbt.md) +[*](netstalking.md) +[*](boot.md) +[*](ancap.md) +[*](graphics.md) +[*](bill_gates.md) +[*](mud.md) +[*](rgb565.md) +[*](fediverse.md) +[*](law.md) +[*](ui.md) +[*](one.md) +[*](slowly_boiling_the_frog.md) +[*](programming.md) +[*](viznut.md) +[*](markov_chain.md) +[*](math.md) +[*](hacker_culture.md) +[*](dynamic_programming.md) +[*](open_console.md) +[*](fantasy_console.md) +[*](microtransaction.md) +[*](maintenance.md) +[*](cc0.md) +[*](unfuck.md) +[*](fascism.md) +[*](sjw.md) +[*](sanism.md) +[*](tranny_software.md) +[*](culture.md) +[*](settled.md) +[*](shader.md) +[*](resnicks_termite.md) +[*](game.md) +[*](billboard.md) +[*](living.md) +[*](fight.md) +[*](binary.md) +[*](gender_studies.md) +[*](nigeria.md) +[*](wow.md) +[*](data_hoarding.md) +[*](xonotic.md) +[*](framework.md) +[*](backgammon.md) +[*](loc.md) +[*](trash_magic.md) +[*](linux.md) +[*](left.md) +[*](quantum_gate.md) +[*](sw.md) +[*](finished.md) +[*](fascist.md) +[*](function.md) +[*](race.md) +[*](sw.md) +[*](netstalking.md) +[*](often_misunderstood.md) +[*](digital.md) +[*](left.md) +[*](fsf.md) +[*](assembly.md) +[*](entropy.md) +[*](githopping.md) +[*](double_buffering.md) +[*](nigger.md) +[*](copyleft.md) +[*](floss.md) +[*](mechanical.md) +[*](gemini.md) +[*](cyberbullying.md) +[*](float.md) +[*](suicide.md) +[*](kwangmyong.md) +[*](aaron_swartz.md) +[*](speech_synthesis.md) +[*](dynamic_programming.md) +[*](proprietary_software.md) +[*](gaywashing.md) +[*](www.md) +[*](dodleston.md) +[*](rms.md) +[*](goodbye_world.md) +[*](apple.md) +[*](sw_rendering.md) +[*](dog.md) +[*](smart.md) +[*](jedi_engine.md) +[*](dramatica.md) +[*](future_proof.md) +[*](public_domain_computer.md) +[*](ubi.md) +[*](nd.md) +[*](public_domain_computer.md) +[*](money.md) +[*](libre.md) +[*](hardware.md) +[*](minimalism.md) +[*](microtransaction.md) +[*](thrembo.md) +[*](censorship.md) +[*](capitalism.md) +[*](tranny_software.md) +[*](oop.md) +[*](nord_vpn.md) +[*](devuan.md) +[*](copyright.md) +[*](tech.md) +[*](axiom_of_choice.md) +[*](linear_algebra.md) +[*](ubi.md) +[*](capitalist_software.md) +[*](body_shaming.md) +[*](logic.md) +[*](fsf.md) +[*](logic_circuit.md) +[*](triangle.md) +[*](jokes.md) +[*](wavelet_transform.md) +[*](political_correctness.md) +[*](computer.md) +[*](communism.md) +[*](nokia.md) +[*](love.md) +[*](aaron_swartz.md) +[*](programming.md) +[*](loquendo.md) +[*](mental_outlaw.md) +[*](antialiasing.md) +[*](cc.md) +[*](macrofucker.md) +[*](explicit.md) +[*](cheating.md) +[*](cancel_culture.md) +[*](right.md) +[*](wiki_pages.md) +[*](git.md) +[*](goodbye_world.md) +[*](free_hardware.md) +[*](copyfree.md) +[*](tranny.md) +[*](algorithm.md) +[*](systemd.md) +[*](avpd.md) +[*](crypto.md) +[*](paywall.md) +[*](logic_circuit.md) +[*](microsoft.md) +[*](copyright.md) +[*](loquendo.md) +[*](malware.md) +[*](history.md) +[*](anarch.md) +[*](teletext.md) +[*](bloat_monopoly.md) +[*](kek.md) +[*](tattoo.md) +[*](jokes.md) +[*](analytic_geometry.md) +[*](diogenes.md) +[*](myths.md) +[*](mouse.md) +[*](suckless.md) +[*](bazaar.md) +[*](portability.md) +[*](faggot.md) +[*](hacker_culture.md) +[*](mipmap.md) +[*](semiconductor.md) +[*](pride.md) +[*](license.md) +[*](facebook.md) +[*](physics_engine.md) +[*](cos.md) +[*](acronym.md) +[*](cc0.md) +[*](tom_scott.md) +[*](coding.md) +[*](lmao.md) +[*](marble_race.md) +[*](windows.md) +[*](kiss.md) +[*](needed.md) +[*](evil.md) +[*](regex.md) +[*](loc.md) +[*](rgb332.md) +[*](ted_kaczynski.md) +[*](infinity.md) +[*](democracy.md) +[*](human_language.md) +[*](analytic_geometry.md) +[*](macrofucker.md) +[*](network.md) +[*](gopher.md) +[*](x86.md) +[*](wikipedia.md) +[*](maintenance.md) +[*](mandelbrot_set.md) +[*](nokia.md) +[*](corporation.md) +[*](hardware.md) +[*](nd.md) +[*](freedom.md) +[*](facebook.md) +[*](encyclopedia.md) +[*](js.md) +[*](technology.md) +[*](hash.md) +[*](githopping.md) +[*](cheating.md) +[*](tom_scott.md) +[*](hack.md) +[*](fun.md) +[*](ioccc.md) +[*](dinosaur.md) +[*](bit.md) +[*](ai.md) +[*](trom.md) +[*](cos.md) +[*](wiki_rights.md) +[*](tool_slave.md) +[*](libertarianism.md) +[*](modern.md) +[*](usa.md) +[*](work.md) +[*](twos_complement.md) +[*](brain_software.md) +[*](bit_hack.md) +[*](tinyphysicsengine.md) +[*](twos_complement.md) +[*](rsa.md) +[*](cc.md) +[*](progress.md) +[*](memory_management.md) +[*](easy_to_learn_hard_to_master.md) +[*](crow_funding.md) +[*](femoid.md) +[*](palette.md) +[*](see_through_clothes.md) +[*](compiler_bomb.md) +[*](paywall.md) +[*](living.md) +[*](elo.md) +[*](atan.md) +[*](logic_gate.md) +[*](free_culture.md) +[*](robot.md) +[*](forth.md) +[*](body_shaming.md) +[*](raycasting.md) +[*](terry_davis.md) +[*](privacy.md) +[*](no_knowledge_proof.md) +[*](steve_jobs.md) +[*](dramatica.md) +[*](implicit.md) +[*](logic.md) +[*](fqa.md) +[*](explicit.md) +[*](zen.md) +[*](vim.md) +[*](tattoo.md) +[*](ram.md) +[*](low_poly.md) +[*](wavelet_transform.md) +[*](raylib.md) +[*](permacomputing_wiki.md) +[*](game_engine.md) +[*](arduboy.md) +[*](creative_commons.md) +[*](soyence.md) +[*](io.md) +[*](bit.md) +[*](xxiivv.md) +[*](old.md) +[*](encryption.md) +[*](anpac.md) +[*](cracking.md) +[*](firmware.md) +[*](ram.md) +[*](cloud.md) +[*](byte.md) +[*](fascist.md) +[*](iq.md) +[*](autostereogram.md) +[*](trump.md) +[*](interesting.md) +[*](right.md) +[*](windows.md) +[*](bs.md) +[*](normalization.md) +[*](anarchism.md) +[*](bilinear.md) +[*](temple_os.md) +[*](xd.md) +[*](gigachad.md) +[*](wikidata.md) +[*](tech.md) +[*](chasm_the_rift.md) +[*](wiki_rights.md) +[*](4chan.md) +[*](hero_culture.md) +[*](future.md) +[*](function.md) +[*](myths.md) +[*](go.md) +[*](niggercoin.md) +[*](wiby.md) +[*](wiki_post_mortem.md) +[*](foss.md) +[*](rationalwiki.md) +[*](frameless.md) +[*](free_universe.md) +[*](rights_culture.md) +[*](gaywashing.md) +[*](encryption.md) +[*](nationalism.md) +[*](fuck.md) +[*](mechanical.md) +[*](unix.md) +[*](demo.md) +[*](backgammon.md) +[*](pokitto.md) +[*](linear_algebra.md) +[*](ascii_art.md) +[*](number.md) +[*](interpolation.md) +[*](compression.md) +[*](gnu.md) +[*](bs.md) +[*](whale.md) +[*](nanogenmo.md) +[*](modern.md) +[*](interplanetary_internet.md) +[*](fourier_transform.md) +[*](update_culture.md) +[*](anarch.md) +[*](foss.md) +[*](one.md) +[*](altruism.md) +[*](complexity.md) +[*](quine.md) +[*](plusnigger.md) +[*](deep_blue.md) +[*](julia_set.md) diff --git a/smallchesslib.md b/smallchesslib.md index 5798246..199fb51 100644 --- a/smallchesslib.md +++ b/smallchesslib.md @@ -1,6 +1,6 @@ # Smallchesslib -Smallchesslib (SCL) is a small [CC0](cc0.md) [LRS](lrs.md)/[suckless](suckless.md) [chess](chess.md) [library](library.md) written in [C](c.md) by [drummyfish](drummyfish.md). It is a single header library written in fewer than 4000 [lines of code](loc.md), with no [dependencies](dependency.md) and comes with a tiny engine called *smolchess*. It implements the basic chess rules as well as those of chess960, convenience functions (even primitive board picture export), handling of basic formats such as FEN and PGN, and a simple alpha-beta minimax [AI](ai.md) -- *smolchess* played on lichess where it got a rating of about 1500 (https://lichess.org/@/smolchessbot). The repository is available at https://git.coom.tech/drummyfish/smallchesslib. Smallchesslib/smolchess is extremely simple and has been tested to run even on super weak platform such as [Arduboy](arduboy.md) which only has some 2 KB of RAM! That's pretty incredible, no? +Smallchesslib (SCL) is a small [CC0](cc0.md) [LRS](lrs.md)/[suckless](suckless.md) [chess](chess.md) [library](library.md) written in [C](c.md) by [drummyfish](drummyfish.md). It is a single header library written in fewer than 4000 [lines of code](loc.md), with no [dependencies](dependency.md) and comes with a tiny engine called *smolchess*. It implements the basic chess rules as well as those of chess960, convenience functions (even primitive board picture export), handling of basic formats such as FEN and PGN, and a simple alpha-beta minimax [AI](ai.md) -- *smolchess* played on lichess where it got a rating of about 1500 (https://lichess.org/@/smolchessbot); trying some test games against engines from CCRL, where the strongest stockfish 17 is currently rated 3642 Elo, revealed an Elo roughly around 600 (on occasion beat a 700 rated engine, consistently beat a 550 Elo one). The repository is available at https://git.coom.tech/drummyfish/smallchesslib. Smallchesslib/smolchess is extremely simple and has been tested to run even on super weak platform such as [Arduboy](arduboy.md) which only has some 2 KB of RAM! That's pretty incredible, no? ``` A B C D E F G H diff --git a/sorting.md b/sorting.md index 1f4785e..f92db55 100644 --- a/sorting.md +++ b/sorting.md @@ -1,10 +1,10 @@ # Sorting -Sorting denotes the action of rearranging a sequence, such as a [list](list.md) of [numbers](number.md), so that the elements are put in a specific [order](order.md) (e.g. ascending or descending). It is the opposite of [shuffling](shuffle.md). In [computer science](compsci.md) sorting enjoys the status of a wide and curious topic, there are dozens, maybe hundreds of sorting [algorithms](algorithm.md), each with pros and cons and different attributes are being studied, e.g. the algorithm's [time complexity](time_complexity.md), stability etc. Sorting algorithms are a favorite subject of programming classes as they provide a good exercise for [programming](programming.md) and analysis of algorithms and can be nicely put on tests :) Sorting algorithms are like [Pokemon](pokemon.md) for computer nerds, some are big, some are small and cute and everyone has a favorite. { Gotta implement them all? ~drummyfish } +Sorting denotes the action of rearranging a sequence, such as a [list](list.md) of [numbers](number.md), so that the elements are put in a specific [order](order.md) (e.g. ascending or descending). It is the opposite of [shuffling](shuffle.md). In [computer science](compsci.md) sorting enjoys the status of a widely spanning, quite curious topic. There are probably hundreds of sorting [algorithms](algorithm.md) and their slight modifications, each with pros and cons -- attributes of these algorithms are being studied, e.g. their [time complexity](time_complexity.md), memory efficiency, stability etc. Sorting algorithms are also a favorite subject of [programming](programming.md) classes as they provide a good exercise for programming and analysis of algorithms and can be nicely put on a test :) Sorting algorithms are like [Pokemon](pokemon.md): some are big and heavy but winning in raw "strength", others are small and cute, some are just funny... and everyone probably has a favorite. { Gotta implement them all? ~drummyfish } Some celebrities among sorting algorithms are the [bubble sort](bubble_sort.md) (a simple [KISS](kiss.md) algorithm), [quick sort](quick_sort.md) (a super fast one), [merge sort](merge_sort.md) (also lightning fast) and [stupid sort](bogosort.md) (just tries different [permutations](permutation.md) until it hits the jackpot). -In our day-to-day lives we commonly get away with some of the simplest, uncomplicated sorting algorithms (such as [bubble sort](bubble_sort.md) or [insertion sort](insertion_sort.md)) anyway, unless we're programming a database or otherwise treating enormous amounts of data. If we need to sort just a few hundred of items and/or the sorting doesn't occur very often, a simple algorithm does the job well, sometimes even faster due to a potential initial overhead of a very complex algorithm. So always consider the [KISS](kiss.md) approach first. +In our day to day lives we commonly get away with some of the simplest, uncomplicated sorting algorithms (such as [bubble sort](bubble_sort.md) or [insertion sort](insertion_sort.md)) anyway, unless we're programming a database or otherwise treating enormous amounts of [data](data.md). If we need to sort just a few hundred of items and/or the sorting doesn't occur very often, a simple algorithm does the job well, sometimes even faster due to a potential initial overhead of a very complex algorithm. So always consider the [KISS](kiss.md) approach first. Attributes of sorting algorithms we're generally interested in are the following: diff --git a/stereotype.md b/stereotype.md index 0749dc1..6fc0fad 100644 --- a/stereotype.md +++ b/stereotype.md @@ -271,4 +271,5 @@ Some stereotypes are: - techno slaves, against expectations very bad with technology -- is only a tech consumer but doesn't know how computers work (can't operate mouse, doesn't know what a file is, can't [torrent](torrent.md), can't use [email](email.md), can't do anything if it can't be done by issuing a voice command to a spy agent in his phone) - extremely short attention span - addicted to consuming Internet content, without cell phone will die within a few hours + - due to having grown up in extremely toxic capitalist dystopia, being forced to consume since birth and never knowing normal childhood and healthy habits, they are prone to developing unhealthy addictions to normal things that others can control without problems but which a zoomer will self destruct with, e.g.: masturbation and porn, energy drinks, consuming Internet, listening to music, playing games etc. - in general just most degenerated and doomed generation as of yet (of course, until the next one comes) \ No newline at end of file diff --git a/wiki_pages.md b/wiki_pages.md index 5cad273..f15cb80 100644 --- a/wiki_pages.md +++ b/wiki_pages.md @@ -2,4 +2,4 @@ This is an autogenerated page listing all pages. -**[100r](100r.md)** (3) -- **[21st_century](21st_century.md)** (25) -- **[3d_model](3d_model.md)** (256) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (590) -- **[42](42.md)** (14) -- **[4chan](4chan.md)** (30) -- **[90s](90s.md)** (59) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (391) -- **[adam_smith](adam_smith.md)** (35) -- **[ai](ai.md)** (30) -- **[algorithm](algorithm.md)** (367) -- **[aliasing](aliasing.md)** (61) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (8) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (107) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (31) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (8) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (20) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (20) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (206) -- **[ashley_jones](ashley_jones.md)** (27) -- **[assembly](assembly.md)** (262) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (25) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (6) -- **[autostereogram](autostereogram.md)** (120) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (29) -- **[beauty](beauty.md)** (25) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (34) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (138) -- **[bit](bit.md)** (4) -- **[bit_hack](bit_hack.md)** (172) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (197) -- **[bloat_monopoly](bloat_monopoly.md)** (14) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (35) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (49) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (383) -- **[c_pitfalls](c_pitfalls.md)** (156) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2155) -- **[cache](cache.md)** (27) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (27) -- **[capitalism](capitalism.md)** (158) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (15) -- **[censorship](censorship.md)** (61) -- **[chaos](chaos.md)** (109) -- **[charity_sex](charity_sex.md)** (6) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (12) -- **[chess](chess.md)** (314) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (26) -- **[coc](coc.md)** (19) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (36) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (29) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (19) -- **[communism](communism.md)** (27) -- **[competition](competition.md)** (12) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (233) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (182) -- **[consumerism](consumerism.md)** (16) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (56) -- **[corporation](corporation.md)** (22) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (17) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (36) -- **[css](css.md)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[cyberbullying](cyberbullying.md)** (2) -- **[czechia](czechia.md)** (26) -- **[data_hoarding](data_hoarding.md)** (31) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (130) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (17) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (52) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (16) -- **[digital_signature](digital_signature.md)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (40) -- **[disease](disease.md)** (57) -- **[distance](distance.md)** (129) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (36) -- **[doom](doom.md)** (68) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (30) -- **[drummyfish](drummyfish.md)** (45) -- **[duke3d](duke3d.md)** (30) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (34) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (22) -- **[earth](earth.md)** (67) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (21) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (75) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (18) -- **[evil](evil.md)** (26) -- **[exercises](exercises.md)** (345) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (4) -- **[fail_ab](fail_ab.md)** (47) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (275) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (56) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (12) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (155) -- **[fizzbuzz](fizzbuzz.md)** (232) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (54) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (154) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (38) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (77) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (23) -- **[freedom_distance](freedom_distance.md)** (4) -- **[fsf](fsf.md)** (30) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (32) -- **[function](function.md)** (138) -- **[furry](furry.md)** (21) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (45) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (37) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (75) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (64) -- **[go](go.md)** (100) -- **[golang](golang.md)** (17) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (36) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (33) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (78) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (18) -- **[hexadecimal](hexadecimal.md)** (37) -- **[history](history.md)** (104) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (221) -- **[human_language](human_language.md)** (32) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (20) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (25) -- **[internet](internet.md)** (109) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (122) -- **[island](island.md)** (49) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (134) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (97) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (99) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (23) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (7) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (40) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (4) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (13) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (55) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (146) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (131) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (57) -- **[life](life.md)** (12) -- **[lil](lil.md)** (21) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (71) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (45) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (18) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[loquendo](loquendo.md)** (14) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (167) -- **[lrs_dictionary](lrs_dictionary.md)** (118) -- **[lrs_wiki](lrs_wiki.md)** (41) -- **[luke_smith](luke_smith.md)** (20) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (6) -- **[main](main.md)** (149) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (9) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (12) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (64) -- **[minimalism](minimalism.md)** (81) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (39) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (16) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (59) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (75) -- **[netstalking](netstalking.md)** (9) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (11) -- **[niger](niger.md)** (11) -- **[nigeria](nigeria.md)** (10) -- **[nigger](nigger.md)** (69) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (14) -- **[nonogram](nonogram.md)** (42) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (9) -- **[npc](npc.md)** (10) -- **[number](number.md)** (303) -- **[often_confused](often_confused.md)** (130) -- **[often_misunderstood](often_misunderstood.md)** (20) -- **[old](old.md)** (4) -- **[one](one.md)** (13) -- **[oop](oop.md)** (386) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (39) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (74) -- **[optimization](optimization.md)** (100) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (64) -- **[people](people.md)** (72) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (78) -- **[portability](portability.md)** (183) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (4) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (32) -- **[procgen](procgen.md)** (387) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (44) -- **[programming_language](programming_language.md)** (174) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (17) -- **[progress](progress.md)** (30) -- **[project](project.md)** (31) -- **[proof](proof.md)** (4) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (10) -- **[pseudorandomness](pseudorandomness.md)** (152) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (50) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1807) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (10) -- **[raycasting](raycasting.md)** (513) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (109) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (207) -- **[rgb332](rgb332.md)** (95) -- **[rgb565](rgb565.md)** (32) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (55) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (27) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (26) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (17) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (19) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (16) -- **[shit](shit.md)** (31) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (88) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (182) -- **[sjw](sjw.md)** (27) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (10) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (41) -- **[soyence](soyence.md)** (77) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (116) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (265) -- **[steve_jobs](steve_jobs.md)** (36) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (213) -- **[suicide](suicide.md)** (13) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (72) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (8) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (20) -- **[thrembo](thrembo.md)** (15) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tool_slave](tool_slave.md)** (14) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny](tranny.md)** (2) -- **[tranny_software](tranny_software.md)** (31) -- **[transistor](transistor.md)** (29) -- **[transsexual](transsexual.md)** (43) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (82) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (46) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (208) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (34) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unfuck](unfuck.md)** (18) -- **[unicode](unicode.md)** (81) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (13) -- **[update_culture](update_culture.md)** (24) -- **[usa](usa.md)** (64) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (45) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (54) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (15) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (218) -- **[wiki_style](wiki_style.md)** (76) -- **[wiki_tldr](wiki_tldr.md)** (51) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (96) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (58) -- **[wizard](wizard.md)** (10) -- **[woman](woman.md)** (164) -- **[work](work.md)** (49) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (122) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (114) -- **[xxiivv](xxiivv.md)** (26) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (29) -- **[zen](zen.md)** (16) -- **[zero](zero.md)** (31) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file +**[100r](100r.md)** (3) -- **[21st_century](21st_century.md)** (25) -- **[3d_model](3d_model.md)** (256) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (590) -- **[42](42.md)** (14) -- **[4chan](4chan.md)** (32) -- **[90s](90s.md)** (59) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (391) -- **[adam_smith](adam_smith.md)** (35) -- **[ai](ai.md)** (30) -- **[algorithm](algorithm.md)** (367) -- **[aliasing](aliasing.md)** (61) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (8) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (107) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (31) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (8) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (20) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (20) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (206) -- **[ashley_jones](ashley_jones.md)** (27) -- **[assembly](assembly.md)** (262) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (25) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (6) -- **[autostereogram](autostereogram.md)** (120) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (29) -- **[beauty](beauty.md)** (25) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (34) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (138) -- **[bit](bit.md)** (10) -- **[bit_hack](bit_hack.md)** (172) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (197) -- **[bloat_monopoly](bloat_monopoly.md)** (14) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (35) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (49) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (383) -- **[c_pitfalls](c_pitfalls.md)** (156) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2155) -- **[cache](cache.md)** (27) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (27) -- **[capitalism](capitalism.md)** (158) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (15) -- **[censorship](censorship.md)** (61) -- **[chaos](chaos.md)** (109) -- **[charity_sex](charity_sex.md)** (6) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (12) -- **[chess](chess.md)** (341) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (26) -- **[coc](coc.md)** (19) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (36) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (29) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (19) -- **[communism](communism.md)** (27) -- **[competition](competition.md)** (12) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (233) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (182) -- **[consumerism](consumerism.md)** (16) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (56) -- **[corporation](corporation.md)** (22) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (17) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (36) -- **[css](css.md)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[cyberbullying](cyberbullying.md)** (2) -- **[czechia](czechia.md)** (26) -- **[data_hoarding](data_hoarding.md)** (31) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (130) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (17) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (52) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (16) -- **[digital_signature](digital_signature.md)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (40) -- **[disease](disease.md)** (57) -- **[distance](distance.md)** (129) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (36) -- **[doom](doom.md)** (68) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (30) -- **[drummyfish](drummyfish.md)** (45) -- **[duke3d](duke3d.md)** (30) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (34) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (22) -- **[earth](earth.md)** (67) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (21) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (75) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (18) -- **[evil](evil.md)** (26) -- **[exercises](exercises.md)** (345) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (4) -- **[fail_ab](fail_ab.md)** (47) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (275) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (56) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (12) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (155) -- **[fizzbuzz](fizzbuzz.md)** (232) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (54) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (154) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (38) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (77) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (23) -- **[freedom_distance](freedom_distance.md)** (4) -- **[fsf](fsf.md)** (30) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (32) -- **[function](function.md)** (138) -- **[furry](furry.md)** (21) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (45) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (37) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (75) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (64) -- **[go](go.md)** (100) -- **[golang](golang.md)** (17) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (36) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (33) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (78) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (18) -- **[hexadecimal](hexadecimal.md)** (37) -- **[history](history.md)** (104) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (221) -- **[human_language](human_language.md)** (32) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (20) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (25) -- **[internet](internet.md)** (109) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (122) -- **[island](island.md)** (49) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (136) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (97) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (99) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (23) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (7) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (40) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (4) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (13) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (55) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (146) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (131) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (57) -- **[life](life.md)** (12) -- **[lil](lil.md)** (21) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (71) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (45) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (18) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[loquendo](loquendo.md)** (14) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (167) -- **[lrs_dictionary](lrs_dictionary.md)** (118) -- **[lrs_wiki](lrs_wiki.md)** (41) -- **[luke_smith](luke_smith.md)** (20) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (6) -- **[main](main.md)** (149) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (9) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (12) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (64) -- **[minimalism](minimalism.md)** (81) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (39) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (16) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (59) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (75) -- **[netstalking](netstalking.md)** (9) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (11) -- **[niger](niger.md)** (11) -- **[nigeria](nigeria.md)** (10) -- **[nigger](nigger.md)** (69) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (14) -- **[nonogram](nonogram.md)** (42) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (9) -- **[npc](npc.md)** (10) -- **[number](number.md)** (303) -- **[often_confused](often_confused.md)** (130) -- **[often_misunderstood](often_misunderstood.md)** (20) -- **[old](old.md)** (4) -- **[one](one.md)** (13) -- **[oop](oop.md)** (386) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (39) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (74) -- **[optimization](optimization.md)** (100) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (64) -- **[people](people.md)** (72) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (78) -- **[portability](portability.md)** (183) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (4) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (32) -- **[procgen](procgen.md)** (387) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (44) -- **[programming_language](programming_language.md)** (174) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (17) -- **[progress](progress.md)** (30) -- **[project](project.md)** (31) -- **[proof](proof.md)** (4) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (10) -- **[pseudorandomness](pseudorandomness.md)** (152) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (50) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1807) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (10) -- **[raycasting](raycasting.md)** (513) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (109) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (207) -- **[rgb332](rgb332.md)** (95) -- **[rgb565](rgb565.md)** (32) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (55) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (27) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (26) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (17) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (19) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (16) -- **[shit](shit.md)** (31) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (88) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (182) -- **[sjw](sjw.md)** (27) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (10) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (41) -- **[soyence](soyence.md)** (77) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (116) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (273) -- **[steve_jobs](steve_jobs.md)** (36) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (213) -- **[suicide](suicide.md)** (13) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (72) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (8) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (20) -- **[thrembo](thrembo.md)** (15) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tool_slave](tool_slave.md)** (14) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny](tranny.md)** (2) -- **[tranny_software](tranny_software.md)** (31) -- **[transistor](transistor.md)** (29) -- **[transsexual](transsexual.md)** (43) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (82) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (46) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (208) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (34) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unfuck](unfuck.md)** (18) -- **[unicode](unicode.md)** (81) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (13) -- **[update_culture](update_culture.md)** (24) -- **[usa](usa.md)** (66) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (45) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (54) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (15) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (213) -- **[wiki_style](wiki_style.md)** (76) -- **[wiki_tldr](wiki_tldr.md)** (51) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (96) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (58) -- **[wizard](wizard.md)** (26) -- **[woman](woman.md)** (164) -- **[work](work.md)** (49) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (122) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (114) -- **[xxiivv](xxiivv.md)** (26) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (29) -- **[zen](zen.md)** (16) -- **[zero](zero.md)** (31) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file diff --git a/wiki_stats.md b/wiki_stats.md index dd26875..34ec428 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: 602 -- number of commits: 907 -- total size of all texts in bytes: 4484088 -- total number of lines of article texts: 33972 +- number of commits: 908 +- total size of all texts in bytes: 4495479 +- total number of lines of article texts: 34035 - number of script lines: 294 - occurrences of the word "person": 9 - occurrences of the word "nigger": 98 @@ -16,7 +16,7 @@ longest articles: - [exercises](exercises.md): 112K - [capitalism](capitalism.md): 76K - [how_to](how_to.md): 72K -- [chess](chess.md): 68K +- [chess](chess.md): 72K - [less_retarded_society](less_retarded_society.md): 64K - [3d_rendering](3d_rendering.md): 56K - [faq](faq.md): 56K @@ -35,60 +35,74 @@ longest articles: top 50 5+ letter words: -- which (2518) -- there (1930) -- people (1771) -- example (1524) -- other (1398) +- which (2523) +- there (1940) +- people (1776) +- example (1528) +- other (1403) - number (1262) -- about (1227) +- about (1234) - software (1208) - program (994) -- because (969) -- their (948) -- would (921) +- because (972) +- their (950) +- would (922) - being (866) -- something (859) -- things (852) -- called (851) -- language (848) +- something (861) +- things (854) +- called (852) +- language (849) - numbers (808) -- simple (796) -- computer (779) -- without (750) +- simple (797) +- computer (780) +- without (752) - programming (730) -- function (716) -- different (708) -- these (704) -- however (701) +- function (717) +- different (711) +- these (706) +- however (706) - system (665) -- world (656) -- should (637) +- world (655) +- should (638) - doesn (637) -- while (626) -- point (614) -- games (610) -- still (600) +- while (627) +- point (616) +- games (612) +- still (601) - society (596) -- drummyfish (592) +- drummyfish (595) - using (575) - simply (574) -- possible (572) -- though (558) -- https (550) +- possible (571) +- though (557) +- https (551) +- course (544) - similar (541) -- course (541) - memory (530) -- always (523) -- basically (514) +- always (526) +- basically (515) - value (513) - technology (512) -- probably (511) +- probably (512) - really (508) latest changes: ``` +Date: Tue Oct 22 21:15:37 2024 +0200 + 4chan.md + 90s.md + bit.md + chess.md + internet.md + javascript.md + lrs_dictionary.md + random_page.md + stereotype.md + usa.md + wiki_pages.md + wiki_stats.md + wizard.md Date: Mon Oct 21 15:31:36 2024 +0200 90s.md chess.md @@ -108,25 +122,6 @@ Date: Sat Oct 19 22:01:36 2024 +0200 cancer.md chess.md diogenes.md - disease.md - doom.md - free_software.md - fsf.md - gui.md - internet.md - iq.md - lrs.md - main.md - minimalism.md - mouse.md - needed.md - pedophilia.md - random_page.md - rust.md - stereotype.md - usa.md - wiki_pages.md - wiki_stats.md ``` most wanted pages: @@ -164,7 +159,7 @@ most popular and lonely pages: - [proprietary](proprietary.md) (128) - [minimalism](minimalism.md) (108) - [modern](modern.md) (104) -- [computer](computer.md) (102) +- [computer](computer.md) (103) - [censorship](censorship.md) (101) - [kiss](kiss.md) (100) - [fun](fun.md) (99) @@ -175,11 +170,11 @@ most popular and lonely pages: - [shit](shit.md) (88) - [fight_culture](fight_culture.md) (87) - [bullshit](bullshit.md) (87) -- [hacking](hacking.md) (85) +- [hacking](hacking.md) (86) - [less_retarded_society](less_retarded_society.md) (82) - [free_culture](free_culture.md) (82) - [art](art.md) (82) -- [public_domain](public_domain.md) (80) +- [public_domain](public_domain.md) (81) - [corporation](corporation.md) (80) - [woman](woman.md) (77) - [programming_language](programming_language.md) (77) diff --git a/wizard.md b/wizard.md index 82cd2e9..22f3616 100644 --- a/wizard.md +++ b/wizard.md @@ -24,4 +24,5 @@ There is an [imageboard](imageboard.md) for wizards called [wizardchan](wizchan. - [incel](incel.md) - [volcel](volcel.md) - [hacker](hacking.md) -- [drummyfish](drummyfish.md) \ No newline at end of file +- [drummyfish](drummyfish.md) +- [magic](magic.md) \ No newline at end of file