diff --git a/hash.md b/hash.md index c5ddfd9..8cf4767 100644 --- a/hash.md +++ b/hash.md @@ -88,21 +88,21 @@ uint16_t hash(uint16_t n) } ``` -Here is a nice string hash, works even for short strings, all bits look pretty random: { Made by me. Tested this on my dataset of programming identifiers, on average there was one colliding pair of strings in 1000. ~drummyfish } +Here is a simple string hash, works even for short strings, all bits look pretty random: { Made by me. Tested this on my dataset of 70000 programming identifiers, got no collisions. ~drummyfish } ``` uint32_t strHash(const char *s) { - uint32_t r = 21; + uint32_t r = 11; while (*s) { - r = (r * 31) + *s; + r = (r * 101) + *s; s++; } - r = r * 4451; - r = ((r << 19) | (r >> 13)) * 5059; + r = r * 251; + r = ((r << 19) | (r >> 13)) * 113; return r; } diff --git a/linux.md b/linux.md index bb71fcf..3e33645 100644 --- a/linux.md +++ b/linux.md @@ -1,6 +1,8 @@ # Linux -Linux (also Lunix or Loonix) is a partially "[open-source](open_source.md)" [unix-like](unix_like.md) [operating system](operating_system.md) [kernel](kernel.md), probably the most successful "mostly FOSS" kernel. One of its greatest advantages is support of a lot of [hardware](hardware.md); it runs besides others on [x86](x86.md], [PowerPC](ppc.md), [Arm](arm.md), has many [drivers](driver.md) and can be compiled to be very minimal so as to run well even on very weak computers. **Linux is NOT an operating system**, only its basic part -- for a whole operating system more things need to be added, such as some kind of [user interface](ui.md) and actual user programs (so called [userland](userland.md)), and this is what [Linux distributions](linux_distro.md) do (there hundreds of these) -- Linux distributions, such as [Debian](debian.md), [Arch](arch.md) or [Ubuntu](ubuntu.md) are complete operating systems (but beware, most of them are not fully [FOSS](foss.md)). The mascot of the project is a penguin named [Tux](tux.md) (under some vague non-standard [license](license.md)). Linux is one of the biggest collaborative programming projects, as of now it has more than 15000 contributors. Despite popular misconceptions **Linux is [proprietary](proprietary.md) software** by containing binary blobs -- completely free distributions have to use forks that remove these (see e.g. [Linux-libre](linux_libre.md), [Debian](debian.md)'s Linux fork etc.). Linux is also greatly [bloated](bloat.md) (though not anywhere near [Windows](windows.md) and such) and [tranny software](tranny_software.md), abusing technology as a vehicle for promoting [harmful politics](sjw.md). +{ At this point it's best to start using a different kernel if you can. Consider BSD or Hurd maybe. ~drummyfish } + +Linux (also Lunix or Loonix) is a partially "[open-source](open_source.md)" [unix-like](unix_like.md) [operating system](operating_system.md) [kernel](kernel.md), probably the most successful "mostly FOSS" kernel, nowadays already killed by [capitalism](capitalism.md). One of its greatest advantages was support of a lot of [hardware](hardware.md); it runs besides others on [x86](x86.md], [PowerPC](ppc.md), [Arm](arm.md), has many [drivers](driver.md) and can be compiled to be quite small so as to run well even on very weak computers. **Linux is NOT an operating system**, only its basic part -- for a whole operating system more things need to be added, such as some kind of [user interface](ui.md) and actual user programs (so called [userland](userland.md)), and this is what [Linux distributions](linux_distro.md) do (there hundreds of these) -- Linux distributions, such as [Debian](debian.md), [Arch](arch.md) or [Ubuntu](ubuntu.md) are complete operating systems (but beware, most of them are not fully [FOSS](foss.md)). The mascot of the project is a penguin named [Tux](tux.md) (under some vague non-standard [license](license.md)). Linux is one of the biggest collaborative programming projects, as of now it has more than 15000 contributors. Despite popular misconceptions **Linux is [proprietary](proprietary.md) software** by containing [binary blobs](binary_blob.md) -- completely free distributions have to use forks that remove these (see e.g. [Linux-libre](linux_libre.md), [Debian](debian.md)'s Linux fork etc.). Linux is also **greatly [bloated](bloat.md)** (though not anywhere near [Windows](windows.md) and such) and **[tranny software](tranny_software.md)**, abusing technology as a vehicle for promoting [harmful politics](sjw.md). While back in the day Linux was one of the coolest projects, by 2024 **Linux is absolute shit**, it has [code of censorship](coc.md), it's hijacked by capitalism, developed by corporations and fascists ([feminists](feminism.md), [LGBT](lgbt.md), ...), overcomplicated, commercialized, full of [Rust](rust.md) code; there are already even backdoor popping in (see the 2004 XZ scandal), basically it's almost unusable now. The spirit, significance, journey and eventual fate of Linux are similar to e.g. [Wikipedia](wikipedia.md). [Fun](fun.md) note: there is a site that counts certain words in the Linux source code, https://www.vidarholen.net/contents/wordcount. For the lulz in 2019 some word counts were: "fuck": 16, "shit": 33, "idiot": 17, "retard": 4, "hack": 1571, "todo": 6166, "fixme": 4256. diff --git a/lrs_dictionary.md b/lrs_dictionary.md index bff6a27..f4c20c8 100644 --- a/lrs_dictionary.md +++ b/lrs_dictionary.md @@ -60,6 +60,7 @@ WORK IN PROGRESS | [NFS](nfs.md) | nightmare file system | | [Nintendo](nintendo.md) | Nintendont | | [NSA](nsa.md) | national spying agency | +| null hypothesis significance test | null ritual | | [NVidia](nvidia.md) | NoVidya | | object oriented programming ([OOP](oop.md))| object obsessed programming | | object oriented | objectfuscated | diff --git a/open_source.md b/open_source.md index 51e878e..60bcb9a 100644 --- a/open_source.md +++ b/open_source.md @@ -25,6 +25,8 @@ The open source definition is maintained by the [Open Source Initiative](osi.md) 9. **The license must not restrict other software**, i.e. it cannot for example be forbidden to run the software alongside some other piece of software. 10. **The license must be technology neutral**, i.e. it cannot for example limit the software to certain platform or API. +Besides this main legal definition open source is also a cult that comes with its own rituals and ways of thinking, again, mostly harmful ones like embracing [update culture](update_culture.md) which allows the overlords to push something to people and then keep reshaping it silently with "updates" as they're using it (see e.g. the infamous [xz](xz.md) incident in [Linux](linux.md)). + Open source furthermore greatly fails for example by not accepting [CC0](cc0.md) as a valid license and not accepting [esoteric programming languages](esolang.md) (because they're "obfuscated"). All in all, avoid open source, support [free software](free_software.md). ## See Also diff --git a/random_page.md b/random_page.md index 42923d3..49c3b9e 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1728 +2,1728 @@ Please kindly click random link. -[*](distance.md) -[*](comun.md) -[*](floss.md) -[*](logic.md) -[*](bit.md) -[*](everyone_does_it.md) -[*](collapse.md) -[*](rapeware.md) -[*](speech_synthesis.md) +[*](openarena.md) +[*](cc0.md) +[*](patent.md) +[*](devuan.md) +[*](billboard.md) +[*](soydev.md) +[*](collision.md) +[*](often_confused.md) +[*](wiki_post_mortem.md) +[*](ui.md) +[*](function.md) +[*](boat.md) +[*](atan.md) +[*](productivity_cult.md) +[*](plan9.md) +[*](finished.md) +[*](facebook.md) +[*](npc.md) [*](copyfree.md) -[*](crow_funding.md) -[*](dynamic_programming.md) -[*](compsci.md) -[*](fediverse.md) -[*](autostereogram.md) -[*](memory_management.md) -[*](whale.md) -[*](holy_war.md) -[*](usenet.md) -[*](shader.md) -[*](arduboy.md) -[*](tor.md) +[*](3d_rendering.md) +[*](pseudo3d.md) +[*](minigame.md) +[*](rationalwiki.md) +[*](beauty.md) +[*](collision_detection.md) +[*](tas.md) +[*](infinity.md) +[*](flatland.md) +[*](bloat.md) +[*](ioccc.md) +[*](elo.md) +[*](love.md) [*](gui.md) -[*](easier_done_than_said.md) -[*](youtube.md) -[*](bytecode.md) -[*](intellectual_property.md) -[*](iq.md) -[*](selflessness.md) -[*](fork.md) -[*](linux.md) -[*](capitalist_software.md) -[*](duskos.md) -[*](creative_commons.md) -[*](autostereogram.md) -[*](hw.md) -[*](logic_circuit.md) -[*](teletext.md) -[*](mechanical.md) -[*](wiki_pages.md) -[*](fractal.md) -[*](bitreich.md) -[*](systemd.md) -[*](microtheft.md) -[*](small3dlib.md) -[*](mob_software.md) -[*](framework.md) -[*](interaction_net.md) -[*](sdf.md) +[*](body_shaming.md) +[*](pseudominimalism.md) +[*](math.md) +[*](marxism.md) +[*](speech_synthesis.md) [*](chess.md) -[*](nationalism.md) [*](thrembo.md) -[*](tensor_product.md) -[*](dodleston.md) -[*](game_of_life.md) -[*](oop.md) -[*](suicide.md) -[*](sdf.md) -[*](xonotic.md) -[*](framework.md) -[*](logic_circuit.md) -[*](feminism.md) -[*](pride.md) -[*](hardware.md) -[*](consumerism.md) -[*](markov_chain.md) -[*](ram.md) -[*](iq.md) -[*](bit_hack.md) -[*](human_language.md) -[*](graveyard.md) -[*](backgammon.md) +[*](computer.md) +[*](cyber.md) +[*](cpu.md) +[*](smart.md) +[*](hash.md) +[*](compression.md) [*](permacomputing_wiki.md) -[*](political_correctness.md) -[*](coding.md) -[*](reactionary_software.md) -[*](wiki_authors.md) -[*](geek.md) -[*](hyperoperation.md) -[*](teletext.md) -[*](analytic_geometry.md) -[*](jokes.md) -[*](ted_kaczynski.md) -[*](rock.md) -[*](programming_style.md) -[*](downto.md) -[*](wiki_post_mortem.md) -[*](pokitto.md) -[*](patent.md) -[*](cpp.md) -[*](finished.md) -[*](math.md) -[*](analog.md) -[*](less_retarded_society.md) -[*](crow_funding.md) -[*](crypto.md) -[*](myths.md) -[*](optimization.md) -[*](phd.md) -[*](liberalism.md) -[*](wikiwikiweb.md) -[*](hack.md) -[*](hw.md) -[*](arch.md) -[*](npc.md) -[*](capitalist_singularity.md) -[*](uxn.md) -[*](beauty.md) -[*](compsci.md) +[*](randomness.md) +[*](foss.md) +[*](encyclopedia.md) +[*](backpropagation.md) +[*](c.md) +[*](temple_os.md) +[*](computational_complexity.md) +[*](public_domain_computer.md) +[*](nc.md) +[*](living.md) +[*](music.md) +[*](fascist.md) +[*](racism.md) +[*](doom.md) +[*](john_carmack.md) +[*](mental_outlaw.md) +[*](mob_software.md) [*](c_pitfalls.md) -[*](security.md) -[*](cc0.md) -[*](nd.md) -[*](mipmap.md) -[*](abstraction.md) -[*](youtube.md) -[*](marketing.md) -[*](semiconductor.md) -[*](software.md) -[*](zen.md) -[*](pseudorandomness.md) -[*](collapse.md) -[*](interesting.md) -[*](proprietary_software.md) +[*](encyclopedia.md) +[*](global_discussion.md) +[*](bytecode.md) +[*](rationalwiki.md) +[*](interpolation.md) +[*](hacker_culture.md) +[*](blender.md) +[*](floss.md) +[*](wavelet_transform.md) +[*](fediverse.md) +[*](attribution.md) +[*](crypto.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](freedom.md) +[*](update_culture.md) +[*](no_knowledge_proof.md) +[*](free_body.md) +[*](left_right.md) [*](bloat_monopoly.md) -[*](githopping.md) -[*](bit.md) -[*](hero.md) -[*](universe.md) -[*](censorship.md) -[*](golang.md) -[*](love.md) -[*](fqa.md) +[*](apple.md) +[*](bitreich.md) [*](reddit.md) -[*](encyclopedia.md) -[*](crime_against_economy.md) -[*](cracker.md) -[*](racetrack.md) -[*](modern_software.md) -[*](library.md) -[*](whale.md) +[*](throwaway_script.md) +[*](logic_circuit.md) +[*](google.md) +[*](lrs_wiki.md) +[*](suckless.md) +[*](zuckerberg.md) +[*](primitive_3d.md) +[*](collision.md) +[*](version_numbering.md) +[*](football.md) +[*](forth.md) +[*](fractal.md) +[*](cloud.md) +[*](xd.md) +[*](shortcut_thinking.md) +[*](sudoku.md) +[*](copyleft.md) +[*](lrs.md) +[*](mouse.md) +[*](triangle.md) [*](arduboy.md) -[*](morality.md) -[*](faggot.md) -[*](comment.md) -[*](lil.md) -[*](foss.md) -[*](approximation.md) -[*](less_retarded_software.md) -[*](logic.md) -[*](gopher.md) -[*](hash.md) -[*](pi.md) -[*](xxiivv.md) -[*](english.md) -[*](fork.md) -[*](framework.md) -[*](political_correctness.md) -[*](www.md) -[*](disease.md) -[*](os.md) -[*](yes_they_can.md) -[*](wiki_style.md) [*](noise.md) -[*](monad.md) -[*](rights_culture.md) -[*](pd.md) -[*](loc.md) -[*](toxic.md) -[*](murderer.md) -[*](finished.md) +[*](mainstream.md) +[*](logic_circuit.md) +[*](go.md) [*](suckless.md) -[*](distance.md) -[*](docker.md) -[*](entrepreneur.md) -[*](twos_complement.md) -[*](democracy.md) -[*](ted_kaczynski.md) -[*](goodbye_world.md) -[*](implicit.md) -[*](frameless.md) -[*](nationalism.md) -[*](education.md) -[*](unary.md) -[*](censorship.md) -[*](docker.md) -[*](duke3d.md) -[*](wavelet_transform.md) -[*](modern.md) -[*](fantasy_console.md) -[*](audiophilia.md) -[*](internet.md) -[*](hardware.md) -[*](information.md) -[*](triangle.md) -[*](history.md) -[*](countercomplex.md) -[*](often_confused.md) +[*](free.md) +[*](deep_blue.md) +[*](e.md) +[*](art.md) +[*](shogi.md) [*](sin.md) -[*](interesting.md) -[*](open_console.md) -[*](golang.md) -[*](programming_language.md) -[*](jesus.md) -[*](4chan.md) -[*](firmware.md) -[*](bilinear.md) -[*](3d_model.md) -[*](cloud.md) -[*](distrohopping.md) -[*](wikidata.md) -[*](game_engine.md) -[*](earth.md) -[*](antialiasing.md) -[*](paywall.md) -[*](communism.md) -[*](ai.md) -[*](infinity.md) -[*](primitive_3d.md) -[*](interplanetary_internet.md) -[*](rationalwiki.md) -[*](reactionary_software.md) -[*](c_tutorial.md) -[*](cc.md) -[*](evil.md) -[*](backgammon.md) -[*](duskos.md) -[*](fun.md) -[*](audiophilia.md) -[*](capitalist_software.md) [*](see_through_clothes.md) +[*](everyone_does_it.md) +[*](niggercoin.md) +[*](small3dlib.md) +[*](rock.md) +[*](tangram.md) +[*](information.md) +[*](capitalist_singularity.md) +[*](bytebeat.md) +[*](low_poly.md) +[*](attribution.md) +[*](sw.md) +[*](consumerism.md) +[*](ethics.md) +[*](evil.md) +[*](jesus.md) +[*](chaos.md) +[*](iq.md) +[*](chinese.md) +[*](byte.md) +[*](combinatorics.md) +[*](binary.md) [*](free_will.md) -[*](wikiwikiweb.md) -[*](coc.md) -[*](real_number.md) -[*](human_language.md) -[*](ui.md) -[*](robot.md) -[*](freedom.md) -[*](digital.md) -[*](public_domain.md) -[*](femoid.md) -[*](free_speech.md) -[*](openai.md) +[*](capitalist_software.md) +[*](dinosaur.md) +[*](drummyfish.md) +[*](plan9.md) +[*](c.md) [*](openai.md) -[*](prime.md) -[*](left.md) -[*](old.md) -[*](autoupdate.md) -[*](fascist.md) -[*](nokia.md) -[*](myths.md) -[*](john_carmack.md) -[*](license.md) -[*](systemd.md) -[*](communism.md) -[*](living.md) -[*](body_shaming.md) -[*](geek.md) -[*](anal_bead.md) -[*](soydev.md) -[*](entropy.md) -[*](watchdog.md) -[*](axiom_of_choice.md) -[*](zero.md) +[*](crime_against_economy.md) +[*](fun.md) +[*](culture.md) +[*](bitreich.md) +[*](elon_musk.md) +[*](cos.md) +[*](smart.md) +[*](work.md) +[*](c_tutorial.md) +[*](acronym.md) +[*](consumerism.md) +[*](capitalism.md) [*](software.md) -[*](chasm_the_rift.md) -[*](mainstream.md) -[*](sanism.md) -[*](sw_rendering.md) -[*](dick_reveal.md) -[*](marketing.md) -[*](smol_internet.md) +[*](determinism.md) [*](trolling.md) -[*](wiki_style.md) -[*](brain_software.md) -[*](hyperoperation.md) -[*](evil.md) -[*](tangram.md) -[*](cyber.md) -[*](paradigm.md) -[*](books.md) -[*](esolang.md) -[*](triangle.md) -[*](microtransaction.md) -[*](permacomputing_wiki.md) -[*](abstraction.md) -[*](algorithm.md) -[*](primitive_3d.md) -[*](kiwifarms.md) -[*](operating_system.md) -[*](lrs.md) -[*](number.md) -[*](rock.md) -[*](mental_outlaw.md) -[*](sudoku.md) -[*](privacy.md) -[*](trump.md) -[*](history.md) -[*](cat_v.md) -[*](security.md) -[*](earth.md) -[*](assembly.md) -[*](google.md) -[*](marxism.md) -[*](byte.md) -[*](binary.md) -[*](zen.md) +[*](piracy.md) +[*](avpd.md) +[*](mud.md) [*](woman.md) -[*](hero_culture.md) -[*](soyence.md) -[*](logic.md) -[*](cracking.md) -[*](gnu.md) -[*](operating_system.md) -[*](fourier_transform.md) +[*](antivirus_paradox.md) +[*](vim.md) +[*](ted_kaczynski.md) +[*](xxiivv.md) [*](fantasy_console.md) -[*](wiki_authors.md) +[*](nord_vpn.md) +[*](global_discussion.md) +[*](brainfuck.md) +[*](ancap.md) +[*](docker.md) +[*](fizzbuzz.md) +[*](hacker_culture.md) +[*](kiwifarms.md) +[*](human_language.md) +[*](flatland.md) +[*](hacking.md) +[*](linear_algebra.md) +[*](fractal.md) +[*](wavelet_transform.md) +[*](markov_chain.md) +[*](nanogenmo.md) +[*](earth.md) +[*](harry_potter.md) +[*](build_engine.md) +[*](mob_software.md) +[*](hyperoperation.md) +[*](pi.md) +[*](tom_scott.md) +[*](productivity_cult.md) +[*](devuan.md) +[*](kek.md) +[*](shogi.md) +[*](microtransaction.md) +[*](intellectual_property.md) +[*](crow_funding.md) +[*](rgb332.md) [*](fqa.md) -[*](anpac.md) -[*](liberalism.md) -[*](anal_bead.md) -[*](robot.md) -[*](dungeons_and_dragons.md) +[*](jedi_engine.md) +[*](programming_style.md) +[*](encryption.md) +[*](google.md) +[*](morality.md) +[*](infinity.md) +[*](human_language.md) +[*](hyperoperation.md) +[*](brainfuck.md) +[*](interaction_net.md) +[*](triangle.md) +[*](selflessness.md) +[*](wiki_style.md) [*](motivation.md) +[*](byte.md) +[*](hack.md) +[*](capitalism.md) +[*](sanism.md) +[*](c_tutorial.md) +[*](digital_signature.md) [*](xd.md) [*](usa.md) -[*](fixed_point.md) -[*](billboard.md) -[*](copyright.md) -[*](collision_detection.md) -[*](analytic_geometry.md) -[*](capitalism.md) -[*](wiki_pages.md) -[*](mental_outlaw.md) -[*](gemini.md) -[*](art.md) -[*](collision.md) -[*](javascript.md) -[*](digital.md) -[*](racism.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](privacy.md) -[*](sjw.md) -[*](marketing.md) -[*](optimization.md) -[*](facebook.md) -[*](unretard.md) -[*](trom.md) -[*](public_domain.md) -[*](ram.md) -[*](axiom_of_choice.md) -[*](demoscene.md) -[*](racetrack.md) -[*](rock.md) -[*](ssao.md) -[*](demo.md) -[*](implicit.md) -[*](randomness.md) -[*](openai.md) -[*](entropy.md) -[*](normalization.md) -[*](rule110.md) -[*](education.md) -[*](one.md) -[*](web.md) -[*](portal_rendering.md) -[*](morality.md) -[*](game_engine.md) -[*](ioccc.md) -[*](bootstrap.md) -[*](bit.md) -[*](turing_machine.md) -[*](anarch.md) -[*](dodleston.md) -[*](go.md) -[*](f2p.md) -[*](free.md) +[*](pseudominimalism.md) +[*](creative_commons.md) +[*](wiki_authors.md) +[*](fqa.md) +[*](smol_internet.md) +[*](quantum_gate.md) +[*](cc.md) +[*](dinosaur.md) +[*](minesweeper.md) +[*](fight.md) +[*](lrs.md) +[*](goodbye_world.md) +[*](unary.md) +[*](zuckerberg.md) +[*](computer.md) +[*](minesweeper.md) +[*](exercises.md) +[*](mandelbrot_set.md) +[*](wikidata.md) +[*](anarchism.md) [*](unix_philosophy.md) -[*](function.md) -[*](assertiveness.md) -[*](fork.md) +[*](prime.md) +[*](furry.md) +[*](100r.md) +[*](goodbye_world.md) [*](needed.md) +[*](java.md) [*](byte.md) -[*](deferred_shading.md) -[*](git.md) -[*](cyber.md) -[*](distrohopping.md) -[*](npc.md) -[*](fight_culture.md) -[*](cloud.md) -[*](name_is_important.md) -[*](john_carmack.md) -[*](harry_potter.md) -[*](lrs_dictionary.md) -[*](newspeak.md) -[*](encryption.md) -[*](prime.md) -[*](gnu.md) -[*](speech_synthesis.md) -[*](beauty.md) -[*](czechia.md) -[*](attribution.md) -[*](jedi_engine.md) -[*](security.md) -[*](shogi.md) -[*](library.md) -[*](dungeons_and_dragons.md) -[*](palette.md) -[*](malware.md) -[*](viznut.md) -[*](venus_project.md) -[*](ethics.md) -[*](programming_style.md) -[*](censorship.md) -[*](history.md) -[*](mouse.md) -[*](dog.md) -[*](faq.md) -[*](shortcut_thinking.md) -[*](rights_culture.md) -[*](tranny_software.md) -[*](cat_v.md) -[*](programming_language.md) -[*](free_hardware.md) -[*](bytebeat.md) -[*](kids_these_days.md) -[*](vim.md) -[*](paywall.md) +[*](version_numbering.md) +[*](3d_rendering.md) +[*](tattoo.md) [*](microsoft.md) -[*](elon_musk.md) -[*](left_right.md) -[*](3d_modeling.md) -[*](floss.md) -[*](world_broadcast.md) +[*](modern_software.md) +[*](cheating.md) +[*](flatland.md) +[*](cos.md) +[*](greenwashing.md) +[*](slowly_boiling_the_frog.md) +[*](digital.md) +[*](normalization.md) +[*](anarchism.md) +[*](low_poly.md) +[*](internet.md) +[*](sdf.md) +[*](neural_network.md) +[*](framework.md) +[*](youtube.md) +[*](speech_synthesis.md) +[*](demo.md) +[*](living.md) +[*](wiki_authors.md) +[*](steve_jobs.md) +[*](motivation.md) +[*](kiwifarms.md) [*](c_tutorial.md) -[*](linux.md) -[*](pseudo3d.md) -[*](information.md) -[*](moderation.md) -[*](approximation.md) -[*](how_to.md) -[*](byte.md) +[*](pi.md) [*](algorithm.md) -[*](bs.md) -[*](motivation.md) -[*](boot.md) -[*](boat.md) -[*](rapeware.md) -[*](aliasing.md) -[*](emoticon.md) +[*](free_speech.md) +[*](viznut.md) +[*](public_domain.md) +[*](42.md) +[*](education.md) +[*](unary.md) +[*](cyber.md) +[*](palette.md) +[*](dodleston.md) +[*](competition.md) +[*](trump.md) +[*](nd.md) +[*](autostereogram.md) [*](shit.md) -[*](programming.md) -[*](proprietary_software.md) -[*](docker.md) -[*](crime_against_economy.md) -[*](living.md) -[*](cracking.md) -[*](copyleft.md) -[*](consumerism.md) -[*](sudoku.md) -[*](left.md) -[*](right.md) -[*](gay.md) -[*](niger.md) -[*](sigbovik.md) -[*](czechia.md) -[*](interpolation.md) -[*](elon_musk.md) -[*](nanogenmo.md) -[*](bbs.md) -[*](less_retarded_software.md) -[*](python.md) -[*](data_structure.md) -[*](antivirus_paradox.md) -[*](zero.md) -[*](css.md) -[*](plan9.md) -[*](quaternion.md) -[*](javascript.md) -[*](minesweeper.md) -[*](mandelbrot_set.md) -[*](fun.md) -[*](jedi_engine.md) -[*](pedophilia.md) -[*](atan.md) -[*](plusnigger.md) +[*](mental_outlaw.md) [*](recursion.md) -[*](fixed_point.md) -[*](living.md) -[*](firmware.md) -[*](needed.md) -[*](build_engine.md) -[*](forth.md) -[*](quantum_gate.md) -[*](formal_language.md) -[*](unretard.md) -[*](firmware.md) -[*](splinternet.md) -[*](bill_gates.md) -[*](thrembo.md) -[*](vim.md) -[*](good_enough.md) -[*](collision.md) -[*](right.md) -[*](explicit.md) -[*](rms.md) -[*](comment.md) -[*](twos_complement.md) -[*](lil.md) -[*](main.md) -[*](suckless.md) -[*](resnicks_termite.md) -[*](vector.md) -[*](mud.md) -[*](lambda_calculus.md) -[*](yes_they_can.md) -[*](wikipedia.md) -[*](cache.md) -[*](atan.md) -[*](jesus.md) -[*](trolling.md) -[*](chasm_the_rift.md) -[*](mud.md) -[*](plusnigger.md) -[*](sorting.md) -[*](collapse.md) -[*](mouse.md) -[*](coc.md) -[*](beauty.md) +[*](systemd.md) +[*](data_hoarding.md) [*](trusting_trust.md) -[*](old.md) -[*](whale.md) -[*](3d_modeling.md) -[*](justice.md) -[*](often_misunderstood.md) -[*](game.md) -[*](interaction_net.md) -[*](steganography.md) -[*](ui.md) -[*](ascii.md) -[*](corporation.md) -[*](pride.md) +[*](global_discussion.md) [*](corporation.md) -[*](trusting_trust.md) -[*](interpolation.md) -[*](dog.md) -[*](temple_os.md) -[*](needed.md) -[*](langtons_ant.md) -[*](just_werks.md) -[*](markov_chain.md) -[*](portability.md) -[*](watchdog.md) -[*](float.md) -[*](semiconductor.md) -[*](reactionary_software.md) -[*](trash_magic.md) -[*](python.md) -[*](fascism.md) +[*](disease.md) [*](black.md) -[*](free_universe.md) -[*](f2p.md) -[*](global_discussion.md) -[*](determinism.md) +[*](julia_set.md) [*](drummyfish.md) -[*](zuckerberg.md) -[*](kwangmyong.md) -[*](less_retarded_society.md) -[*](c_pitfalls.md) -[*](compression.md) -[*](kids_these_days.md) -[*](graphics.md) -[*](elo.md) -[*](reddit.md) +[*](double_buffering.md) [*](aliasing.md) -[*](semiconductor.md) -[*](nord_vpn.md) -[*](exercises.md) -[*](cc.md) -[*](pokitto.md) -[*](flatland.md) -[*](analytic_geometry.md) -[*](linux.md) -[*](small3dlib.md) -[*](intellectual_property.md) -[*](exercises.md) -[*](distrohopping.md) -[*](debugging.md) -[*](venus_project.md) -[*](island.md) -[*](app.md) -[*](shogi.md) -[*](rsa.md) -[*](neural_network.md) -[*](teletext.md) -[*](explicit.md) -[*](goodbye_world.md) -[*](c.md) +[*](creative_commons.md) +[*](combinatorics.md) [*](ubi.md) -[*](lrs_wiki.md) -[*](nationalism.md) -[*](license.md) -[*](color.md) -[*](operating_system.md) -[*](cpu.md) -[*](splinternet.md) -[*](comment.md) -[*](tom_scott.md) -[*](monad.md) -[*](science.md) -[*](greenwashing.md) -[*](nc.md) -[*](update_culture.md) -[*](piracy.md) -[*](entrepreneur.md) -[*](physics.md) -[*](permacomputing.md) -[*](raylib.md) -[*](tas.md) -[*](x86.md) -[*](capitalist_software.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](zen.md) +[*](rock.md) +[*](pokitto.md) +[*](pd.md) +[*](golang.md) [*](axiom_of_choice.md) -[*](tom_scott.md) -[*](atheism.md) -[*](sw_rendering.md) -[*](body_shaming.md) -[*](good_enough.md) +[*](trolling.md) +[*](troll.md) +[*](steganography.md) +[*](chess.md) +[*](youtube.md) +[*](langtons_ant.md) +[*](consumerism.md) +[*](app.md) +[*](web.md) +[*](marble_race.md) +[*](optimization.md) +[*](float.md) +[*](coc.md) +[*](lrs_dictionary.md) +[*](markov_chain.md) +[*](windows.md) +[*](newspeak.md) +[*](f2p.md) +[*](collapse.md) +[*](systemd.md) +[*](portability.md) +[*](abstraction.md) +[*](devuan.md) +[*](nord_vpn.md) +[*](altruism.md) +[*](brainfuck.md) +[*](rms.md) +[*](arduboy.md) +[*](world_broadcast.md) +[*](suicide.md) [*](universe.md) -[*](python.md) -[*](ronja.md) -[*](css.md) -[*](earth.md) -[*](trash_magic.md) -[*](wavelet_transform.md) -[*](paywall.md) -[*](jokes.md) -[*](de_facto.md) -[*](rapeware.md) -[*](nigger.md) -[*](tranny_software.md) -[*](proprietary.md) +[*](pseudoleft.md) +[*](name_is_important.md) +[*](niger.md) +[*](pride.md) [*](resnicks_termite.md) -[*](avpd.md) -[*](line.md) -[*](mechanical.md) -[*](version_numbering.md) -[*](phd.md) -[*](patent.md) +[*](body_shaming.md) +[*](femoid.md) +[*](trash_magic.md) +[*](css.md) +[*](compression.md) +[*](go.md) +[*](bill_gates.md) +[*](backgammon.md) +[*](luke_smith.md) [*](wow.md) -[*](programming_tips.md) -[*](cache.md) +[*](feminism.md) +[*](open_source.md) +[*](gaywashing.md) +[*](teletext.md) +[*](atheism.md) +[*](fuck.md) +[*](freedom.md) +[*](computer.md) +[*](function.md) +[*](trolling.md) +[*](logic_gate.md) +[*](everyone_does_it.md) +[*](autostereogram.md) +[*](sqrt.md) +[*](cos.md) +[*](how_to.md) +[*](art.md) +[*](lambda_calculus.md) +[*](duke3d.md) +[*](raylib.md) +[*](settled.md) +[*](crypto.md) +[*](books.md) +[*](framework.md) +[*](sqrt.md) +[*](gay.md) [*](modern_software.md) -[*](jesus.md) +[*](git.md) +[*](low_poly.md) +[*](settled.md) +[*](island.md) +[*](gigachad.md) +[*](sw_rendering.md) +[*](formal_language.md) +[*](bit_hack.md) [*](unicode.md) -[*](css.md) -[*](bytecode.md) -[*](bs.md) -[*](gui.md) -[*](anarchism.md) -[*](frameless.md) -[*](fight_culture.md) -[*](rsa.md) -[*](tpe.md) -[*](free_will.md) -[*](no_knowledge_proof.md) -[*](ethics.md) -[*](kiss.md) -[*](emoticon.md) -[*](diogenes.md) -[*](x86.md) -[*](sigbovik.md) -[*](hero.md) -[*](music.md) -[*](hash.md) -[*](world_broadcast.md) +[*](portability.md) +[*](fail_ab.md) +[*](pi.md) +[*](atheism.md) +[*](ai.md) +[*](proprietary.md) +[*](windows.md) +[*](hardware.md) +[*](malware.md) +[*](ronja.md) +[*](exercises.md) +[*](entrepreneur.md) +[*](pseudo3d.md) +[*](game.md) +[*](logic.md) [*](niger.md) -[*](esolang.md) -[*](sqrt.md) +[*](lil.md) +[*](mipmap.md) +[*](toxic.md) +[*](proprietary.md) +[*](marble_race.md) +[*](facebook.md) +[*](paradigm.md) +[*](bytecode.md) +[*](history.md) +[*](elon_musk.md) +[*](racetrack.md) +[*](sw.md) +[*](hexadecimal.md) +[*](physics_engine.md) +[*](love.md) +[*](transistor.md) +[*](mechanical.md) +[*](dynamic_programming.md) +[*](dick_reveal.md) +[*](zen.md) +[*](netstalking.md) +[*](build_engine.md) +[*](wiki_pages.md) +[*](usa.md) +[*](aliasing.md) +[*](information.md) +[*](productivity_cult.md) +[*](sorting.md) +[*](unretard.md) +[*](tech.md) +[*](jargon_file.md) +[*](watchdog.md) +[*](collision_detection.md) +[*](motivation.md) +[*](capitalist_singularity.md) +[*](lgbt.md) +[*](pseudoleft.md) +[*](bazaar.md) +[*](moderation.md) +[*](shit.md) +[*](fsf.md) [*](soyence.md) -[*](free_culture.md) -[*](linear_algebra.md) -[*](brainfuck.md) +[*](turing_machine.md) +[*](iq.md) +[*](cc.md) +[*](wikidata.md) +[*](right.md) +[*](zen.md) +[*](cpp.md) +[*](crime_against_economy.md) +[*](english.md) +[*](shit.md) +[*](cpu.md) +[*](cpp.md) +[*](downto.md) +[*](hexadecimal.md) +[*](google.md) [*](unix.md) -[*](acronym.md) -[*](used.md) -[*](boat.md) +[*](fun.md) +[*](charity_sex.md) +[*](pokitto.md) +[*](physics.md) +[*](wiki_rights.md) +[*](greenwashing.md) +[*](maintenance.md) +[*](www.md) +[*](kwangmyong.md) +[*](color.md) +[*](music.md) +[*](kiss.md) +[*](nokia.md) +[*](ui.md) +[*](security.md) +[*](web.md) +[*](anarchism.md) +[*](xonotic.md) +[*](piracy.md) [*](computational_complexity.md) -[*](libre.md) -[*](furry.md) -[*](x86.md) -[*](wavelet_transform.md) -[*](kids_these_days.md) +[*](permacomputing_wiki.md) +[*](bullshit.md) +[*](nord_vpn.md) +[*](e.md) +[*](troll.md) +[*](graphics.md) +[*](wiki_stats.md) +[*](disease.md) +[*](game_of_life.md) +[*](wow.md) +[*](liberalism.md) [*](oop.md) -[*](aliasing.md) -[*](quine.md) -[*](normalization.md) +[*](bloat.md) +[*](programming_style.md) +[*](cyber.md) +[*](furry.md) +[*](qubit.md) +[*](color.md) +[*](faggot.md) +[*](military.md) +[*](tattoo.md) +[*](ancap.md) +[*](determinism.md) +[*](wow.md) +[*](aaron_swartz.md) +[*](harry_potter.md) +[*](atheism.md) +[*](complexity.md) +[*](acronym.md) +[*](universe.md) +[*](diogenes.md) +[*](myths.md) +[*](gopher.md) +[*](encryption.md) +[*](javascript.md) +[*](vim.md) +[*](linear_algebra.md) +[*](ssao.md) +[*](operating_system.md) +[*](myths.md) +[*](portal_rendering.md) +[*](name_is_important.md) +[*](hacker_culture.md) +[*](git.md) +[*](fediverse.md) +[*](nationalism.md) +[*](splinternet.md) +[*](formal_language.md) +[*](future_proof.md) +[*](free_universe.md) +[*](capitalist_software.md) +[*](viznut.md) +[*](bytecode.md) +[*](bullshit.md) [*](minimalism.md) -[*](raycasting.md) -[*](complexity.md) -[*](pi.md) +[*](abstraction.md) +[*](see_through_clothes.md) +[*](copyleft.md) +[*](hyperoperation.md) +[*](ascii.md) [*](easier_done_than_said.md) -[*](football.md) -[*](pseudoleft.md) -[*](deep_blue.md) +[*](minigame.md) +[*](copyfree.md) +[*](vim.md) +[*](wikiwikiweb.md) +[*](no_knowledge_proof.md) +[*](less_retarded_software.md) +[*](reddit.md) +[*](update_culture.md) +[*](main.md) +[*](kids_these_days.md) +[*](steve_jobs.md) +[*](antivirus_paradox.md) +[*](infinity.md) +[*](kids_these_days.md) +[*](python.md) +[*](beauty.md) +[*](tranny_software.md) +[*](one.md) +[*](mud.md) +[*](netstalking.md) +[*](wavelet_transform.md) +[*](anarch.md) +[*](raycasting.md) +[*](bbs.md) +[*](gui.md) +[*](deferred_shading.md) +[*](often_misunderstood.md) +[*](pokitto.md) +[*](kwangmyong.md) +[*](cache.md) +[*](cancer.md) +[*](plusnigger.md) [*](demoscene.md) +[*](interplanetary_internet.md) +[*](czechia.md) [*](wikipedia.md) -[*](rights_culture.md) -[*](moderation.md) -[*](gigachad.md) -[*](lrs.md) -[*](assembly.md) -[*](cancer.md) -[*](kiss.md) -[*](fractal.md) -[*](bitreich.md) -[*](paradigm.md) -[*](people.md) -[*](everyone_does_it.md) -[*](microsoft.md) -[*](raycastlib.md) +[*](open_console.md) +[*](dick_reveal.md) +[*](fascism.md) +[*](sigbovik.md) +[*](copyright.md) +[*](ronja.md) +[*](science.md) +[*](number.md) +[*](gender_studies.md) +[*](rust.md) +[*](cat_v.md) +[*](assertiveness.md) [*](chinese.md) -[*](bullshit.md) +[*](noise.md) +[*](pseudoleft.md) +[*](arch.md) +[*](dog.md) +[*](jesus.md) +[*](collision_detection.md) +[*](distrohopping.md) +[*](luke_smith.md) +[*](portal_rendering.md) +[*](apple.md) +[*](often_confused.md) +[*](rsa.md) +[*](egoism.md) +[*](bill_gates.md) +[*](c.md) +[*](girl.md) +[*](loc.md) +[*](programming_tips.md) +[*](sjw.md) +[*](comun.md) +[*](graveyard.md) +[*](security.md) +[*](marketing.md) +[*](pedophilia.md) +[*](free_speech.md) +[*](world_broadcast.md) +[*](bit_hack.md) +[*](antivirus_paradox.md) +[*](earth.md) +[*](shortcut_thinking.md) +[*](less_retarded_hardware.md) +[*](fight.md) +[*](mouse.md) +[*](emoticon.md) +[*](de_facto.md) +[*](steganography.md) +[*](entropy.md) +[*](xxiivv.md) +[*](history.md) +[*](os.md) +[*](pseudominimalism.md) +[*](fascist.md) +[*](unix_philosophy.md) +[*](cracking.md) +[*](universe.md) +[*](interaction_net.md) +[*](zuckerberg.md) +[*](arch.md) +[*](feminism.md) +[*](work.md) +[*](nationalism.md) +[*](public_domain.md) +[*](software.md) +[*](quaternion.md) +[*](encryption.md) +[*](smart.md) +[*](tor.md) +[*](vector.md) +[*](free_hardware.md) +[*](left_right.md) +[*](whale.md) +[*](license.md) +[*](coc.md) +[*](programming_language.md) +[*](kiss.md) +[*](os.md) +[*](often_misunderstood.md) +[*](deep_blue.md) +[*](gay.md) +[*](soyence.md) +[*](liberalism.md) +[*](wizard.md) +[*](ubi.md) +[*](nd.md) [*](old.md) -[*](modern_software.md) -[*](raycastlib.md) -[*](shit.md) +[*](race.md) +[*](chess.md) +[*](fear_culture.md) +[*](library.md) +[*](wizard.md) +[*](left.md) +[*](githopping.md) +[*](fourier_transform.md) +[*](teletext.md) +[*](interpolation.md) [*](tensor_product.md) -[*](minimalism.md) -[*](julia_set.md) +[*](free_software.md) +[*](autoupdate.md) +[*](free_will.md) +[*](operating_system.md) +[*](books.md) +[*](suckless.md) [*](regex.md) -[*](microsoft.md) -[*](fuck.md) -[*](public_domain.md) -[*](cracker.md) -[*](acronym.md) -[*](marble_race.md) -[*](faq.md) -[*](transistor.md) +[*](wiki_style.md) +[*](throwaway_script.md) +[*](slowly_boiling_the_frog.md) +[*](duskos.md) +[*](marketing.md) +[*](free_universe.md) +[*](java.md) +[*](avpd.md) +[*](shortcut_thinking.md) +[*](geek.md) +[*](less_retarded_hardware.md) +[*](sw.md) +[*](magic.md) +[*](xonotic.md) +[*](public_domain_computer.md) +[*](stereotype.md) +[*](foss.md) +[*](democracy.md) +[*](compiler_bomb.md) +[*](systemd.md) +[*](palette.md) +[*](saf.md) +[*](myths.md) +[*](venus_project.md) +[*](political_correctness.md) +[*](cracking.md) +[*](proprietary.md) +[*](nd.md) +[*](jargon_file.md) +[*](digital_signature.md) +[*](boot.md) +[*](fixed_point.md) +[*](countercomplex.md) +[*](wiki_stats.md) +[*](competition.md) +[*](wiby.md) +[*](left.md) +[*](living.md) +[*](people.md) +[*](science.md) +[*](magic.md) +[*](fun.md) +[*](mainstream.md) +[*](mechanical.md) +[*](fsf.md) +[*](malware.md) +[*](small3dlib.md) [*](fqa.md) -[*](drummyfish.md) -[*](dodleston.md) +[*](public_domain.md) +[*](good_enough.md) +[*](21st_century.md) +[*](fractal.md) +[*](troll.md) +[*](microsoft.md) +[*](real_number.md) +[*](modern.md) +[*](tensor_product.md) +[*](lrs_dictionary.md) +[*](countercomplex.md) +[*](modern_software.md) +[*](military.md) +[*](arduboy.md) +[*](atan.md) +[*](cloud.md) +[*](name_is_important.md) +[*](quine.md) +[*](open_source.md) +[*](suicide.md) +[*](coding.md) +[*](mainstream.md) +[*](one.md) +[*](julia_set.md) +[*](viznut.md) +[*](linux.md) +[*](speech_synthesis.md) +[*](hash.md) +[*](needed.md) +[*](backpropagation.md) +[*](3d_model.md) +[*](crime_against_economy.md) +[*](human_language.md) +[*](tech.md) +[*](optimization.md) +[*](tranny_software.md) +[*](permacomputing_wiki.md) [*](memory_management.md) -[*](de_facto.md) -[*](race.md) -[*](stereotype.md) -[*](complexity.md) -[*](tangram.md) -[*](proprietary.md) -[*](mechanical.md) -[*](nord_vpn.md) -[*](apple.md) -[*](entrepreneur.md) -[*](oop.md) -[*](deep_blue.md) -[*](42.md) -[*](hack.md) -[*](people.md) -[*](pokitto.md) -[*](line.md) -[*](fear_culture.md) +[*](real_number.md) +[*](unicode.md) +[*](mandelbrot_set.md) +[*](compsci.md) +[*](pd.md) +[*](README.md) +[*](distrohopping.md) +[*](data_structure.md) +[*](binary.md) +[*](mandelbrot_set.md) +[*](procgen.md) +[*](firmware.md) +[*](copyright.md) [*](anpac.md) -[*](assembly.md) -[*](anarch.md) -[*](science.md) -[*](black.md) +[*](rule110.md) +[*](fork.md) +[*](brain_software.md) +[*](color.md) +[*](cancer.md) +[*](proprietary_software.md) +[*](right.md) +[*](sigbovik.md) +[*](vector.md) +[*](yes_they_can.md) +[*](free_culture.md) +[*](programming_language.md) +[*](art.md) +[*](fsf.md) +[*](c_sharp.md) +[*](niger.md) +[*](qubit.md) +[*](unix.md) +[*](programming_language.md) +[*](shader.md) [*](trom.md) -[*](bitreich.md) -[*](bilinear.md) -[*](os.md) -[*](lrs_dictionary.md) -[*](terry_davis.md) -[*](czechia.md) -[*](brainfuck.md) -[*](stereotype.md) -[*](procgen.md) -[*](sw_rendering.md) -[*](modern.md) -[*](shortcut_thinking.md) -[*](portal_rendering.md) -[*](compiler_bomb.md) -[*](competition.md) +[*](comment.md) +[*](usenet.md) +[*](fail_ab.md) +[*](free.md) +[*](needed.md) +[*](digital_signature.md) +[*](finished.md) +[*](diogenes.md) +[*](trash_magic.md) +[*](gigachad.md) +[*](coc.md) +[*](analog.md) +[*](paradigm.md) [*](windows.md) -[*](aaron_swartz.md) -[*](quaternion.md) -[*](ethics.md) +[*](boat.md) +[*](freedom.md) +[*](npc.md) +[*](ascii_art.md) +[*](fascism.md) +[*](compiler_bomb.md) +[*](tangram.md) +[*](mipmap.md) +[*](go.md) +[*](countercomplex.md) [*](prime.md) -[*](hexadecimal.md) -[*](recursion.md) -[*](compression.md) -[*](progress.md) -[*](nanogenmo.md) -[*](charity_sex.md) -[*](foss.md) -[*](www.md) -[*](hero.md) -[*](hard_to_learn_easy_to_master.md) -[*](smart.md) -[*](femoid.md) -[*](monad.md) -[*](microtheft.md) -[*](loc.md) +[*](fourier_transform.md) +[*](backgammon.md) +[*](demoscene.md) +[*](fork.md) +[*](evil.md) [*](sigbovik.md) -[*](capitalist_singularity.md) -[*](combinatorics.md) +[*](sanism.md) +[*](pd.md) +[*](modern.md) +[*](javascript.md) +[*](app.md) +[*](rgb565.md) +[*](chaos.md) [*](bbs.md) -[*](often_confused.md) -[*](marxism.md) -[*](bs.md) -[*](free_software.md) -[*](boot.md) -[*](permacomputing.md) -[*](noise.md) -[*](rust.md) -[*](bit_hack.md) -[*](optimization.md) -[*](lrs.md) -[*](bloat.md) -[*](vim.md) -[*](charity_sex.md) -[*](rgb332.md) -[*](trump.md) -[*](crime_against_economy.md) -[*](throwaway_script.md) -[*](productivity_cult.md) -[*](dog.md) -[*](dinosaur.md) -[*](anal_bead.md) -[*](public_domain_computer.md) -[*](girl.md) -[*](plan9.md) -[*](nd.md) -[*](determinism.md) -[*](furry.md) -[*](slowly_boiling_the_frog.md) -[*](viznut.md) +[*](interesting.md) +[*](sw_rendering.md) +[*](justice.md) +[*](nationalism.md) +[*](rms.md) +[*](encyclopedia.md) +[*](sorting.md) +[*](pride.md) [*](bootstrap.md) -[*](anarch.md) -[*](procgen.md) -[*](interplanetary_internet.md) -[*](c_sharp.md) +[*](free_culture.md) +[*](newspeak.md) +[*](culture.md) [*](smallchesslib.md) -[*](hero_culture.md) -[*](proprietary_software.md) -[*](qubit.md) -[*](blender.md) -[*](how_to.md) -[*](competition.md) -[*](myths.md) -[*](computer.md) -[*](wiki_rights.md) -[*](unary.md) -[*](www.md) -[*](nd.md) -[*](avpd.md) -[*](anpac.md) -[*](saf.md) -[*](sqrt.md) -[*](shortcut_thinking.md) -[*](100r.md) +[*](soydev.md) +[*](cache.md) [*](right.md) -[*](programming_tips.md) -[*](recursion.md) -[*](p_vs_np.md) -[*](internet.md) -[*](aaron_swartz.md) -[*](pi.md) -[*](rgb332.md) -[*](work.md) -[*](tech.md) +[*](anal_bead.md) +[*](whale.md) +[*](linux.md) +[*](software.md) +[*](raycastlib.md) +[*](avpd.md) +[*](fediverse.md) +[*](bloat_monopoly.md) +[*](paradigm.md) +[*](gay.md) +[*](john_carmack.md) +[*](boat.md) +[*](semiconductor.md) +[*](monad.md) +[*](duke3d.md) +[*](complexity.md) +[*](wikipedia.md) [*](soyence.md) -[*](transistor.md) -[*](public_domain_computer.md) -[*](cracker.md) -[*](minigame.md) -[*](fixed_point.md) +[*](rgb332.md) +[*](unicode.md) +[*](cc.md) +[*](tinyphysicsengine.md) +[*](watchdog.md) +[*](resnicks_termite.md) +[*](rule110.md) +[*](wiki_stats.md) +[*](capitalism.md) +[*](wiki_pages.md) +[*](fight.md) +[*](free_hardware.md) +[*](rgb565.md) +[*](minimalism.md) +[*](wikiwikiweb.md) +[*](boot.md) +[*](wikidata.md) +[*](pseudorandomness.md) +[*](collapse.md) +[*](raycasting.md) +[*](neural_network.md) +[*](everyone_does_it.md) +[*](censorship.md) +[*](intellectual_property.md) +[*](social_inertia.md) +[*](future_proof.md) +[*](furry.md) +[*](interaction_net.md) +[*](unix_philosophy.md) +[*](abstraction.md) +[*](smallchesslib.md) +[*](libertarianism.md) +[*](line.md) +[*](plusnigger.md) +[*](ram.md) [*](toxic.md) -[*](autostereogram.md) -[*](tranny_software.md) -[*](science.md) -[*](README.md) -[*](chess.md) -[*](encryption.md) -[*](atheism.md) -[*](selflessness.md) -[*](3d_rendering.md) -[*](ronja.md) -[*](sanism.md) -[*](lrs_dictionary.md) -[*](disease.md) -[*](modern.md) -[*](magic.md) -[*](steve_jobs.md) -[*](stereotype.md) -[*](xonotic.md) -[*](smol_internet.md) +[*](3d_modeling.md) +[*](math.md) +[*](oop.md) +[*](tpe.md) +[*](www.md) +[*](hw.md) +[*](rights_culture.md) +[*](42.md) +[*](chaos.md) +[*](goodbye_world.md) +[*](thrembo.md) +[*](love.md) +[*](minesweeper.md) +[*](bilinear.md) +[*](cheating.md) +[*](cache.md) +[*](privacy.md) +[*](good_enough.md) [*](dinosaur.md) -[*](rule110.md) -[*](cos.md) -[*](egoism.md) -[*](audiophilia.md) -[*](quantum_gate.md) -[*](netstalking.md) -[*](copyleft.md) -[*](ancap.md) -[*](cc0.md) -[*](capitalist_singularity.md) -[*](freedom.md) +[*](fuck.md) [*](microtransaction.md) -[*](egoism.md) -[*](slowly_boiling_the_frog.md) -[*](binary.md) -[*](fourier_transform.md) -[*](culture.md) -[*](iq.md) -[*](nanogenmo.md) -[*](gaywashing.md) -[*](trash_magic.md) -[*](portability.md) +[*](fear_culture.md) +[*](docker.md) [*](tpe.md) -[*](transistor.md) -[*](devuan.md) -[*](os.md) -[*](data_hoarding.md) -[*](trusting_trust.md) -[*](mud.md) -[*](fuck.md) -[*](ancap.md) -[*](rgb565.md) -[*](maintenance.md) -[*](wizard.md) -[*](lrs_wiki.md) -[*](function.md) -[*](how_to.md) +[*](internet.md) +[*](ram.md) +[*](bloat.md) +[*](femoid.md) +[*](fight_culture.md) +[*](minigame.md) +[*](procgen.md) +[*](marxism.md) +[*](compsci.md) +[*](copyright.md) +[*](turing_machine.md) +[*](less_retarded_society.md) +[*](toxic.md) +[*](explicit.md) +[*](often_confused.md) +[*](audiophilia.md) +[*](free.md) +[*](normalization.md) +[*](piracy.md) +[*](internet.md) +[*](tech.md) +[*](magic.md) +[*](build_engine.md) +[*](interplanetary_internet.md) +[*](python.md) +[*](triangle.md) [*](gopher.md) -[*](freedom.md) -[*](README.md) +[*](monad.md) +[*](minimalism.md) +[*](foss.md) +[*](intellectual_property.md) +[*](trump.md) +[*](libertarianism.md) +[*](smol_internet.md) +[*](openai.md) +[*](qubit.md) +[*](ram.md) +[*](watchdog.md) +[*](chasm_the_rift.md) +[*](fantasy_console.md) +[*](logic_gate.md) +[*](line.md) +[*](bill_gates.md) +[*](pseudo3d.md) +[*](lrs.md) +[*](femoid.md) +[*](easier_done_than_said.md) +[*](assembly.md) +[*](progress.md) +[*](procgen.md) +[*](hero.md) +[*](recursion.md) +[*](hacking.md) +[*](doom.md) +[*](entropy.md) +[*](thrembo.md) +[*](hero_culture.md) [*](liberalism.md) -[*](open_source.md) -[*](future_proof.md) -[*](demo.md) -[*](kek.md) -[*](wiki_stats.md) -[*](graphics.md) -[*](tech.md) -[*](deferred_shading.md) -[*](capitalism.md) -[*](plan9.md) -[*](sdf.md) -[*](libre.md) -[*](niggercoin.md) -[*](programming.md) -[*](data_hoarding.md) -[*](left.md) -[*](linear_algebra.md) -[*](portal_rendering.md) -[*](racetrack.md) -[*](hash.md) -[*](minesweeper.md) -[*](steve_jobs.md) -[*](21st_century.md) -[*](lgbt.md) -[*](combinatorics.md) -[*](left_right.md) -[*](love.md) -[*](anarchism.md) -[*](debugging.md) -[*](cracking.md) -[*](countercomplex.md) -[*](gender_studies.md) -[*](sw.md) -[*](harry_potter.md) -[*](productivity_cult.md) -[*](githopping.md) -[*](sjw.md) -[*](dynamic_programming.md) [*](easy_to_learn_hard_to_master.md) -[*](java.md) -[*](unix_philosophy.md) -[*](githopping.md) -[*](encryption.md) -[*](creative_commons.md) -[*](c_sharp.md) -[*](compiler_bomb.md) -[*](marble_race.md) -[*](forth.md) +[*](technology.md) +[*](education.md) +[*](anpac.md) +[*](left_right.md) +[*](dick_reveal.md) +[*](jokes.md) [*](data_structure.md) -[*](culture.md) -[*](comun.md) -[*](trolling.md) -[*](name_is_important.md) -[*](mob_software.md) -[*](web.md) -[*](unicode.md) -[*](triangle.md) -[*](java.md) -[*](palette.md) -[*](esolang.md) -[*](music.md) -[*](downto.md) -[*](smallchesslib.md) -[*](bill_gates.md) -[*](ubi.md) -[*](future_proof.md) -[*](e.md) -[*](minigame.md) -[*](smart.md) -[*](usenet.md) -[*](less_retarded_hardware.md) -[*](jedi_engine.md) -[*](wikiwikiweb.md) +[*](stereotype.md) +[*](easy_to_learn_hard_to_master.md) +[*](communism.md) +[*](ted_kaczynski.md) +[*](programming_tips.md) +[*](docker.md) +[*](proprietary_software.md) +[*](bazaar.md) +[*](murderer.md) +[*](approximation.md) +[*](free_will.md) [*](wiki_rights.md) -[*](wiki_stats.md) -[*](vector.md) -[*](atheism.md) -[*](compsci.md) -[*](saf.md) -[*](low_poly.md) -[*](duke3d.md) -[*](corporation.md) -[*](unary.md) -[*](data_structure.md) -[*](free_culture.md) -[*](finished.md) -[*](altruism.md) -[*](free.md) +[*](body_shaming.md) +[*](githopping.md) +[*](os.md) +[*](bazaar.md) +[*](selflessness.md) +[*](feminism.md) +[*](murderer.md) +[*](rock.md) +[*](ethics.md) +[*](history.md) +[*](regex.md) +[*](cc0.md) +[*](marketing.md) +[*](floss.md) +[*](gaywashing.md) +[*](rms.md) +[*](trusting_trust.md) +[*](apple.md) +[*](crypto.md) +[*](number.md) +[*](prime.md) +[*](billboard.md) +[*](used.md) +[*](assembly.md) +[*](holy_war.md) +[*](implicit.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](portability.md) +[*](rsa.md) +[*](f2p.md) +[*](physics.md) +[*](tattoo.md) +[*](de_facto.md) +[*](blender.md) +[*](bytebeat.md) +[*](wiki_authors.md) +[*](double_buffering.md) +[*](real_number.md) +[*](duskos.md) +[*](ethics.md) +[*](approximation.md) +[*](game.md) +[*](compression.md) +[*](xd.md) +[*](x86.md) +[*](arch.md) +[*](aaron_swartz.md) +[*](blender.md) +[*](hardware.md) +[*](gender_studies.md) +[*](youtube.md) +[*](randomness.md) +[*](oop.md) +[*](anal_bead.md) +[*](microtheft.md) +[*](doom.md) [*](dependency.md) -[*](luke_smith.md) -[*](netstalking.md) -[*](bullshit.md) -[*](work.md) -[*](fun.md) -[*](app.md) -[*](version_numbering.md) -[*](no_knowledge_proof.md) -[*](bill_gates.md) +[*](entrepreneur.md) [*](gnu.md) -[*](wizard.md) -[*](piracy.md) -[*](gender_studies.md) -[*](antialiasing.md) -[*](open_console.md) -[*](quaternion.md) +[*](primitive_3d.md) +[*](esolang.md) [*](42.md) -[*](float.md) -[*](love.md) -[*](julia_set.md) -[*](doom.md) -[*](fight_culture.md) -[*](computational_complexity.md) -[*](egoism.md) +[*](cpp.md) +[*](drummyfish.md) +[*](lmao.md) +[*](competition.md) +[*](hack.md) +[*](tranny_software.md) [*](data_hoarding.md) -[*](lambda_calculus.md) -[*](boot.md) -[*](pseudominimalism.md) +[*](microtheft.md) +[*](digital.md) +[*](quaternion.md) +[*](sudoku.md) +[*](python.md) +[*](beauty.md) +[*](comun.md) +[*](free_hardware.md) +[*](creative_commons.md) +[*](zero.md) +[*](data_hoarding.md) +[*](fork.md) +[*](rgb332.md) +[*](comment.md) +[*](sudoku.md) +[*](deferred_shading.md) +[*](update_culture.md) +[*](e.md) +[*](sqrt.md) [*](nokia.md) -[*](elo.md) -[*](free_body.md) -[*](computational_complexity.md) -[*](rsa.md) -[*](settled.md) -[*](tinyphysicsengine.md) -[*](military.md) -[*](marxism.md) -[*](competition.md) -[*](dependency.md) -[*](hacker_culture.md) -[*](openarena.md) -[*](soydev.md) -[*](maintenance.md) -[*](loc.md) -[*](maintenance.md) -[*](faggot.md) +[*](nc.md) +[*](people.md) +[*](public_domain_computer.md) +[*](semiconductor.md) +[*](logic_circuit.md) +[*](microtheft.md) +[*](billboard.md) +[*](hard_to_learn_easy_to_master.md) +[*](gnu.md) +[*](mob_software.md) +[*](robot.md) +[*](emoticon.md) +[*](justice.md) +[*](english.md) +[*](reddit.md) +[*](lil.md) +[*](aaron_swartz.md) +[*](usenet.md) +[*](cracking.md) [*](technology.md) -[*](wow.md) -[*](political_correctness.md) -[*](web.md) -[*](infinity.md) -[*](venus_project.md) -[*](magic.md) -[*](sanism.md) -[*](backpropagation.md) -[*](bootstrap.md) -[*](fight.md) -[*](cos.md) -[*](jargon_file.md) -[*](copyright.md) +[*](kek.md) +[*](turing_machine.md) +[*](wikipedia.md) +[*](openarena.md) +[*](wikiwikiweb.md) +[*](math.md) +[*](demoscene.md) +[*](morality.md) +[*](xxiivv.md) +[*](hack.md) +[*](trom.md) +[*](charity_sex.md) +[*](julia_set.md) [*](forth.md) -[*](physics_engine.md) -[*](human_language.md) -[*](collision_detection.md) -[*](zuckerberg.md) -[*](google.md) -[*](murderer.md) -[*](race.md) -[*](hacker_culture.md) -[*](antivirus_paradox.md) -[*](autoupdate.md) -[*](double_buffering.md) -[*](3d_modeling.md) -[*](free_body.md) -[*](watchdog.md) +[*](free_speech.md) +[*](often_misunderstood.md) +[*](entrepreneur.md) +[*](faq.md) +[*](tinyphysicsengine.md) [*](lmao.md) -[*](digital.md) -[*](open_source.md) -[*](billboard.md) -[*](cancer.md) -[*](facebook.md) -[*](combinatorics.md) -[*](quine.md) -[*](wiki_pages.md) -[*](flatland.md) -[*](luke_smith.md) -[*](lrs_wiki.md) -[*](proprietary.md) -[*](bullshit.md) -[*](future_proof.md) -[*](democracy.md) -[*](rust.md) -[*](intellectual_property.md) -[*](rule110.md) -[*](chess.md) -[*](blender.md) -[*](f2p.md) -[*](exercises.md) -[*](javascript.md) -[*](money.md) -[*](wiki_rights.md) -[*](elo.md) -[*](git.md) -[*](morality.md) -[*](books.md) -[*](de_facto.md) -[*](flatland.md) -[*](c.md) -[*](cache.md) -[*](sorting.md) -[*](pedophilia.md) -[*](systemd.md) -[*](free.md) -[*](rationalwiki.md) +[*](downto.md) +[*](political_correctness.md) +[*](gnu.md) +[*](game_of_life.md) +[*](gemini.md) +[*](graveyard.md) [*](military.md) -[*](altruism.md) -[*](ted_kaczynski.md) -[*](saf.md) -[*](global_discussion.md) -[*](formal_language.md) -[*](capitalism.md) -[*](uxn.md) -[*](graphics.md) -[*](bazaar.md) -[*](kiwifarms.md) -[*](hacker_culture.md) -[*](emoticon.md) -[*](hexadecimal.md) -[*](english.md) -[*](software.md) -[*](cc.md) -[*](free_universe.md) -[*](binary.md) -[*](quantum_gate.md) -[*](rgb565.md) -[*](football.md) -[*](fascist.md) -[*](infinity.md) -[*](racism.md) -[*](digital_signature.md) -[*](feminism.md) -[*](gui.md) -[*](murderer.md) -[*](gopher.md) -[*](cloud.md) -[*](algorithm.md) -[*](open_console.md) -[*](brain_software.md) +[*](sin.md) +[*](fixed_point.md) +[*](tangram.md) +[*](ioccc.md) +[*](czechia.md) +[*](dungeons_and_dragons.md) +[*](tinyphysicsengine.md) [*](nc.md) -[*](left_right.md) -[*](devuan.md) -[*](usenet.md) -[*](one.md) +[*](copyfree.md) [*](permacomputing.md) -[*](viznut.md) -[*](rgb565.md) -[*](jokes.md) -[*](mainstream.md) -[*](fight.md) -[*](smart.md) -[*](public_domain_computer.md) -[*](tas.md) -[*](crow_funding.md) +[*](complexity.md) +[*](ascii_art.md) +[*](people.md) +[*](explicit.md) +[*](democracy.md) +[*](memory_management.md) +[*](soydev.md) +[*](culture.md) +[*](hero_culture.md) +[*](binary.md) +[*](nigger.md) +[*](semiconductor.md) +[*](x86.md) [*](less_retarded_software.md) -[*](throwaway_script.md) -[*](motivation.md) -[*](crypto.md) -[*](marble_race.md) -[*](minesweeper.md) -[*](tinyphysicsengine.md) -[*](determinism.md) -[*](art.md) -[*](troll.md) -[*](langtons_ant.md) -[*](bbs.md) -[*](money.md) -[*](libertarianism.md) -[*](plusnigger.md) -[*](mainstream.md) -[*](analog.md) -[*](gigachad.md) -[*](coding.md) -[*](woman.md) -[*](gemini.md) -[*](temple_os.md) -[*](rust.md) -[*](windows.md) -[*](ubi.md) -[*](turing_machine.md) -[*](chaos.md) -[*](fediverse.md) -[*](linear_algebra.md) +[*](netstalking.md) +[*](golang.md) +[*](esolang.md) +[*](audiophilia.md) +[*](football.md) +[*](double_buffering.md) +[*](capitalist_singularity.md) +[*](easy_to_learn_hard_to_master.md) +[*](raycastlib.md) +[*](hw.md) +[*](java.md) +[*](brain_software.md) +[*](kids_these_days.md) +[*](earth.md) +[*](sdf.md) +[*](unretard.md) +[*](paywall.md) [*](zero.md) -[*](backgammon.md) -[*](suicide.md) -[*](markov_chain.md) -[*](kek.md) -[*](float.md) -[*](interaction_net.md) -[*](tor.md) -[*](bloat_monopoly.md) -[*](fail_ab.md) -[*](lil.md) -[*](p_vs_np.md) -[*](ai.md) -[*](greenwashing.md) -[*](global_discussion.md) +[*](interplanetary_internet.md) +[*](microtransaction.md) +[*](racism.md) +[*](cancer.md) +[*](mouse.md) [*](game.md) -[*](cos.md) -[*](4chan.md) -[*](steve_jobs.md) -[*](evil.md) -[*](fsf.md) -[*](gaywashing.md) -[*](billboard.md) -[*](facebook.md) -[*](one.md) -[*](chinese.md) -[*](raycastlib.md) +[*](twos_complement.md) +[*](football.md) +[*](lil.md) +[*](hacking.md) +[*](charity_sex.md) +[*](gui.md) +[*](corporation.md) [*](fail_ab.md) -[*](work.md) -[*](arch.md) -[*](go.md) -[*](world_broadcast.md) -[*](settled.md) -[*](ascii.md) -[*](bytebeat.md) -[*](less_retarded_hardware.md) +[*](terry_davis.md) +[*](compsci.md) +[*](hero.md) +[*](implicit.md) +[*](faggot.md) +[*](education.md) [*](tom_scott.md) -[*](charity_sex.md) +[*](wiki_rights.md) +[*](openai.md) +[*](esolang.md) +[*](disease.md) +[*](ssao.md) [*](settled.md) -[*](wow.md) -[*](justice.md) -[*](dick_reveal.md) -[*](art.md) -[*](luke_smith.md) -[*](build_engine.md) -[*](implicit.md) -[*](portability.md) -[*](neural_network.md) -[*](formal_language.md) -[*](fractal.md) -[*](raycasting.md) -[*](copyfree.md) -[*](island.md) -[*](double_buffering.md) -[*](progress.md) -[*](hyperoperation.md) -[*](tattoo.md) -[*](just_werks.md) -[*](devuan.md) -[*](io.md) -[*](randomness.md) -[*](black.md) -[*](doom.md) -[*](less_retarded_hardware.md) -[*](cc0.md) -[*](normalization.md) -[*](piracy.md) -[*](justice.md) -[*](information.md) -[*](selflessness.md) -[*](rms.md) -[*](hexadecimal.md) -[*](fascism.md) -[*](duke3d.md) -[*](holy_war.md) -[*](elon_musk.md) -[*](speech_synthesis.md) -[*](suckless.md) -[*](raylib.md) -[*](digital_signature.md) -[*](dungeons_and_dragons.md) -[*](low_poly.md) -[*](logic_gate.md) -[*](military.md) -[*](main.md) -[*](game_of_life.md) -[*](math.md) -[*](consumerism.md) -[*](memory_management.md) -[*](hacking.md) -[*](game.md) -[*](kwangmyong.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](malware.md) -[*](e.md) -[*](race.md) -[*](acronym.md) -[*](mental_outlaw.md) -[*](xonotic.md) -[*](magic.md) -[*](ascii_art.md) -[*](uxn.md) -[*](leading_the_pig_to_the_slaughterhouse.md) +[*](rgb565.md) +[*](dependency.md) +[*](javascript.md) +[*](interesting.md) +[*](teletext.md) +[*](21st_century.md) +[*](comun.md) +[*](x86.md) +[*](number.md) [*](backpropagation.md) -[*](bilinear.md) -[*](shit.md) -[*](lmao.md) -[*](often_confused.md) -[*](ai.md) -[*](niggercoin.md) -[*](greenwashing.md) -[*](ram.md) -[*](bloat.md) -[*](smol_internet.md) -[*](english.md) -[*](update_culture.md) -[*](aaron_swartz.md) -[*](blender.md) -[*](graveyard.md) -[*](sudoku.md) -[*](girl.md) -[*](go.md) -[*](mandelbrot_set.md) -[*](computer.md) -[*](physics.md) -[*](nokia.md) -[*](john_carmack.md) -[*](fsf.md) -[*](chaos.md) -[*](jargon_file.md) -[*](steganography.md) -[*](double_buffering.md) -[*](c_sharp.md) -[*](democracy.md) -[*](rms.md) -[*](gender_studies.md) -[*](trump.md) -[*](thrembo.md) -[*](license.md) -[*](trom.md) -[*](fizzbuzz.md) -[*](cat_v.md) -[*](primitive_3d.md) -[*](pride.md) -[*](countercomplex.md) -[*](furry.md) -[*](universe.md) -[*](zuckerberg.md) -[*](unretard.md) -[*](physics.md) -[*](fizzbuzz.md) -[*](copyleft.md) -[*](chinese.md) +[*](bootstrap.md) +[*](wiki_pages.md) +[*](de_facto.md) +[*](f2p.md) +[*](programming_style.md) +[*](ascii.md) +[*](harry_potter.md) +[*](duke3d.md) +[*](algorithm.md) +[*](monad.md) +[*](interpolation.md) +[*](programming_tips.md) [*](privacy.md) -[*](troll.md) -[*](wiby.md) -[*](real_number.md) -[*](arduboy.md) +[*](cloud.md) +[*](ancap.md) +[*](fight_culture.md) +[*](kek.md) +[*](wizard.md) +[*](less_retarded_society.md) +[*](gaywashing.md) +[*](ai.md) +[*](quine.md) +[*](hero_culture.md) +[*](bloat_monopoly.md) +[*](langtons_ant.md) +[*](distance.md) +[*](www.md) +[*](raylib.md) +[*](just_werks.md) +[*](bilinear.md) +[*](anal_bead.md) +[*](collapse.md) +[*](css.md) +[*](race.md) +[*](woman.md) +[*](sin.md) +[*](open_console.md) +[*](ronja.md) +[*](communism.md) +[*](bytebeat.md) +[*](chasm_the_rift.md) +[*](egoism.md) +[*](axiom_of_choice.md) +[*](free_body.md) +[*](nanogenmo.md) +[*](digital.md) +[*](communism.md) +[*](just_werks.md) +[*](how_to.md) +[*](sanism.md) +[*](tensor_product.md) +[*](programming.md) +[*](fuck.md) +[*](holy_war.md) +[*](jedi_engine.md) [*](tor.md) -[*](progress.md) -[*](dick_reveal.md) -[*](gay.md) -[*](cheating.md) -[*](programming_tips.md) -[*](good_enough.md) -[*](shogi.md) -[*](people.md) -[*](culture.md) -[*](crypto.md) +[*](justice.md) +[*](iq.md) +[*](world_broadcast.md) +[*](elo.md) +[*](game_engine.md) +[*](3d_modeling.md) +[*](saf.md) +[*](firmware.md) +[*](graphics.md) +[*](operating_system.md) +[*](twos_complement.md) +[*](quaternion.md) [*](autoupdate.md) -[*](logic_gate.md) -[*](procgen.md) -[*](see_through_clothes.md) -[*](pseudoleft.md) -[*](tensor_product.md) -[*](hacking.md) +[*](4chan.md) +[*](cracker.md) +[*](demo.md) +[*](anarch.md) +[*](geek.md) +[*](privacy.md) +[*](trom.md) +[*](old.md) +[*](cat_v.md) +[*](woman.md) +[*](c_sharp.md) +[*](function.md) +[*](work.md) +[*](float.md) +[*](analog.md) +[*](used.md) +[*](dungeons_and_dragons.md) +[*](lambda_calculus.md) +[*](debugging.md) +[*](demo.md) +[*](io.md) +[*](transistor.md) +[*](aliasing.md) +[*](floss.md) +[*](free_software.md) +[*](trump.md) +[*](normalization.md) +[*](proprietary_software.md) +[*](forth.md) +[*](steve_jobs.md) +[*](progress.md) +[*](frameless.md) +[*](sorting.md) [*](gigachad.md) -[*](resnicks_termite.md) +[*](vector.md) +[*](kiss.md) +[*](wiki_post_mortem.md) +[*](lgbt.md) +[*](crow_funding.md) +[*](democracy.md) +[*](hardware.md) +[*](ai.md) +[*](bs.md) +[*](primitive_3d.md) +[*](pedophilia.md) +[*](rights_culture.md) +[*](4chan.md) +[*](exercises.md) +[*](unretard.md) +[*](hash.md) [*](libre.md) -[*](sqrt.md) -[*](collision.md) -[*](21st_century.md) -[*](free_software.md) -[*](anarchism.md) -[*](free_culture.md) -[*](gemini.md) -[*](interplanetary_internet.md) -[*](math.md) -[*](slowly_boiling_the_frog.md) -[*](unix_philosophy.md) -[*](kiwifarms.md) +[*](wiki_style.md) +[*](analytic_geometry.md) +[*](girl.md) +[*](faq.md) +[*](kwangmyong.md) +[*](plan9.md) +[*](bit_hack.md) +[*](bootstrap.md) +[*](facebook.md) +[*](noise.md) +[*](pseudorandomness.md) +[*](raylib.md) +[*](island.md) +[*](explicit.md) +[*](old.md) +[*](lrs_wiki.md) +[*](3d_rendering.md) +[*](license.md) +[*](english.md) +[*](bit.md) [*](ascii_art.md) -[*](lgbt.md) -[*](openarena.md) -[*](tinyphysicsengine.md) -[*](logic_circuit.md) -[*](free_software.md) -[*](raycasting.md) -[*](arch.md) +[*](splinternet.md) +[*](rationalwiki.md) +[*](4chan.md) +[*](pedophilia.md) +[*](pride.md) +[*](libre.md) +[*](small3dlib.md) +[*](altruism.md) +[*](shogi.md) +[*](plusnigger.md) +[*](framework.md) +[*](distance.md) +[*](splinternet.md) +[*](mental_outlaw.md) +[*](selflessness.md) [*](phd.md) -[*](throwaway_script.md) -[*](cpu.md) -[*](free_universe.md) -[*](sin.md) -[*](sjw.md) -[*](microtheft.md) -[*](computer.md) -[*](xd.md) -[*](abstraction.md) -[*](ui.md) -[*](complexity.md) -[*](education.md) -[*](unix.md) -[*](hard_to_learn_easy_to_master.md) -[*](demoscene.md) -[*](pd.md) +[*](chasm_the_rift.md) +[*](formal_language.md) +[*](autoupdate.md) +[*](golang.md) +[*](terry_davis.md) [*](wiby.md) -[*](splinternet.md) -[*](langtons_ant.md) -[*](bytebeat.md) -[*](creative_commons.md) -[*](often_misunderstood.md) -[*](name_is_important.md) +[*](just_werks.md) [*](README.md) -[*](free_speech.md) -[*](newspeak.md) -[*](deep_blue.md) -[*](copyfree.md) -[*](girl.md) -[*](rgb332.md) -[*](number.md) -[*](pd.md) -[*](wiki_post_mortem.md) -[*](programming_style.md) -[*](palette.md) -[*](compression.md) -[*](p_vs_np.md) -[*](terry_davis.md) -[*](libertarianism.md) -[*](attribution.md) -[*](mandelbrot_set.md) -[*](unicode.md) -[*](tpe.md) -[*](suicide.md) -[*](dinosaur.md) -[*](pseudorandomness.md) -[*](java.md) -[*](io.md) -[*](fear_culture.md) -[*](cpu.md) -[*](pseudorandomness.md) -[*](shader.md) -[*](internet.md) -[*](faq.md) +[*](ted_kaczynski.md) +[*](markov_chain.md) +[*](README.md) +[*](nokia.md) +[*](unary.md) +[*](reactionary_software.md) +[*](deferred_shading.md) +[*](hw.md) +[*](randomness.md) +[*](coding.md) +[*](physics.md) [*](duskos.md) -[*](twos_complement.md) -[*](mob_software.md) -[*](frameless.md) -[*](malware.md) -[*](social_inertia.md) -[*](sorting.md) -[*](programming_language.md) -[*](easy_to_learn_hard_to_master.md) -[*](lambda_calculus.md) -[*](100r.md) -[*](often_misunderstood.md) -[*](see_through_clothes.md) -[*](brainfuck.md) +[*](uxn.md) +[*](no_knowledge_proof.md) +[*](open_console.md) +[*](audiophilia.md) +[*](john_carmack.md) +[*](cracker.md) +[*](venus_project.md) +[*](antialiasing.md) [*](ssao.md) -[*](diogenes.md) -[*](noise.md) -[*](racism.md) -[*](easy_to_learn_hard_to_master.md) -[*](bit_hack.md) -[*](wikidata.md) -[*](ronja.md) -[*](library.md) -[*](geek.md) -[*](mipmap.md) -[*](wikipedia.md) -[*](microtransaction.md) +[*](less_retarded_hardware.md) +[*](security.md) +[*](bullshit.md) +[*](maintenance.md) +[*](censorship.md) +[*](reactionary_software.md) +[*](21st_century.md) +[*](faq.md) +[*](c_pitfalls.md) +[*](web.md) +[*](moderation.md) [*](version_numbering.md) -[*](main.md) -[*](niger.md) -[*](holy_war.md) -[*](soydev.md) -[*](kwangmyong.md) -[*](apple.md) -[*](easier_done_than_said.md) -[*](nigger.md) +[*](100r.md) +[*](mud.md) +[*](wiki_post_mortem.md) +[*](bbs.md) +[*](girl.md) +[*](game_engine.md) [*](assertiveness.md) -[*](color.md) -[*](just_werks.md) [*](tas.md) -[*](atan.md) -[*](pseudo3d.md) -[*](c.md) -[*](lgbt.md) -[*](comun.md) -[*](island.md) -[*](free_hardware.md) -[*](digital_signature.md) -[*](altruism.md) -[*](mouse.md) -[*](productivity_cult.md) -[*](wiby.md) +[*](bs.md) +[*](patent.md) +[*](githopping.md) +[*](niggercoin.md) +[*](malware.md) +[*](crow_funding.md) +[*](debugging.md) +[*](debugging.md) +[*](marble_race.md) +[*](collision.md) +[*](coding.md) +[*](ui.md) +[*](fizzbuzz.md) +[*](bit.md) +[*](app.md) [*](game_engine.md) -[*](books.md) -[*](physics_engine.md) -[*](wiki_post_mortem.md) -[*](free_will.md) -[*](moderation.md) -[*](4chan.md) -[*](io.md) -[*](quine.md) -[*](lmao.md) -[*](netstalking.md) -[*](analog.md) -[*](fight.md) -[*](openarena.md) +[*](progress.md) +[*](tor.md) +[*](brain_software.md) +[*](jokes.md) +[*](linux.md) +[*](libre.md) +[*](rights_culture.md) +[*](hexadecimal.md) +[*](langtons_ant.md) +[*](emoticon.md) +[*](czechia.md) +[*](suicide.md) +[*](permacomputing.md) +[*](social_inertia.md) +[*](regex.md) +[*](rapeware.md) +[*](robot.md) +[*](npc.md) +[*](rust.md) +[*](boot.md) +[*](free_software.md) +[*](slowly_boiling_the_frog.md) +[*](nigger.md) +[*](cc0.md) +[*](acronym.md) +[*](patent.md) +[*](saf.md) +[*](compiler_bomb.md) +[*](rule110.md) +[*](fascist.md) +[*](css.md) +[*](main.md) +[*](ioccc.md) +[*](sjw.md) [*](smallchesslib.md) -[*](money.md) -[*](cyber.md) -[*](goodbye_world.md) +[*](rsa.md) +[*](computational_complexity.md) +[*](rapeware.md) +[*](autostereogram.md) +[*](logic.md) +[*](fight_culture.md) +[*](combinatorics.md) +[*](distrohopping.md) [*](libertarianism.md) -[*](terry_davis.md) -[*](windows.md) -[*](programming.md) -[*](function.md) -[*](cheating.md) -[*](pseudominimalism.md) -[*](minimalism.md) +[*](mipmap.md) +[*](reactionary_software.md) +[*](trash_magic.md) +[*](3d_model.md) +[*](permacomputing.md) +[*](lambda_calculus.md) +[*](less_retarded_society.md) +[*](racetrack.md) +[*](jargon_file.md) +[*](neural_network.md) +[*](maintenance.md) +[*](political_correctness.md) +[*](graphics.md) +[*](less_retarded_software.md) +[*](quantum_gate.md) +[*](temple_os.md) +[*](cpu.md) +[*](p_vs_np.md) +[*](determinism.md) +[*](fourier_transform.md) +[*](whale.md) [*](downto.md) -[*](fsf.md) -[*](sw.md) -[*](hacking.md) -[*](faggot.md) -[*](free_body.md) -[*](sin.md) -[*](100r.md) -[*](c_tutorial.md) -[*](body_shaming.md) -[*](open_source.md) +[*](implicit.md) +[*](evil.md) +[*](dependency.md) +[*](yes_they_can.md) +[*](io.md) +[*](attribution.md) +[*](easier_done_than_said.md) +[*](nanogenmo.md) +[*](anpac.md) +[*](linear_algebra.md) +[*](uxn.md) +[*](good_enough.md) +[*](bitreich.md) +[*](axiom_of_choice.md) +[*](physics_engine.md) [*](dynamic_programming.md) -[*](bytecode.md) -[*](football.md) -[*](fascist.md) -[*](fediverse.md) -[*](zen.md) -[*](color.md) -[*](no_knowledge_proof.md) -[*](graveyard.md) -[*](pseudoleft.md) -[*](turing_machine.md) -[*](google.md) -[*](raylib.md) -[*](nord_vpn.md) -[*](randomness.md) -[*](approximation.md) -[*](niggercoin.md) -[*](boat.md) -[*](ascii_art.md) -[*](game_of_life.md) -[*](troll.md) -[*](cheating.md) +[*](temple_os.md) +[*](cat_v.md) +[*](paywall.md) +[*](gemini.md) +[*](dog.md) +[*](assertiveness.md) +[*](license.md) +[*](kiwifarms.md) +[*](social_inertia.md) +[*](rust.md) +[*](free_universe.md) +[*](altruism.md) +[*](cracker.md) +[*](race.md) +[*](p_vs_np.md) +[*](books.md) +[*](tas.md) +[*](quine.md) +[*](phd.md) +[*](gopher.md) +[*](trusting_trust.md) +[*](mechanical.md) [*](unix.md) -[*](3d_rendering.md) -[*](bazaar.md) +[*](tpe.md) +[*](portal_rendering.md) +[*](bs.md) +[*](float.md) +[*](lrs_wiki.md) +[*](3d_model.md) +[*](yes_they_can.md) +[*](gemini.md) +[*](information.md) +[*](approximation.md) +[*](newspeak.md) +[*](money.md) +[*](analog.md) +[*](openarena.md) [*](steganography.md) -[*](feminism.md) -[*](compiler_bomb.md) -[*](fascism.md) -[*](wiki_authors.md) +[*](lmao.md) +[*](firmware.md) +[*](capitalist_software.md) +[*](fantasy_console.md) +[*](how_to.md) +[*](bit.md) +[*](p_vs_np.md) [*](physics_engine.md) -[*](bloat_monopoly.md) -[*](3d_model.md) -[*](drummyfish.md) -[*](hardware.md) -[*](coding.md) -[*](tech.md) +[*](recursion.md) +[*](lrs_dictionary.md) +[*](dungeons_and_dragons.md) +[*](nigger.md) +[*](analytic_geometry.md) +[*](resnicks_termite.md) +[*](corporation.md) +[*](3d_modeling.md) +[*](uxn.md) +[*](sdf.md) +[*](hard_to_learn_easy_to_master.md) +[*](money.md) +[*](gender_studies.md) +[*](memory_management.md) +[*](analytic_geometry.md) +[*](one.md) +[*](comment.md) +[*](greenwashing.md) +[*](throwaway_script.md) +[*](pseudorandomness.md) +[*](interesting.md) +[*](ubi.md) +[*](tom_scott.md) +[*](fascism.md) [*](usa.md) -[*](gaywashing.md) -[*](fuck.md) +[*](bilinear.md) [*](fizzbuzz.md) -[*](xxiivv.md) -[*](free_hardware.md) -[*](sw.md) -[*](shader.md) -[*](communism.md) -[*](social_inertia.md) -[*](music.md) -[*](fear_culture.md) -[*](robot.md) -[*](toxic.md) -[*](free_speech.md) -[*](low_poly.md) -[*](entropy.md) -[*](debugging.md) +[*](sjw.md) +[*](microsoft.md) +[*](palette.md) +[*](distance.md) +[*](library.md) +[*](island.md) +[*](morality.md) +[*](see_through_clothes.md) +[*](murderer.md) +[*](antialiasing.md) +[*](hero.md) +[*](open_source.md) +[*](data_structure.md) +[*](assembly.md) +[*](geek.md) +[*](atan.md) +[*](dynamic_programming.md) [*](diogenes.md) -[*](fantasy_console.md) -[*](wikidata.md) -[*](regex.md) -[*](hero_culture.md) -[*](assertiveness.md) -[*](real_number.md) -[*](npc.md) -[*](e.md) -[*](dependency.md) -[*](demo.md) -[*](temple_os.md) -[*](patent.md) -[*](doom.md) -[*](mipmap.md) -[*](used.md) -[*](hard_to_learn_easy_to_master.md) -[*](attribution.md) -[*](youtube.md) +[*](free_body.md) +[*](music.md) +[*](future_proof.md) [*](ascii.md) -[*](app.md) -[*](hack.md) -[*](tangram.md) -[*](gay.md) -[*](interpolation.md) -[*](qubit.md) -[*](deferred_shading.md) -[*](reddit.md) -[*](ssao.md) -[*](tattoo.md) -[*](everyone_does_it.md) -[*](cpp.md) -[*](rationalwiki.md) -[*](logic_gate.md) -[*](floss.md) -[*](xd.md) -[*](cpp.md) -[*](3d_rendering.md) +[*](usenet.md) [*](technology.md) -[*](neural_network.md) -[*](minigame.md) -[*](collision_detection.md) -[*](paradigm.md) -[*](antialiasing.md) -[*](harry_potter.md) -[*](xxiivv.md) +[*](venus_project.md) +[*](cheating.md) +[*](twos_complement.md) +[*](faggot.md) [*](line.md) -[*](technology.md) -[*](ioccc.md) -[*](chasm_the_rift.md) -[*](vector.md) -[*](less_retarded_society.md) -[*](copyright.md) -[*](small3dlib.md) +[*](dodleston.md) +[*](deep_blue.md) [*](used.md) -[*](hw.md) -[*](interesting.md) -[*](number.md) -[*](yes_they_can.md) -[*](golang.md) -[*](kek.md) -[*](nigger.md) -[*](bazaar.md) -[*](fail_ab.md) -[*](bloat.md) -[*](avpd.md) -[*](chaos.md) -[*](distance.md) -[*](pedophilia.md) -[*](pseudo3d.md) -[*](apple.md) -[*](newspeak.md) -[*](femoid.md) -[*](julia_set.md) -[*](brain_software.md) -[*](permacomputing_wiki.md) -[*](ancap.md) -[*](nc.md) -[*](usa.md) -[*](explicit.md) -[*](encyclopedia.md) -[*](wiki_style.md) -[*](cancer.md) -[*](antivirus_paradox.md) -[*](qubit.md) -[*](3d_model.md) -[*](wizard.md) -[*](ioccc.md) -[*](social_inertia.md) -[*](regex.md) -[*](disease.md) -[*](build_engine.md) -[*](encyclopedia.md) -[*](pseudominimalism.md) -[*](wiki_stats.md) -[*](foss.md) -[*](tattoo.md) -[*](update_culture.md) -[*](coc.md) -[*](backpropagation.md) -[*](kiss.md) -[*](fourier_transform.md) -[*](42.md) +[*](moderation.md) +[*](main.md) +[*](chinese.md) +[*](shader.md) +[*](fear_culture.md) +[*](dog.md) +[*](transistor.md) +[*](censorship.md) +[*](quantum_gate.md) +[*](jedi_engine.md) +[*](backgammon.md) +[*](shader.md) +[*](zero.md) +[*](niggercoin.md) +[*](100r.md) +[*](holy_war.md) +[*](dodleston.md) +[*](black.md) +[*](racetrack.md) +[*](xonotic.md) +[*](jokes.md) +[*](finished.md) +[*](jesus.md) +[*](copyleft.md) +[*](hard_to_learn_easy_to_master.md) +[*](egoism.md) +[*](raycastlib.md) +[*](logic.md) +[*](anarch.md) +[*](money.md) +[*](algorithm.md) +[*](elon_musk.md) +[*](wiby.md) +[*](smol_internet.md) [*](c_pitfalls.md) -[*](woman.md) +[*](entropy.md) +[*](io.md) +[*](terry_davis.md) +[*](science.md) +[*](modern.md) +[*](loc.md) +[*](phd.md) +[*](c_sharp.md) [*](git.md) -[*](jargon_file.md) -[*](21st_century.md) +[*](fixed_point.md) +[*](paywall.md) +[*](elo.md) +[*](library.md) +[*](luke_smith.md) +[*](raycasting.md) +[*](stereotype.md) +[*](left.md) +[*](racism.md) +[*](frameless.md) +[*](programming.md) +[*](free_culture.md) +[*](logic_gate.md) +[*](sw_rendering.md) +[*](game_of_life.md) +[*](robot.md) +[*](antialiasing.md) +[*](programming.md) +[*](lgbt.md) +[*](rapeware.md) +[*](black.md) +[*](graveyard.md) +[*](optimization.md) +[*](frameless.md) +[*](loc.md) +[*](marxism.md) diff --git a/science.md b/science.md index b293c0c..cc9f65c 100644 --- a/science.md +++ b/science.md @@ -8,7 +8,7 @@ In the wider sense science may include anything that involves systematic intelle TODO: some noice tree of sciences or smth -**There is no simple objective definition of a strict science** -- the definition of science is hugely arbitrary, political and changes with development of society, technology, culture, changes in government and so on. Science should basically stand for the most rational and objective knowledge we're able to practically obtain about something, however the specific criteria for this are unclear and have to be agreed on. The [scientific method](scientific_method.md) is evolving and there are many debates over it, with some even stating that there can be no universal method of science. The [p-value](p_value.md) used to determine whether measurements are statistically significant has basically just an arbitrarily set value for what's considered a "safe enough" result. Some say that if a research is to be trusted, it has to be [peer reviewed](peer_review.md), i.e. that what's scientific has to be approved by chosen experts -- this may be not just because people can make mistakes but also because in current highly competitive society there appears science [bloat](bloat.md), obscurity and tendencies to push fake research and purposeful deception, i.e. our politics and culture are already defining what science is. However the stricter the criteria for science, the more monopolized, centralized, controlled and censored it becomes. +**There is no simple objective definition of a strict science** -- the definition of science is hugely arbitrary, political and changes with development of society, technology, culture, changes in government and so on. Science should basically stand for the most rational and objective knowledge we're able to practically obtain about something, however the specific criteria for this are unclear and have to be agreed on -- even if we leave out malicious intents at shaping the definition of science and only consider a completely honest definition of "rational effort", what's "rational" is highly subjective -- What level of confidence is high enough to us? Which axioms to accept? Which methods do we believe to be reliable enough? To believe a mathematical proof is correct, is it enough if 5 experts check there is no mistake? Or does it have to be 20 experts? Even among top scientists there are always subjective opinions. The [scientific method](scientific_method.md) is evolving and there are many debates over it, with some even stating that there can be no universal method of science. The [p-value](p_value.md) used to determine whether measurements are statistically significant has basically just an arbitrarily set value for what's considered a "safe enough" result. Some say that if a research is to be trusted, it has to be [peer reviewed](peer_review.md), i.e. that what's scientific has to be approved by chosen experts -- this may be not just because people can make mistakes but also because in current highly competitive society there appears science [bloat](bloat.md), obscurity and tendencies to push fake research and purposeful deception, i.e. our politics and culture are already defining what science is. However the stricter the criteria for science, the more monopolized, centralized, controlled and censored it becomes. **Science is not almighty** as brainwashed internet [euphoric](atheism.md) kids like to think, that's a completely false idea fed to them by the overlords who abuse "science" ([soyence](soyence.md)) for control of the masses, as religion was and is still used -- soyence is the new religion [nowadays](21st_century.md). Yes, (true) science is great, it is an awesome tool, but it is just that -- a tool, usable for SOME tasks, not a [silver bullet](silver_bullet.md) that could be used for everything. What can be discovered by science is in fact quite limited, exactly because it purposefully LIMITS itself only to accept what CAN be proven and so remains silent about everything else (which however doesn't mean there lies no knowledge or value in the everything else or in other approaches to learning) -- see e.g. Godel's incompleteness theorems that state it is mathematically impossible to really prove validity of mathematics, or the nice compendium of all knowability limitations at http://humanknowledge.net/Thoughts.html. For many (if not most) things we deal in life science is either highly impractical (do you need to fund a peer reviewed research to decide what movie you'll watch today?) or absolutely useless (setting one's meaning of life, establishing one's basic moral values, placing completely random bets, deciding to trust or distrust someone while lacking scientifically relevant indicators for either, answering metaphysical questions such as "Why is there ultimately something rather than nothing?", anything that cannot be falsified, if only for practical reasons etc.). So don't be Neil de Grass puppet and stop treating science as your omnipotent pimplord, it's just a hammer useful for bashing some specific nails. diff --git a/tattoo.md b/tattoo.md index 19ac05a..9ef45e5 100644 --- a/tattoo.md +++ b/tattoo.md @@ -1,3 +1,3 @@ # Tattoo -Tattoo is a body disfigurement formed by injecting ink under the skin to permanently mark it. Tattoo, similarly to [piercing](piercing.md), suits, dyed hair etc., is a sign of [egoism](egoism.md), [narcissism](narcissism.md), herd mentality, [identity](identity_politics.md) crisis, overconfidence of the incompetent and a cheap attempt at desperately trying to get attention or make oneself look interesting. We highly advise to distance oneself from anyone having a voluntarily made tattoo. \ No newline at end of file +Tattoo is a body disfigurement formed by injecting ink under the skin to permanently mark it. Tattoo, similarly to [piercing](piercing.md), suits, dyed hair etc., is a sign of [egoism](egoism.md), [narcissism](narcissism.md), herd mentality, [identity](identity_politics.md) crisis, overconfidence of the incompetent and a cheap attempt at desperately trying to get attention or make oneself look interesting. Back in the day, in the [90s](90s.md), it wasn't common to have tattoos, having one meant you were a self centered egoistic attention whore -- it still means the same thing today but being egoistic attention whores is normal and encouraged now, so everyone has tattoos. We highly advise to distance oneself from anyone having a voluntarily made tattoo. \ No newline at end of file diff --git a/wiki_pages.md b/wiki_pages.md index e975d31..72223b5 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)** (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)** (29) -- **[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)** (48) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (72) -- **[bytecode](bytecode.md)** (280) -- **[c](c.md)** (309) -- **[c_pitfalls](c_pitfalls.md)** (154) -- **[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)** (19) -- **[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) -- **[czechia](czechia.md)** (14) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[debugging](debugging.md)** (119) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (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)** (36) -- **[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)** (73) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (10) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (171) -- **[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)** (137) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (44) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (10) -- **[gender_studies](gender_studies.md)** (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)** (54) -- **[go](go.md)** (96) -- **[golang](golang.md)** (18) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (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)** (98) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (206) -- **[human_language](human_language.md)** (22) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (23) -- **[internet](internet.md)** (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)** (12) -- **[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)** (79) -- **[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)** (130) -- **[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)** (26) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (156) -- **[lrs_dictionary](lrs_dictionary.md)** (95) -- **[lrs_wiki](lrs_wiki.md)** (23) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (125) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (8) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (4) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (55) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (37) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (14) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (2) -- **[mouse](mouse.md)** (6) -- **[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) -- **[nationalism](nationalism.md)** (6) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (66) -- **[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)** (110) -- **[often_misunderstood](often_misunderstood.md)** (15) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (62) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (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)** (60) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (8) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (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)** (157) -- **[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)** (26) -- **[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)** (1729) -- **[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)** (6) -- **[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)** (22) -- **[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)** (207) -- **[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) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (21) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (207) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (30) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unicode](unicode.md)** (6) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (11) -- **[update_culture](update_culture.md)** (19) -- **[usa](usa.md)** (57) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (44) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (50) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (8) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (14) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (219) -- **[wiki_style](wiki_style.md)** (70) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (95) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (8) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (111) -- **[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)** (22) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (30) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file +**[100r](100r.md)** (3) -- **[21st_century](21st_century.md)** (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)** (29) -- **[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)** (48) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (72) -- **[bytecode](bytecode.md)** (280) -- **[c](c.md)** (309) -- **[c_pitfalls](c_pitfalls.md)** (154) -- **[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)** (19) -- **[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) -- **[czechia](czechia.md)** (14) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[debugging](debugging.md)** (119) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (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)** (36) -- **[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)** (73) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (10) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (173) -- **[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)** (137) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (44) -- **[game](game.md)** (160) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (6) -- **[gemini](gemini.md)** (10) -- **[gender_studies](gender_studies.md)** (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)** (54) -- **[go](go.md)** (96) -- **[golang](golang.md)** (18) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (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)** (98) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (206) -- **[human_language](human_language.md)** (24) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (23) -- **[internet](internet.md)** (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)** (12) -- **[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)** (79) -- **[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)** (130) -- **[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)** (26) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (156) -- **[lrs_dictionary](lrs_dictionary.md)** (95) -- **[lrs_wiki](lrs_wiki.md)** (23) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (125) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (8) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (4) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (55) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (37) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (14) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (2) -- **[mouse](mouse.md)** (6) -- **[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) -- **[nationalism](nationalism.md)** (6) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (66) -- **[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)** (110) -- **[often_misunderstood](often_misunderstood.md)** (15) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (62) -- **[open_console](open_console.md)** (66) -- **[open_source](open_source.md)** (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)** (60) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (8) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (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)** (157) -- **[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)** (26) -- **[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)** (1729) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (8) -- **[raycasting](raycasting.md)** (291) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (22) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (48) -- **[recursion](recursion.md)** (64) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (206) -- **[rgb332](rgb332.md)** (91) -- **[rgb565](rgb565.md)** (4) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (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)** (22) -- **[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)** (207) -- **[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) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (21) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (207) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (30) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (8) -- **[unicode](unicode.md)** (6) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (11) -- **[update_culture](update_culture.md)** (19) -- **[usa](usa.md)** (57) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (44) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (50) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (8) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (14) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (215) -- **[wiki_style](wiki_style.md)** (70) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (95) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (8) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (111) -- **[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)** (22) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (30) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file diff --git a/wiki_stats.md b/wiki_stats.md index 3e25b5f..9ebec0f 100644 --- a/wiki_stats.md +++ b/wiki_stats.md @@ -3,9 +3,9 @@ This is an autogenerated article holding stats about this wiki. - number of articles: 576 -- number of commits: 769 -- total size of all texts in bytes: 3651558 -- total number of lines of article texts: 28243 +- number of commits: 770 +- total size of all texts in bytes: 3655408 +- total number of lines of article texts: 28249 - number of script lines: 262 - occurences of the word "person": 8 - occurences of the word "nigger": 73 @@ -14,7 +14,7 @@ longest articles: - [c_tutorial](c_tutorial.md): 124K - [capitalism](capitalism.md): 68K -- [how_to](how_to.md): 64K +- [how_to](how_to.md): 68K - [chess](chess.md): 56K - [exercises](exercises.md): 52K - [less_retarded_society](less_retarded_society.md): 52K @@ -36,33 +36,33 @@ longest articles: top 50 5+ letter words: - which (2095) -- there (1581) -- people (1374) -- other (1142) -- example (1104) +- there (1584) +- people (1376) +- other (1143) +- example (1107) - software (1043) - number (1006) - about (947) - program (852) -- their (786) +- their (787) - called (730) -- because (729) -- would (715) -- computer (715) -- language (705) +- because (730) +- computer (717) +- would (716) +- language (707) - simple (689) -- being (682) +- being (683) - numbers (674) -- things (667) +- things (672) - without (637) - function (630) - programming (629) -- something (616) +- something (619) - however (595) - these (593) - different (583) -- world (558) -- system (548) +- world (560) +- system (550) - should (536) - games (533) - point (522) @@ -70,7 +70,7 @@ top 50 5+ letter words: - society (515) - though (495) - memory (492) -- while (481) +- while (482) - drummyfish (481) - using (477) - technology (473) @@ -81,14 +81,25 @@ top 50 5+ letter words: - possible (444) - https (435) - really (414) -- extremely (404) -- computers (402) +- computers (408) +- extremely (405) - always (400) - value (397) latest changes: ``` +Date: Wed Apr 17 19:56:46 2024 +0200 + exercises.md + how_to.md + human_language.md + random_page.md + reddit.md + semiconductor.md + trash_magic.md + wiki_pages.md + wiki_stats.md + youtube.md Date: Tue Apr 16 23:06:10 2024 +0200 capitalism.md czechia.md @@ -113,21 +124,6 @@ Date: Tue Apr 16 23:06:10 2024 +0200 wiki_pages.md wiki_stats.md Date: Mon Apr 15 17:27:45 2024 +0200 - exercises.md - history.md - human_language.md - less_retarded_society.md - lrs_dictionary.md - main.md - nationalism.md - needed.md - phd.md - programming_language.md - programming_tips.md - random_page.md - wiki_pages.md - wiki_stats.md - wikipedia.md ``` most wanted pages: @@ -139,8 +135,8 @@ most wanted pages: - [array](array.md) (11) - [quake](quake.md) (10) - [lisp](lisp.md) (10) +- [irl](irl.md) (10) - [meme](meme.md) (9) -- [irl](irl.md) (9) - [gpl](gpl.md) (9) - [drm](drm.md) (9) - [complex_number](complex_number.md) (9) @@ -164,8 +160,8 @@ most popular and lonely pages: - [suckless](suckless.md) (131) - [proprietary](proprietary.md) (114) - [kiss](kiss.md) (92) +- [modern](modern.md) (89) - [computer](computer.md) (89) -- [modern](modern.md) (88) - [minimalism](minimalism.md) (86) - [linux](linux.md) (86) - [programming](programming.md) (80)