From b9fd8d7532d3b950313232d6f891634b2e751504 Mon Sep 17 00:00:00 2001 From: Miloslav Ciz Date: Tue, 2 Apr 2024 22:47:48 +0200 Subject: [PATCH] Update --- 42.md | 1 + bullshit.md | 2 + c_pitfalls.md | 34 +- c_tutorial.md | 15 + demoscene.md | 2 +- emoticon.md | 2 +- exercises.md | 72 +- future_proof.md | 4 +- how_to.md | 1 + javascript.md | 4 +- main.md | 9 +- python.md | 22 +- random_page.md | 3180 +++++++++++++++++++++++------------------------ wiki_pages.md | 2 +- wiki_stats.md | 150 ++- yes_they_can.md | 8 +- youtube.md | 2 +- 17 files changed, 1821 insertions(+), 1689 deletions(-) diff --git a/42.md b/42.md index 3a2a043..613f659 100644 --- a/42.md +++ b/42.md @@ -8,5 +8,6 @@ If you make a 42 reference in front of a TBBT fan, he will shit himself. ## See Also +- [bazinga](bazinga.md) - [thrembo](thrembo.md) - [foo](foo.md) (similarly overplayed "joke") \ No newline at end of file diff --git a/bullshit.md b/bullshit.md index eebefac..9e7a00a 100644 --- a/bullshit.md +++ b/bullshit.md @@ -6,6 +6,7 @@ Bullshit (BS) is nonsense, arbitrary unnecessary [shit](shit.md) and/or somethin Some things that are bullshit include: +- anti[cheat](cheating.md) - [antiviruses](antivirus.md) - [army](army.md) - [bureaucracy](bureaucracy.md) @@ -40,6 +41,7 @@ Some things that are bullshit include: - [states](state.md) - [UML](uml.md) - [unions](union.md) +- [wars](war.md) - ... OK then, what's not bullshit? Well, things that matter, for example [food](food.md), health, [education](education.md), [love](love.md), [fun](fun.md), [art](art.md), [technology](technology.md), knowledge about the world, [science](science.md), [morality](morality.md), exploration, ... \ No newline at end of file diff --git a/c_pitfalls.md b/c_pitfalls.md index 13c09bb..1a58c0b 100644 --- a/c_pitfalls.md +++ b/c_pitfalls.md @@ -18,6 +18,18 @@ There are tools for detecting undefined behavior, see e.g. [clang](clang.md)'s U **No specific [endianness](endian.md) or even encoding of numbers is specified**. Nowadays little endian and [two's complement](twos_complement.md) is what you'll encounter on most platforms, but e.g. [PowerPC](ppc.md) uses big endian ordering. +**Unlike with global variables, values of uninitialized local variables are not defined**. Global variables are automatically initialized to 0 but not local ones -- this can lead to nasty bugs as sometimes local variables WILL be initialized with 0 but stop being so e.g. under different optimization level, so watch out. Demonstration: + +``` +int a; // auto initialized to zero + +int main(void) +{ + int b; // undefined value! + return 0; +} +``` + **Order of evaluation of operands and function arguments is not specified**. I.e. in an expression or function call it is not defined which operands or arguments will be evaluated first, the order may be completely random and the order may differ even when evaluating the same expression at another time. This is demonstrated by the following code: ``` @@ -114,10 +126,26 @@ Of course this applies to other languages as well, but C is especially known for ## Other -Watch out for **operator precedence**! Bracket expressions if unsure, or just to increase readability for others. +Basic things: `=` is not `==`, `|` is not `||`, `&` is not `&&`, array indices start at 0 (not 1) and so on. There are also some deeper gotchas like `a/*b` is not `a / *b` (the first is comment). + +Also watch out for this one: `!=` is not `=!` :) I.e. `if (x != 4)` and `if (x =! 4)` are two different things, the first means *not equal* and is usually what you want, the latter is two operations, `=` and `!`, the tricky thing is it also compiles and may work as expected in some cases but fail in others, leading to a very nasty bug. Same thing with `-=` vs `=-` and so on. See also [downto](downto.md) operator. + +Another common, mostly beginner mistake is a semicolon after if or while condition -- this compiles but doesn't work correctly. Notice the difference between these two if statements: + +``` +if (a == b); + puts("aaa"); // will print always + +if (a == b) + puts("aaa"); // will print only if a == b +``` + +Beginners similarly often forget breaks in switch statement, which works but usually not as you want -- thankfully compilers warn you about this. + +Watch out for **operator precedence**! C infamously has weird precedence with some special operators, bracket expressions if unsure, or just to increase readability for others. Also nested ifs with elses can get tricky -- again, use curly brackets for clarity in your spaghetti code. **[Preprocessor](preprocessor.md) can give you headaches** if you use it in overcomplicated ways -- ifdefs and macros are fine, but too many nesting can create real mess that's super hard to debug. It can also quite greatly slow down compilation. Try to keep the preprocessing code simple and flat. - -Also watch out for this one: `!=` is not `=!` :) I.e. `if (x != 4)` and `if (x =! 4)` are two different things, the first means *not equal* and is usually what you want, the latter is two operations, `=` and `!`, the tricky thing is it also compiles and may work as expected in some cases but fail in others, leading to a very nasty bug. + +Watch out for **[macro](macro.md) arguments**, always bracket them because they get substituted on text level. Consider e.g. a macro `#define divide(a,b) a / b`, and then doing `divide(3 + 1,2)` -- this gets expanded to `3 + 1 / 2` while you probably wanted `(3 + 1) / 2`, i.e. the macro should have been defined as `#define divide(a,b) (a) / (b)`. This is not really a pitfall, rather a headscratcher, but don't forget to link math library with `-lm` flag when using using the `math.h` library. \ No newline at end of file diff --git a/c_tutorial.md b/c_tutorial.md index 9af7c72..a284f0f 100644 --- a/c_tutorial.md +++ b/c_tutorial.md @@ -10,6 +10,19 @@ This tutorial focuses on teaching pure C, i.e. **mostly just command line text-o If you do two chapters a day (should take like half and hour), in a week you'll know some basic C. +Potentially supplemental articles to this tutorial are: + +- [C](c.md) +- [algorithm](algorithm.md) +- [programming tips](programming_tips.md) +- [programming style](programming_style.md) +- [debugging](debugging.md) +- [exercises](exercises.md) +- [C pitfalls](c_pitfalls.md) +- [memory management](memory_management.md) +- [optimization](optimization.md) +- ... + ## About C And Programming [C](c.md) is @@ -2131,6 +2144,8 @@ This code is almost a bare minimum template for SDL that doesn't even perform an We haven't nearly covered the whole of C, but you should have pretty solid basics now. Now you just have to go and write a lot of C programs, that's the only way to truly master C. WARNING: Do not start with an ambitious project such as a 3D game. You won't make it and you'll get demotivated. Start very simple (a Tetris clone perhaps?). Try to develop some consistent programming style/formatting -- see our [LRS programming style](programming_style.md) you may adopt (it's better than trying to make your own really). +See also supplemental articles at the beginning of this tutorial. + You should definitely learn about common [data structures](data_strucutre.md) ([linked lists](linked_list.md), [binary trees](binary_tree.md), [hash tables](hash.md), ...) and [algorithms](algorithm.md) ([sorting](sorting.md), [searching](search.md), ...). As an advanced programmer you should definitely know a bit about [memory management](memory_management.md). Also take a look at basic [licensing](license.md). Another thing to learn is some [version control system](vcs.md), preferably [git](git.md), because this is how we manage bigger programs and how we collaborate on them. To start making graphical programs you should get familiar with some library such as [SDL](sdl.md). A great amount of experience can be gained by contributing to some existing project, collaboration really boosts your skill and knowledge of the language. This should only be done when you're at least intermediate. Firstly look up a nice project on some git hosting site, then take a look at the bug tracker and pick a bug or feature that's easy to fix or implement (low hanging fruit). diff --git a/demoscene.md b/demoscene.md index 493fbb5..b29d8d8 100644 --- a/demoscene.md +++ b/demoscene.md @@ -6,7 +6,7 @@ Demoscene is a bit of a bittersweet topic: on one side it's awesome, full of bea Besides "digital graffiti" the scene is also perhaps a bit remotely similar to the culture of street rap in its underground and competitive nature, but of course it differs by lack of improvisation and in centering on groups rather than individuals. Nevertheless the focus is on competition, originality, style etc. But demos should show off technological skills as the highest priority -- trying to "win by content" rather than programming skills is sometimes frowned upon. Individuals within a demogroup have roles such as a [programmer](programmer.md), visual artist, music artist, director, even [PR](pr.md) etc. The whole mindset and relationship to technology within demoscene is much different from the mainstream; for example it's been stated that while mainstream sees computers just as a tool that should just make happen what we imagine, a demoscener puts technology first, he doesn't see computing platforms in terms of better or worse e.g. for its raw computational power, he rather sees a rich world of unique computing platforms, each one with specific personality and feel, kind of like a visual artist sees different painting styles. -A demo isn't a [video](video.md), it is a non-[interactive](interactive.md) [real time](real_time.md) executable that produces the same output on every run (even though categories outside of this may also appear). [Viznut](viznut.md) has noted that this "static nature" of demos may be due to the established culture in which demos are made for a single show to the audience. Demos themselves aren't really limited by resource constraints (well, sometimes a limit such as 4 MB is imposed), it's where the programmers can show off all they have. However compos are often organized for **intros**, demos whose executable size is limited (i.e. NOT the size of the source code, like in [code golfing](golf.md), but the size of the compiled binary). The main categories are 4Kib intros and 64Kib intros, rarely also 256Kib intros (all sizes are in [kibibytes](memory_units.md)). Apparently even such categories as 256 [byte](byte.md) intro appear. Sometimes also platform may be specified (e.g. [Commodore 64](c64.md), [PC](pc.md) etc.). The winner of a compo is decided by voting. +A demo isn't a [video](video.md), it is a non-[interactive](interactive.md) [real time](real_time.md) executable that produces the same output on every run (even though categories outside of this may also appear). [Viznut](viznut.md) has noted that this "static nature" of demos may be due to the established culture in which demos are made for a single show to the audience. Demos themselves aren't really limited by resource constraints (well, sometimes a limit such as 4 MB is imposed), it's where the programmers can show off all they have. However compos are often organized for **intros**, demos whose executable size is limited (i.e. NOT the size of the source code, like in [code golfing](golf.md), but the size of the compiled binary). The main categories are 4 KB intros and 64 KB intros, rarely also 256 KB intros. Apparently even such categories as 256 [byte](byte.md) intro appear. Sometimes also platform may be specified (e.g. [Commodore 64](c64.md), [PC](pc.md) etc.). The winner of a compo is decided by voting. Some of the biggest demoparties are or were Assembly (Finland), The Party (Denmark), The Gathering (Norway), Kindergarden (Norway) and Revision (Germany). A guy on https://mlab.taik.fi/~eye/demos/ says that he has never seen a demo [female](female.md) programmer and that females often have free entry to demoparties while men have to pay because there are almost no women anyway xD Some famous demogroups include Farbrausch (Germany, also created a tiny 3D shooter game [.kkrieger](kkrieger.md)), Future Crew (Finland), Pulse (international), Haujobb (international), Conspiracy (Hungary) and [Razor 1911](razor_1911.md) (Norway). { Personally I liked best the name of a group that called themselves *Byterapers*. ~drummyfish } There is an online community of demosceners at at https://www.pouet.net. diff --git a/emoticon.md b/emoticon.md index e3449f2..df1c09c 100644 --- a/emoticon.md +++ b/emoticon.md @@ -119,7 +119,7 @@ UU U_U (U_U) U-U (U-U) U~U (U~U) U.U (U.U) UvU (UvU) UwU (UwU) UoU salutations: o/ \o o7 \o/ -8====D {|} ,,|,, (. (. ) +8====D {|} ,,|,, (. (. ) ( . Y . ) @}->-- <3 ``` -TODO: some JS nonsense like below +TODO: some JS nonsense like below (https://wtfjs.com/) ``` "11" + 1 // "111" diff --git a/main.md b/main.md index 0f0e74e..39e6632 100644 --- a/main.md +++ b/main.md @@ -81,7 +81,7 @@ Are you a noob but see our ideas as appealing and would like to join us? Say no ## Did You Know -- That [old](old.md) technology (such as toys or alerts in cars) could play prerecorded audio without using any electricity or needing batteries? This was done by [simply](kiss.md) using a plastic disc spinning on a needle (same principle as a vinyl record). There is a gramophone, called CardTalk, made purely of cardboard which plays vinyl records without any electricity (it used to be used by missionaries traveling to jungles etc.). +- That [old](old.md) technology (such as toys or alerts in cars) could play prerecorded audio without using any electricity or needing batteries? This was done by [simply](kiss.md) using a plastic disc spinning on a needle (same principle as a vinyl record). There is a gramophone, called CardTalk, made purely of cardboard which plays vinyl records without any electricity (it used to be used by missionaries traveling to jungles etc.). [Phonograph](phonograph.md), invented around 1877, allowed people to easily record and play back sounds on a small cylinder covered with wax, the wax could later be smoothed out and rewritten with a new record. - That the term "retarded" was actually made as a [politically correct](political_correctness.md) replacement for medical terms such as "idiot", "imbecile" and "moron" which became seen as derogatory. - That all [Intel](intel.md) [processors](cpu.md) since 2008 (and [AMD](amd.md) processors since 2013) have a hardware [backdoor](backdoor.md) ([Intel ME](intel_me.md), [AMD PSP](amd_psp.md)) that run the [Minix](minix.md) operating system and allows spying on users of those processors no matter what operating system they run? - That Wilhelm Rontgen, a Nobel laureate, did not [patent](patent.md) his groundbreaking discoveries, stating that they should be freely available to anyone without any charge? @@ -101,6 +101,7 @@ Are you a noob but see our ideas as appealing and would like to join us? Say no - That there is a light bulb in California that has been turned on since 1901 and as of writing this is still working? This shows that [old](old.md) things are better than those manufactured under more advanced [capitalism](capitalism.md) which pushes for more [consumerism](consumerism.md) and applies [artificial obsolescence](artificial_obscolescence.md). Many sowing machines made mode than 100 years ago still function perfectly fine as well as many other types of machines; anything created nowadays shouldn't be expected to last longer than 3 years. - That there exist [numbers](number.md) that are not [computable](computability.md) or are otherwise [unknowable](knowability.md)? See e.g. Chaitin's constant. - That throughout [history](history.md) one of the most common patterns is appearance of new lucrative technology or trend which is labeled safe by [science](soyence.md), then officially recommended, promoted, adopted by the industry and heavily utilized for many years to decades before being found harmful, which is almost always greatly delayed by the industry trying to hide this fact? This was the case e.g. with [asbestos](asbestos.md), [freons](freon.md) (responsible for ozone layer depletion), [x rays](x_ray.md), radioactive paint (see *radium girls*), some food preservatives, [plastics](plastic.md), smoking and great many prescription drugs among which used to be even cocaine. Yet when you question safety of a new lucrative invention, such as [5G](5g.md), antidepressants or some quickly developed [vaccines](vax.md), you are labeled insane. +- That [Kinora](kinora.md), invented around 1895, allowed people to view short videos with a simple, small, purely mechanical device? It used the flip-book principle. ## Topics @@ -114,3 +115,9 @@ Here there are quick directions to some of the important topics; for more see th - **freedom/law**: [Creative Commons](creative_commons.md) -- [free culture](free_culture.md) -- [free hardware](free_hardware.md) -- [free software](free_software.md) -- [copyleft](copyleft.md) -- [copyright](copyright.md) -- [GNU](gnu.md) -- ["intellectual property"](intellectual_property.md) -- [license](license.md) -- [open $ource](open_source.md) -- [patent](patent.md) -- [public domain](public_domain.md) - **interesting**: [beauty](beauty.md) -- [bytebeat](bytebeat.md) -- [chess](chess.md) -- [Dodleston messages mystery](dodleston.md) -- [hyperoperation](hyperoperation.md) -- [interesting](interesting.md) -- [interplanetary internet](interplanetary_internet.md) -- [netstalking](netstalking.md) -- [steganography](steganography.md) - **fun/relaxed/offtopic**: [audiophilia](audiophilia.md) -- [C downto operator](downto.md) -- [C obfuscation contest](ioccc.md) -- [dog](dog.md) -- [esolang](esolang.md) -- [fantasy console](fantasy_console.md) -- [fun](fun.md) -- [games](game.md) -- [island](island.md) -- [jokes](jokes.md) -- [LMAO](lmao.md) -- [NaNoGenMo](nanogenmo.md) -- [open console](open_console.md) -- [rock](rock.md) -- [shit](shit.md) -- [SIGBOVIK](sigbovik.md) -- [Temple OS](temple_os.md) + +## Link Bump + +Feel free to ignore this. Here we'll put links to help them being promoted, to help small search engines connect the non-mainstream web and so on. Please note that we don't necessarily agree or promote what's on these sites, we just feel it's good if they get a bump for whatever reason (e.g. being censored by mainstream, containing some useful stuff, having good web design, provoking thought, demonstrating something good, demonstrating something bad and so on). If you feel brave you can try randomly clicking something ;) The links follow. { Let me know if you want to suggest addition or removal of some link. If some site turns 404, woke, capitalist or employs adds, I'll probably take it down. ~drummyfish } + +[http://collapseos.org](http://collapseos.org), [https://suckless.org](https://suckless.org), [http://duskos.org](http://duskos.org), [https://wiki.osdev.org](https://wiki.osdev.org), [http://lolwut.info](http://lolwut.info), [http://cat-v.org](http://cat-v.org), [https://opengameart.org](https://opengameart.org), [https://www.gutenberg.org](https://www.gutenberg.org), [https://librivox.org](https://librivox.org), [https://libregamewiki.org](https://libregamewiki.org), [https://pantsuprophet.xyz](https://pantsuprophet.xyz), [https://duion.com](https://duion.com), [http://digdeeper.club](http://digdeeper.club), [https://www.chimpout.com](https://www.chimpout.com), [http://floodgap.com](http://floodgap.com), [https://en.metapedia.org](https://en.metapedia.org), [https://www.vidlii.com](https://www.vidlii.com), [https://wikiindex.org](https://wikiindex.org), [https://saidit.net](https://saidit.net), [https://www.newworldencyclopedia.org](https://www.newworldencyclopedia.org), [http://progopedia.com](http://progopedia.com), [http://techrights.org](http://techrights.org), [https://landsofgames.com](https://landsofgames.com), [http://www.macroevolution.net](http://www.macroevolution.net), [https://hub.darcs.net](https://hub.darcs.net), [https://repo.or.cz](https://repo.or.cz), [https://templeos.org](https://templeos.org), [http://cidoku.net](http://cidoku.net), [https://www.gnu.org](https://www.gnu.org), [https://circumlunar.space](https://circumlunar.space), [http://www.nigger.org](http://www.nigger.org), [https://forums.somethingawful.com](https://forums.somethingawful.com), [https://notabug.org](https://notabug.org), [https://gopherproxy.meulie.net](https://gopherproxy.meulie.net), [http://www.reactionary.software](http://www.reactionary.software), [https://libre.video](https://libre.video), [http://textfiles.com](http://textfiles.com), [https://esolangs.org](https://esolangs.org), [http://www.ioccc.org](http://www.ioccc.org), [https://solar.lowtechmagazine.com](https://solar.lowtechmagazine.com), [http://www.calresco.org](http://www.calresco.org), [https://encyclopediadramatica.online](https://encyclopediadramatica.online), [https://infogalactic.com](https://infogalactic.com), [https://www.icechewing.com](https://www.icechewing.com), [https://www.rouming.cz](https://www.rouming.cz), [https://www.thevenusproject.com](https://www.thevenusproject.com), [https://doxbin.org](https://doxbin.org), [https://frogesay.neocities.org](https://frogesay.neocities.org), [https://www.debunkingskeptics.com](https://www.debunkingskeptics.com), [https://stallman.org](https://stallman.org), [https://8kun.top](https://8kun.top), [https://annas-archive.org](https://annas-archive.org), [http://icculus.org/piga](http://icculus.org/piga), [https://forum.freegamedev.net](https://forum.freegamedev.net), [https://wiki.soyjak.party](https://wiki.soyjak.party), [https://fediverse.wiki](https://fediverse.wiki), [https://www.lurkmore.com](https://www.lurkmore.com), [https://dolphinana.codeberg.page](https://dolphinana.codeberg.page), [http://www.niggermania.com](http://www.niggermania.com), [https://www.711chan.net](https://www.711chan.net), [https://watchpeopledie.tv](https://watchpeopledie.tv), [https://flarerpg.org](https://flarerpg.org), [https://copyfree.org](https://copyfree.org), [https://www.chessprogramming.org](https://www.chessprogramming.org), [https://zerocontradictions.net/FAQs/race-FAQs](https://zerocontradictions.net/FAQs/race-FAQs), [http://bitreich.org](http://bitreich.org), [http://www.humanbiologicaldiversity.com](http://www.humanbiologicaldiversity.com), [https://incels.wiki](https://incels.wiki), [https://www.nearlyfreespeech.net](https://www.nearlyfreespeech.net), [https://softpanorama.org](https://softpanorama.org), [http://humanknowledge.net](http://humanknowledge.net), [https://wiki.leftypol.org](https://wiki.leftypol.org), [https://mdfs.net](https://mdfs.net), [https://bienvenidoainternet.org](https://bienvenidoainternet.org), [https://leftychan.net](https://leftychan.net), [https://leftypol.org](https://leftypol.org), [https://postbox.garden](https://postbox.garden), [https://www.lord-enki.net](https://www.lord-enki.net), [https://sanctioned-suicide.net](https://sanctioned-suicide.net), [http://www.tastyfish.cz](http://www.tastyfish.cz), [https://simplifier.neocities.org](https://simplifier.neocities.org), [http://datamath.org](http://datamath.org), [https://www.lixgame.com](https://www.lixgame.com), [https://obsoletemedia.org](https://obsoletemedia.org), [http://www.doshaven.eu](http://www.doshaven.eu), [https://omick.net](https://omick.net), [http://countercomplex.blogspot.com](http://countercomplex.blogspot.com), [https://wiki.thingsandstuff.org](https://wiki.thingsandstuff.org), [https://tinfoil-hat.net](https://tinfoil-hat.net), [https://search.marginalia.nu](https://search.marginalia.nu), [http://wiby.me](http://wiby.me), [https://57296.neocities.org](https://57296.neocities.org), [https://coom.tech](https://coom.tech), [https://rightdao.com](https://rightdao.com), [https://www.alexandria.org](https://www.alexandria.org), [https://allthetropes.org](https://allthetropes.org) \ No newline at end of file diff --git a/python.md b/python.md index e19bb9a..5114a05 100644 --- a/python.md +++ b/python.md @@ -2,4 +2,24 @@ *What if [pseudocode](pseudocode.md) was actually code?* -TODO \ No newline at end of file +Python (name being a reference to Monty Python) is an exceptionally [bloated](bloat.md), extremely popular [high level](abstraction.md) [interpreted](interpreter.md) [programming language](programming_language.md). Its priority is readability and making it easy and fast to bash together some code for anyone with at least one brain hemisphere, so it is eminently popular among beginners, children, [women](woman.md), non-programmers such as scientists and unqualified [soydevs](soydev.md) who can't handle real languages like [C](c.md). Python [just werks](just_werks.md) and is comfortable, but any program written in it is doomed to be bloated, slow, ugly, big and will unavoidably die without [maintenance](maintenance.md) for Python's updates purposefully break [backwards compatibility](backwards_compatibility.md). At this moment it is the language most frequently used for programming "neural net [AI](ai.md)s". + +Python was conceived in 1991 by a Dutchman Guido van Rossum who announced it on [Usenet](usenet.md). Version 1.0 was released in 1994 and version 2.0 in 2000. A very important version was 2.7 released in 2010 -- this was used and supported for a long time but the support was ended in 2020 in favor of Python 3. As of writing this the latest version is 3.9. + +**Can [we](lrs.md) use python?** There are certain use cases for it, mostly writing [throwaway scripts](throwaway_script.md) and other quick, temporary code. Python can easily help you get into programming as well, so it may well serve as an educational language, however be sure to transition to a better language later on. Remember, **python mustn't ever be used for a serious program**. + +The reference implementation, *CPython*, is at the same time the one in most widespread use; it is written in [C](c.md) and python itself. There also exist different implementations such as *MicroPython* (for [embedded](embedded.md)), PyPy (alternative implementation, often faster), Jython and so on. + +What follows is a summary of the python language: + +- Emphasis is on **"readability"** and comfort, with a bit of stretch the aim is to create a "runnable [pseudocode](pseudocode.md)". To this end is sacrificed performance, elegance, maintainability and other important aspects. +- It is **[interpreted](interpreter.md) and highly dynamic**, i.e. data types of variables are dynamic, [lists](list.md), [strings](string.md) and [dictionaries](dict.md) are dynamic, since new versions there are even **arbitrary size integers** by default. There is automatic **[garbage collection](garbage_collection.md)**, code can be modified at run time and so on. All this of course makes the language **slow**, with big memory footprint. +- There is **class-based [OOP](oop.md)** which can at least be avoided, it is not enforced. +- Python **revolves around [dictionaries](dictionary.md)** (a [data type](data_type.md) capable of storing *key:value* pairs), i.e. most things are internally implemented with dictionaries. +- It **doesn't keep backwards compatibility**, i.e. new versions of Python won't generally be able to run programs written in old versions of Python. This is so that the devs can eliminate things that turned out to be a bad idea (probably happens often), but of course on the other hand you have to [keep rewriting](maintenance.md) your programs to keep them working (python provides scripts that help automatize this). +- Quite retardedly **indentation is part of syntax**, that's a [shitty](shit.md) design choice that complicates programming (one liners, minification, compact code, [code golf](golf.md), temporary debugging indentation, ...). +- There is **no specification** per se -- but at least there is online reference (*The Python Language Reference*) that kind of serves as one. +- It has a **gigantic standard library** which handles things such as [Unicode](unicode.md), [GUI](gui.md), [databases](database.md), [regular expressions](regex.md), [email](email.md), [html](html.md), [compression](compression.md), communication with operating system, [networking](network.md), [multithreading](multithreading.md) and much, much more. This means it's almost impossible to implement Python in all its entirety without 100 programmers working full time for at least 10 years. +- There are many other **smaller fails**, e.g. inconsistent/weird naming of built-in commands, absence of switch statement (well, in new versions there is one already, but only added later and looks kinda shitty) etc. + +TODO: code, compare to C \ No newline at end of file diff --git a/random_page.md b/random_page.md index d607477..f24e785 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1707 +2,1707 @@ Please kindly click random link. -[*](demo.md) -[*](soydev.md) -[*](jokes.md) -[*](modern_software.md) -[*](regex.md) -[*](bloat.md) -[*](rsa.md) -[*](security.md) -[*](chaos.md) -[*](ssao.md) -[*](goodbye_world.md) -[*](shader.md) -[*](left.md) -[*](stereotype.md) -[*](rust.md) -[*](kiss.md) -[*](esolang.md) -[*](backpropagation.md) -[*](entropy.md) -[*](google.md) -[*](line.md) -[*](plan9.md) -[*](portability.md) -[*](kek.md) -[*](minimalism.md) -[*](marble_race.md) -[*](consumerism.md) -[*](procgen.md) -[*](analytic_geometry.md) -[*](noise.md) -[*](social_inertia.md) -[*](real_number.md) -[*](fediverse.md) -[*](steve_jobs.md) -[*](turing_machine.md) -[*](openai.md) -[*](duke3d.md) -[*](vector.md) -[*](rock.md) -[*](logic_gate.md) -[*](fantasy_console.md) -[*](trolling.md) -[*](float.md) -[*](xonotic.md) -[*](patent.md) -[*](watchdog.md) -[*](kiwifarms.md) -[*](culture.md) -[*](plusnigger.md) -[*](boot.md) -[*](vim.md) -[*](wiki_pages.md) -[*](toxic.md) -[*](hexadecimal.md) -[*](microsoft.md) -[*](wikiwikiweb.md) -[*](de_facto.md) -[*](wikipedia.md) -[*](ioccc.md) -[*](logic_gate.md) -[*](ronja.md) -[*](interplanetary_internet.md) -[*](education.md) -[*](just_werks.md) -[*](aliasing.md) -[*](moderation.md) -[*](selflessness.md) -[*](mental_outlaw.md) -[*](capitalist_software.md) -[*](cracking.md) -[*](css.md) -[*](permacomputing_wiki.md) -[*](patent.md) -[*](debugging.md) -[*](uxn.md) -[*](faggot.md) -[*](avpd.md) -[*](everyone_does_it.md) -[*](nd.md) -[*](c.md) -[*](byte.md) -[*](rsa.md) -[*](data_structure.md) -[*](docker.md) -[*](arduboy.md) -[*](prime.md) -[*](settled.md) -[*](open_console.md) -[*](mob_software.md) -[*](kiss.md) -[*](4chan.md) -[*](teletext.md) -[*](rgb332.md) -[*](docker.md) -[*](sdf.md) -[*](pseudo3d.md) -[*](steve_jobs.md) -[*](computational_complexity.md) -[*](paywall.md) -[*](interaction_net.md) -[*](antivirus_paradox.md) -[*](good_enough.md) -[*](libre.md) -[*](www.md) -[*](atan.md) +[*](hash.md) +[*](lrs_wiki.md) +[*](sjw.md) [*](pedophilia.md) -[*](ancap.md) -[*](democracy.md) -[*](infinity.md) -[*](flatland.md) -[*](racetrack.md) -[*](pseudoleft.md) -[*](disease.md) -[*](shit.md) -[*](tranny_software.md) -[*](drummyfish.md) -[*](esolang.md) -[*](backgammon.md) -[*](nokia.md) -[*](paradigm.md) [*](motivation.md) -[*](kiwifarms.md) -[*](old.md) -[*](triangle.md) -[*](3d_model.md) -[*](comment.md) -[*](kwangmyong.md) -[*](stereotype.md) -[*](go.md) -[*](21st_century.md) -[*](political_correctness.md) -[*](c_pitfalls.md) -[*](analytic_geometry.md) -[*](devuan.md) -[*](free_will.md) +[*](markov_chain.md) +[*](cat_v.md) +[*](bytecode.md) +[*](antivirus_paradox.md) +[*](100r.md) +[*](pseudo3d.md) +[*](programming_tips.md) +[*](tom_scott.md) +[*](crime_against_economy.md) +[*](data_structure.md) [*](global_discussion.md) -[*](debugging.md) -[*](hero.md) -[*](holy_war.md) -[*](algorithm.md) -[*](xd.md) +[*](selflessness.md) +[*](proprietary_software.md) +[*](love.md) +[*](dinosaur.md) +[*](doom.md) [*](autoupdate.md) -[*](openai.md) -[*](complexity.md) -[*](work.md) -[*](zero.md) -[*](soyence.md) -[*](coding.md) -[*](racetrack.md) -[*](prime.md) -[*](neural_network.md) -[*](21st_century.md) -[*](shit.md) -[*](anpac.md) -[*](tattoo.md) -[*](anpac.md) -[*](bazaar.md) -[*](c_tutorial.md) -[*](modern_software.md) -[*](tranny_software.md) -[*](gaywashing.md) -[*](ioccc.md) +[*](anarchism.md) +[*](yes_they_can.md) +[*](teletext.md) +[*](bitreich.md) +[*](troll.md) +[*](woman.md) +[*](world_broadcast.md) +[*](music.md) +[*](ui.md) +[*](jedi_engine.md) +[*](fractal.md) +[*](cos.md) +[*](license.md) +[*](nanogenmo.md) +[*](charity_sex.md) [*](atheism.md) -[*](oop.md) -[*](wow.md) -[*](one.md) -[*](temple_os.md) -[*](recursion.md) -[*](minigame.md) -[*](shortcut_thinking.md) -[*](interesting.md) -[*](cpp.md) +[*](bullshit.md) +[*](c_pitfalls.md) +[*](mob_software.md) +[*](fuck.md) +[*](charity_sex.md) [*](unretard.md) -[*](football.md) -[*](README.md) -[*](gemini.md) -[*](wiki_style.md) -[*](wikidata.md) -[*](elo.md) -[*](gopher.md) -[*](everyone_does_it.md) -[*](julia_set.md) -[*](moderation.md) -[*](100r.md) -[*](binary.md) -[*](windows.md) -[*](assertiveness.md) -[*](dick_reveal.md) -[*](luke_smith.md) -[*](social_inertia.md) -[*](free_culture.md) +[*](ronja.md) +[*](black.md) +[*](ted_kaczynski.md) +[*](how_to.md) +[*](openarena.md) +[*](diogenes.md) +[*](kiss.md) [*](lrs_dictionary.md) -[*](open_source.md) -[*](capitalist_singularity.md) -[*](smallchesslib.md) +[*](dinosaur.md) +[*](hacking.md) +[*](backpropagation.md) +[*](raycastlib.md) +[*](countercomplex.md) +[*](framework.md) +[*](books.md) +[*](one.md) +[*](wiki_authors.md) [*](public_domain_computer.md) -[*](wikipedia.md) -[*](easy_to_learn_hard_to_master.md) -[*](copyleft.md) -[*](rgb332.md) [*](uxn.md) -[*](cat_v.md) -[*](recursion.md) -[*](viznut.md) -[*](operating_system.md) -[*](sigbovik.md) -[*](portal_rendering.md) -[*](version_numbering.md) -[*](boot.md) -[*](brain_software.md) -[*](encyclopedia.md) -[*](wiby.md) -[*](dodleston.md) -[*](distrohopping.md) -[*](combinatorics.md) +[*](web.md) +[*](public_domain.md) +[*](terry_davis.md) +[*](microtheft.md) +[*](web.md) +[*](githopping.md) +[*](fork.md) +[*](paradigm.md) +[*](pokitto.md) +[*](demoscene.md) +[*](youtube.md) +[*](tas.md) +[*](leading_the_pig_to_the_slaughterhouse.md) [*](jargon_file.md) -[*](free_software.md) -[*](xxiivv.md) -[*](chaos.md) -[*](encryption.md) -[*](public_domain_computer.md) -[*](formal_language.md) -[*](shogi.md) -[*](living.md) -[*](c_sharp.md) -[*](hash.md) -[*](social_inertia.md) +[*](wavelet_transform.md) +[*](quaternion.md) +[*](anarchism.md) +[*](float.md) +[*](lrs_dictionary.md) +[*](fuck.md) +[*](needed.md) +[*](suicide.md) +[*](gaywashing.md) +[*](tranny_software.md) +[*](explicit.md) +[*](gigachad.md) +[*](less_retarded_society.md) +[*](coc.md) +[*](infinity.md) +[*](collision.md) +[*](pseudorandomness.md) +[*](quantum_gate.md) +[*](fight.md) +[*](p_vs_np.md) +[*](modern_software.md) +[*](nd.md) +[*](smart.md) +[*](pedophilia.md) +[*](free_hardware.md) +[*](liberalism.md) +[*](antivirus_paradox.md) +[*](backpropagation.md) +[*](x86.md) +[*](netstalking.md) +[*](venus_project.md) +[*](less_retarded_software.md) +[*](gigachad.md) +[*](3d_rendering.md) +[*](gender_studies.md) +[*](rgb565.md) +[*](assertiveness.md) +[*](systemd.md) +[*](kids_these_days.md) +[*](wiki_stats.md) +[*](4chan.md) +[*](maintenance.md) [*](hack.md) -[*](githopping.md) -[*](update_culture.md) -[*](mud.md) -[*](rock.md) -[*](triangle.md) -[*](library.md) -[*](terry_davis.md) -[*](abstraction.md) -[*](smallchesslib.md) -[*](suckless.md) -[*](unicode.md) -[*](collapse.md) -[*](dependency.md) -[*](troll.md) -[*](bs.md) +[*](dog.md) +[*](drummyfish.md) +[*](egoism.md) +[*](anarch.md) +[*](rapeware.md) +[*](magic.md) [*](3d_model.md) -[*](number.md) -[*](function.md) -[*](rms.md) -[*](abstraction.md) -[*](marketing.md) -[*](smallchesslib.md) -[*](nigger.md) +[*](update_culture.md) +[*](game.md) +[*](patent.md) +[*](football.md) +[*](quantum_gate.md) +[*](finished.md) +[*](tranny_software.md) +[*](progress.md) +[*](stereotype.md) +[*](brain_software.md) +[*](money.md) +[*](semiconductor.md) +[*](README.md) +[*](shader.md) +[*](microtransaction.md) +[*](coding.md) +[*](linux.md) +[*](anal_bead.md) +[*](dynamic_programming.md) +[*](social_inertia.md) +[*](body_shaming.md) +[*](c.md) +[*](copyfree.md) +[*](tattoo.md) +[*](gaywashing.md) +[*](kwangmyong.md) +[*](optimization.md) +[*](esolang.md) +[*](privacy.md) +[*](encyclopedia.md) +[*](distrohopping.md) +[*](intellectual_property.md) +[*](trom.md) +[*](fear_culture.md) +[*](nanogenmo.md) +[*](capitalist_singularity.md) +[*](gopher.md) [*](autostereogram.md) -[*](ai.md) -[*](data_structure.md) -[*](tech.md) -[*](chaos.md) -[*](physics.md) -[*](copyleft.md) +[*](transistor.md) [*](pd.md) -[*](combinatorics.md) -[*](software.md) -[*](fizzbuzz.md) -[*](build_engine.md) -[*](bitreich.md) -[*](blender.md) -[*](morality.md) -[*](3d_modeling.md) -[*](modern.md) -[*](free_hardware.md) -[*](soydev.md) -[*](tensor_product.md) +[*](saf.md) +[*](diogenes.md) +[*](graphics.md) +[*](love.md) +[*](programming_style.md) +[*](wiby.md) +[*](emoticon.md) +[*](backgammon.md) +[*](open_source.md) +[*](science.md) +[*](history.md) +[*](100r.md) +[*](recursion.md) +[*](gemini.md) +[*](brainfuck.md) [*](proprietary.md) -[*](css.md) -[*](antivirus_paradox.md) +[*](entropy.md) +[*](people.md) +[*](free_will.md) +[*](vector.md) +[*](debugging.md) [*](www.md) -[*](resnicks_termite.md) -[*](langtons_ant.md) -[*](magic.md) -[*](trusting_trust.md) -[*](julia_set.md) -[*](bbs.md) -[*](3d_model.md) -[*](competition.md) -[*](xonotic.md) -[*](less_retarded_hardware.md) -[*](hardware.md) -[*](githopping.md) -[*](comment.md) -[*](open_source.md) -[*](dynamic_programming.md) -[*](mud.md) -[*](fractal.md) -[*](hyperoperation.md) -[*](faq.md) -[*](quine.md) -[*](programming_language.md) -[*](game_of_life.md) -[*](systemd.md) -[*](proprietary_software.md) +[*](copyright.md) +[*](encryption.md) +[*](free_will.md) +[*](analog.md) +[*](see_through_clothes.md) +[*](hard_to_learn_easy_to_master.md) +[*](cancer.md) +[*](good_enough.md) +[*](people.md) +[*](hack.md) +[*](bitreich.md) +[*](steganography.md) +[*](digital.md) +[*](aaron_swartz.md) +[*](fourier_transform.md) +[*](digital.md) [*](racetrack.md) -[*](compsci.md) +[*](greenwashing.md) +[*](compiler_bomb.md) +[*](greenwashing.md) +[*](nord_vpn.md) +[*](autostereogram.md) +[*](cheating.md) +[*](tpe.md) +[*](regex.md) +[*](phd.md) +[*](number.md) +[*](comun.md) +[*](nd.md) +[*](math.md) +[*](anpac.md) +[*](chess.md) +[*](linear_algebra.md) +[*](computer.md) +[*](right.md) +[*](proprietary_software.md) +[*](atheism.md) +[*](21st_century.md) +[*](fediverse.md) +[*](wow.md) [*](ascii_art.md) -[*](progress.md) -[*](less_retarded_society.md) +[*](furry.md) +[*](sdf.md) +[*](attribution.md) +[*](hyperoperation.md) +[*](woman.md) +[*](fight_culture.md) +[*](viznut.md) +[*](backgammon.md) +[*](wiki_authors.md) +[*](pseudorandomness.md) +[*](goodbye_world.md) +[*](assembly.md) +[*](bbs.md) [*](web.md) -[*](42.md) -[*](unix.md) -[*](acronym.md) -[*](coc.md) -[*](wiki_rights.md) -[*](political_correctness.md) -[*](cyber.md) -[*](future_proof.md) -[*](fun.md) -[*](lrs.md) -[*](gender_studies.md) -[*](fqa.md) -[*](just_werks.md) -[*](wavelet_transform.md) -[*](easy_to_learn_hard_to_master.md) -[*](proprietary.md) -[*](security.md) -[*](people.md) -[*](trom.md) -[*](magic.md) -[*](markov_chain.md) -[*](dinosaur.md) -[*](golang.md) -[*](elo.md) -[*](rationalwiki.md) -[*](furry.md) -[*](free_body.md) -[*](cloud.md) -[*](yes_they_can.md) -[*](atheism.md) -[*](cos.md) -[*](saf.md) -[*](programming_language.md) -[*](smol_internet.md) -[*](cat_v.md) -[*](copyright.md) -[*](right.md) -[*](nord_vpn.md) +[*](censorship.md) +[*](aliasing.md) +[*](sudoku.md) +[*](sudoku.md) +[*](deep_blue.md) +[*](racism.md) +[*](forth.md) +[*](entrepreneur.md) +[*](sjw.md) [*](fascism.md) -[*](dynamic_programming.md) -[*](compsci.md) -[*](lil.md) -[*](military.md) -[*](f2p.md) -[*](game_of_life.md) -[*](demoscene.md) -[*](portal_rendering.md) -[*](physics_engine.md) -[*](less_retarded_software.md) -[*](proprietary_software.md) -[*](quine.md) -[*](sorting.md) -[*](goodbye_world.md) -[*](world_broadcast.md) -[*](assertiveness.md) -[*](assertiveness.md) -[*](woman.md) -[*](kids_these_days.md) -[*](xxiivv.md) -[*](color.md) -[*](smol_internet.md) -[*](randomness.md) -[*](piracy.md) -[*](nanogenmo.md) -[*](double_buffering.md) -[*](lrs_wiki.md) -[*](island.md) -[*](esolang.md) -[*](ascii.md) -[*](software.md) -[*](how_to.md) -[*](www.md) -[*](raycastlib.md) -[*](ronja.md) -[*](cc0.md) -[*](trom.md) -[*](rsa.md) -[*](sin.md) -[*](low_poly.md) -[*](permacomputing.md) -[*](beauty.md) -[*](c_sharp.md) -[*](capitalist_singularity.md) -[*](pseudoleft.md) -[*](wikiwikiweb.md) -[*](linear_algebra.md) -[*](zen.md) -[*](bit.md) -[*](race.md) -[*](hyperoperation.md) -[*](phd.md) -[*](unicode.md) -[*](reddit.md) -[*](wiki_post_mortem.md) -[*](morality.md) -[*](dinosaur.md) -[*](fsf.md) -[*](wiki_authors.md) -[*](backpropagation.md) -[*](woman.md) [*](function.md) -[*](intellectual_property.md) -[*](history.md) -[*](digital.md) -[*](fourier_transform.md) -[*](earth.md) -[*](elo.md) -[*](formal_language.md) -[*](fizzbuzz.md) -[*](githopping.md) -[*](fixed_point.md) -[*](python.md) -[*](noise.md) -[*](saf.md) -[*](triangle.md) -[*](cos.md) -[*](hacker_culture.md) -[*](nokia.md) -[*](suicide.md) -[*](bloat_monopoly.md) -[*](ui.md) -[*](zero.md) -[*](flatland.md) -[*](hero_culture.md) -[*](altruism.md) -[*](fail_ab.md) -[*](oop.md) -[*](island.md) -[*](gigachad.md) -[*](crypto.md) -[*](dog.md) -[*](morality.md) -[*](science.md) -[*](faq.md) -[*](assembly.md) -[*](combinatorics.md) -[*](number.md) -[*](fight_culture.md) -[*](microsoft.md) -[*](cpu.md) -[*](wiki_stats.md) -[*](entropy.md) -[*](bytecode.md) -[*](murderer.md) -[*](mandelbrot_set.md) -[*](fear_culture.md) -[*](license.md) -[*](maintenance.md) -[*](doom.md) -[*](netstalking.md) -[*](name_is_important.md) -[*](line.md) -[*](earth.md) -[*](myths.md) -[*](holy_war.md) -[*](bloat_monopoly.md) -[*](main.md) -[*](microtransaction.md) -[*](beauty.md) -[*](rationalwiki.md) -[*](autoupdate.md) -[*](raycasting.md) -[*](duke3d.md) -[*](emoticon.md) -[*](algorithm.md) -[*](nanogenmo.md) -[*](femoid.md) -[*](arch.md) -[*](see_through_clothes.md) -[*](cracker.md) -[*](dick_reveal.md) -[*](girl.md) -[*](needed.md) -[*](pd.md) -[*](universe.md) -[*](wiki_stats.md) -[*](femoid.md) -[*](math.md) -[*](implicit.md) -[*](logic_circuit.md) -[*](drummyfish.md) -[*](interaction_net.md) -[*](libre.md) -[*](rapeware.md) -[*](minigame.md) -[*](python.md) -[*](wiki_pages.md) -[*](graphics.md) -[*](evil.md) -[*](e.md) -[*](javascript.md) -[*](english.md) -[*](duke3d.md) -[*](compression.md) -[*](computer.md) -[*](transistor.md) -[*](microtheft.md) -[*](framework.md) -[*](license.md) -[*](internet.md) -[*](public_domain.md) -[*](steganography.md) -[*](soydev.md) -[*](hero.md) -[*](xd.md) -[*](universe.md) -[*](censorship.md) -[*](google.md) -[*](fight_culture.md) -[*](ancap.md) -[*](bazaar.md) -[*](palette.md) -[*](firmware.md) -[*](normalization.md) +[*](sdf.md) +[*](countercomplex.md) +[*](mipmap.md) [*](prime.md) -[*](rms.md) -[*](steganography.md) +[*](finished.md) +[*](twos_complement.md) +[*](mechanical.md) [*](programming.md) -[*](brainfuck.md) -[*](palette.md) -[*](luke_smith.md) -[*](comun.md) -[*](pseudo3d.md) -[*](cheating.md) -[*](apple.md) -[*](sqrt.md) -[*](explicit.md) -[*](duskos.md) -[*](build_engine.md) -[*](right.md) -[*](web.md) -[*](main.md) -[*](free_universe.md) -[*](coding.md) -[*](collision.md) -[*](git.md) -[*](update_culture.md) -[*](newspeak.md) -[*](logic.md) +[*](encryption.md) +[*](pride.md) +[*](chasm_the_rift.md) +[*](troll.md) +[*](cache.md) +[*](devuan.md) +[*](paywall.md) +[*](lil.md) +[*](faq.md) [*](art.md) -[*](lmao.md) -[*](dog.md) -[*](copyfree.md) -[*](kek.md) -[*](music.md) -[*](bitreich.md) -[*](good_enough.md) -[*](john_carmack.md) -[*](memory_management.md) -[*](loc.md) -[*](free.md) -[*](rule110.md) -[*](hyperoperation.md) -[*](determinism.md) -[*](malware.md) -[*](math.md) -[*](yes_they_can.md) -[*](bit.md) -[*](bytebeat.md) -[*](main.md) -[*](tor.md) -[*](soyence.md) -[*](finished.md) -[*](body_shaming.md) -[*](teletext.md) -[*](finished.md) -[*](trump.md) -[*](graphics.md) -[*](arch.md) -[*](fascism.md) -[*](vector.md) -[*](culture.md) -[*](watchdog.md) -[*](css.md) -[*](body_shaming.md) -[*](programming_tips.md) -[*](sin.md) -[*](public_domain_computer.md) -[*](framework.md) -[*](git.md) -[*](femoid.md) -[*](fuck.md) -[*](capitalism.md) -[*](wizard.md) -[*](used.md) -[*](ascii_art.md) -[*](bullshit.md) -[*](minimalism.md) -[*](iq.md) -[*](sudoku.md) -[*](smart.md) -[*](axiom_of_choice.md) -[*](frameless.md) -[*](maintenance.md) -[*](lrs_wiki.md) -[*](lgbt.md) -[*](game.md) -[*](infinity.md) -[*](egoism.md) -[*](bilinear.md) -[*](racism.md) -[*](lambda_calculus.md) -[*](shortcut_thinking.md) -[*](sw_rendering.md) -[*](libre.md) -[*](settled.md) -[*](no_knowledge_proof.md) -[*](coc.md) -[*](libertarianism.md) -[*](3d_modeling.md) -[*](fight.md) -[*](shortcut_thinking.md) -[*](creative_commons.md) -[*](dick_reveal.md) -[*](slowly_boiling_the_frog.md) -[*](gay.md) [*](fantasy_console.md) -[*](good_enough.md) -[*](mandelbrot_set.md) -[*](fork.md) -[*](permacomputing_wiki.md) -[*](capitalist_software.md) -[*](programming_language.md) -[*](libertarianism.md) -[*](ethics.md) -[*](operating_system.md) -[*](vim.md) -[*](hacking.md) -[*](free_software.md) -[*](dynamic_programming.md) -[*](wikidata.md) -[*](corporation.md) -[*](antivirus_paradox.md) -[*](justice.md) -[*](capitalist_software.md) -[*](free_speech.md) -[*](liberalism.md) -[*](duskos.md) -[*](consumerism.md) -[*](turing_machine.md) -[*](mechanical.md) +[*](portability.md) +[*](microtheft.md) +[*](css.md) +[*](approximation.md) +[*](antialiasing.md) +[*](hash.md) +[*](soyence.md) +[*](hero.md) +[*](abstraction.md) +[*](flatland.md) +[*](nigger.md) +[*](malware.md) [*](nc.md) -[*](netstalking.md) -[*](dungeons_and_dragons.md) -[*](aaron_swartz.md) -[*](old.md) -[*](thrembo.md) -[*](art.md) -[*](pokitto.md) -[*](mainstream.md) -[*](left_right.md) -[*](watchdog.md) -[*](lrs_dictionary.md) -[*](microsoft.md) -[*](leading_the_pig_to_the_slaughterhouse.md) +[*](palette.md) [*](bill_gates.md) -[*](c.md) -[*](hard_to_learn_easy_to_master.md) -[*](tpe.md) -[*](myths.md) -[*](interpolation.md) -[*](version_numbering.md) -[*](throwaway_script.md) -[*](jokes.md) -[*](c_sharp.md) +[*](information.md) +[*](boat.md) +[*](modern_software.md) +[*](bs.md) +[*](steve_jobs.md) +[*](fascism.md) +[*](microsoft.md) +[*](ted_kaczynski.md) +[*](collision.md) +[*](gnu.md) [*](fsf.md) -[*](unary.md) -[*](luke_smith.md) -[*](progress.md) -[*](java.md) -[*](fail_ab.md) -[*](suicide.md) -[*](motivation.md) -[*](rust.md) -[*](openai.md) -[*](gay.md) -[*](mob_software.md) -[*](README.md) -[*](smart.md) -[*](fantasy_console.md) -[*](less_retarded_software.md) -[*](permacomputing.md) -[*](science.md) -[*](pedophilia.md) -[*](blender.md) -[*](whale.md) -[*](geek.md) -[*](dodleston.md) +[*](sanism.md) +[*](atan.md) +[*](slowly_boiling_the_frog.md) +[*](chasm_the_rift.md) +[*](google.md) +[*](speech_synthesis.md) +[*](foss.md) +[*](sin.md) +[*](ethics.md) +[*](4chan.md) +[*](sw_rendering.md) [*](byte.md) -[*](future_proof.md) -[*](semiconductor.md) -[*](kwangmyong.md) +[*](bbs.md) +[*](greenwashing.md) +[*](cpu.md) +[*](modern.md) +[*](programming_tips.md) +[*](fizzbuzz.md) +[*](stereotype.md) +[*](rationalwiki.md) +[*](jesus.md) +[*](racetrack.md) [*](analytic_geometry.md) -[*](build_engine.md) -[*](niger.md) -[*](fsf.md) -[*](free_speech.md) -[*](corporation.md) -[*](plan9.md) -[*](hw.md) -[*](robot.md) -[*](axiom_of_choice.md) -[*](tangram.md) -[*](os.md) -[*](arduboy.md) +[*](girl.md) +[*](golang.md) +[*](capitalist_software.md) +[*](thrembo.md) +[*](suckless.md) +[*](programming_language.md) +[*](whale.md) +[*](tensor_product.md) +[*](wikipedia.md) +[*](boat.md) [*](mental_outlaw.md) -[*](binary.md) -[*](jedi_engine.md) -[*](java.md) -[*](palette.md) -[*](chinese.md) -[*](one.md) -[*](systemd.md) +[*](progress.md) +[*](algorithm.md) +[*](real_number.md) +[*](monad.md) +[*](rule110.md) +[*](ioccc.md) +[*](logic_circuit.md) +[*](sin.md) +[*](motivation.md) +[*](security.md) +[*](duskos.md) +[*](io.md) +[*](history.md) +[*](demoscene.md) +[*](ubi.md) +[*](bytebeat.md) +[*](technology.md) +[*](fascist.md) +[*](gopher.md) +[*](e.md) +[*](oop.md) +[*](unix.md) +[*](boot.md) +[*](magic.md) [*](cracking.md) +[*](main.md) +[*](ui.md) +[*](money.md) +[*](loc.md) +[*](liberalism.md) +[*](patent.md) +[*](logic.md) +[*](smart.md) +[*](yes_they_can.md) +[*](hash.md) +[*](memory_management.md) +[*](just_werks.md) +[*](xd.md) +[*](wikiwikiweb.md) +[*](shortcut_thinking.md) +[*](langtons_ant.md) +[*](bytecode.md) +[*](firmware.md) +[*](c_sharp.md) +[*](atan.md) [*](wavelet_transform.md) -[*](linux.md) +[*](crypto.md) +[*](left_right.md) +[*](rights_culture.md) +[*](freedom.md) +[*](bazaar.md) +[*](quine.md) +[*](privacy.md) +[*](rgb332.md) +[*](wiki_post_mortem.md) +[*](toxic.md) +[*](left_right.md) +[*](jedi_engine.md) +[*](programming_language.md) +[*](sw_rendering.md) +[*](blender.md) +[*](version_numbering.md) +[*](unretard.md) +[*](gay.md) +[*](assembly.md) +[*](primitive_3d.md) +[*](neural_network.md) +[*](smart.md) +[*](cc0.md) [*](bit_hack.md) -[*](boat.md) -[*](communism.md) -[*](charity_sex.md) +[*](go.md) +[*](wiby.md) +[*](evil.md) +[*](culture.md) +[*](internet.md) +[*](permacomputing.md) +[*](rgb332.md) +[*](computer.md) +[*](less_retarded_society.md) +[*](explicit.md) +[*](implicit.md) [*](uxn.md) -[*](cc.md) -[*](no_knowledge_proof.md) -[*](logic_circuit.md) -[*](jesus.md) -[*](global_discussion.md) -[*](cracker.md) -[*](productivity_cult.md) -[*](thrembo.md) -[*](hash.md) -[*](procgen.md) -[*](football.md) -[*](c_pitfalls.md) -[*](anarch.md) -[*](gender_studies.md) -[*](niger.md) +[*](harry_potter.md) +[*](people.md) +[*](facebook.md) +[*](monad.md) +[*](technology.md) +[*](nokia.md) +[*](operating_system.md) +[*](exercises.md) [*](mipmap.md) -[*](loc.md) -[*](deep_blue.md) -[*](bloat.md) -[*](rgb332.md) -[*](approximation.md) -[*](moderation.md) -[*](loc.md) -[*](free_universe.md) -[*](books.md) -[*](backgammon.md) +[*](mainstream.md) +[*](kiss.md) +[*](foss.md) +[*](cyber.md) +[*](trom.md) +[*](antivirus_paradox.md) +[*](dick_reveal.md) +[*](how_to.md) +[*](interaction_net.md) +[*](plan9.md) +[*](build_engine.md) +[*](living.md) +[*](education.md) +[*](entropy.md) +[*](bootstrap.md) +[*](rock.md) +[*](mipmap.md) +[*](ascii_art.md) +[*](free_culture.md) +[*](bullshit.md) +[*](pseudominimalism.md) +[*](trusting_trust.md) +[*](apple.md) +[*](antialiasing.md) +[*](turing_machine.md) +[*](unretard.md) +[*](dick_reveal.md) +[*](programming_style.md) [*](gemini.md) -[*](lgbt.md) -[*](approximation.md) -[*](productivity_cult.md) -[*](openarena.md) -[*](fight.md) +[*](internet.md) +[*](hard_to_learn_easy_to_master.md) [*](tas.md) -[*](cc0.md) [*](bloat_monopoly.md) -[*](niggercoin.md) -[*](elon_musk.md) -[*](fascism.md) -[*](youtube.md) -[*](langtons_ant.md) -[*](cc.md) -[*](wiki_rights.md) -[*](quantum_gate.md) -[*](wiby.md) -[*](sjw.md) -[*](smart.md) -[*](randomness.md) -[*](approximation.md) -[*](diogenes.md) -[*](furry.md) -[*](bilinear.md) -[*](tinyphysicsengine.md) -[*](ascii.md) -[*](faggot.md) -[*](money.md) -[*](yes_they_can.md) -[*](unicode.md) -[*](pride.md) -[*](fediverse.md) -[*](computational_complexity.md) +[*](autoupdate.md) +[*](turing_machine.md) [*](primitive_3d.md) -[*](privacy.md) -[*](capitalist_singularity.md) -[*](markov_chain.md) -[*](complexity.md) -[*](mipmap.md) -[*](zuckerberg.md) -[*](game.md) -[*](interplanetary_internet.md) -[*](assembly.md) -[*](3d_rendering.md) -[*](cancer.md) -[*](nord_vpn.md) -[*](usenet.md) -[*](app.md) -[*](vector.md) -[*](bytecode.md) -[*](tpe.md) -[*](programming_style.md) -[*](ethics.md) -[*](rgb565.md) -[*](wiki_authors.md) -[*](fixed_point.md) -[*](marxism.md) -[*](real_number.md) -[*](wiki_post_mortem.md) -[*](game_engine.md) -[*](disease.md) +[*](copyright.md) +[*](analog.md) +[*](regex.md) +[*](windows.md) +[*](nd.md) +[*](go.md) +[*](crow_funding.md) +[*](sudoku.md) +[*](software.md) +[*](ai.md) +[*](bilinear.md) +[*](brainfuck.md) +[*](wiki_pages.md) +[*](bullshit.md) +[*](raylib.md) +[*](sigbovik.md) +[*](reddit.md) +[*](steganography.md) +[*](earth.md) +[*](one.md) +[*](free.md) +[*](girl.md) +[*](morality.md) +[*](fun.md) +[*](permacomputing_wiki.md) +[*](faq.md) +[*](library.md) +[*](pseudoleft.md) +[*](microtransaction.md) +[*](wiki_pages.md) +[*](social_inertia.md) +[*](ancap.md) +[*](resnicks_termite.md) +[*](data_structure.md) +[*](wikiwikiweb.md) +[*](boot.md) +[*](liberalism.md) +[*](operating_system.md) +[*](normalization.md) +[*](permacomputing_wiki.md) +[*](paradigm.md) +[*](brain_software.md) +[*](holy_war.md) +[*](frameless.md) +[*](demoscene.md) +[*](docker.md) +[*](css.md) [*](tom_scott.md) +[*](lil.md) [*](unix_philosophy.md) -[*](communism.md) +[*](digital_signature.md) +[*](firmware.md) +[*](float.md) +[*](debugging.md) +[*](free_universe.md) +[*](marble_race.md) +[*](censorship.md) +[*](chaos.md) +[*](game_of_life.md) +[*](cyber.md) [*](wiki_style.md) -[*](left.md) -[*](dinosaur.md) -[*](bootstrap.md) -[*](fuck.md) +[*](unary.md) +[*](mental_outlaw.md) +[*](duke3d.md) +[*](openarena.md) +[*](modern_software.md) +[*](implicit.md) +[*](bit.md) +[*](exercises.md) +[*](reactionary_software.md) +[*](no_knowledge_proof.md) +[*](usa.md) +[*](nigger.md) +[*](copyfree.md) +[*](uxn.md) +[*](democracy.md) [*](work.md) -[*](zuckerberg.md) -[*](cache.md) -[*](primitive_3d.md) -[*](lrs_dictionary.md) -[*](42.md) -[*](neural_network.md) +[*](universe.md) +[*](girl.md) +[*](island.md) +[*](triangle.md) +[*](physics_engine.md) +[*](3d_modeling.md) +[*](go.md) +[*](doom.md) +[*](xxiivv.md) +[*](left.md) +[*](tom_scott.md) +[*](nokia.md) +[*](computational_complexity.md) +[*](xxiivv.md) +[*](nigger.md) +[*](modern.md) +[*](hyperoperation.md) +[*](acronym.md) +[*](bytebeat.md) [*](data_hoarding.md) -[*](complexity.md) -[*](less_retarded_software.md) -[*](windows.md) +[*](tattoo.md) +[*](distance.md) +[*](ai.md) +[*](axiom_of_choice.md) +[*](faggot.md) +[*](drummyfish.md) +[*](css.md) +[*](speech_synthesis.md) +[*](systemd.md) +[*](egoism.md) +[*](julia_set.md) +[*](vector.md) +[*](iq.md) +[*](watchdog.md) +[*](faggot.md) +[*](pseudoleft.md) +[*](duskos.md) +[*](bit_hack.md) +[*](temple_os.md) +[*](portal_rendering.md) +[*](e.md) +[*](rights_culture.md) +[*](brainfuck.md) +[*](encryption.md) +[*](security.md) +[*](triangle.md) +[*](compression.md) +[*](niger.md) +[*](raycasting.md) +[*](aaron_swartz.md) +[*](bytebeat.md) +[*](lgbt.md) +[*](harry_potter.md) +[*](copyleft.md) +[*](ronja.md) +[*](noise.md) +[*](tangram.md) +[*](terry_davis.md) +[*](pseudo3d.md) +[*](fork.md) +[*](public_domain_computer.md) +[*](tensor_product.md) +[*](chinese.md) +[*](anpac.md) +[*](tor.md) +[*](capitalism.md) +[*](lrs.md) +[*](soyence.md) +[*](comun.md) +[*](mandelbrot_set.md) +[*](regex.md) [*](downto.md) -[*](mainstream.md) -[*](global_discussion.md) -[*](see_through_clothes.md) -[*](arduboy.md) -[*](atan.md) +[*](portal_rendering.md) +[*](line.md) [*](semiconductor.md) -[*](fqa.md) -[*](bytebeat.md) -[*](backpropagation.md) -[*](pi.md) +[*](libre.md) +[*](temple_os.md) +[*](complexity.md) +[*](mechanical.md) +[*](steve_jobs.md) +[*](ancap.md) +[*](forth.md) +[*](robot.md) +[*](future_proof.md) +[*](interesting.md) +[*](docker.md) +[*](tattoo.md) +[*](no_knowledge_proof.md) +[*](build_engine.md) +[*](hero.md) +[*](femoid.md) +[*](slowly_boiling_the_frog.md) +[*](low_poly.md) +[*](abstraction.md) +[*](kids_these_days.md) +[*](logic_gate.md) +[*](social_inertia.md) +[*](free_universe.md) +[*](name_is_important.md) +[*](pd.md) +[*](sdf.md) +[*](zero.md) +[*](mental_outlaw.md) +[*](permacomputing_wiki.md) +[*](rsa.md) +[*](twos_complement.md) +[*](fascist.md) +[*](os.md) +[*](interaction_net.md) [*](terry_davis.md) -[*](go.md) -[*](sqrt.md) -[*](ai.md) -[*](analog.md) -[*](reactionary_software.md) -[*](compression.md) -[*](coc.md) -[*](censorship.md) -[*](greenwashing.md) -[*](steganography.md) -[*](assembly.md) -[*](marketing.md) -[*](open_console.md) -[*](math.md) -[*](4chan.md) -[*](mechanical.md) -[*](lambda_calculus.md) -[*](c_tutorial.md) -[*](ui.md) -[*](thrembo.md) -[*](frameless.md) -[*](atan.md) -[*](monad.md) -[*](black.md) -[*](splinternet.md) -[*](intellectual_property.md) -[*](everyone_does_it.md) -[*](cat_v.md) -[*](gay.md) -[*](apple.md) -[*](privacy.md) -[*](copyright.md) +[*](public_domain.md) +[*](google.md) +[*](julia_set.md) [*](elon_musk.md) -[*](history.md) -[*](wavelet_transform.md) -[*](encyclopedia.md) -[*](computer.md) -[*](gaywashing.md) -[*](fail_ab.md) -[*](xxiivv.md) -[*](copyleft.md) -[*](distance.md) +[*](usenet.md) +[*](fixed_point.md) +[*](suicide.md) +[*](interpolation.md) +[*](splinternet.md) +[*](game_engine.md) +[*](ascii_art.md) +[*](plan9.md) +[*](fantasy_console.md) +[*](duke3d.md) +[*](hexadecimal.md) +[*](double_buffering.md) +[*](murderer.md) +[*](algorithm.md) +[*](gender_studies.md) [*](free_culture.md) -[*](free_hardware.md) -[*](autostereogram.md) -[*](right.md) [*](ascii.md) -[*](needed.md) -[*](competition.md) -[*](love.md) -[*](crime_against_economy.md) -[*](p_vs_np.md) -[*](f2p.md) -[*](transistor.md) -[*](gnu.md) -[*](sw.md) -[*](gnu.md) -[*](kiss.md) -[*](attribution.md) -[*](easier_done_than_said.md) -[*](bitreich.md) -[*](normalization.md) -[*](analog.md) -[*](art.md) -[*](data_hoarding.md) -[*](quaternion.md) -[*](how_to.md) -[*](chess.md) -[*](interesting.md) -[*](deep_blue.md) -[*](portability.md) -[*](justice.md) -[*](fractal.md) -[*](semiconductor.md) -[*](quantum_gate.md) -[*](paradigm.md) -[*](education.md) -[*](left_right.md) -[*](less_retarded_society.md) -[*](free_software.md) -[*](bit_hack.md) -[*](interesting.md) -[*](island.md) -[*](ted_kaczynski.md) -[*](p_vs_np.md) -[*](hardware.md) -[*](bytecode.md) -[*](firmware.md) -[*](wizard.md) -[*](sigbovik.md) -[*](mandelbrot_set.md) -[*](plusnigger.md) -[*](kek.md) -[*](gui.md) -[*](collision_detection.md) -[*](usa.md) -[*](regex.md) -[*](education.md) -[*](antialiasing.md) -[*](npc.md) -[*](golang.md) -[*](freedom.md) -[*](io.md) -[*](countercomplex.md) -[*](e.md) -[*](open_console.md) -[*](optimization.md) -[*](rapeware.md) -[*](bootstrap.md) -[*](shit.md) -[*](lambda_calculus.md) -[*](software.md) -[*](wiki_rights.md) +[*](elo.md) [*](floss.md) -[*](saf.md) -[*](3d_rendering.md) -[*](unix.md) -[*](less_retarded_hardware.md) +[*](color.md) +[*](capitalism.md) +[*](disease.md) +[*](racetrack.md) +[*](john_carmack.md) [*](minigame.md) -[*](java.md) -[*](technology.md) -[*](collision_detection.md) -[*](aliasing.md) -[*](democracy.md) -[*](gui.md) +[*](freedom.md) +[*](zen.md) +[*](minimalism.md) +[*](interplanetary_internet.md) +[*](race.md) +[*](update_culture.md) +[*](esolang.md) +[*](main.md) +[*](trusting_trust.md) +[*](suicide.md) +[*](myths.md) +[*](twos_complement.md) +[*](cloud.md) +[*](femoid.md) +[*](mainstream.md) +[*](atheism.md) +[*](graveyard.md) +[*](usa.md) +[*](memory_management.md) +[*](fun.md) +[*](bloat.md) +[*](furry.md) +[*](sin.md) +[*](harry_potter.md) +[*](sanism.md) +[*](compsci.md) +[*](gemini.md) +[*](arch.md) +[*](rsa.md) [*](function.md) -[*](hero_culture.md) -[*](cancer.md) -[*](left.md) -[*](logic.md) -[*](phd.md) -[*](plusnigger.md) -[*](competition.md) -[*](people.md) +[*](double_buffering.md) +[*](productivity_cult.md) +[*](ascii.md) [*](graveyard.md) -[*](unary.md) -[*](rationalwiki.md) -[*](selflessness.md) +[*](java.md) +[*](cc0.md) +[*](anarch.md) [*](hack.md) -[*](e.md) -[*](tpe.md) -[*](sanism.md) -[*](copyright.md) -[*](blender.md) -[*](cyber.md) -[*](liberalism.md) -[*](systemd.md) -[*](npc.md) -[*](jargon_file.md) -[*](microtransaction.md) -[*](science.md) -[*](determinism.md) -[*](sw.md) -[*](tensor_product.md) -[*](tangram.md) -[*](c_pitfalls.md) -[*](xd.md) -[*](free_body.md) -[*](mechanical.md) -[*](21st_century.md) -[*](toxic.md) +[*](doom.md) +[*](dungeons_and_dragons.md) +[*](good_enough.md) +[*](nokia.md) +[*](3d_model.md) +[*](tinyphysicsengine.md) +[*](os.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](art.md) +[*](viznut.md) +[*](hacker_culture.md) +[*](capitalist_singularity.md) +[*](kek.md) +[*](ascii.md) +[*](netstalking.md) [*](technology.md) -[*](exercises.md) -[*](charity_sex.md) -[*](hard_to_learn_easy_to_master.md) -[*](ram.md) -[*](cracker.md) -[*](low_poly.md) -[*](ram.md) -[*](furry.md) -[*](bbs.md) -[*](charity_sex.md) -[*](programming.md) -[*](disease.md) -[*](portal_rendering.md) -[*](pseudorandomness.md) -[*](racism.md) -[*](unix_philosophy.md) +[*](axiom_of_choice.md) +[*](public_domain.md) +[*](programming_style.md) +[*](democracy.md) +[*](wiki_style.md) +[*](suckless.md) +[*](mechanical.md) +[*](complexity.md) +[*](free_will.md) +[*](wizard.md) +[*](murderer.md) +[*](optimization.md) [*](proprietary_software.md) -[*](holy_war.md) -[*](sdf.md) -[*](tensor_product.md) -[*](framework.md) +[*](kiss.md) +[*](compression.md) +[*](approximation.md) +[*](app.md) +[*](world_broadcast.md) +[*](cracker.md) +[*](gay.md) +[*](logic.md) +[*](unicode.md) +[*](free_body.md) +[*](xxiivv.md) +[*](free_software.md) +[*](compression.md) +[*](io.md) +[*](boot.md) +[*](distance.md) +[*](culture.md) +[*](real_number.md) +[*](sqrt.md) +[*](dynamic_programming.md) +[*](c_pitfalls.md) +[*](yes_they_can.md) +[*](formal_language.md) +[*](marble_race.md) +[*](computer.md) +[*](used.md) +[*](science.md) +[*](suckless.md) +[*](bloat.md) +[*](jedi_engine.md) +[*](ethics.md) +[*](jargon_file.md) +[*](autoupdate.md) +[*](creative_commons.md) +[*](ai.md) +[*](information.md) +[*](billboard.md) +[*](trusting_trust.md) +[*](microsoft.md) +[*](qubit.md) [*](byte.md) -[*](suicide.md) -[*](rule110.md) -[*](crypto.md) -[*](pseudoleft.md) +[*](line.md) +[*](explicit.md) +[*](malware.md) +[*](intellectual_property.md) +[*](randomness.md) +[*](newspeak.md) +[*](blender.md) +[*](military.md) +[*](less_retarded_hardware.md) +[*](bytecode.md) +[*](number.md) +[*](mud.md) +[*](operating_system.md) +[*](free_speech.md) +[*](cloud.md) +[*](qubit.md) +[*](copyleft.md) +[*](chaos.md) +[*](fascist.md) +[*](encyclopedia.md) +[*](cc0.md) +[*](crime_against_economy.md) [*](physics.md) -[*](bazaar.md) +[*](tech.md) +[*](often_confused.md) +[*](combinatorics.md) +[*](wiki_rights.md) +[*](good_enough.md) [*](niggercoin.md) -[*](emoticon.md) -[*](murderer.md) -[*](lmao.md) -[*](primitive_3d.md) -[*](fqa.md) -[*](javascript.md) -[*](people.md) -[*](dependency.md) -[*](liberalism.md) -[*](float.md) -[*](niger.md) -[*](forth.md) -[*](game.md) -[*](wizard.md) -[*](p_vs_np.md) -[*](jedi_engine.md) -[*](coding.md) -[*](easier_done_than_said.md) -[*](internet.md) -[*](programming_style.md) -[*](black.md) -[*](markov_chain.md) -[*](digital.md) -[*](fractal.md) -[*](npc.md) -[*](world_broadcast.md) -[*](mob_software.md) -[*](less_retarded_society.md) -[*](README.md) -[*](physics.md) -[*](gopher.md) -[*](one.md) -[*](data_structure.md) -[*](interpolation.md) -[*](football.md) -[*](sjw.md) -[*](justice.md) -[*](hw.md) -[*](capitalism.md) -[*](whale.md) -[*](no_knowledge_proof.md) -[*](countercomplex.md) -[*](backgammon.md) -[*](privacy.md) -[*](lgbt.md) -[*](elon_musk.md) -[*](usenet.md) -[*](racism.md) -[*](ui.md) -[*](foss.md) -[*](freedom.md) -[*](distrohopping.md) -[*](gui.md) -[*](golang.md) -[*](foss.md) [*](hardware.md) -[*](pseudorandomness.md) -[*](zero.md) -[*](mud.md) -[*](trolling.md) -[*](tom_scott.md) -[*](nd.md) -[*](fascist.md) -[*](deferred_shading.md) -[*](ascii_art.md) -[*](twos_complement.md) -[*](tattoo.md) -[*](3d_rendering.md) -[*](formal_language.md) -[*](app.md) -[*](sanism.md) -[*](floss.md) -[*](mainstream.md) +[*](x86.md) +[*](vim.md) [*](ssao.md) -[*](pi.md) -[*](minimalism.md) -[*](ubi.md) -[*](john_carmack.md) -[*](geek.md) -[*](bootstrap.md) -[*](cheating.md) -[*](fun.md) -[*](girl.md) -[*](security.md) +[*](framework.md) +[*](bs.md) +[*](chinese.md) [*](trolling.md) -[*](niggercoin.md) -[*](crime_against_economy.md) -[*](bullshit.md) -[*](name_is_important.md) -[*](io.md) -[*](neural_network.md) -[*](cpu.md) -[*](billboard.md) -[*](venus_project.md) +[*](acronym.md) +[*](triangle.md) +[*](wikidata.md) +[*](plusnigger.md) +[*](devuan.md) [*](entrepreneur.md) -[*](marxism.md) -[*](computational_complexity.md) -[*](low_poly.md) -[*](altruism.md) -[*](infinity.md) -[*](venus_project.md) -[*](body_shaming.md) -[*](entropy.md) -[*](malware.md) -[*](linux.md) -[*](toxic.md) +[*](less_retarded_hardware.md) +[*](soyence.md) +[*](easy_to_learn_hard_to_master.md) [*](piracy.md) -[*](hexadecimal.md) -[*](quaternion.md) -[*](ted_kaczynski.md) +[*](game_of_life.md) +[*](frameless.md) +[*](de_facto.md) [*](steve_jobs.md) -[*](fear_culture.md) -[*](faq.md) -[*](fork.md) -[*](raycastlib.md) -[*](libertarianism.md) -[*](rights_culture.md) -[*](algorithm.md) -[*](compiler_bomb.md) -[*](netstalking.md) -[*](teletext.md) -[*](x86.md) -[*](anal_bead.md) -[*](ronja.md) -[*](forth.md) -[*](freedom.md) -[*](library.md) -[*](temple_os.md) -[*](dungeons_and_dragons.md) -[*](consumerism.md) -[*](piracy.md) -[*](digital_signature.md) -[*](cyber.md) -[*](wikipedia.md) -[*](operating_system.md) -[*](wiby.md) -[*](motivation.md) -[*](cc.md) -[*](brain_software.md) -[*](diogenes.md) -[*](fourier_transform.md) -[*](open_source.md) -[*](wikiwikiweb.md) -[*](evil.md) -[*](acronym.md) -[*](speech_synthesis.md) -[*](flatland.md) -[*](nanogenmo.md) -[*](copyfree.md) -[*](programming_style.md) -[*](jargon_file.md) +[*](foss.md) +[*](splinternet.md) +[*](interesting.md) +[*](free_body.md) +[*](race.md) +[*](universe.md) +[*](copyleft.md) +[*](cat_v.md) +[*](quaternion.md) +[*](beauty.md) +[*](autostereogram.md) +[*](hacking.md) +[*](cancer.md) +[*](gopher.md) +[*](no_knowledge_proof.md) +[*](hero.md) +[*](wiki_pages.md) +[*](lrs.md) +[*](comment.md) +[*](apple.md) +[*](black.md) +[*](island.md) +[*](freedom.md) +[*](c_pitfalls.md) +[*](cracking.md) +[*](venus_project.md) +[*](microtransaction.md) +[*](programming_language.md) +[*](drummyfish.md) [*](culture.md) -[*](javascript.md) -[*](chasm_the_rift.md) -[*](myths.md) -[*](zen.md) -[*](crow_funding.md) -[*](books.md) -[*](tranny_software.md) +[*](bloat.md) +[*](color.md) +[*](tor.md) +[*](justice.md) [*](pi.md) -[*](marketing.md) -[*](newspeak.md) -[*](linear_algebra.md) -[*](pseudo3d.md) -[*](productivity_cult.md) -[*](information.md) -[*](woman.md) -[*](quantum_gate.md) -[*](trusting_trust.md) -[*](attribution.md) -[*](chess.md) -[*](whale.md) -[*](microtransaction.md) -[*](free.md) -[*](library.md) -[*](memory_management.md) -[*](langtons_ant.md) -[*](often_confused.md) -[*](collapse.md) -[*](unary.md) -[*](monad.md) -[*](progress.md) -[*](nc.md) +[*](john_carmack.md) +[*](infinity.md) +[*](just_werks.md) +[*](geek.md) +[*](oop.md) +[*](hexadecimal.md) +[*](settled.md) +[*](faq.md) +[*](kek.md) [*](xonotic.md) -[*](audiophilia.md) -[*](harry_potter.md) -[*](go.md) +[*](number.md) +[*](beauty.md) +[*](open_source.md) +[*](trolling.md) +[*](old.md) +[*](fourier_transform.md) +[*](git.md) +[*](malware.md) +[*](reddit.md) +[*](jesus.md) [*](english.md) -[*](bytebeat.md) -[*](black.md) -[*](noise.md) -[*](avpd.md) -[*](left_right.md) -[*](greenwashing.md) -[*](suckless.md) +[*](pseudominimalism.md) +[*](iq.md) +[*](smol_internet.md) +[*](netstalking.md) +[*](consumerism.md) +[*](troll.md) +[*](saf.md) +[*](docker.md) +[*](fight.md) +[*](byte.md) +[*](programming_tips.md) +[*](openarena.md) +[*](boat.md) [*](quine.md) -[*](graveyard.md) -[*](information.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](sin.md) -[*](anarch.md) -[*](often_confused.md) -[*](nigger.md) -[*](pride.md) -[*](hexadecimal.md) -[*](fizzbuzz.md) +[*](wiki_authors.md) +[*](coc.md) +[*](color.md) +[*](whale.md) +[*](raycasting.md) +[*](finished.md) +[*](education.md) +[*](fixed_point.md) +[*](toxic.md) +[*](semiconductor.md) +[*](line.md) +[*](libre.md) +[*](www.md) +[*](anarchism.md) +[*](open_source.md) +[*](markov_chain.md) +[*](mandelbrot_set.md) +[*](binary.md) +[*](free_speech.md) +[*](ted_kaczynski.md) +[*](float.md) +[*](free_hardware.md) +[*](framework.md) +[*](deferred_shading.md) +[*](combinatorics.md) +[*](fun.md) +[*](iq.md) +[*](bitreich.md) +[*](compiler_bomb.md) +[*](loc.md) +[*](hacker_culture.md) +[*](cos.md) +[*](selflessness.md) +[*](ioccc.md) +[*](democracy.md) +[*](42.md) +[*](name_is_important.md) +[*](easier_done_than_said.md) +[*](java.md) +[*](unix_philosophy.md) +[*](3d_model.md) +[*](npc.md) +[*](feminism.md) +[*](rationalwiki.md) +[*](githopping.md) +[*](entrepreneur.md) +[*](gender_studies.md) +[*](myths.md) +[*](shogi.md) +[*](physics.md) +[*](digital_signature.md) +[*](distance.md) [*](plan9.md) -[*](double_buffering.md) -[*](small3dlib.md) -[*](brainfuck.md) -[*](anal_bead.md) -[*](pokitto.md) +[*](robot.md) +[*](compsci.md) +[*](lrs_wiki.md) +[*](xd.md) +[*](atan.md) +[*](wikipedia.md) +[*](python.md) +[*](mob_software.md) +[*](wiki_post_mortem.md) +[*](aliasing.md) +[*](unix_philosophy.md) +[*](political_correctness.md) +[*](usenet.md) +[*](competition.md) +[*](history.md) +[*](collapse.md) +[*](island.md) +[*](feminism.md) +[*](npc.md) +[*](soydev.md) +[*](cache.md) +[*](graphics.md) [*](trump.md) -[*](interpolation.md) -[*](free_speech.md) -[*](intellectual_property.md) -[*](firmware.md) -[*](kiwifarms.md) -[*](cloud.md) -[*](recursion.md) [*](shader.md) -[*](aaron_swartz.md) -[*](splinternet.md) -[*](bbs.md) -[*](demoscene.md) -[*](acronym.md) -[*](raylib.md) -[*](color.md) -[*](floss.md) +[*](42.md) +[*](coding.md) +[*](marketing.md) +[*](ssao.md) +[*](niger.md) +[*](42.md) +[*](luke_smith.md) +[*](avpd.md) +[*](lrs_wiki.md) +[*](collision_detection.md) +[*](ram.md) +[*](sjw.md) +[*](everyone_does_it.md) +[*](see_through_clothes.md) +[*](disease.md) +[*](graphics.md) +[*](chaos.md) +[*](less_retarded_society.md) +[*](fight.md) +[*](unicode.md) +[*](music.md) +[*](teletext.md) +[*](elo.md) +[*](software.md) +[*](zero.md) +[*](proprietary.md) +[*](comment.md) [*](x86.md) -[*](float.md) -[*](pseudominimalism.md) -[*](pseudorandomness.md) -[*](throwaway_script.md) +[*](xonotic.md) +[*](interpolation.md) +[*](right.md) +[*](fixed_point.md) +[*](marketing.md) +[*](encyclopedia.md) +[*](pseudo3d.md) +[*](de_facto.md) +[*](resnicks_termite.md) +[*](c.md) +[*](wiki_rights.md) +[*](21st_century.md) +[*](maintenance.md) +[*](nord_vpn.md) +[*](anpac.md) +[*](black.md) +[*](determinism.md) +[*](zuckerberg.md) +[*](settled.md) +[*](plusnigger.md) +[*](computational_complexity.md) +[*](normalization.md) +[*](fractal.md) +[*](update_culture.md) +[*](name_is_important.md) +[*](phd.md) +[*](wow.md) [*](love.md) -[*](throwaway_script.md) -[*](free_body.md) -[*](modern_software.md) -[*](distance.md) +[*](settled.md) +[*](goodbye_world.md) [*](chinese.md) -[*](rust.md) -[*](sjw.md) -[*](aaron_swartz.md) -[*](kids_these_days.md) -[*](100r.md) -[*](selflessness.md) -[*](vim.md) -[*](atheism.md) -[*](robot.md) -[*](openarena.md) -[*](c.md) -[*](needed.md) -[*](nokia.md) -[*](cpp.md) -[*](dodleston.md) -[*](programming_tips.md) -[*](internet.md) -[*](gopher.md) -[*](ssao.md) -[*](regex.md) -[*](bit.md) -[*](exercises.md) -[*](randomness.md) -[*](duskos.md) -[*](work.md) -[*](gnu.md) -[*](windows.md) -[*](usa.md) -[*](boat.md) -[*](gigachad.md) +[*](easy_to_learn_hard_to_master.md) +[*](cat_v.md) +[*](golang.md) +[*](README.md) +[*](dick_reveal.md) +[*](4chan.md) +[*](version_numbering.md) +[*](lambda_calculus.md) +[*](neural_network.md) +[*](sqrt.md) +[*](openai.md) +[*](speech_synthesis.md) +[*](gay.md) [*](bill_gates.md) -[*](rights_culture.md) -[*](microtheft.md) -[*](docker.md) +[*](billboard.md) +[*](rms.md) +[*](paywall.md) +[*](rms.md) +[*](floss.md) +[*](piracy.md) +[*](zero.md) +[*](niggercoin.md) +[*](how_to.md) +[*](data_structure.md) +[*](linux.md) +[*](binary.md) +[*](compiler_bomb.md) +[*](portability.md) +[*](windows.md) +[*](esolang.md) +[*](windows.md) +[*](copyfree.md) +[*](unicode.md) +[*](mud.md) +[*](tor.md) +[*](shit.md) +[*](collision_detection.md) +[*](less_retarded_software.md) +[*](f2p.md) +[*](main.md) +[*](pseudorandomness.md) +[*](c_tutorial.md) +[*](demo.md) +[*](prime.md) +[*](minimalism.md) +[*](logic_circuit.md) +[*](niger.md) +[*](justice.md) +[*](interaction_net.md) [*](ubi.md) -[*](paradigm.md) -[*](wow.md) +[*](gnu.md) +[*](assertiveness.md) +[*](p_vs_np.md) +[*](trump.md) +[*](portal_rendering.md) +[*](bazaar.md) +[*](fractal.md) +[*](gui.md) +[*](devuan.md) +[*](tangram.md) +[*](jesus.md) +[*](sigbovik.md) +[*](noise.md) +[*](determinism.md) +[*](ram.md) +[*](smol_internet.md) +[*](os.md) +[*](marble_race.md) +[*](githopping.md) +[*](randomness.md) +[*](ancap.md) +[*](future_proof.md) +[*](javascript.md) +[*](raycastlib.md) +[*](abstraction.md) +[*](determinism.md) +[*](libertarianism.md) +[*](tech.md) +[*](newspeak.md) +[*](fizzbuzz.md) [*](demo.md) +[*](bit.md) +[*](wiki_rights.md) +[*](countercomplex.md) +[*](tas.md) +[*](shit.md) +[*](capitalist_software.md) +[*](internet.md) +[*](resnicks_termite.md) +[*](bazaar.md) +[*](linear_algebra.md) +[*](app.md) [*](axiom_of_choice.md) -[*](speech_synthesis.md) -[*](kids_these_days.md) +[*](cpp.md) +[*](interplanetary_internet.md) +[*](fear_culture.md) +[*](intellectual_property.md) +[*](collision.md) +[*](corporation.md) +[*](needed.md) +[*](sw_rendering.md) +[*](julia_set.md) +[*](john_carmack.md) +[*](rsa.md) +[*](political_correctness.md) +[*](bootstrap.md) +[*](lmao.md) +[*](wiki_stats.md) +[*](dependency.md) +[*](bill_gates.md) +[*](morality.md) +[*](motivation.md) +[*](corporation.md) +[*](golang.md) [*](sanism.md) -[*](paywall.md) -[*](small3dlib.md) +[*](dynamic_programming.md) +[*](frameless.md) +[*](palette.md) +[*](cracking.md) +[*](flatland.md) +[*](c_tutorial.md) +[*](books.md) +[*](zuckerberg.md) +[*](competition.md) +[*](maintenance.md) +[*](logic.md) +[*](interesting.md) +[*](rgb332.md) +[*](billboard.md) +[*](gnu.md) +[*](ram.md) +[*](earth.md) +[*](work.md) +[*](raylib.md) +[*](dog.md) [*](old.md) -[*](tech.md) -[*](free.md) -[*](encryption.md) -[*](f2p.md) -[*](girl.md) -[*](sw_rendering.md) -[*](compiler_bomb.md) -[*](shogi.md) -[*](doom.md) -[*](bilinear.md) -[*](physics_engine.md) -[*](game_engine.md) -[*](doom.md) -[*](sw.md) -[*](ethics.md) -[*](name_is_important.md) +[*](lrs.md) +[*](randomness.md) +[*](smol_internet.md) +[*](pseudominimalism.md) +[*](left.md) +[*](mob_software.md) +[*](anarch.md) +[*](xd.md) +[*](education.md) +[*](mud.md) +[*](less_retarded_hardware.md) +[*](chess.md) +[*](wizard.md) +[*](marketing.md) +[*](rationalwiki.md) +[*](patent.md) +[*](neural_network.md) +[*](pokitto.md) +[*](capitalist_singularity.md) +[*](gui.md) +[*](permacomputing.md) +[*](programming.md) +[*](downto.md) +[*](usa.md) +[*](npc.md) +[*](fediverse.md) +[*](libertarianism.md) +[*](cc.md) +[*](fascism.md) +[*](toxic.md) +[*](phd.md) +[*](feminism.md) +[*](arch.md) [*](world_broadcast.md) -[*](love.md) +[*](lambda_calculus.md) +[*](money.md) +[*](library.md) +[*](deferred_shading.md) [*](english.md) -[*](fixed_point.md) +[*](algorithm.md) +[*](fqa.md) +[*](hacking.md) +[*](fizzbuzz.md) +[*](chess.md) +[*](lmao.md) +[*](java.md) +[*](fail_ab.md) +[*](minigame.md) +[*](game.md) +[*](cpu.md) +[*](javascript.md) +[*](living.md) +[*](beauty.md) +[*](vector.md) +[*](recursion.md) +[*](libre.md) +[*](smallchesslib.md) +[*](ubi.md) +[*](interpolation.md) +[*](openai.md) +[*](dodleston.md) +[*](unary.md) +[*](google.md) +[*](fsf.md) +[*](bs.md) +[*](assembly.md) +[*](quaternion.md) +[*](sw.md) +[*](nanogenmo.md) +[*](fantasy_console.md) +[*](acronym.md) +[*](double_buffering.md) +[*](communism.md) +[*](math.md) [*](dungeons_and_dragons.md) -[*](fuck.md) -[*](kwangmyong.md) -[*](number.md) -[*](fight_culture.md) +[*](fork.md) +[*](complexity.md) +[*](sw.md) +[*](furry.md) +[*](slowly_boiling_the_frog.md) +[*](cache.md) +[*](myths.md) +[*](c_sharp.md) +[*](woman.md) +[*](downto.md) +[*](hexadecimal.md) +[*](dependency.md) +[*](tangram.md) +[*](programming.md) +[*](robot.md) +[*](temple_os.md) +[*](future_proof.md) [*](crow_funding.md) -[*](game_engine.md) -[*](fascist.md) -[*](ted_kaczynski.md) -[*](programming_tips.md) -[*](io.md) -[*](color.md) -[*](money.md) -[*](cheating.md) -[*](chasm_the_rift.md) -[*](used.md) -[*](portability.md) -[*](tattoo.md) -[*](splinternet.md) -[*](permacomputing.md) -[*](digital_signature.md) +[*](rights_culture.md) +[*](21st_century.md) +[*](mainstream.md) +[*](diogenes.md) +[*](kiwifarms.md) +[*](often_confused.md) [*](sorting.md) -[*](raycastlib.md) -[*](wiki_post_mortem.md) -[*](pseudominimalism.md) -[*](fascist.md) -[*](earth.md) -[*](ancap.md) -[*](corporation.md) -[*](digital.md) -[*](universe.md) -[*](update_culture.md) -[*](debugging.md) -[*](tor.md) -[*](x86.md) -[*](democracy.md) -[*](iq.md) -[*](free_will.md) -[*](web.md) -[*](memory_management.md) +[*](vim.md) +[*](political_correctness.md) +[*](openai.md) +[*](cpu.md) +[*](selflessness.md) +[*](old.md) +[*](compsci.md) +[*](anal_bead.md) +[*](sorting.md) +[*](lambda_calculus.md) +[*](blender.md) +[*](entropy.md) +[*](trolling.md) +[*](loc.md) +[*](throwaway_script.md) +[*](rust.md) +[*](systemd.md) +[*](viznut.md) [*](nc.md) -[*](anarchism.md) -[*](facebook.md) -[*](antialiasing.md) -[*](easy_to_learn_hard_to_master.md) -[*](interaction_net.md) -[*](living.md) -[*](comment.md) -[*](patent.md) -[*](rapeware.md) +[*](censorship.md) [*](communism.md) -[*](mipmap.md) -[*](demo.md) -[*](collision_detection.md) -[*](nigger.md) -[*](foss.md) -[*](wow.md) -[*](aliasing.md) -[*](anpac.md) -[*](interplanetary_internet.md) -[*](deferred_shading.md) -[*](public_domain.md) -[*](collapse.md) -[*](suckless.md) +[*](ethics.md) +[*](unary.md) +[*](proprietary.md) +[*](bootstrap.md) +[*](football.md) +[*](oop.md) +[*](analog.md) +[*](magic.md) [*](linux.md) -[*](explicit.md) -[*](marble_race.md) -[*](devuan.md) -[*](stereotype.md) -[*](modern.md) -[*](bill_gates.md) -[*](billboard.md) -[*](deep_blue.md) -[*](trom.md) -[*](less_retarded_hardware.md) -[*](lil.md) -[*](optimization.md) -[*](real_number.md) -[*](gemini.md) -[*](python.md) -[*](chess.md) -[*](graveyard.md) -[*](settled.md) -[*](anal_bead.md) -[*](cache.md) -[*](wikidata.md) -[*](bs.md) -[*](chasm_the_rift.md) -[*](raylib.md) -[*](collision.md) -[*](monad.md) -[*](os.md) -[*](sigbovik.md) -[*](technology.md) -[*](physics_engine.md) -[*](jesus.md) -[*](twos_complement.md) -[*](troll.md) -[*](murderer.md) -[*](version_numbering.md) -[*](bs.md) -[*](hacking.md) -[*](geek.md) -[*](implicit.md) +[*](ssao.md) +[*](watchdog.md) +[*](cc.md) +[*](consumerism.md) +[*](racism.md) +[*](privacy.md) +[*](lmao.md) +[*](moderation.md) +[*](analytic_geometry.md) [*](small3dlib.md) -[*](youtube.md) -[*](3d_modeling.md) -[*](rgb565.md) -[*](mental_outlaw.md) -[*](comun.md) -[*](cancer.md) -[*](distance.md) -[*](forth.md) -[*](harry_potter.md) -[*](chinese.md) -[*](exercises.md) -[*](programming.md) -[*](demoscene.md) -[*](beauty.md) -[*](egoism.md) -[*](gigachad.md) -[*](de_facto.md) -[*](hacker_culture.md) -[*](goodbye_world.md) -[*](easier_done_than_said.md) -[*](deferred_shading.md) -[*](creative_commons.md) -[*](feminism.md) -[*](implicit.md) -[*](openarena.md) -[*](twos_complement.md) -[*](books.md) -[*](temple_os.md) -[*](slowly_boiling_the_frog.md) -[*](hw.md) -[*](encryption.md) -[*](computer.md) -[*](hero.md) -[*](lrs.md) -[*](compression.md) -[*](modern.md) -[*](zen.md) -[*](cache.md) -[*](attribution.md) -[*](see_through_clothes.md) +[*](sw.md) +[*](altruism.md) [*](paywall.md) -[*](trump.md) -[*](sudoku.md) +[*](git.md) +[*](smallchesslib.md) +[*](data_hoarding.md) +[*](wikiwikiweb.md) +[*](soydev.md) +[*](cc.md) +[*](wow.md) +[*](military.md) +[*](pride.md) +[*](moderation.md) +[*](watchdog.md) +[*](wavelet_transform.md) +[*](reactionary_software.md) +[*](tpe.md) +[*](copyright.md) +[*](geek.md) [*](leading_the_pig_to_the_slaughterhouse.md) -[*](anarch.md) -[*](newspeak.md) -[*](permacomputing_wiki.md) -[*](viznut.md) +[*](digital.md) +[*](lgbt.md) +[*](fqa.md) +[*](tinyphysicsengine.md) +[*](everyone_does_it.md) +[*](public_domain_computer.md) +[*](trom.md) [*](crime_against_economy.md) -[*](microtheft.md) -[*](faggot.md) -[*](ai.md) -[*](hacker_culture.md) -[*](cpu.md) -[*](ram.md) -[*](reactionary_software.md) -[*](boot.md) -[*](capitalism.md) -[*](hash.md) -[*](frameless.md) -[*](money.md) -[*](jedi_engine.md) +[*](quine.md) +[*](avpd.md) +[*](easier_done_than_said.md) +[*](noise.md) +[*](shader.md) +[*](jokes.md) +[*](pd.md) +[*](tinyphysicsengine.md) +[*](tensor_product.md) +[*](arduboy.md) +[*](everyone_does_it.md) +[*](gaywashing.md) +[*](de_facto.md) +[*](rust.md) [*](fourier_transform.md) +[*](kiwifarms.md) +[*](arduboy.md) [*](tech.md) -[*](tor.md) -[*](normalization.md) -[*](logic_gate.md) -[*](antialiasing.md) -[*](bloat.md) -[*](sdf.md) -[*](abstraction.md) -[*](evil.md) -[*](public_domain.md) -[*](nord_vpn.md) -[*](fun.md) -[*](usenet.md) -[*](reddit.md) -[*](future_proof.md) -[*](arch.md) -[*](raycasting.md) -[*](shogi.md) -[*](optimization.md) -[*](free_hardware.md) -[*](military.md) [*](digital_signature.md) -[*](lrs.md) -[*](finished.md) -[*](fork.md) -[*](crypto.md) -[*](diogenes.md) -[*](jesus.md) -[*](venus_project.md) -[*](tas.md) -[*](feminism.md) -[*](avpd.md) -[*](audiophilia.md) -[*](unretard.md) -[*](altruism.md) -[*](free_will.md) -[*](qubit.md) -[*](pd.md) -[*](facebook.md) -[*](c_tutorial.md) +[*](fqa.md) +[*](less_retarded_software.md) +[*](coding.md) +[*](langtons_ant.md) [*](qubit.md) -[*](brain_software.md) -[*](used.md) -[*](troll.md) -[*](anarchism.md) -[*](tinyphysicsengine.md) -[*](hacking.md) -[*](logic.md) -[*](how_to.md) -[*](pokitto.md) -[*](music.md) -[*](analog.md) -[*](wiki_pages.md) -[*](billboard.md) -[*](hack.md) -[*](4chan.md) -[*](free_universe.md) -[*](turing_machine.md) -[*](42.md) -[*](just_werks.md) -[*](drummyfish.md) +[*](small3dlib.md) +[*](backgammon.md) +[*](game_engine.md) +[*](nc.md) +[*](luke_smith.md) +[*](easy_to_learn_hard_to_master.md) +[*](low_poly.md) +[*](tpe.md) +[*](kids_these_days.md) +[*](unix.md) +[*](paradigm.md) +[*](shogi.md) +[*](audiophilia.md) +[*](free_body.md) +[*](demo.md) +[*](comun.md) +[*](markov_chain.md) +[*](living.md) +[*](crypto.md) +[*](holy_war.md) [*](youtube.md) -[*](autoupdate.md) -[*](rock.md) -[*](zuckerberg.md) -[*](pseudominimalism.md) -[*](rights_culture.md) -[*](race.md) -[*](double_buffering.md) -[*](gaywashing.md) -[*](raycasting.md) +[*](military.md) +[*](kek.md) +[*](memory_management.md) +[*](rule110.md) +[*](physics.md) +[*](100r.md) +[*](f2p.md) +[*](audiophilia.md) +[*](cheating.md) +[*](sorting.md) +[*](corporation.md) +[*](tranny_software.md) [*](crow_funding.md) -[*](game_of_life.md) -[*](music.md) +[*](ronja.md) +[*](reactionary_software.md) +[*](quantum_gate.md) +[*](football.md) +[*](arduboy.md) +[*](rock.md) +[*](egoism.md) +[*](rule110.md) +[*](lrs_dictionary.md) +[*](3d_modeling.md) +[*](charity_sex.md) +[*](shit.md) +[*](physics_engine.md) +[*](anal_bead.md) +[*](physics_engine.md) +[*](open_console.md) +[*](nord_vpn.md) +[*](rapeware.md) +[*](kwangmyong.md) +[*](ui.md) +[*](venus_project.md) +[*](javascript.md) +[*](data_hoarding.md) +[*](bloat_monopoly.md) +[*](shortcut_thinking.md) +[*](luke_smith.md) +[*](cpp.md) +[*](turing_machine.md) +[*](cracker.md) +[*](needed.md) +[*](trump.md) +[*](lgbt.md) +[*](see_through_clothes.md) +[*](art.md) +[*](cloud.md) +[*](math.md) +[*](disease.md) +[*](bit_hack.md) +[*](elon_musk.md) +[*](global_discussion.md) +[*](primitive_3d.md) +[*](left_right.md) +[*](soydev.md) [*](emoticon.md) -[*](ubi.md) -[*](graphics.md) -[*](cracking.md) -[*](procgen.md) +[*](communism.md) +[*](sigbovik.md) +[*](left.md) +[*](bit.md) +[*](dungeons_and_dragons.md) +[*](throwaway_script.md) +[*](hw.md) +[*](xonotic.md) +[*](version_numbering.md) +[*](niggercoin.md) +[*](chasm_the_rift.md) +[*](portability.md) +[*](marxism.md) +[*](gui.md) +[*](duke3d.md) +[*](floss.md) +[*](hard_to_learn_easy_to_master.md) +[*](capitalism.md) +[*](consumerism.md) +[*](saf.md) +[*](backpropagation.md) +[*](evil.md) +[*](wiki_post_mortem.md) +[*](security.md) +[*](music.md) +[*](graveyard.md) +[*](newspeak.md) +[*](game.md) +[*](optimization.md) +[*](thrembo.md) +[*](unix.md) +[*](attribution.md) +[*](cancer.md) +[*](used.md) +[*](sqrt.md) +[*](combinatorics.md) +[*](git.md) [*](reddit.md) -[*](cloud.md) +[*](software.md) +[*](pi.md) +[*](audiophilia.md) +[*](3d_rendering.md) +[*](murderer.md) +[*](collision_detection.md) +[*](transistor.md) +[*](io.md) +[*](real_number.md) +[*](plusnigger.md) +[*](easier_done_than_said.md) +[*](one.md) +[*](elon_musk.md) +[*](free_universe.md) +[*](monad.md) +[*](pi.md) +[*](facebook.md) +[*](free.md) +[*](hardware.md) +[*](marxism.md) +[*](productivity_cult.md) +[*](global_discussion.md) +[*](distrohopping.md) +[*](goodbye_world.md) +[*](flatland.md) +[*](fuck.md) +[*](hero_culture.md) +[*](evil.md) +[*](zen.md) +[*](smallchesslib.md) +[*](shortcut_thinking.md) +[*](low_poly.md) +[*](firmware.md) +[*](forth.md) +[*](free_software.md) +[*](approximation.md) +[*](science.md) +[*](fight_culture.md) +[*](infinity.md) +[*](computational_complexity.md) +[*](antialiasing.md) +[*](procgen.md) +[*](collapse.md) +[*](mandelbrot_set.md) +[*](langtons_ant.md) +[*](wiby.md) +[*](3d_rendering.md) +[*](wikidata.md) +[*](hacker_culture.md) +[*](elo.md) +[*](normalization.md) +[*](game_engine.md) +[*](morality.md) +[*](zuckerberg.md) +[*](pedophilia.md) +[*](wiki_style.md) +[*](attribution.md) +[*](raycastlib.md) +[*](fail_ab.md) +[*](recursion.md) +[*](fsf.md) +[*](app.md) +[*](modern.md) +[*](dodleston.md) +[*](c_tutorial.md) +[*](README.md) +[*](open_console.md) +[*](information.md) +[*](free_speech.md) +[*](hw.md) +[*](coc.md) +[*](jokes.md) +[*](free_hardware.md) +[*](debugging.md) +[*](e.md) +[*](deferred_shading.md) +[*](interplanetary_internet.md) +[*](function.md) +[*](vim.md) +[*](comment.md) +[*](linear_algebra.md) +[*](formal_language.md) +[*](prime.md) +[*](c.md) +[*](jargon_file.md) +[*](avpd.md) +[*](implicit.md) +[*](stereotype.md) +[*](free.md) +[*](capitalist_software.md) +[*](python.md) +[*](productivity_cult.md) +[*](fight_culture.md) +[*](analytic_geometry.md) +[*](body_shaming.md) [*](race.md) -[*](speech_synthesis.md) -[*](soyence.md) -[*](countercomplex.md) -[*](encyclopedia.md) -[*](rgb565.md) -[*](marble_race.md) -[*](sorting.md) -[*](tangram.md) +[*](moderation.md) +[*](license.md) +[*](bbs.md) +[*](c_sharp.md) +[*](work.md) [*](hero_culture.md) -[*](autostereogram.md) +[*](used.md) +[*](justice.md) +[*](pseudoleft.md) +[*](splinternet.md) +[*](ioccc.md) [*](facebook.md) -[*](devuan.md) -[*](apple.md) -[*](binary.md) -[*](wiki_stats.md) -[*](git.md) -[*](slowly_boiling_the_frog.md) -[*](explicit.md) -[*](anarchism.md) -[*](cc0.md) -[*](shader.md) -[*](lrs_wiki.md) -[*](compiler_bomb.md) -[*](history.md) -[*](lmao.md) -[*](terry_davis.md) -[*](sudoku.md) +[*](arch.md) +[*](aaron_swartz.md) +[*](duskos.md) +[*](usenet.md) +[*](youtube.md) +[*](permacomputing.md) +[*](wikidata.md) +[*](fear_culture.md) +[*](cheating.md) +[*](wikipedia.md) +[*](rgb565.md) +[*](build_engine.md) +[*](earth.md) +[*](cpp.md) +[*](pokitto.md) +[*](aliasing.md) +[*](fail_ab.md) +[*](formal_language.md) [*](transistor.md) -[*](collision.md) -[*](sqrt.md) -[*](comun.md) -[*](robot.md) -[*](gender_studies.md) -[*](phd.md) -[*](unretard.md) -[*](entrepreneur.md) -[*](tas.md) -[*](reactionary_software.md) +[*](procgen.md) +[*](wiki_stats.md) +[*](f2p.md) +[*](apple.md) +[*](p_vs_np.md) [*](pride.md) -[*](feminism.md) -[*](os.md) +[*](library.md) +[*](creative_commons.md) +[*](rust.md) +[*](emoticon.md) +[*](racism.md) +[*](rgb565.md) +[*](crypto.md) +[*](altruism.md) +[*](altruism.md) +[*](cos.md) +[*](faggot.md) +[*](often_confused.md) +[*](logic_circuit.md) +[*](whale.md) +[*](progress.md) +[*](steganography.md) +[*](throwaway_script.md) +[*](hero_culture.md) +[*](rms.md) +[*](jokes.md) +[*](fediverse.md) +[*](www.md) +[*](deep_blue.md) +[*](collapse.md) +[*](logic_gate.md) +[*](microtheft.md) +[*](rapeware.md) +[*](free_software.md) +[*](books.md) +[*](femoid.md) +[*](universe.md) +[*](creative_commons.md) +[*](marxism.md) +[*](right.md) +[*](bilinear.md) +[*](cyber.md) +[*](hw.md) +[*](exercises.md) +[*](kiwifarms.md) +[*](hyperoperation.md) +[*](libertarianism.md) +[*](body_shaming.md) [*](free_culture.md) -[*](brainfuck.md) -[*](tom_scott.md) -[*](quaternion.md) +[*](microsoft.md) +[*](binary.md) +[*](teletext.md) +[*](deep_blue.md) +[*](geek.md) +[*](gigachad.md) +[*](english.md) [*](license.md) +[*](procgen.md) +[*](minimalism.md) +[*](shogi.md) +[*](minigame.md) +[*](small3dlib.md) +[*](zen.md) +[*](kwangmyong.md) +[*](wizard.md) [*](dog.md) +[*](dodleston.md) +[*](python.md) +[*](palette.md) +[*](raycasting.md) +[*](logic_gate.md) +[*](game_of_life.md) +[*](cracker.md) +[*](bilinear.md) +[*](rock.md) +[*](just_werks.md) +[*](3d_modeling.md) +[*](thrembo.md) +[*](assertiveness.md) [*](raylib.md) -[*](censorship.md) -[*](cpp.md) -[*](logic_circuit.md) -[*](wiki_authors.md) -[*](lil.md) -[*](magic.md) -[*](dependency.md) -[*](information.md) -[*](proprietary.md) -[*](resnicks_termite.md) -[*](sw_rendering.md) -[*](entrepreneur.md) -[*](linear_algebra.md) -[*](tinyphysicsengine.md) -[*](data_hoarding.md) [*](distrohopping.md) -[*](political_correctness.md) -[*](egoism.md) -[*](qubit.md) -[*](line.md) -[*](unix.md) -[*](cos.md) -[*](fear_culture.md) -[*](unix_philosophy.md) -[*](compsci.md) -[*](audiophilia.md) -[*](greenwashing.md) -[*](nd.md) -[*](ioccc.md) -[*](living.md) -[*](fight.md) -[*](de_facto.md) -[*](downto.md) -[*](bullshit.md) -[*](marxism.md) -[*](100r.md) -[*](often_confused.md) -[*](viznut.md) -[*](iq.md) -[*](usa.md) -[*](determinism.md) -[*](rule110.md) -[*](hard_to_learn_easy_to_master.md) -[*](google.md) -[*](creative_commons.md) -[*](trusting_trust.md) -[*](downto.md) -[*](wiki_style.md) -[*](military.md) -[*](bit_hack.md) -[*](fediverse.md) -[*](boat.md) -[*](jokes.md) -[*](copyfree.md) -[*](smol_internet.md) -[*](oop.md) -[*](harry_potter.md) -[*](maintenance.md) -[*](julia_set.md) -[*](pedophilia.md) -[*](app.md) -[*](john_carmack.md) -[*](malware.md) -[*](rms.md) -[*](resnicks_termite.md) +[*](dependency.md) +[*](bloat_monopoly.md) +[*](brain_software.md) +[*](competition.md) +[*](open_console.md) +[*](piracy.md) +[*](holy_war.md) +[*](lil.md) +[*](hardware.md) +[*](dinosaur.md) diff --git a/wiki_pages.md b/wiki_pages.md index 1e1ab92..cdb4585 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)** (2) -- **[3d_model](3d_model.md)** (243) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (285) -- **[42](42.md)** (11) -- **[4chan](4chan.md)** (23) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (387) -- **[ai](ai.md)** (12) -- **[algorithm](algorithm.md)** (219) -- **[aliasing](aliasing.md)** (58) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (2) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (93) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (27) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (16) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (4) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (18) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (10) -- **[ascii](ascii.md)** (151) -- **[ascii_art](ascii_art.md)** (205) -- **[assembly](assembly.md)** (255) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (22) -- **[atheism](atheism.md)** (14) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autostereogram](autostereogram.md)** (119) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (28) -- **[beauty](beauty.md)** (22) -- **[bilinear](bilinear.md)** (117) -- **[bill_gates](bill_gates.md)** (27) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (138) -- **[bit](bit.md)** (4) -- **[bit_hack](bit_hack.md)** (172) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (194) -- **[bloat_monopoly](bloat_monopoly.md)** (11) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (32) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (41) -- **[brain_software](brain_software.md)** (10) -- **[brainfuck](brainfuck.md)** (122) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (44) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (72) -- **[bytecode](bytecode.md)** (280) -- **[c](c.md)** (309) -- **[c_pitfalls](c_pitfalls.md)** (122) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2136) -- **[cache](cache.md)** (27) -- **[cancer](cancer.md)** (23) -- **[capitalism](capitalism.md)** (125) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (12) -- **[censorship](censorship.md)** (43) -- **[chaos](chaos.md)** (108) -- **[charity_sex](charity_sex.md)** (2) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (8) -- **[chess](chess.md)** (303) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[coc](coc.md)** (15) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (20) -- **[color](color.md)** (25) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (16) -- **[communism](communism.md)** (26) -- **[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)** (114) -- **[comun](comun.md)** (90) -- **[consumerism](consumerism.md)** (12) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (29) -- **[copyright](copyright.md)** (47) -- **[corporation](corporation.md)** (18) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (4) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (15) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (34) -- **[css](css.md)** (66) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[debugging](debugging.md)** (119) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (20) -- **[dependency](dependency.md)** (50) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (8) -- **[digital](digital.md)** (14) -- **[digital_signature](digital_signature.md)** (8) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (34) -- **[disease](disease.md)** (35) -- **[distance](distance.md)** (124) -- **[distrohopping](distrohopping.md)** (10) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (31) -- **[doom](doom.md)** (50) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[drummyfish](drummyfish.md)** (33) -- **[duke3d](duke3d.md)** (20) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (6) -- **[duskos](duskos.md)** (28) -- **[dynamic_programming](dynamic_programming.md)** (44) -- **[e](e.md)** (22) -- **[earth](earth.md)** (51) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (15) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (124) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (70) -- **[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)** (10) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (20) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (2) -- **[fail_ab](fail_ab.md)** (24) -- **[fantasy_console](fantasy_console.md)** (40) -- **[faq](faq.md)** (237) -- **[fascism](fascism.md)** (23) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (47) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (8) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (151) -- **[fizzbuzz](fizzbuzz.md)** (158) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (49) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (128) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (69) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (36) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (60) -- **[free_speech](free_speech.md)** (16) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (14) -- **[fsf](fsf.md)** (17) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (30) -- **[function](function.md)** (109) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (42) -- **[game](game.md)** (159) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (10) -- **[gender_studies](gender_studies.md)** (2) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (70) -- **[githopping](githopping.md)** (4) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (53) -- **[go](go.md)** (96) -- **[golang](golang.md)** (17) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (20) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (28) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (75) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (10) -- **[hexadecimal](hexadecimal.md)** (4) -- **[history](history.md)** (96) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (190) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (21) -- **[internet](internet.md)** (104) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (45) -- **[io](io.md)** (16) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (111) -- **[island](island.md)** (38) -- **[jargon_file](jargon_file.md)** (8) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (84) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (77) -- **[john_carmack](john_carmack.md)** (20) -- **[jokes](jokes.md)** (76) -- **[julia_set](julia_set.md)** (92) -- **[just_werks](just_werks.md)** (22) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (6) -- **[kids_these_days](kids_these_days.md)** (2) -- **[kiss](kiss.md)** (37) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (158) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (53) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (128) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (20) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (56) -- **[lil](lil.md)** (20) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (116) -- **[linux](linux.md)** (61) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (40) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (11) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[love](love.md)** (24) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (156) -- **[lrs_dictionary](lrs_dictionary.md)** (89) -- **[lrs_wiki](lrs_wiki.md)** (23) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (116) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (8) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (26) -- **[markov_chain](markov_chain.md)** (100) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (4) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (53) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (37) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (14) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (2) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (43) -- **[myths](myths.md)** (11) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (64) -- **[netstalking](netstalking.md)** (9) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (8) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (27) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (112) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (2) -- **[number](number.md)** (292) -- **[often_confused](often_confused.md)** (103) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (62) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (35) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (68) -- **[optimization](optimization.md)** (99) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (23) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (32) -- **[people](people.md)** (56) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (13) -- **[phd](phd.md)** (8) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (147) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (68) -- **[portability](portability.md)** (166) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (2) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (24) -- **[procgen](procgen.md)** (352) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (33) -- **[programming_language](programming_language.md)** (142) -- **[programming_style](programming_style.md)** (73) -- **[programming_tips](programming_tips.md)** (16) -- **[progress](progress.md)** (29) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (8) -- **[pseudorandomness](pseudorandomness.md)** (4) -- **[public_domain](public_domain.md)** (86) -- **[public_domain_computer](public_domain_computer.md)** (54) -- **[python](python.md)** (4) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (44) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (9) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1708) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (8) -- **[raycasting](raycasting.md)** (291) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (22) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (48) -- **[recursion](recursion.md)** (64) -- **[reddit](reddit.md)** (20) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (206) -- **[rgb332](rgb332.md)** (91) -- **[rgb565](rgb565.md)** (4) -- **[right](right.md)** (2) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (44) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (43) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (23) -- **[rule110](rule110.md)** (107) -- **[rust](rust.md)** (24) -- **[saf](saf.md)** (63) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (20) -- **[sdf](sdf.md)** (25) -- **[security](security.md)** (15) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (17) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (15) -- **[shit](shit.md)** (29) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (10) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (179) -- **[sjw](sjw.md)** (24) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (8) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (234) -- **[soydev](soydev.md)** (33) -- **[soyence](soyence.md)** (45) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (74) -- **[ssao](ssao.md)** (10) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (148) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (206) -- **[suicide](suicide.md)** (8) -- **[sw](sw.md)** (8) -- **[sw_rendering](sw_rendering.md)** (63) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (66) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (2) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (6) -- **[ted_kaczynski](ted_kaczynski.md)** (26) -- **[teletext](teletext.md)** (13) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (11) -- **[thrembo](thrembo.md)** (15) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny_software](tranny_software.md)** (27) -- **[transistor](transistor.md)** (30) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (18) -- **[trom](trom.md)** (27) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (207) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (30) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unicode](unicode.md)** (6) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (11) -- **[update_culture](update_culture.md)** (19) -- **[usa](usa.md)** (55) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (44) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (60) -- **[version_numbering](version_numbering.md)** (50) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (8) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (14) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (219) -- **[wiki_style](wiki_style.md)** (69) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (75) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (8) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (105) -- **[work](work.md)** (28) -- **[world_broadcast](world_broadcast.md)** (12) -- **[wow](wow.md)** (8) -- **[www](www.md)** (107) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (101) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (6) -- **[youtube](youtube.md)** (20) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (30) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file +**[100r](100r.md)** (3) -- **[21st_century](21st_century.md)** (2) -- **[3d_model](3d_model.md)** (243) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (285) -- **[42](42.md)** (12) -- **[4chan](4chan.md)** (23) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (387) -- **[ai](ai.md)** (12) -- **[algorithm](algorithm.md)** (219) -- **[aliasing](aliasing.md)** (58) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (2) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (93) -- **[anarchism](anarchism.md)** (15) -- **[ancap](ancap.md)** (27) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (16) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (4) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (18) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (10) -- **[ascii](ascii.md)** (151) -- **[ascii_art](ascii_art.md)** (205) -- **[assembly](assembly.md)** (255) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (22) -- **[atheism](atheism.md)** (14) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autostereogram](autostereogram.md)** (119) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (28) -- **[beauty](beauty.md)** (22) -- **[bilinear](bilinear.md)** (117) -- **[bill_gates](bill_gates.md)** (27) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (138) -- **[bit](bit.md)** (4) -- **[bit_hack](bit_hack.md)** (172) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (194) -- **[bloat_monopoly](bloat_monopoly.md)** (11) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (32) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (41) -- **[brain_software](brain_software.md)** (10) -- **[brainfuck](brainfuck.md)** (122) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (46) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (72) -- **[bytecode](bytecode.md)** (280) -- **[c](c.md)** (309) -- **[c_pitfalls](c_pitfalls.md)** (150) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2151) -- **[cache](cache.md)** (27) -- **[cancer](cancer.md)** (23) -- **[capitalism](capitalism.md)** (125) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (12) -- **[censorship](censorship.md)** (43) -- **[chaos](chaos.md)** (108) -- **[charity_sex](charity_sex.md)** (2) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (8) -- **[chess](chess.md)** (303) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[coc](coc.md)** (15) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (20) -- **[color](color.md)** (25) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (16) -- **[communism](communism.md)** (26) -- **[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)** (114) -- **[comun](comun.md)** (90) -- **[consumerism](consumerism.md)** (12) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (29) -- **[copyright](copyright.md)** (47) -- **[corporation](corporation.md)** (18) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (4) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (15) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (34) -- **[css](css.md)** (66) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[debugging](debugging.md)** (119) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (20) -- **[dependency](dependency.md)** (50) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (8) -- **[digital](digital.md)** (14) -- **[digital_signature](digital_signature.md)** (8) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (34) -- **[disease](disease.md)** (35) -- **[distance](distance.md)** (124) -- **[distrohopping](distrohopping.md)** (10) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (31) -- **[doom](doom.md)** (50) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[drummyfish](drummyfish.md)** (33) -- **[duke3d](duke3d.md)** (20) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (6) -- **[duskos](duskos.md)** (28) -- **[dynamic_programming](dynamic_programming.md)** (44) -- **[e](e.md)** (22) -- **[earth](earth.md)** (51) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (15) -- **[elo](elo.md)** (147) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (124) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (70) -- **[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)** (10) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (56) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (2) -- **[fail_ab](fail_ab.md)** (24) -- **[fantasy_console](fantasy_console.md)** (40) -- **[faq](faq.md)** (237) -- **[fascism](fascism.md)** (23) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (47) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (8) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (151) -- **[fizzbuzz](fizzbuzz.md)** (158) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (49) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (128) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (69) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (36) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (60) -- **[free_speech](free_speech.md)** (16) -- **[free_universe](free_universe.md)** (11) -- **[free_will](free_will.md)** (12) -- **[freedom](freedom.md)** (14) -- **[fsf](fsf.md)** (17) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (30) -- **[function](function.md)** (109) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (44) -- **[game](game.md)** (159) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (10) -- **[gender_studies](gender_studies.md)** (2) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (70) -- **[githopping](githopping.md)** (4) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (53) -- **[go](go.md)** (96) -- **[golang](golang.md)** (17) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (20) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (28) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (75) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (10) -- **[hexadecimal](hexadecimal.md)** (4) -- **[history](history.md)** (96) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (191) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (21) -- **[internet](internet.md)** (104) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (45) -- **[io](io.md)** (16) -- **[ioccc](ioccc.md)** (37) -- **[iq](iq.md)** (111) -- **[island](island.md)** (38) -- **[jargon_file](jargon_file.md)** (8) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (86) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (77) -- **[john_carmack](john_carmack.md)** (20) -- **[jokes](jokes.md)** (76) -- **[julia_set](julia_set.md)** (92) -- **[just_werks](just_werks.md)** (22) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (6) -- **[kids_these_days](kids_these_days.md)** (2) -- **[kiss](kiss.md)** (37) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (158) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (15) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (53) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (128) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (20) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (56) -- **[lil](lil.md)** (20) -- **[line](line.md)** (151) -- **[linear_algebra](linear_algebra.md)** (116) -- **[linux](linux.md)** (61) -- **[living](living.md)** (33) -- **[lmao](lmao.md)** (40) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (11) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[love](love.md)** (24) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (156) -- **[lrs_dictionary](lrs_dictionary.md)** (89) -- **[lrs_wiki](lrs_wiki.md)** (23) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (122) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (8) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (26) -- **[markov_chain](markov_chain.md)** (100) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (4) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (53) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (37) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (14) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (2) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (43) -- **[myths](myths.md)** (11) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (64) -- **[netstalking](netstalking.md)** (9) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (8) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (27) -- **[niggercoin](niggercoin.md)** (6) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (112) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (2) -- **[number](number.md)** (292) -- **[often_confused](often_confused.md)** (103) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (62) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (35) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (68) -- **[optimization](optimization.md)** (99) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (23) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (32) -- **[people](people.md)** (56) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (13) -- **[phd](phd.md)** (8) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (147) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (68) -- **[portability](portability.md)** (166) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (2) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (24) -- **[procgen](procgen.md)** (352) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (33) -- **[programming_language](programming_language.md)** (142) -- **[programming_style](programming_style.md)** (73) -- **[programming_tips](programming_tips.md)** (16) -- **[progress](progress.md)** (29) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (8) -- **[pseudorandomness](pseudorandomness.md)** (4) -- **[public_domain](public_domain.md)** (86) -- **[public_domain_computer](public_domain_computer.md)** (54) -- **[python](python.md)** (24) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (44) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (9) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1708) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (8) -- **[raycasting](raycasting.md)** (291) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (22) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (48) -- **[recursion](recursion.md)** (64) -- **[reddit](reddit.md)** (20) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (206) -- **[rgb332](rgb332.md)** (91) -- **[rgb565](rgb565.md)** (4) -- **[right](right.md)** (2) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (44) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (43) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (23) -- **[rule110](rule110.md)** (107) -- **[rust](rust.md)** (24) -- **[saf](saf.md)** (63) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (20) -- **[sdf](sdf.md)** (25) -- **[security](security.md)** (15) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (17) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (15) -- **[shit](shit.md)** (29) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (10) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (179) -- **[sjw](sjw.md)** (24) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (8) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (234) -- **[soydev](soydev.md)** (33) -- **[soyence](soyence.md)** (45) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (74) -- **[ssao](ssao.md)** (10) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (148) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (206) -- **[suicide](suicide.md)** (8) -- **[sw](sw.md)** (8) -- **[sw_rendering](sw_rendering.md)** (63) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (66) -- **[tas](tas.md)** (20) -- **[tattoo](tattoo.md)** (2) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (6) -- **[ted_kaczynski](ted_kaczynski.md)** (26) -- **[teletext](teletext.md)** (13) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (11) -- **[thrembo](thrembo.md)** (15) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny_software](tranny_software.md)** (27) -- **[transistor](transistor.md)** (30) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (18) -- **[trom](trom.md)** (27) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (207) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (30) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unicode](unicode.md)** (6) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (11) -- **[update_culture](update_culture.md)** (19) -- **[usa](usa.md)** (55) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (44) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (60) -- **[version_numbering](version_numbering.md)** (50) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (8) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (14) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (215) -- **[wiki_style](wiki_style.md)** (69) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (75) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (8) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (105) -- **[work](work.md)** (28) -- **[world_broadcast](world_broadcast.md)** (12) -- **[wow](wow.md)** (8) -- **[www](www.md)** (107) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (101) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (8) -- **[youtube](youtube.md)** (20) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (30) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file diff --git a/wiki_stats.md b/wiki_stats.md index b788db8..ed4f642 100644 --- a/wiki_stats.md +++ b/wiki_stats.md @@ -3,12 +3,12 @@ This is an autogenerated article holding stats about this wiki. - number of articles: 569 -- number of commits: 755 -- total size of all texts in bytes: 3502006 -- total number of lines of article texts: 27660 +- number of commits: 756 +- total size of all texts in bytes: 3524906 +- total number of lines of article texts: 27775 - number of script lines: 262 - occurences of the word "person": 8 -- occurences of the word "nigger": 67 +- occurences of the word "nigger": 71 longest articles: @@ -35,60 +35,77 @@ longest articles: top 50 5+ letter words: -- which (2018) -- there (1505) -- people (1335) -- other (1098) +- which (2028) +- there (1517) +- people (1339) +- other (1105) - example (1058) -- software (1032) +- software (1035) - number (954) -- about (915) -- their (759) -- program (756) -- called (713) +- about (918) +- program (786) +- their (761) +- called (714) +- because (688) - computer (687) -- would (685) -- because (683) -- simple (658) -- being (650) -- things (639) -- numbers (639) -- language (618) -- without (610) +- would (686) +- simple (661) +- being (657) +- things (643) +- numbers (640) +- language (630) +- without (614) - function (609) -- programming (600) -- however (587) -- something (573) -- these (568) -- different (558) -- system (526) -- world (525) -- games (522) -- should (516) -- point (509) +- programming (608) +- however (588) +- something (577) +- these (572) +- different (562) +- world (531) +- system (529) +- games (523) +- should (518) +- point (511) - society (504) +- doesn (494) - though (491) -- doesn (488) -- memory (483) -- drummyfish (464) -- while (463) +- memory (485) +- while (466) +- drummyfish (466) - using (456) - technology (454) -- still (444) -- simply (442) -- similar (440) -- course (440) +- still (445) +- course (445) +- simply (443) +- similar (443) - possible (434) -- really (400) +- really (407) - computers (398) -- extremely (394) -- usually (390) -- value (386) -- basically (385) +- https (396) +- extremely (395) +- usually (391) +- value (388) latest changes: ``` +Date: Sun Mar 31 20:21:22 2024 +0200 + 3d_model.md + acronym.md + anarch.md + bootstrap.md + duke3d.md + emoticon.md + openarena.md + physics_engine.md + random_page.md + shit.md + suckless.md + usa.md + wiki_pages.md + wiki_stats.md + wikipedia.md + wow.md Date: Sat Mar 30 22:07:31 2024 +0100 compression.md determinism.md @@ -107,33 +124,12 @@ Date: Sat Mar 30 22:07:31 2024 +0100 wiki_stats.md youtube.md Date: Sat Mar 30 00:11:50 2024 +0100 - 4chan.md - ascii_art.md - bullshit.md - c_tutorial.md - communism.md - diogenes.md - distrohopping.md - dog.md - emoticon.md - encyclopedia.md - free_software.md - history.md - infinity.md - interesting.md - internet.md - kwangmyong.md - lmao.md - love.md - main.md - minigame.md - number.md ``` most wanted pages: -- [data_type](data_type.md) (12) -- [embedded](embedded.md) (11) +- [data_type](data_type.md) (13) +- [embedded](embedded.md) (12) - [buddhism](buddhism.md) (11) - [array](array.md) (11) - [quake](quake.md) (10) @@ -155,18 +151,18 @@ most wanted pages: most popular and lonely pages: -- [lrs](lrs.md) (267) +- [lrs](lrs.md) (269) +- [c](c.md) (200) - [capitalism](capitalism.md) (197) -- [c](c.md) (196) -- [bloat](bloat.md) (196) +- [bloat](bloat.md) (197) - [free_software](free_software.md) (162) -- [game](game.md) (133) +- [game](game.md) (134) - [suckless](suckless.md) (131) - [proprietary](proprietary.md) (114) - [kiss](kiss.md) (91) - [modern](modern.md) (87) - [minimalism](minimalism.md) (86) -- [computer](computer.md) (85) +- [computer](computer.md) (86) - [linux](linux.md) (84) - [programming](programming.md) (79) - [free_culture](free_culture.md) (79) @@ -175,17 +171,18 @@ most popular and lonely pages: - [public_domain](public_domain.md) (74) - [gnu](gnu.md) (74) - [foss](foss.md) (73) -- [censorship](censorship.md) (71) +- [censorship](censorship.md) (72) - [hacking](hacking.md) (70) - [art](art.md) (69) +- [programming_language](programming_language.md) (68) - [fight_culture](fight_culture.md) (68) -- [programming_language](programming_language.md) (67) +- [shit](shit.md) (67) - [less_retarded_society](less_retarded_society.md) (67) -- [shit](shit.md) (66) - [bullshit](bullshit.md) (66) - [float](float.md) (63) -- [open_source](open_source.md) (61) +- [chess](chess.md) (62) - ... +- [trusting_trust](trusting_trust.md) (4) - [trump](trump.md) (4) - [tom_scott](tom_scott.md) (4) - [speech_synthesis](speech_synthesis.md) (4) @@ -207,7 +204,6 @@ most popular and lonely pages: - [gigachad](gigachad.md) (4) - [gaywashing](gaywashing.md) (4) - [f2p](f2p.md) (4) -- [exercises](exercises.md) (4) - [dungeons_and_dragons](dungeons_and_dragons.md) (4) - [dick_reveal](dick_reveal.md) (4) - [deferred_shading](deferred_shading.md) (4) diff --git a/yes_they_can.md b/yes_they_can.md index 0ef7b32..a4d3d48 100644 --- a/yes_they_can.md +++ b/yes_they_can.md @@ -1,7 +1,9 @@ # Yes They Can -*"The bigger the lie, the more it will be believed."* --[Joseph Goebbels](goebbels.md), NSDAP minister of propaganda +*"The bigger the lie, the more it will be believed."* --[Joseph Goebbels](goebbels.md), [NSDAP](nazism.md) minister of propaganda -If you think [they](they.md) can't do something, you are wrong; unless it is directly violating a law of physics, they can do it. For example you may think "haha they can't start selling air, people would revolt", "hahaaa, they can't make people believe 1 + 1 equals 2000, it's too obvious of a lie" or "hahaaa they can't lie about history when there is a ton of direct evidence for the contrary freely accessible on the internet, they can't censor something that's all over the internet and in billions of books" -- yes, they can do all of this. With enough [capitalism](capitalism.md) you can make people believe a circle to be square, they have already made people desire their everyday torture, they made people believe colors and offensive statistics are just culturally constructed hallucinations, feminists have already made people widely believe a woman can beat an adult man -- a naive man of the past would likely believe this to be impossible as well. Well, we see under capitalism it is quite possible. +If you think [they](they.md) can't do something, you are wrong; unless it is directly violating a law of physics, they can do it. For example you may think "haha they can't start selling air, people would revolt", "hahaaa, they can't make people believe 1 + 1 equals 2000, it's too obvious of a lie" or "hahaaa they can't lie about [history](history.md) when there is a ton of direct evidence for the contrary freely accessible on the Internet, they can't [censor](censorship.md) something that's all over the Internet and in billions of books" -- yes, they can do all of this. With enough [capitalism](capitalism.md) you can make people believe a circle to be square, they have already made people desire their everyday torture, they made people believe colors and offensive statistics are just culturally constructed hallucinations, [feminists](feminism.md) have already made people widely believe a woman can beat an adult man -- a naive man of the past would likely believe this to be impossible as well. Well, we see under capitalism it is quite possible. -Resisting overlords is always futile in the end, the only hope is to establish [society without overlords](anarchism.md). You think "hahaha, if we create this super encrypted/decentralized computer network, we can simply communicate and they can do nothing about it, BAZINGA" -- well, no you can't. How can they stop this? They will simply ban computers you idiot, in fact you have only given them the reason to. You say "hahaha but I can have this calculator in my basement hidden" -- well, how many people will participate in your network if revealing such participation is punished not only by death sentence, but death sentence for you whole family; if even people who know about you participating in the network and not reporting you face the same punishment (already the case in some pseudocommunist countries)? If in addition people have no free time, if they don't have electricity at home, no will to live and there are also government signal jammers everywhere just in case? Enjoy your guerrilla resistance network with three people. You say "bbbb...but that cant happen ppl would revolt" -- NO. Have you seen chicken at chicken farm revolt? (Except in that one movie lol). "BBBb...BUT... people are not chicken". NO. People are literally physically chicken (to a stupid argument you get stupid counterargument). \ No newline at end of file +Resisting overlords is always futile in the end, the only hope is to establish [society without overlords](anarchism.md). You think "hahaha, if we create this super encrypted/decentralized computer network, we can simply communicate and they can do nothing about it, BAZINGA" -- well, no you can't. How can they stop this? They will simply ban [computers](computer.md) you idiot, in fact you have only given them the reason to. You say "hahaha but I can have this calculator in my basement hidden" -- well, how many people will participate in your network if revealing such participation is punished not only by death sentence, but death sentence for you whole family; if even people who know about you participating in the network and not reporting you face the same punishment (already the case in some pseudocommunist countries)? If in addition people have no free time, if they don't have electricity at home, no will to live and there are also government signal jammers everywhere just in case? Enjoy your guerrilla resistance network with three people armed with calculators. You say "bbbb...but that cant happen ppl would revolt" -- NO. Have you seen chicken at chicken farm revolt? (Except in that one movie lol). "BBBb...BUT... people are not chicken". NO. People are literally physically chicken (to a stupid argument you get stupid counterargument). + +They can also kill you, take all your money, rape you, lobotomize you, take your identity and all property and just do anything they please. No, it doesn't matter it's illegal, are you really naive like a 5 year old that hasn't seen the real world for 1 second yet? \ No newline at end of file diff --git a/youtube.md b/youtube.md index 05f9e91..b7ed42c 100644 --- a/youtube.md +++ b/youtube.md @@ -4,7 +4,7 @@ YouTube (also JewTube { Lol jewtube.com actually exists. ~drummyfish} or just YT { https://www.vidlii.com seems alright though, at least as a curiosity. Anyway if you need to watch YouTube, do not use their website, it's shitty as hell and you will die of ad cancer, rather use something like invidious or youtube-dl. Here is an **awesome hack I discovered to search only old videos on youtube**! The new shit is just unwatchable, there's clickbait, sponsors, propaganda, SJW shit everywhere, thankfully you can just exclude any year from the search with with "-year" (at least for now), for example: https://yewtu.be/search?q=free+software+-2023+-2022+-2021+-2020+-2019+-2018+-2017+-2016+-2015+-2014+-2013+-2012+-2011+-2010+-2009&page=1&date=none&type=video&duration=none&sort=relevance. Enjoy. ~drummyfish } -**What are the alternatives to YouTube?** We'll only leave a brief paragraph here for wannabe YouTube alternatives come and go faster than a [zoomer](zoomer.md) changes genders. Best alternative to watching videos is reading [books](books.md) or watching clouds in the sky, but we'll stick to "watching videos on the Internet" here. Also bear in mind that if you have to watch YouTube, use alternative YouTube [frontends](frontend.md), which are normally [FOSS](foss.md) -- e.g. Invidious, HookTube or FreeTube -- these let you access YouTube's videos via less [bloated](bloat.md) and more "privacy-friendly" interface, also filtering out ads and so on, more hardcore people use [CLI](cli.md) tools such as [youtube-dl](youtube_dl.md) to directy download the videos and watch them in native players. Likely the most notable [FOSS](foss.md) alternative to YouTube is **[PeerTube](peertube.md)**, a [federated](federation.md) [P2P](p2p.md) video platform, however for intended use it requires [JavaScript](javascript.md) (there is a way to download videos without JS but it's discouraged) and there are other issues that make it unusable ([SJW](sjw.md) censorship, videos load extremely slowly, ...). If you use PeerTube, don't use the lesbian instances, look up the uncensored ones. Mainstream proprietary alternative to YouTube is Vimeo, Bitchute is the "rightist" YouTube alternative (quite shitty TBH). [Internet Archive](internet_archive.md) has many video, especially old ones -- this is quite nice alternative. Vidlii is proprietary but oldschool site that tries to replicate old YouTube for the nostalgia, it has its own videos and small, dedicated community and very low censorship, it is pretty nice, with 360p videos and all; a site very similar to Vidlii it Bitview. +**What are the alternatives to YouTube?** We'll only leave a brief paragraph here for wannabe YouTube alternatives come and go faster than a [zoomer](zoomer.md) changes genders. Best alternative to watching videos is reading [books](books.md) or watching clouds in the sky, but we'll stick to "watching videos on the Internet" here. Also bear in mind that if you have to watch YouTube, use alternative YouTube [frontends](frontend.md), which are normally [FOSS](foss.md) -- e.g. Invidious, piped, HookTube or FreeTube -- these let you access YouTube's videos via less [bloated](bloat.md) and more "privacy-friendly" interface, also filtering out ads and so on, more hardcore people use [CLI](cli.md) tools such as [youtube-dl](youtube_dl.md) to directy download the videos and watch them in native players. Likely the most notable [FOSS](foss.md) alternative to YouTube is **[PeerTube](peertube.md)**, a [federated](federation.md) [P2P](p2p.md) video platform, however for intended use it requires [JavaScript](javascript.md) (there is a way to download videos without JS but it's discouraged) and there are other issues that make it unusable ([SJW](sjw.md) censorship, videos load extremely slowly, ...). If you use PeerTube, don't use the lesbian instances, look up the uncensored ones. Mainstream proprietary alternative to YouTube is Vimeo, Bitchute is the "rightist" YouTube alternative (quite shitty TBH). [Internet Archive](internet_archive.md) has many video, especially old ones -- this is quite nice alternative. Vidlii is proprietary but oldschool site that tries to replicate old YouTube for the nostalgia, it has its own videos and small, dedicated community and very low censorship, it is pretty nice, with 360p videos and all; a site very similar to Vidlii it Bitview. In November 2021 YouTube removed the dislike count on videos so as to make it impossible to express dislike or disagreement with their propaganda as people naturally started to dislike the exponentially skyrocketing shit and immorality of content [corporations](corporation.md) and [SJWs](sjw.md) started to force promote on YouTube (such as that infamous Lord of the Rings series with ["afro american"](nigger.md) dwarves that got like a billion dislikes [lmao](lmao.md)). In other words capitalism has made it to the stage of banning disagreement when people started to dislike the horse shit they're being force fed. This was met with a wave of universal criticism but of course YouTube told people to shut up and keep consuming that horse excrement -- of course [zoomers](zoomer.md) are just brainless zombies dependent on YouTube like a street whore on heroin so they just accepted that recommendation. Orwell would definitely be happy to see this.