From cafa9c826c74918fadd7b04c939bda81741f5c2e Mon Sep 17 00:00:00 2001 From: Miloslav Ciz Date: Wed, 31 Jan 2024 00:35:22 +0100 Subject: [PATCH] Update --- pimp_my_lrs.html | 3 +- style_90s.css | 5 ++- style_gay.css | 5 +++ style_gold.css | 22 ++++++++++- style_lol.css | 101 +++++++++++++++++++++++++++++++++++++++++++++++ trolling.md | 1 + wiki_pages.md | 2 +- wiki_stats.md | 12 +++--- 8 files changed, 141 insertions(+), 10 deletions(-) create mode 100644 style_lol.css diff --git a/pimp_my_lrs.html b/pimp_my_lrs.html index faf4944..195c02d 100644 --- a/pimp_my_lrs.html +++ b/pimp_my_lrs.html @@ -10,7 +10,7 @@ function placeCSS(name, file) { var link = document.createElement("a"); link.href = thisPage + "?p=" + page + "&s=" + file; - link.innerHTML = "~" + name + "~"; + link.innerHTML = "_" + name + "_"; var elem = document.getElementsByTagName("body")[0]; elem.prepend(link); } @@ -48,6 +48,7 @@ function load() placeCSS("$$$","style_gold.css"); placeCSS("gay","style_gay.css"); + placeCSS("lol","style_lol.css"); placeCSS("90s","style_90s.css"); placeCSS("unix","style_unix.css"); placeCSS("dark","style_dark.css"); diff --git a/style_90s.css b/style_90s.css index a7f98f8..7753304 100644 --- a/style_90s.css +++ b/style_90s.css @@ -28,6 +28,7 @@ h1, h2 background-color: #aba; text-align: center; color: #300; + text-shadow: 1px 1px 0 #fff; } h3 @@ -47,7 +48,7 @@ pre, code pre { - font-size: 15px; + font-size: 14px; max-width: 800px; overflow: hidden; } @@ -70,6 +71,7 @@ td, th border-right: 2px solid white; border-bottom: 2px solid #444; border-left: 2px solid #444; + cursor: cell; } th @@ -79,6 +81,7 @@ th a { + cursor: zoom-in; color: #00c; text-decoration: underline; text-decoration-style: wavy; diff --git a/style_gay.css b/style_gay.css index c2234b1..a164c54 100644 --- a/style_gay.css +++ b/style_gay.css @@ -126,6 +126,11 @@ ul li:before color: red; } +a:hover +{ + background-color: yellow; +} + hr { border-top: none; diff --git a/style_gold.css b/style_gold.css index 92d9bab..42ccd7c 100644 --- a/style_gold.css +++ b/style_gold.css @@ -12,6 +12,11 @@ i, em color: #20777b; } +i:hover, em:hover +{ + background-color: #ddd; +} + h1:before, h2:before, h3:before, h1:after, h2:after, h3:after { content: " $ "; @@ -57,7 +62,16 @@ h1, h2, h3 border-radius: 10px; padding: 20px; text-align: center; - background-image: linear-gradient(119deg, rgb(236, 220, 136) 0%, rgb(183, 149, 120) 36%, rgb(244, 220, 165) 69%, rgb(183, 138, 80) 100%) + background-image: linear-gradient(180deg, rgb(236, 220, 136) 0%, rgb(183, 149, 120) 36%, rgb(244, 220, 165) 69%, rgb(183, 138, 80) 100%) +} + +h1:hover, h2:hover, h3:hover +{ + background-image: linear-gradient(119deg, rgb(236, 220, 136) 0%, +rgb(183, 149, 120) 36%, rgb(244, 220, 165) 69%, rgb(183, 138, 80) 100%); + + color: #ba7; +/* text-shadow: 1px 1px 0 #fff, -1px -1px 0 #370b0b; */ } table @@ -91,6 +105,12 @@ a text-decoration: none; } +a:hover +{ + color: blue; + text-shadow: none; +} + .dead { color: #ff2121; diff --git a/style_lol.css b/style_lol.css new file mode 100644 index 0000000..7c0e92c --- /dev/null +++ b/style_lol.css @@ -0,0 +1,101 @@ +@keyframes anim +{ + 0% { margin-left: 0px; } + 50% { margin-left: 200px; } + 100% { margin-left: 0px; } +} + +@keyframes anim2 +{ + 0% { color: red; font-size: 20px; } + 25% { color: black; font-size: 20px; } + 50% { color: green; font-size: 21px; } + 75% { color: white; font-size: 30px; } + 100% { color: blue; font-size: 20px; } +} + +body +{ + background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Cat_8.jpg/180px-Cat_8.jpg"); + cursor: not-allowed; + width: 200%; +} + +p +{ + background-color: red; + font-family: cursive; +} + +h1 +{ + animation-name: anim; + animation-duration: 1s; + animation-iteration-count: infinite; + animation-timing-function: linear; + cursor: zoom-in; + color: brown; +} + +h2, h3 +{ + animation-name: anim2; + animation-duration: 0.1s; + animation-iteration-count: infinite; + animation-timing-function: linear; + background-color: yellow; + cursor: zoom-out; +} + +pre, code +{ + font-family: fantasy; + background-color: rgba(255,255,255,0.7); + color: green; + cursor: none; +} + +em, i +{ + animation-name: anim2; + animation-duration: 2s; + animation-iteration-count: infinite; + animation-timing-function: linear; +} + +b, strong +{ + color: #00f; + font-family: emoji; +} + +h1::before, h2::before, h1::after, h2::after +{ + content: ''; + background: url("https://upload.wikimedia.org/wikipedia/commons/3/36/Anarcho_pacifism_animation_2.gif?20190915203531"); + background-size: cover; + display: inline-block; + width: 64px; + height: 64px; +} + +a +{ + color: #0f0; + cursor: row-resize; +} + +a:hover +{ + display: none; +} + +p:after +{ + content: "😀😁😂😃"; +} + +p:before +{ + content: " 𒐫 𒈙 ﷽"; +} diff --git a/trolling.md b/trolling.md index d05e511..f8f18b1 100644 --- a/trolling.md +++ b/trolling.md @@ -11,5 +11,6 @@ Here are some potentially [fun](fun.md) ways of trolling (they'll be written fro - **Irrational crime**: similarly investigators usually suspect some basic rationality even of the most stupid criminal -- you want to behave even stupider than that. For example I break into two stores and then just relocate goods from one to the other, then leave :D - **Seizure troll**: when in some kind of lecture where the students are allowed laptops (typically in a compsci uni) I take a seat somewhere in the front row, near the lecturer, open my laptop and start a program that just rapidly flashes wild colors in fullscreen -- I leave it like that for the whole lecture so that everyone sitting behind me is forced to watch the flashing and can get an epileptic seizure. For educational purposes code for such a program can be written in a few lines of browser [JavaScript](javascript.md) (it may coincidentally possibly even be found in that JavaScript article). - **Creative [Wikipedia](wikipedia.md) vandalism**: for example funny redirects or categorizations (put [Bill Gates](bill_gates.md) to "famous homosexuals" category or something), also consider vandalizing other wikis that usually don't have as much protection. +- `a:hover { display: none; }` - Classic trollz revolve around creating [drama](drama.md) on forums -- this is kind of an [art](art.md) as you have to keep the right balance of seriousness and stupidity; too much of the former and you're not trolling anyone, too much of the latter and you're just spotted as obvious troll. It's definitely not about logging on a starting to drop the [N-words](nigger.md) and insulting everyone, that's just an instant ban that ends the fun; you rather want to start slow, get many people seriously involved in the discussion, be polite and then slightly steer the talk towards something controversial (nice if you pretend to be part of some "oppressed minority"). Then you just make it look like you're just an uneducated simple minded individual who kind of happens to lean towards an opinion the others truly hate, but you have to keep their hope that they can convince you to change your opinion, so still try to be polite, just so you keep arguing with them and wasting more and more of their time until they start losing their shit and the thread explodes into [hitler](hitler.md) arguments etc., then just watch and enjoy. - ... \ No newline at end of file diff --git a/wiki_pages.md b/wiki_pages.md index 4d6e80f..8804609 100644 --- a/wiki_pages.md +++ b/wiki_pages.md @@ -2,4 +2,4 @@ This is an autogenerated page listing all pages. -**[21st_century](21st_century.md)** (2) -- **[3d_model](3d_model.md)** (37) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (281) -- **[42](42.md)** (10) -- **[4chan](4chan.md)** (18) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (386) -- **[ai](ai.md)** (8) -- **[algorithm](algorithm.md)** (218) -- **[aliasing](aliasing.md)** (58) -- **[altruism](altruism.md)** (2) -- **[anal_bead](anal_bead.md)** (2) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (91) -- **[anarchism](anarchism.md)** (10) -- **[ancap](ancap.md)** (22) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (16) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (4) -- **[apple](apple.md)** (4) -- **[approximation](approximation.md)** (18) -- **[arch](arch.md)** (6) -- **[art](art.md)** (6) -- **[ascii](ascii.md)** (147) -- **[ascii_art](ascii_art.md)** (54) -- **[assembly](assembly.md)** (251) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (22) -- **[atheism](atheism.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (4) -- **[backpropagation](backpropagation.md)** (87) -- **[bbs](bbs.md)** (25) -- **[beauty](beauty.md)** (22) -- **[bilinear](bilinear.md)** (117) -- **[bill_gates](bill_gates.md)** (27) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (63) -- **[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)** (137) -- **[bloat_monopoly](bloat_monopoly.md)** (10) -- **[boat](boat.md)** (33) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (28) -- **[brain_software](brain_software.md)** (10) -- **[brainfuck](brainfuck.md)** (113) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (39) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (72) -- **[bytecode](bytecode.md)** (276) -- **[c](c.md)** (191) -- **[c_pitfalls](c_pitfalls.md)** (99) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (1690) -- **[cache](cache.md)** (27) -- **[cancer](cancer.md)** (6) -- **[capitalism](capitalism.md)** (123) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (30) -- **[censorship](censorship.md)** (24) -- **[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)** (278) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[coc](coc.md)** (10) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (20) -- **[color](color.md)** (25) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (16) -- **[communism](communism.md)** (25) -- **[competition](competition.md)** (12) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (232) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (86) -- **[comun](comun.md)** (88) -- **[consumerism](consumerism.md)** (12) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (28) -- **[copyright](copyright.md)** (47) -- **[corporation](corporation.md)** (18) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (2) -- **[cpu](cpu.md)** (10) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (27) -- **[crime_against_economy](crime_against_economy.md)** (15) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (34) -- **[culture](culture.md)** (23) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (19) -- **[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) -- **[disease](disease.md)** (29) -- **[distance](distance.md)** (124) -- **[distrohopping](distrohopping.md)** (4) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (27) -- **[doom](doom.md)** (49) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[drummyfish](drummyfish.md)** (24) -- **[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)** (146) -- **[elon_musk](elon_musk.md)** (6) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (65) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (69) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (10) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (20) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (2) -- **[fail_ab](fail_ab.md)** (24) -- **[fantasy_console](fantasy_console.md)** (31) -- **[faq](faq.md)** (194) -- **[fascism](fascism.md)** (8) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (16) -- **[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)** (150) -- **[fizzbuzz](fizzbuzz.md)** (158) -- **[float](float.md)** (63) -- **[floss](floss.md)** (2) -- **[football](football.md)** (49) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (22) -- **[forth](forth.md)** (120) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (208) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (64) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (33) -- **[free_hardware](free_hardware.md)** (54) -- **[free_software](free_software.md)** (56) -- **[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)** (28) -- **[function](function.md)** (109) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (22) -- **[game](game.md)** (159) -- **[game_engine](game_engine.md)** (48) -- **[game_of_life](game_of_life.md)** (222) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (2) -- **[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)** (49) -- **[go](go.md)** (96) -- **[golang](golang.md)** (13) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (67) -- **[graphics](graphics.md)** (36) -- **[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)** (70) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (6) -- **[hash](hash.md)** (175) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (8) -- **[hexadecimal](hexadecimal.md)** (4) -- **[history](history.md)** (88) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (153) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (25) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (22) -- **[internet](internet.md)** (24) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (45) -- **[io](io.md)** (16) -- **[ioccc](ioccc.md)** (31) -- **[iq](iq.md)** (12) -- **[island](island.md)** (28) -- **[jargon_file](jargon_file.md)** (8) -- **[java](java.md)** (8) -- **[javascript](javascript.md)** (70) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (52) -- **[john_carmack](john_carmack.md)** (20) -- **[jokes](jokes.md)** (51) -- **[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)** (32) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (156) -- **[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)** (107) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (14) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (54) -- **[lil](lil.md)** (20) -- **[line](line.md)** (149) -- **[linear_algebra](linear_algebra.md)** (116) -- **[linux](linux.md)** (61) -- **[living](living.md)** (30) -- **[lmao](lmao.md)** (36) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (6) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[love](love.md)** (20) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (152) -- **[lrs_dictionary](lrs_dictionary.md)** (75) -- **[lrs_wiki](lrs_wiki.md)** (14) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (105) -- **[maintenance](maintenance.md)** (6) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (89) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (19) -- **[markov_chain](markov_chain.md)** (100) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (33) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (4) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (47) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (32) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (15) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (2) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (43) -- **[myths](myths.md)** (8) -- **[name_is_important](name_is_important.md)** (19) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (64) -- **[netstalking](netstalking.md)** (9) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (8) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (24) -- **[niggercoin](niggercoin.md)** (2) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (112) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (2) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (2) -- **[often_confused](often_confused.md)** (97) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (58) -- **[open_console](open_console.md)** (60) -- **[open_source](open_source.md)** (29) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (68) -- **[optimization](optimization.md)** (71) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (30) -- **[people](people.md)** (46) -- **[permacomputing_wiki](permacomputing_wiki.md)** (13) -- **[phd](phd.md)** (8) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (127) -- **[piracy](piracy.md)** (6) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (28) -- **[political_correctness](political_correctness.md)** (27) -- **[portability](portability.md)** (166) -- **[portal_rendering](portal_rendering.md)** (24) -- **[prime](prime.md)** (122) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (18) -- **[procgen](procgen.md)** (351) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (31) -- **[programming_language](programming_language.md)** (71) -- **[programming_style](programming_style.md)** (69) -- **[programming_tips](programming_tips.md)** (15) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (12) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (6) -- **[public_domain](public_domain.md)** (86) -- **[public_domain_computer](public_domain_computer.md)** (53) -- **[python](python.md)** (4) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (36) -- **[race](race.md)** (44) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (9) -- **[ram](ram.md)** (31) -- **[randomness](randomness.md)** (141) -- **[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)** (29) -- **[real_number](real_number.md)** (48) -- **[recursion](recursion.md)** (64) -- **[reddit](reddit.md)** (12) -- **[regex](regex.md)** (45) -- **[rgb332](rgb332.md)** (91) -- **[rgb565](rgb565.md)** (4) -- **[right](right.md)** (2) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (35) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (43) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (23) -- **[rule110](rule110.md)** (107) -- **[rust](rust.md)** (22) -- **[saf](saf.md)** (63) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (14) -- **[sdf](sdf.md)** (25) -- **[security](security.md)** (8) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (17) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (17) -- **[shit](shit.md)** (16) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (10) -- **[sigbovik](sigbovik.md)** (6) -- **[sin](sin.md)** (179) -- **[sjw](sjw.md)** (18) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (4) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (21) -- **[soydev](soydev.md)** (33) -- **[soyence](soyence.md)** (45) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (55) -- **[ssao](ssao.md)** (10) -- **[steganography](steganography.md)** (14) -- **[stereotype](stereotype.md)** (148) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (49) -- **[sudoku](sudoku.md)** (78) -- **[suicide](suicide.md)** (8) -- **[sw](sw.md)** (4) -- **[sw_rendering](sw_rendering.md)** (63) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (66) -- **[tas](tas.md)** (18) -- **[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)** (32) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (11) -- **[thrembo](thrembo.md)** (13) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny_software](tranny_software.md)** (27) -- **[transistor](transistor.md)** (30) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (14) -- **[trollplay](trollplay.md)** (2) -- **[trom](trom.md)** (27) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (204) -- **[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)** (26) -- **[unix_philosophy](unix_philosophy.md)** (44) -- **[unretard](unretard.md)** (10) -- **[update_culture](update_culture.md)** (19) -- **[usa](usa.md)** (45) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (27) -- **[uxn](uxn.md)** (44) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (59) -- **[version_numbering](version_numbering.md)** (44) -- **[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)** (12) -- **[wiki_authors](wiki_authors.md)** (7) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (13) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (66) -- **[wiki_style](wiki_style.md)** (67) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (73) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (6) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (91) -- **[work](work.md)** (27) -- **[world_broadcast](world_broadcast.md)** (12) -- **[wow](wow.md)** (6) -- **[www](www.md)** (103) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (101) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (6) -- **[youtube](youtube.md)** (19) -- **[zen](zen.md)** (15) -- **[zero](zero.md)** (30) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file +**[21st_century](21st_century.md)** (2) -- **[3d_model](3d_model.md)** (37) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (281) -- **[42](42.md)** (10) -- **[4chan](4chan.md)** (18) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (386) -- **[ai](ai.md)** (8) -- **[algorithm](algorithm.md)** (218) -- **[aliasing](aliasing.md)** (58) -- **[altruism](altruism.md)** (2) -- **[anal_bead](anal_bead.md)** (2) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (91) -- **[anarchism](anarchism.md)** (10) -- **[ancap](ancap.md)** (22) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (16) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (4) -- **[apple](apple.md)** (4) -- **[approximation](approximation.md)** (18) -- **[arch](arch.md)** (6) -- **[art](art.md)** (6) -- **[ascii](ascii.md)** (147) -- **[ascii_art](ascii_art.md)** (54) -- **[assembly](assembly.md)** (251) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (22) -- **[atheism](atheism.md)** (16) -- **[audiophilia](audiophilia.md)** (2) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (4) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (4) -- **[backpropagation](backpropagation.md)** (87) -- **[bbs](bbs.md)** (25) -- **[beauty](beauty.md)** (22) -- **[bilinear](bilinear.md)** (117) -- **[bill_gates](bill_gates.md)** (27) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (63) -- **[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)** (137) -- **[bloat_monopoly](bloat_monopoly.md)** (10) -- **[boat](boat.md)** (33) -- **[body_shaming](body_shaming.md)** (2) -- **[books](books.md)** (28) -- **[brain_software](brain_software.md)** (10) -- **[brainfuck](brainfuck.md)** (113) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (39) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (72) -- **[bytecode](bytecode.md)** (276) -- **[c](c.md)** (191) -- **[c_pitfalls](c_pitfalls.md)** (99) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (1690) -- **[cache](cache.md)** (27) -- **[cancer](cancer.md)** (6) -- **[capitalism](capitalism.md)** (123) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (30) -- **[censorship](censorship.md)** (24) -- **[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)** (278) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[coc](coc.md)** (10) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (32) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (20) -- **[color](color.md)** (25) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (16) -- **[communism](communism.md)** (25) -- **[competition](competition.md)** (12) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (232) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (86) -- **[comun](comun.md)** (88) -- **[consumerism](consumerism.md)** (12) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (28) -- **[copyright](copyright.md)** (47) -- **[corporation](corporation.md)** (18) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (2) -- **[cpu](cpu.md)** (42) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (27) -- **[crime_against_economy](crime_against_economy.md)** (15) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (34) -- **[culture](culture.md)** (23) -- **[data_hoarding](data_hoarding.md)** (2) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (8) -- **[deep_blue](deep_blue.md)** (15) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (15) -- **[demoscene](demoscene.md)** (19) -- **[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) -- **[disease](disease.md)** (29) -- **[distance](distance.md)** (124) -- **[distrohopping](distrohopping.md)** (4) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (27) -- **[doom](doom.md)** (49) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[drummyfish](drummyfish.md)** (24) -- **[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)** (146) -- **[elon_musk](elon_musk.md)** (6) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (65) -- **[english](english.md)** (18) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (69) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (10) -- **[evil](evil.md)** (6) -- **[exercises](exercises.md)** (20) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (2) -- **[fail_ab](fail_ab.md)** (24) -- **[fantasy_console](fantasy_console.md)** (31) -- **[faq](faq.md)** (194) -- **[fascism](fascism.md)** (8) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (16) -- **[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)** (150) -- **[fizzbuzz](fizzbuzz.md)** (158) -- **[float](float.md)** (63) -- **[floss](floss.md)** (2) -- **[football](football.md)** (49) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (22) -- **[forth](forth.md)** (120) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (208) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (64) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (33) -- **[free_hardware](free_hardware.md)** (54) -- **[free_software](free_software.md)** (56) -- **[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)** (28) -- **[function](function.md)** (109) -- **[furry](furry.md)** (15) -- **[future_proof](future_proof.md)** (22) -- **[game](game.md)** (159) -- **[game_engine](game_engine.md)** (48) -- **[game_of_life](game_of_life.md)** (222) -- **[gay](gay.md)** (18) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (2) -- **[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)** (49) -- **[go](go.md)** (96) -- **[golang](golang.md)** (13) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (14) -- **[gopher](gopher.md)** (67) -- **[graphics](graphics.md)** (36) -- **[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)** (70) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (6) -- **[hash](hash.md)** (175) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (8) -- **[hexadecimal](hexadecimal.md)** (4) -- **[history](history.md)** (88) -- **[holy_war](holy_war.md)** (25) -- **[how_to](how_to.md)** (153) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (235) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (25) -- **[information](information.md)** (16) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (134) -- **[interesting](interesting.md)** (22) -- **[internet](internet.md)** (24) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (45) -- **[io](io.md)** (16) -- **[ioccc](ioccc.md)** (31) -- **[iq](iq.md)** (12) -- **[island](island.md)** (28) -- **[jargon_file](jargon_file.md)** (8) -- **[java](java.md)** (8) -- **[javascript](javascript.md)** (70) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (52) -- **[john_carmack](john_carmack.md)** (20) -- **[jokes](jokes.md)** (51) -- **[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)** (32) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (156) -- **[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)** (107) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (14) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (54) -- **[lil](lil.md)** (20) -- **[line](line.md)** (149) -- **[linear_algebra](linear_algebra.md)** (116) -- **[linux](linux.md)** (61) -- **[living](living.md)** (30) -- **[lmao](lmao.md)** (36) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (6) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (65) -- **[love](love.md)** (20) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (152) -- **[lrs_dictionary](lrs_dictionary.md)** (75) -- **[lrs_wiki](lrs_wiki.md)** (14) -- **[luke_smith](luke_smith.md)** (17) -- **[magic](magic.md)** (2) -- **[main](main.md)** (105) -- **[maintenance](maintenance.md)** (6) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (89) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (19) -- **[markov_chain](markov_chain.md)** (100) -- **[marxism](marxism.md)** (7) -- **[math](math.md)** (33) -- **[mechanical](mechanical.md)** (201) -- **[memory_management](memory_management.md)** (77) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (4) -- **[minigame](minigame.md)** (63) -- **[minimalism](minimalism.md)** (47) -- **[mipmap](mipmap.md)** (40) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (32) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (15) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (2) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (43) -- **[myths](myths.md)** (8) -- **[name_is_important](name_is_important.md)** (19) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (64) -- **[netstalking](netstalking.md)** (9) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (8) -- **[niger](niger.md)** (11) -- **[nigger](nigger.md)** (24) -- **[niggercoin](niggercoin.md)** (2) -- **[no_knowledge_proof](no_knowledge_proof.md)** (16) -- **[noise](noise.md)** (112) -- **[nokia](nokia.md)** (8) -- **[nord_vpn](nord_vpn.md)** (2) -- **[normalization](normalization.md)** (8) -- **[npc](npc.md)** (2) -- **[often_confused](often_confused.md)** (97) -- **[old](old.md)** (2) -- **[one](one.md)** (13) -- **[oop](oop.md)** (58) -- **[open_console](open_console.md)** (60) -- **[open_source](open_source.md)** (29) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (68) -- **[optimization](optimization.md)** (71) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (30) -- **[people](people.md)** (46) -- **[permacomputing_wiki](permacomputing_wiki.md)** (13) -- **[phd](phd.md)** (8) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (127) -- **[piracy](piracy.md)** (6) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (28) -- **[political_correctness](political_correctness.md)** (27) -- **[portability](portability.md)** (166) -- **[portal_rendering](portal_rendering.md)** (24) -- **[prime](prime.md)** (122) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (18) -- **[procgen](procgen.md)** (351) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (31) -- **[programming_language](programming_language.md)** (71) -- **[programming_style](programming_style.md)** (69) -- **[programming_tips](programming_tips.md)** (15) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (12) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (6) -- **[public_domain](public_domain.md)** (86) -- **[public_domain_computer](public_domain_computer.md)** (53) -- **[python](python.md)** (4) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (36) -- **[race](race.md)** (44) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (9) -- **[ram](ram.md)** (31) -- **[randomness](randomness.md)** (141) -- **[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)** (29) -- **[real_number](real_number.md)** (48) -- **[recursion](recursion.md)** (64) -- **[reddit](reddit.md)** (12) -- **[regex](regex.md)** (45) -- **[rgb332](rgb332.md)** (91) -- **[rgb565](rgb565.md)** (4) -- **[right](right.md)** (2) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (35) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (43) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (23) -- **[rule110](rule110.md)** (107) -- **[rust](rust.md)** (22) -- **[saf](saf.md)** (63) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (14) -- **[sdf](sdf.md)** (25) -- **[security](security.md)** (8) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (17) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (17) -- **[shit](shit.md)** (16) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (10) -- **[sigbovik](sigbovik.md)** (6) -- **[sin](sin.md)** (179) -- **[sjw](sjw.md)** (18) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (34) -- **[smart](smart.md)** (4) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (21) -- **[soydev](soydev.md)** (33) -- **[soyence](soyence.md)** (45) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (55) -- **[ssao](ssao.md)** (10) -- **[steganography](steganography.md)** (14) -- **[stereotype](stereotype.md)** (148) -- **[steve_jobs](steve_jobs.md)** (8) -- **[suckless](suckless.md)** (49) -- **[sudoku](sudoku.md)** (78) -- **[suicide](suicide.md)** (8) -- **[sw](sw.md)** (4) -- **[sw_rendering](sw_rendering.md)** (63) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (66) -- **[tas](tas.md)** (18) -- **[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)** (32) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (11) -- **[thrembo](thrembo.md)** (13) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny_software](tranny_software.md)** (27) -- **[transistor](transistor.md)** (30) -- **[triangle](triangle.md)** (81) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (15) -- **[trollplay](trollplay.md)** (2) -- **[trom](trom.md)** (27) -- **[trump](trump.md)** (6) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (204) -- **[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)** (26) -- **[unix_philosophy](unix_philosophy.md)** (44) -- **[unretard](unretard.md)** (10) -- **[update_culture](update_culture.md)** (19) -- **[usa](usa.md)** (45) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (27) -- **[uxn](uxn.md)** (44) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (59) -- **[version_numbering](version_numbering.md)** (44) -- **[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)** (12) -- **[wiki_authors](wiki_authors.md)** (7) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (13) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (66) -- **[wiki_style](wiki_style.md)** (67) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (73) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (6) -- **[wizard](wizard.md)** (9) -- **[woman](woman.md)** (91) -- **[work](work.md)** (27) -- **[world_broadcast](world_broadcast.md)** (12) -- **[wow](wow.md)** (6) -- **[www](www.md)** (103) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (101) -- **[xxiivv](xxiivv.md)** (22) -- **[yes_they_can](yes_they_can.md)** (6) -- **[youtube](youtube.md)** (19) -- **[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 3ca6f31..6bc49f8 100644 --- a/wiki_stats.md +++ b/wiki_stats.md @@ -3,8 +3,8 @@ This is an autogenerated article holding stats about this wiki. - number of articles: 542 -- number of commits: 673 -- total size of all texts in bytes: 2807651 +- number of commits: 674 +- total size of all texts in bytes: 2820110 longest articles: @@ -24,6 +24,10 @@ longest articles: latest changes: ``` +Date: Tue Jan 30 22:35:23 2024 +0100 +cpu.md +wiki_pages.md +wiki_stats.md Date: Tue Jan 30 19:43:23 2024 +0100 fascism.md wiki_pages.md @@ -33,10 +37,6 @@ Date: Tue Jan 30 07:54:47 2024 +0100 wiki_pages.md wiki_stats.md Date: Tue Jan 30 00:32:40 2024 +0100 -fun.md -jokes.md -wiki_pages.md -wiki_stats.md ``` most wanted pages: