diff --git a/calculus.md b/calculus.md index b4b7cc3..ef727a2 100644 --- a/calculus.md +++ b/calculus.md @@ -17,7 +17,38 @@ One thing shows here: one of the reasons why calculus is considered advanced is Now listen up, here comes the truth about calculus. Doing it correctly and precisely is difficult and sometimes literally impossible, and this is left for mathematicians. Programmers and engineers HAVE TO know the basic theory, but we are largely saved by one excellent thing: **[numerical](numerical.md) methods**. We can compute derivatives and integrals only [approximately](approximation.md) with algorithms that always work for any function and which will be [good enough](good_enough.md) for almost everything we ever encounter in practice. Besides in [digital](digital.md) computers we deal almost exclusively with non-continuous functions anyway, we just have very dense discrete sets of points because in the end we only have finite memory, integer values and sampled data, so there is nothing more natural than numerical methods here. So where a mathematician spends years trying to figure out how to precisely sum up infinitely many infinitely small parts of some weird function, we just write a program that sums up a very big number of very tiny parts and call it a day. Still there exist programs for so called *symbolic computation* that try to automatically do what the mathematician does, i.e. apply reasoning to get precise results, but these belong to some quite specialized areas. -TODO: graph +``` + xxx : ### + xx : ## + xx *** xxxxxxxxx + xx ***: ** xxx ##xxx + xx ** : *xx # xxx + xx ** : xx* # xx * + xx * :xx ** ## xxx x + xx * xx **## xxx xxx + x ** xx *# xxxxx* + x * xx: ##* * + xx * xx : ## ** * + xx * xx : ### * * + xxx * xxx : ## * * + xxxxxx ### ** * +----------------------*------####----------*--------------**---- + ########## : * * +* #### * : ** ** +* ## ** : * ** + * ## * : * * + ** ## ** : * * + * ## * : *** ** + * # ** : ***** + ** # * : + * # * : + ## ** : + #** ** : + ## ** * : + # ** ** : +``` + +*Graph showing a function (`x`), its derivative (`*`) and (one of) its integral(s) (`#`).* ## Derivative @@ -27,7 +58,7 @@ NOTE on notation: there are several notations used for derivatives. We will use OK, BUT **what exactly IS this "derivative"? What does it say?** Basically derivative is the **tangent** to the graph of a function at given point. Derivative of function *f(x)* is a new function *f'(x)* which for given *x* says the **slope** of the graph of function *f(x)* at the point *x*. Slope here means literally the [tangent](tan.md) function which encodes the angle at which the function is increasing (or decreasing). Tangent is defined as the (unitless) ratio of vertical change to horizontal change (for example if a plane is ascending with tangent equal to 2, we know that for every horizontal meter it gains two meters of height). Note that this is mathematically idealized so that no matter how quickly the function changes we really mean the slope at the exact single point, i.e. imagine drawing a tangent line to the graph of the function and then measuring how quickly it changes vertically versus how quickly it changes horizontally. Mathematicians define this using [limits](limit.md) and infinitesimal intervals, but we don't have to care too much about that now, let's just assume it [magically](magic.md) all works now. -Here it is show graphically: +Here it is shown graphically: ``` tangent / __ @@ -45,8 +76,7 @@ _-' /__| A ``` -Here we see a tangent line drawn at the graph of function *f(x)* at point *A*. We can draw the small right triangle and like shown -- the derivative at point *A* is now literally computed by dividing *dy* by *dx*. We can actually try to approximate the ideal derivative (and this is kind of how computers do it with the numerical methods) by computing -*(f(x + C) - f(x)) / C* where *C* we set to some small number, for example 10^-10. It's basically how it's mathematically defined too, mathematicians just set the *C* to "infinitely small distance". By this notice the that the derivative will be: +Here we see a tangent line drawn at the graph of function *f(x)* at point *A*. We can draw the small right triangle and like shown -- the derivative at point *A* is now literally computed by dividing *dy* by *dx*. We can actually try to approximate the ideal derivative (and this is kind of how computers do it with the numerical methods) by computing *(f(x + C) - f(x)) / C* where *C* we set to some small number, for example 10^-10. It's basically how it's mathematically defined too, mathematicians just set the *C* to "infinitely small distance". By this notice that the derivative will be: - 0 if the function is monotonic (i.e. going "horizontally", neither increasing nor decreasing). This is because *dy* will be 0 and 0 divided by any *dx* will be 0. This fact is used especially when we're finding where functions have minimum and maximum values as we know at these extreme values they will be monotonic. - > 0 if the function is increasing. This is because *dy* will be positive and since *dx* is always positive, we'll get a positive number by dividing them. @@ -56,18 +86,18 @@ Now it's important to say that derivatives can only be done with **differentiabl OK so to actually compute a derivative of a function we can use some of the following rules: -| *f(x)* | *f'(x)* | -| ---------------------- | ----------------------------- | -| *n* | *0* | -| *x^n* | *n * x^(n-1)* | -| *e^x* | *e^x* | -| *sin(x)* | *cos(x)* | -| *cos(x)* | *-sin(x)* | -| *ln(x)* | *1/x* | -| *a * g(x)* | *a * g'(x)* | -| *g(x) + h(x)* | *g'(x) + h'(x)* | -| *g(x) * h(x)* | *g'(x) * h(x) + g(x) * h'(x)* | -| *g(h(x))* | *g'(h(x)) * h'(x)* | +| *f(x)* | *f'(x)* | comment | +| ---------------------- | ----------------------------- | --------------- | +| *n* | *0* | additive const. | +| *x^n* | *n * x^(n-1)* | var. to power | +| *e^x* | *e^x* | | +| *sin(x)* | *cos(x)* | | +| *cos(x)* | *-sin(x)* | | +| *ln(x)* | *1/x* | | +| *a * g(x)* | *a * g'(x)* | | +| *g(x) + h(x)* | *g'(x) + h'(x)* | | +| *g(x) * h(x)* | *g'(x) * h(x) + g(x) * h'(x)* | | +| *g(h(x))* | *g'(h(x)) * h'(x)* | chain rule | **Monkey example**: let's try to find the derivative of this super retarded function: @@ -140,7 +170,7 @@ As already claimed in the section on derivative, integrating is **more difficult So due to these complications we now yet have to explain the two different types of integrals: - **indefinite integral**: This is the FUNCTION we get by performing integration, i.e. result of indefinite integral is a mathematical expression with variables in it. In fact this expression represents an infinite set of functions because it always has the additive constant *C* in it (like hinted above) -- we can kind of ignore this for now. The important gist is this: indefinite integral kind of gives us a general FORMULA that can further be used to compute definite integrals. For example an indefinite integral of function *f(x) = 1* will be *x + C*. In practice the result we are searching is often a definite integral (a single value), but to compute that we have to start by computing the indefinite integral. -- **definite integral**: This is a single [NUMBER](number.md) which (applying the geometric interpretation of integral) tells us the AREA below the function graph (with area below zero counting as negative) over some specific INTERVAL, i.e. between two given points A and B. This means that definite integral doesn't give us an expression but rather a quantity. For example a definite integral of function *f(x) = 1* over interval [0,1] will give us 1 (imagine the graph: the area is simply that of a square with side 1). Definite integrals are computed from the indefinite integral by plugging the upper interval number into the indefinite integral (in the place of the variable), then plugging the lower interval number, and then subtracting the latter from the former. With numeric methods (computer integration) we always only get definite integrals (and actually only their approximate values) -- the computer here skips computing the indefinite integral (as that's hard) and rather like a dumb machine LITERALLY goes by small steps and computes the area below the function graph. +- **definite integral**: This is a single [NUMBER](number.md) which (applying the geometric interpretation of integral) tells us the AREA below the function graph (with area below zero counting as negative) over some specific INTERVAL, i.e. between two given points A and B. This means that definite integral doesn't give us an expression but rather a quantity. For example a definite integral of function *f(x) = 1* over interval [0,1] will give us 1 (imagine the graph: the area is simply that of a square with side 1). Definite integrals are computed from the indefinite integral by plugging the upper interval number into the indefinite integral (in the place of the variable), then plugging the lower interval number, and then subtracting the latter from the former. With numeric methods (computer integration) we always only get definite integrals (and actually only their approximate values) -- the computer here skips computing the indefinite integral (as that's hard) and rather like a dumb machine LITERALLY goes by small steps and computes the area below the function graph. Small note to this: the computer still can draw a graph of a function's integral by plotting definite integral value for interval 0 to *x* for every plotted *x* because when we think about it, the indefinite integral kind of gives us a function of how an indefinite integral grows; so the computer can give us a picture of a graph but it generally cannot give us an analytically computed formula of indefinite integral. **Example**: we will now try to make an indefinite integral of the function: @@ -150,28 +180,40 @@ This is the derivative we got in the example of differentiation, so by integrati Now for the **notation**: the symbol for integral is kind of a big italic *S* ([Unicode](unicode.md) U+222), but for [simplicity](kiss.md) we will just use the uppercase letter *I* here. With indefinite integrals only the symbol alone is used. For definite integrals we additionally write the interval over which we make the integral, i.e. *I(A,B)* (normally *A* is written at the bottom and *B* at the top), where *A* and *B* says the interval. So we will now write our indefinite integral like this: -*I 2 * x - 2 dx* +*I (2 * x - 2) dx* **Wait dude WHAT THE FUCK is this dx shit at the end?** This question is expected. Look: it has to do with the theory behind what the integral mathematically means, for starters one can just ignore it and remember that integral starts with *I*, then the integrated function follows, and then there is *dx* at the end. But to give a bit of explanation: firstly notice the *dx* tells us what the integrated variable is -- usually we have a function with single variable *x* and so it's pretty clear, but once we move to more dimensions we'll have more variables and this *dx* tells us what is a variable (i.e. along which axis we are integrating) and what is to be treated as a constant (maybe this doesn't yet make much sense but with integration there is a big difference between a variable and a constant, even if they are both represented by a letter). The real reason for *dx* is that the integral really represents an **infinite sum**. Have you ever seen that big sigma symbol for a sum? The integral symbol (here *I*) is like this, it likewise says "make an infinite sum of what will follow". But if we take a function and make infinitely many steps and keep summing the values the function gives us, we will just get [infinity](infinity.md) as the sum, so something is missing. In fact we don't want to sum the function values but rather areas of "tiny strips" we are kind of drawing below the function graph -- now a strip is basically a rectangle: area of a rectangle is computed as its height times its width. Height of the rectangle is the function value (here *2 * x - 2*) and width is *dx*, which represents the "infinitely narrow" interval. This is just to give some idea about WHY it looks like this, but it's cool to ignore it for now. -So now the fuck we can finally move on. Our integral is really easy because it's just a sum of two expressions (and an integral of a sum thankfully equals a sum of integrals) that can be integrated easily. So from the rule *I N * x dx = x^(N + 1) / N* we deduce that integral of *2 * x* is *2 * x^3 / 2 = x^3* and integral of *-2* is *-2 * x*, so we get: +Here are some rules for integration: -*I 2 * x - 2 dx = x^3 - 2 * x + C* +| *f(x)* | *I f(x) dx* | comment | +| -------------------- | ----------------------------------------------------- | ---------- | +| *a * x^n* | *a * (x^(n+1))/(n+1) + C* | | +| *cos(x)* | *sin(x) + C* | | +| *sin(x)* | *-cos(x) + C* | | +| *e^x* | *e^x + C* | | +| *1/x* | *log(x) + C* | | +| *a * g(x) + b * h(x)*| *a * (I g(x) dx) + b * (I h(x) dx) + C* | | +| *g(x) * h(x)* | *g(x) * (I h(x) dx) - (I g'(x) * (I h(x) dx) dx) + C* | per partes | + +So now the fuck we can finally move on. Our integral is really easy because it's just a sum of two expressions (and an integral of a sum thankfully equals a sum of integrals) that can be integrated easily. So from the rule *I x^N dx = x^(N + 1) / (N + 1)* we deduce that integral of *2 * x* is *2 * x^2 / 2 = x^2* and integral of *-2* is *-2 * x*, so we get: + +*I (2 * x - 2) dx = x^2 - 2 * x + C* A few things to note here now: -- Notice the additive constant *C* at the end. We always have to include this constant in the result of indefinite integral, like already mentioned. For example imagine if we set *C = 0*, then we'll get a function *x^3 - 2 * x*, and if we differentiate this back, we'll get the function we integrated: *2 * x - 2*. But we will also get the same function no matter what *C* we set because, like explained in the derivative section, additive constants disappear in differentiation. So just never forget this constant. We didn't obtain a single function but an infinite set of functions that differ just by the value of *C* (i.e. their graphs are just vertically shifted). -- We in fact DID receive back the original function from the derivative example, which was *x^3 - 2 * x + 3*, which confirms our result as correct. Or, as per above, we should rather say again that this function is a part of the set of functions we computed, one with *C = 3*. +- Notice the additive constant *C* at the end. We always have to include this constant in the result of indefinite integral, like already mentioned. For example imagine if we set *C = 0*, then we'll get a function *x^2 - 2 * x*, and if we differentiate this back, we'll get the function we integrated: *2 * x - 2*. But we will also get the same function no matter what *C* we set because, like explained in the derivative section, additive constants disappear in differentiation. So just never forget this constant. We didn't obtain a single function but an infinite set of functions that differ just by the value of *C* (i.e. their graphs are just vertically shifted). +- We in fact DID receive back the original function from the derivative example, which was *x^2 - 2 * x + 3*, which confirms our result as correct. Or, as per above, we should rather say again that this function is a part of the set of functions we computed, one with *C = 3*. Our example integral wasn't that hard, right? Yes, this was extremely easy, but once you start integrating something with composed functions (functions inside other functions) you'll get into all sorts of trouble. Now let's finish with computing a definite integral, OK? Let's say we want to compute the integral over interval 0 to 1, i.e. we'll write: -*I(0,1) 2 * x - 2 dx* +*I(0,1) (2 * x - 2) dx* Above we said this is done by computing indefinite integral (already done), then plugging the upper and lower bound and subtracting, so let's do it: -*I(0,1) 2 * x - 2 dx = (1^3 - 2 * 1 + C) - (0^3 - 2 * 0 + C) = -1* +*I(0,1) (2 * x - 2) dx = (1^3 - 2 * 1 + C) - (0^3 - 2 * 0 + C) = -1* Things to notice here: @@ -182,6 +224,90 @@ TODO: the rules **Can we do higher order integrals and partial integrals?** Yes, of course, just like with derivatives we can do both of these. +## Super Simple Numerical Calculus Example + +Here is a small [C](c.md) code that produces the image at the top showing a graph of a function, its derivative and integral. Please keep in mind this is the most naive example using the simplest algorithm that in practice would be too inaccurate and/or inefficient, but it's good for demonstration. For shorter code we resort to using [floating point](float.md) but of course we can always avoid it with [fixed point](fixed_point.md). You can try to play around with the function and see how its derivative and integral changes. Note that the plotted integral is indeed just one of the infinitely many integrals that would be differently vertically shifted by the constant *C* -- here we just plot the one that at *x = 0* goes through 0. + +``` +#include +#include + +#define GRAPH_RESX 64 // ASCII graph resolution +#define GRAPH_RESY 28 +#define GRAPH_SIZE 2.5 // interval shown in the graph +#define DX 0.01 // for numeric methods + +double f(double x) // our function +{ + return 1 + sin(2 * x) + 0.2 * x * x; +} + +double derivative(double (*f)(double), double x) +{ + return (f(x + DX) - f(x)) / DX; +} + +double integral(double (*f)(double), double x) +{ + int steps = x / DX; + double r = 0; + int flip = x < 0; + + if (x < 0) + steps *= -1; + else + x = 0; + + while (steps) + { + r += f(x) * DX; + steps--; + x += DX; + } + + return flip ? -1 * r : r; +} + +char graphImage[GRAPH_RESX * GRAPH_RESY]; + +void graphDraw(double x, double y, char c) +{ + int drawX = ((x + GRAPH_SIZE) / (2 * GRAPH_SIZE)) * GRAPH_RESX, + drawY = GRAPH_RESY - ((y + GRAPH_SIZE) / (2 * GRAPH_SIZE)) * GRAPH_RESY; + + if (drawX >= 0 && drawX < GRAPH_RESX && drawY >= 0 && drawY < GRAPH_RESY) + graphImage[drawY * GRAPH_RESX + drawX] = c; +} + +int main(void) +{ + // clear the graph image: + for (int i = 0; i < GRAPH_RESX * GRAPH_RESY; ++i) + graphImage[i] = (i % GRAPH_RESX) == GRAPH_RESX / 2 ? ':' : + ((i / GRAPH_RESX) == GRAPH_RESY / 2 ? '-' : ' '); + + // now plot the function, its derivative and integral + for (double x = -1 * GRAPH_SIZE; x < GRAPH_SIZE; + x += GRAPH_SIZE / (2 * GRAPH_RESX)) + { + graphDraw(x,integral(f,x),'#'); + graphDraw(x,derivative(f,x),'*'); + graphDraw(x,f(x),'x'); + } + + // draw the graph: + for (int i = 0; i < GRAPH_RESX * GRAPH_RESY; ++i) + { + putchar(graphImage[i]); + + if ((i + 1) % GRAPH_RESX == 0) + putchar('\n'); + } + + return 0; +} +``` + ## See Also - [differential equation](differential_equation.md) \ No newline at end of file diff --git a/random_page.md b/random_page.md index d36f52f..a357bce 100644 --- a/random_page.md +++ b/random_page.md @@ -2,1836 +2,1845 @@ Please kindly click random link. -[*](complexity.md) -[*](approximation.md) -[*](splinternet.md) -[*](semiconductor.md) -[*](gopher.md) -[*](programming_tips.md) -[*](future_proof.md) -[*](interpolation.md) -[*](sanism.md) -[*](100r.md) -[*](trusting_trust.md) -[*](good_enough.md) -[*](rationalwiki.md) -[*](bloat_monopoly.md) -[*](world_broadcast.md) -[*](free_culture.md) +[*](one.md) +[*](pedophilia.md) +[*](information.md) +[*](friend_detox.md) +[*](hero_culture.md) +[*](gnu.md) +[*](living.md) +[*](jokes.md) +[*](js.md) +[*](linux.md) +[*](free.md) +[*](xor.md) +[*](bilinear.md) [*](free_universe.md) -[*](settled.md) -[*](unary.md) -[*](anal_bead.md) -[*](license.md) -[*](boot.md) -[*](military.md) -[*](race.md) -[*](faq.md) -[*](backpropagation.md) -[*](rsa.md) -[*](wikidata.md) -[*](small3dlib.md) -[*](programming.md) -[*](capitalist_software.md) +[*](axiom_of_choice.md) +[*](racetrack.md) +[*](sw_rendering.md) +[*](harry_potter.md) +[*](racetrack.md) +[*](tool_slave.md) [*](ronja.md) -[*](lrs_wiki.md) -[*](collision_detection.md) -[*](software.md) -[*](c_sharp.md) -[*](real_number.md) -[*](arch.md) -[*](how_to.md) -[*](infinity.md) -[*](plusnigger.md) -[*](logic.md) -[*](trusting_trust.md) -[*](mainstream.md) -[*](smol_internet.md) -[*](logic.md) -[*](disease.md) -[*](bit.md) -[*](mob_software.md) -[*](e.md) -[*](fourier_transform.md) -[*](sanism.md) -[*](crow_funding.md) -[*](programming_tips.md) -[*](rapeware.md) -[*](mud.md) -[*](qubit.md) -[*](fight_culture.md) -[*](wiki_style.md) -[*](implicit.md) -[*](sorting.md) -[*](dramatica.md) -[*](lambda_calculus.md) -[*](lrs_dictionary.md) -[*](shit.md) -[*](hardware.md) -[*](art.md) -[*](palette.md) -[*](minimalism.md) -[*](easier_done_than_said.md) -[*](coding.md) -[*](lisp.md) -[*](brainfuck.md) -[*](world_broadcast.md) -[*](kids_these_days.md) -[*](unfuck.md) -[*](x86.md) -[*](mental_outlaw.md) -[*](idiot_fallacy.md) -[*](free_software.md) -[*](human_language.md) -[*](corporation.md) -[*](freedom.md) -[*](forth.md) -[*](autostereogram.md) -[*](books.md) -[*](dodleston.md) -[*](wiki_stats.md) -[*](quantum_gate.md) -[*](english.md) -[*](computational_complexity.md) -[*](os.md) -[*](toxic.md) -[*](tranny_software.md) -[*](or.md) -[*](wiby.md) -[*](open_source.md) -[*](just_werks.md) -[*](infinity.md) -[*](cc.md) -[*](cheating.md) -[*](altruism.md) -[*](gigachad.md) -[*](or.md) -[*](tas.md) -[*](fixed_point.md) -[*](portability.md) -[*](freedom_distance.md) -[*](linear_algebra.md) -[*](maintenance.md) -[*](charity_sex.md) -[*](law.md) -[*](bytebeat.md) -[*](fail_ab.md) -[*](microtransaction.md) -[*](backpropagation.md) -[*](creative_commons.md) -[*](cracking.md) -[*](tensor_product.md) -[*](easier_done_than_said.md) -[*](world_broadcast.md) -[*](temple_os.md) -[*](justice.md) -[*](magic.md) -[*](cpp.md) +[*](complexity.md) +[*](gopher.md) +[*](loquendo.md) +[*](slowly_boiling_the_frog.md) [*](nigeria.md) -[*](zen.md) -[*](reactionary_software.md) -[*](social_inertia.md) -[*](jesus.md) +[*](calculus.md) +[*](autostereogram.md) +[*](easier_done_than_said.md) +[*](sanism.md) +[*](tinyphysicsengine.md) +[*](rgb332.md) +[*](minimalism.md) [*](algorithm.md) -[*](nanogenmo.md) -[*](education.md) -[*](fourier_transform.md) -[*](racism.md) [*](interplanetary_internet.md) -[*](cos.md) -[*](rights_culture.md) -[*](quaternion.md) -[*](app.md) -[*](memory_management.md) -[*](thrembo.md) -[*](3d_modeling.md) -[*](youtube.md) -[*](unix.md) -[*](tranny_software.md) -[*](wikipedia.md) -[*](tattoo.md) -[*](intellectual_property.md) -[*](corporation.md) -[*](wavelet_transform.md) -[*](racism.md) -[*](wiki_stats.md) -[*](femoid.md) -[*](coding.md) -[*](jedi_engine.md) -[*](cancel_culture.md) -[*](google.md) -[*](encryption.md) -[*](assembly.md) -[*](ubi.md) -[*](io.md) -[*](suicide.md) -[*](holy_war.md) -[*](thrembo.md) -[*](yes_they_can.md) -[*](x86.md) -[*](avpd.md) -[*](mainstream.md) -[*](woman.md) -[*](modern_software.md) -[*](distance.md) -[*](shader.md) -[*](hw.md) -[*](rms.md) -[*](pedophilia.md) -[*](marble_race.md) -[*](explicit.md) -[*](piracy.md) -[*](troll.md) -[*](fascist.md) -[*](project.md) -[*](luke_smith.md) -[*](nationalism.md) -[*](transsexual.md) -[*](feminism.md) -[*](game_engine.md) -[*](de_facto.md) -[*](fqa.md) -[*](capitalist_software.md) -[*](kiss.md) -[*](crime_against_economy.md) -[*](ubi.md) -[*](watchdog.md) -[*](teletext.md) -[*](plan9.md) -[*](competition.md) -[*](dog.md) -[*](kiss.md) -[*](hitler.md) -[*](game_engine.md) -[*](permacomputing_wiki.md) -[*](motivation.md) -[*](logic_gate.md) -[*](money.md) -[*](tpe.md) -[*](culture.md) -[*](evil.md) -[*](hardware.md) -[*](unix_philosophy.md) -[*](sjw.md) -[*](cyberbullying.md) -[*](justice.md) -[*](crime_against_economy.md) -[*](harry_potter.md) -[*](friend_detox.md) -[*](function.md) -[*](temple_os.md) -[*](regex.md) -[*](forth.md) -[*](duskos.md) -[*](hash.md) -[*](culture.md) -[*](mental_outlaw.md) -[*](reddit.md) -[*](hash.md) -[*](splinternet.md) -[*](cloudflare.md) -[*](communism.md) -[*](physics_engine.md) -[*](free_hardware.md) -[*](temple_os.md) -[*](future_proof.md) -[*](gigachad.md) -[*](phd.md) [*](digital_signature.md) -[*](english.md) -[*](langtons_ant.md) -[*](langtons_ant.md) -[*](wiki_authors.md) -[*](progress.md) -[*](low_poly.md) -[*](rights_culture.md) -[*](zero.md) -[*](cloudflare.md) -[*](tinyphysicsengine.md) -[*](and.md) -[*](cyber.md) -[*](unary.md) -[*](cyberbullying.md) -[*](unix_philosophy.md) -[*](coc.md) -[*](drummyfish.md) -[*](iq.md) -[*](progress.md) -[*](tattoo.md) -[*](cracking.md) -[*](used.md) -[*](jesus.md) -[*](raycasting.md) -[*](race.md) -[*](cancer.md) -[*](doom.md) -[*](living.md) -[*](one.md) -[*](open_console.md) -[*](island.md) -[*](microsoft.md) -[*](hack.md) -[*](microtransaction.md) -[*](game_engine.md) -[*](project.md) -[*](copyleft.md) -[*](graveyard.md) -[*](ui.md) -[*](frameless.md) -[*](technology.md) -[*](rock.md) -[*](bytecode.md) -[*](optimization.md) -[*](love.md) -[*](programming_tips.md) +[*](idiot_fallacy.md) [*](3d_model.md) -[*](build_engine.md) -[*](semiconductor.md) -[*](lmao.md) -[*](shogi.md) -[*](beauty.md) -[*](lmao.md) -[*](openai.md) -[*](facebook.md) -[*](e.md) -[*](rapeware.md) -[*](everyone_does_it.md) -[*](gay.md) -[*](atan.md) -[*](john_carmack.md) -[*](formal_language.md) -[*](antivirus_paradox.md) -[*](fediverse.md) -[*](rationalwiki.md) -[*](apple.md) -[*](backgammon.md) -[*](interaction_net.md) -[*](pride.md) -[*](zero.md) -[*](comun.md) -[*](nd.md) -[*](mouse.md) -[*](jokes.md) -[*](library.md) -[*](unfuck.md) -[*](tattoo.md) -[*](float.md) -[*](network.md) -[*](music.md) -[*](operating_system.md) -[*](rule110.md) -[*](steganography.md) -[*](libre.md) -[*](left.md) -[*](john_carmack.md) -[*](shogi.md) -[*](hexadecimal.md) -[*](girl.md) -[*](programming_style.md) -[*](atan.md) -[*](suckless.md) -[*](twos_complement.md) -[*](hyperoperation.md) -[*](left.md) -[*](math.md) -[*](bill_gates.md) -[*](moderation.md) -[*](c_sharp.md) -[*](ted_kaczynski.md) -[*](black.md) -[*](hard_to_learn_easy_to_master.md) -[*](tinyphysicsengine.md) -[*](compiler_bomb.md) -[*](pseudorandomness.md) -[*](python.md) -[*](minesweeper.md) -[*](hyperoperation.md) -[*](one.md) -[*](web.md) -[*](autoupdate.md) -[*](c.md) -[*](consumerism.md) -[*](ui.md) -[*](compiler_bomb.md) -[*](esolang.md) -[*](google.md) -[*](bazaar.md) -[*](shortcut_thinking.md) -[*](beauty.md) -[*](pd.md) -[*](rule110.md) -[*](fascist.md) -[*](hitler.md) -[*](lambda_calculus.md) -[*](anpac.md) -[*](wikiwikiweb.md) -[*](girl.md) -[*](lmao.md) -[*](creative_commons.md) -[*](left_right.md) -[*](steve_jobs.md) -[*](freedom_distance.md) [*](zuckerberg.md) -[*](resnicks_termite.md) -[*](xonotic.md) -[*](f2p.md) -[*](hardware.md) -[*](privacy.md) -[*](loquendo.md) -[*](communism.md) -[*](open_source.md) -[*](lrs_dictionary.md) -[*](hitler.md) -[*](golang.md) -[*](tool_slave.md) -[*](facebook.md) -[*](bullshit.md) -[*](line.md) -[*](myths.md) -[*](cat_v.md) -[*](bill_gates.md) -[*](copyleft.md) -[*](pedophilia.md) -[*](fuck.md) -[*](old.md) -[*](aliasing.md) -[*](firmware.md) -[*](free_will.md) -[*](dynamic_programming.md) -[*](physics_engine.md) -[*](mud.md) -[*](slowly_boiling_the_frog.md) -[*](unretard.md) -[*](faq.md) -[*](uxn.md) -[*](float.md) -[*](harry_potter.md) -[*](portal_rendering.md) -[*](bit_hack.md) -[*](future_proof.md) -[*](niger.md) -[*](physics.md) -[*](cpp.md) -[*](femoid.md) -[*](python.md) -[*](democracy.md) -[*](axiom_of_choice.md) -[*](100r.md) -[*](ssao.md) -[*](unix.md) -[*](bit.md) -[*](computer.md) -[*](unicode.md) -[*](homelessness.md) -[*](terry_davis.md) -[*](combinatorics.md) -[*](zen.md) -[*](ssao.md) -[*](greenwashing.md) -[*](zen.md) -[*](collision_detection.md) -[*](viznut.md) -[*](audiophilia.md) -[*](copyright.md) -[*](ram.md) -[*](autoupdate.md) -[*](cpu.md) -[*](technology.md) -[*](real_number.md) -[*](settled.md) -[*](often_misunderstood.md) -[*](paradigm.md) -[*](attribution.md) -[*](gemini.md) -[*](interpolation.md) -[*](cloud.md) -[*](everyone_does_it.md) -[*](everyone_does_it.md) -[*](abstraction.md) -[*](go.md) -[*](100r.md) -[*](elon_musk.md) -[*](raylib.md) -[*](javascript.md) -[*](sqrt.md) -[*](less_retarded_hardware.md) -[*](bloat_monopoly.md) -[*](sw.md) -[*](football.md) -[*](js.md) -[*](easier_done_than_said.md) -[*](charity_sex.md) -[*](adam_smith.md) -[*](stereotype.md) -[*](no_knowledge_proof.md) -[*](wow.md) -[*](fractal.md) -[*](cc0.md) -[*](social_inertia.md) -[*](see_through_clothes.md) -[*](lgbt.md) -[*](framework.md) -[*](cpu.md) -[*](thrembo.md) -[*](openai.md) -[*](sw_rendering.md) -[*](smart.md) -[*](often_confused.md) -[*](hexadecimal.md) -[*](normalization.md) -[*](wiki_pages.md) -[*](fantasy_console.md) -[*](distrohopping.md) -[*](interesting.md) -[*](teletext.md) -[*](copyfree.md) -[*](rust.md) -[*](anal_bead.md) -[*](deep_blue.md) -[*](black.md) -[*](data_hoarding.md) -[*](pascal.md) -[*](rights_culture.md) -[*](normalization.md) -[*](lgbt.md) -[*](marble_race.md) -[*](ancap.md) -[*](less_retarded_software.md) -[*](low_poly.md) -[*](version_numbering.md) -[*](oop.md) -[*](raycastlib.md) -[*](ethics.md) -[*](libre.md) -[*](update_culture.md) -[*](coc.md) -[*](bytecode.md) -[*](golang.md) -[*](collision.md) -[*](phd.md) -[*](libre.md) -[*](bilinear.md) -[*](finished.md) -[*](analytic_geometry.md) -[*](quantum_gate.md) -[*](future.md) -[*](john_carmack.md) -[*](demo.md) -[*](selflessness.md) -[*](free_will.md) -[*](maintenance.md) -[*](io.md) -[*](ascii.md) -[*](microtheft.md) -[*](marxism.md) -[*](emoticon.md) -[*](neural_network.md) -[*](game_of_life.md) -[*](shortcut_thinking.md) -[*](tom_scott.md) -[*](woman.md) -[*](deferred_shading.md) -[*](fight.md) -[*](optimization.md) -[*](tech.md) -[*](steve_jobs.md) -[*](art.md) -[*](antialiasing.md) -[*](wizard.md) -[*](lrs_dictionary.md) -[*](cyber.md) -[*](right.md) -[*](kek.md) -[*](mud.md) -[*](usa.md) -[*](bbs.md) -[*](xd.md) -[*](avpd.md) -[*](mainstream.md) -[*](beauty.md) -[*](books.md) -[*](implicit.md) -[*](primitive_3d.md) -[*](turing_machine.md) -[*](less_retarded_software.md) -[*](love.md) -[*](interesting.md) -[*](microtheft.md) -[*](tangram.md) -[*](piracy.md) -[*](girl.md) -[*](hack.md) -[*](xor.md) -[*](io.md) -[*](free_body.md) -[*](proof.md) -[*](just_werks.md) -[*](primitive_3d.md) -[*](motivation.md) -[*](plusnigger.md) -[*](data_structure.md) -[*](collapse.md) -[*](nc.md) -[*](portability.md) -[*](recursion.md) -[*](c_tutorial.md) [*](p_vs_np.md) -[*](needed.md) -[*](free_speech.md) -[*](optimization.md) -[*](loquendo.md) -[*](elo.md) -[*](open_console.md) -[*](reddit.md) -[*](liberalism.md) -[*](npc.md) -[*](military.md) -[*](hack.md) -[*](e.md) -[*](githopping.md) +[*](luke_smith.md) +[*](idiot_fallacy.md) +[*](harry_potter.md) [*](flatland.md) -[*](holy_war.md) -[*](rgb332.md) -[*](quine.md) -[*](paywall.md) -[*](goodbye_world.md) -[*](venus_project.md) -[*](math.md) -[*](lrs_wiki.md) -[*](determinism.md) -[*](cat_v.md) -[*](gui.md) -[*](double_buffering.md) -[*](audiophilia.md) -[*](moderation.md) -[*](digital.md) -[*](xxiivv.md) -[*](adam_smith.md) -[*](anal_bead.md) -[*](interaction_net.md) -[*](hero.md) -[*](rsa.md) -[*](vector.md) -[*](plan9.md) -[*](sigbovik.md) -[*](apple.md) -[*](public_domain.md) -[*](pokitto.md) -[*](raycasting.md) -[*](software.md) -[*](proprietary.md) -[*](elon_musk.md) -[*](fun.md) -[*](faq.md) -[*](free.md) -[*](interplanetary_internet.md) -[*](dungeons_and_dragons.md) -[*](dick_reveal.md) -[*](fqa.md) -[*](21st_century.md) -[*](smallchesslib.md) -[*](saf.md) -[*](nationalism.md) -[*](modern.md) -[*](raylib.md) -[*](cancer.md) -[*](saf.md) -[*](dinosaur.md) -[*](chasm_the_rift.md) -[*](logic_circuit.md) -[*](sin.md) -[*](femoid.md) -[*](paywall.md) -[*](game.md) -[*](football.md) -[*](hacker_culture.md) -[*](woman.md) -[*](entropy.md) -[*](antivirus_paradox.md) -[*](abstraction.md) -[*](shitword.md) -[*](math.md) -[*](free_body.md) -[*](used.md) -[*](less_retarded_society.md) -[*](mental_outlaw.md) -[*](intellectual_property.md) -[*](anarch.md) -[*](pokitto.md) -[*](mandelbrot_set.md) -[*](julia_set.md) -[*](paywall.md) -[*](music.md) -[*](twos_complement.md) -[*](zuckerberg.md) -[*](hash.md) -[*](wiki_style.md) -[*](netstalking.md) -[*](determinism.md) -[*](pd.md) -[*](audiophilia.md) -[*](analytic_geometry.md) -[*](libertarianism.md) -[*](military.md) -[*](c_pitfalls.md) -[*](duke3d.md) -[*](collision.md) -[*](political_correctness.md) -[*](prime.md) -[*](love.md) -[*](troll.md) -[*](global_discussion.md) -[*](openarena.md) -[*](hard_to_learn_easy_to_master.md) -[*](os.md) -[*](tranny.md) -[*](wiby.md) -[*](patent.md) -[*](unretard.md) -[*](tor.md) -[*](go.md) -[*](chinese.md) -[*](mouse.md) -[*](small3dlib.md) -[*](toxic.md) -[*](quine.md) -[*](pseudoleft.md) -[*](pseudoleft.md) -[*](feminism.md) -[*](byte.md) -[*](sdf.md) -[*](demo.md) -[*](anarchism.md) -[*](name_is_important.md) -[*](vim.md) -[*](money.md) +[*](macrofucker.md) +[*](e.md) [*](iq.md) -[*](bit_hack.md) -[*](lotr.md) -[*](githopping.md) -[*](linear_algebra.md) -[*](teletext.md) -[*](marketing.md) -[*](free.md) -[*](c_pitfalls.md) -[*](friend_detox.md) -[*](rgb565.md) -[*](dependency.md) -[*](smart.md) -[*](lotr.md) -[*](brain_software.md) -[*](transistor.md) -[*](windows.md) -[*](less_retarded_society.md) -[*](prime.md) -[*](sin.md) -[*](cpp.md) +[*](doom.md) +[*](markov_chain.md) +[*](niggercoin.md) +[*](cancer.md) +[*](piracy.md) +[*](randomness.md) [*](triangle.md) -[*](monad.md) -[*](lambda_calculus.md) -[*](systemd.md) -[*](altruism.md) -[*](implicit.md) -[*](app.md) -[*](capitalist_singularity.md) -[*](trump.md) -[*](earth.md) -[*](just_werks.md) -[*](internet.md) -[*](programming_language.md) -[*](wiki_tldr.md) -[*](czechia.md) -[*](disease.md) -[*](trom.md) -[*](gui.md) -[*](shitword.md) -[*](noise.md) -[*](portal_rendering.md) -[*](easy_to_learn_hard_to_master.md) -[*](cracker.md) -[*](bytebeat.md) -[*](proprietary.md) -[*](ted_kaczynski.md) -[*](lil.md) -[*](monad.md) -[*](ascii.md) -[*](security.md) -[*](comment.md) -[*](logic.md) -[*](bitreich.md) -[*](censorship.md) -[*](hexadecimal.md) -[*](wiki_tldr.md) -[*](duskos.md) -[*](mipmap.md) -[*](nc.md) -[*](chaos.md) -[*](wiki_post_mortem.md) -[*](interaction_net.md) -[*](name_is_important.md) -[*](digital_signature.md) -[*](tinyphysicsengine.md) -[*](systemd.md) -[*](version_numbering.md) -[*](wikidata.md) +[*](open_source.md) +[*](crow_funding.md) +[*](oop.md) +[*](coc.md) +[*](homelessness.md) +[*](game.md) +[*](communism.md) +[*](black.md) [*](trusting_trust.md) -[*](emoticon.md) -[*](justice.md) -[*](nigger.md) -[*](charity_sex.md) -[*](arch.md) -[*](assertiveness.md) -[*](cc0.md) -[*](fun.md) -[*](fuck.md) -[*](cache.md) -[*](minimalism.md) -[*](gender_studies.md) -[*](people.md) -[*](rgb565.md) -[*](fizzbuzz.md) -[*](right.md) -[*](bullshit.md) -[*](niggercoin.md) -[*](gender_studies.md) -[*](competition.md) -[*](docker.md) -[*](frameless.md) -[*](pseudominimalism.md) -[*](90s.md) -[*](smol_internet.md) -[*](splinternet.md) -[*](faggot.md) -[*](pascal.md) -[*](pd.md) -[*](faggot.md) -[*](information.md) -[*](f2p.md) -[*](bit_hack.md) -[*](number.md) -[*](free_universe.md) -[*](libertarianism.md) -[*](political_correctness.md) -[*](42.md) -[*](robot.md) -[*](altruism.md) -[*](cloudflare.md) -[*](less_retarded_hardware.md) -[*](3d_rendering.md) -[*](fun.md) -[*](nord_vpn.md) -[*](blender.md) -[*](bitreich.md) -[*](egoism.md) -[*](racism.md) -[*](fsf.md) -[*](macrofucker.md) -[*](bilinear.md) -[*](fascism.md) -[*](education.md) -[*](feminism.md) -[*](lil.md) -[*](elo.md) -[*](gopher.md) -[*](jedi_engine.md) -[*](yes_they_can.md) -[*](nigger.md) -[*](nonogram.md) -[*](work.md) -[*](kek.md) -[*](patent.md) -[*](xor.md) -[*](free_hardware.md) -[*](function.md) -[*](jargon_file.md) -[*](loc.md) -[*](pseudorandomness.md) -[*](crime_against_economy.md) -[*](devuan.md) -[*](tas.md) -[*](free_software.md) -[*](pseudo3d.md) -[*](demo.md) -[*](kids_these_days.md) -[*](npc.md) -[*](magic.md) -[*](pseudominimalism.md) -[*](demoscene.md) -[*](collision_detection.md) -[*](wow.md) -[*](logic_circuit.md) -[*](no_knowledge_proof.md) -[*](wavelet_transform.md) -[*](culture.md) -[*](nokia.md) -[*](www.md) -[*](wiki_rights.md) -[*](venus_project.md) -[*](chinese.md) -[*](speech_synthesis.md) -[*](python.md) -[*](and.md) -[*](combinatorics.md) -[*](dick_reveal.md) -[*](gemini.md) -[*](de_facto.md) -[*](abstraction.md) -[*](coding.md) -[*](open_source.md) -[*](shit.md) -[*](compsci.md) -[*](vector.md) -[*](sin.md) -[*](idiot_fallacy.md) -[*](interpolation.md) -[*](21st_century.md) -[*](human_language.md) -[*](wiby.md) -[*](books.md) -[*](unary.md) -[*](java.md) -[*](murderer.md) -[*](modern.md) -[*](acronym.md) -[*](corporation.md) -[*](bootstrap.md) -[*](3d_model.md) -[*](niger.md) -[*](nationalism.md) -[*](science.md) -[*](chaos.md) -[*](doom.md) -[*](censorship.md) -[*](fantasy_console.md) -[*](flatland.md) -[*](security.md) -[*](exercises.md) -[*](xxiivv.md) -[*](harry_potter.md) -[*](transistor.md) -[*](steve_jobs.md) -[*](resnicks_termite.md) -[*](tech.md) -[*](lisp.md) -[*](newspeak.md) -[*](sjw.md) -[*](proprietary_software.md) -[*](nigeria.md) -[*](selflessness.md) -[*](dramatica.md) -[*](jargon_file.md) -[*](copyfree.md) -[*](egoism.md) -[*](smallchesslib.md) -[*](license.md) -[*](minigame.md) -[*](wiki_authors.md) -[*](explicit.md) -[*](suicide.md) -[*](golang.md) -[*](dodleston.md) -[*](pi.md) -[*](javascript.md) -[*](microtheft.md) -[*](unix.md) -[*](double_buffering.md) -[*](xd.md) -[*](pseudo3d.md) -[*](trolling.md) -[*](quine.md) -[*](markov_chain.md) -[*](portal_rendering.md) -[*](free_software.md) -[*](myths.md) -[*](programming.md) -[*](modern_software.md) -[*](demoscene.md) -[*](democracy.md) -[*](technology.md) -[*](zero.md) -[*](comun.md) -[*](pascal.md) -[*](compiler_bomb.md) -[*](kiwifarms.md) -[*](lrs.md) -[*](aaron_swartz.md) -[*](vim.md) -[*](less_retarded_software.md) -[*](history.md) -[*](normalization.md) -[*](pi.md) -[*](transsexual.md) -[*](java.md) -[*](julia_set.md) -[*](primitive_3d.md) -[*](science.md) -[*](security.md) -[*](nd.md) -[*](lil.md) -[*](football.md) -[*](randomness.md) -[*](libertarianism.md) -[*](geek.md) -[*](life.md) -[*](deferred_shading.md) -[*](firmware.md) -[*](ashley_jones.md) -[*](comment.md) -[*](adam_smith.md) -[*](build_engine.md) -[*](usenet.md) -[*](autostereogram.md) -[*](throwaway_script.md) -[*](graveyard.md) -[*](langtons_ant.md) -[*](one.md) -[*](free_hardware.md) -[*](linear_algebra.md) -[*](sudoku.md) -[*](wiki_rights.md) -[*](marketing.md) -[*](cos.md) -[*](homelessness.md) -[*](steganography.md) -[*](hacking.md) -[*](internet.md) -[*](facebook.md) -[*](bs.md) -[*](fight_culture.md) -[*](analog.md) -[*](line.md) -[*](tangram.md) -[*](minigame.md) -[*](nokia.md) -[*](toxic.md) -[*](elo.md) -[*](ethics.md) -[*](rationalwiki.md) -[*](xonotic.md) -[*](nord_vpn.md) -[*](malware.md) -[*](fear_culture.md) -[*](ui.md) -[*](public_domain.md) -[*](gender_studies.md) -[*](venus_project.md) -[*](ai.md) -[*](ancap.md) -[*](main.md) -[*](anarch.md) -[*](kwangmyong.md) -[*](furry.md) -[*](dungeons_and_dragons.md) -[*](programming_language.md) -[*](explicit.md) -[*](racetrack.md) -[*](chasm_the_rift.md) -[*](linux.md) -[*](kiss.md) -[*](suicide.md) -[*](forth.md) -[*](music.md) -[*](cache.md) -[*](trump.md) -[*](rapeware.md) -[*](soyence.md) -[*](minimalism.md) -[*](c_tutorial.md) -[*](viznut.md) -[*](regex.md) -[*](diogenes.md) -[*](bbs.md) -[*](rust.md) -[*](pseudominimalism.md) -[*](wizard.md) -[*](formal_language.md) -[*](css.md) -[*](tool_slave.md) -[*](framework.md) -[*](wiki_pages.md) -[*](gui.md) -[*](cracker.md) -[*](shader.md) -[*](terry_davis.md) -[*](boat.md) -[*](smallchesslib.md) -[*](drummyfish.md) -[*](racetrack.md) -[*](disease.md) -[*](chess.md) -[*](lotr.md) -[*](ubi.md) -[*](complexity.md) -[*](procgen.md) -[*](cat_v.md) -[*](backgammon.md) -[*](bazaar.md) -[*](mob_software.md) -[*](mouse.md) -[*](sdf.md) -[*](minesweeper.md) -[*](backgammon.md) -[*](xxiivv.md) -[*](lgbt.md) -[*](marble_race.md) -[*](saf.md) -[*](debugging.md) -[*](demoscene.md) -[*](distance.md) -[*](byte.md) -[*](fizzbuzz.md) -[*](xor.md) -[*](slowly_boiling_the_frog.md) -[*](90s.md) -[*](old.md) -[*](aliasing.md) -[*](rust.md) -[*](boat.md) -[*](nanogenmo.md) -[*](nord_vpn.md) -[*](minesweeper.md) -[*](antialiasing.md) -[*](drummyfish.md) -[*](library.md) -[*](mechanical.md) -[*](trash_magic.md) -[*](binary.md) -[*](dynamic_programming.md) -[*](markov_chain.md) -[*](encryption.md) -[*](fixed_point.md) -[*](memory_management.md) -[*](fractal.md) -[*](free_will.md) -[*](sanism.md) -[*](frameless.md) -[*](debugging.md) -[*](greenwashing.md) -[*](dramatica.md) -[*](soyence.md) -[*](rock.md) -[*](crypto.md) -[*](computational_complexity.md) -[*](blender.md) -[*](sw_rendering.md) -[*](hero_culture.md) -[*](easy_to_learn_hard_to_master.md) -[*](sorting.md) -[*](floss.md) -[*](openarena.md) -[*](noise.md) -[*](often_misunderstood.md) -[*](transistor.md) -[*](art.md) -[*](collapse.md) -[*](fuck.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](furry.md) -[*](wiki_pages.md) -[*](digital.md) -[*](www.md) -[*](42.md) -[*](fork.md) -[*](graphics.md) -[*](qubit.md) -[*](binary.md) -[*](quaternion.md) -[*](trump.md) -[*](smol_internet.md) -[*](anarchism.md) -[*](ascii.md) -[*](left_right.md) -[*](main.md) -[*](programming.md) -[*](assembly.md) -[*](duke3d.md) -[*](wiki_style.md) -[*](political_correctness.md) -[*](aaron_swartz.md) -[*](life.md) -[*](bytecode.md) -[*](bilinear.md) -[*](crow_funding.md) -[*](youtube.md) -[*](communism.md) -[*](myths.md) -[*](boot.md) -[*](apple.md) -[*](reactionary_software.md) -[*](fediverse.md) -[*](fqa.md) -[*](git.md) -[*](friend_detox.md) -[*](assertiveness.md) -[*](free_universe.md) -[*](js.md) -[*](murderer.md) -[*](uxn.md) -[*](update_culture.md) -[*](4chan.md) -[*](autoupdate.md) -[*](rule110.md) -[*](vector.md) -[*](nokia.md) -[*](number.md) -[*](cancel_culture.md) -[*](network.md) -[*](binary.md) -[*](boat.md) -[*](goodbye_world.md) -[*](egoism.md) -[*](productivity_cult.md) -[*](bs.md) -[*](encyclopedia.md) -[*](assembly.md) -[*](future.md) -[*](hw.md) -[*](smart.md) -[*](history.md) -[*](zoomer.md) -[*](c.md) -[*](ai.md) -[*](viznut.md) -[*](nonogram.md) -[*](no_knowledge_proof.md) -[*](fizzbuzz.md) -[*](wikipedia.md) -[*](earth.md) -[*](macrofucker.md) -[*](rgb565.md) -[*](cancer.md) -[*](c_pitfalls.md) -[*](operating_system.md) -[*](free.md) -[*](axiom_of_choice.md) -[*](diogenes.md) -[*](triangle.md) -[*](small3dlib.md) -[*](moderation.md) -[*](kiwifarms.md) -[*](determinism.md) [*](used.md) -[*](trom.md) -[*](encryption.md) -[*](cos.md) -[*](tangram.md) -[*](motivation.md) -[*](speech_synthesis.md) -[*](countercomplex.md) -[*](stereotype.md) -[*](wiki_authors.md) -[*](brain_software.md) -[*](transsexual.md) -[*](esolang.md) -[*](approximation.md) -[*](mipmap.md) -[*](throwaway_script.md) -[*](acronym.md) -[*](fixed_point.md) -[*](gaywashing.md) -[*](people.md) -[*](permacomputing.md) -[*](suckless.md) -[*](marketing.md) -[*](pseudorandomness.md) -[*](shortcut_thinking.md) -[*](brain_software.md) -[*](often_misunderstood.md) -[*](copyright.md) -[*](island.md) -[*](universe.md) -[*](geek.md) -[*](plusnigger.md) -[*](jokes.md) -[*](proof.md) -[*](color.md) -[*](free_speech.md) -[*](4chan.md) -[*](hacker_culture.md) -[*](gay.md) -[*](copyleft.md) -[*](number.md) -[*](marxism.md) -[*](memory_management.md) -[*](billboard.md) -[*](line.md) -[*](bs.md) -[*](entrepreneur.md) -[*](newspeak.md) -[*](wiki_post_mortem.md) -[*](p_vs_np.md) -[*](openarena.md) -[*](capitalist_singularity.md) -[*](luke_smith.md) -[*](zoomer.md) -[*](fourier_transform.md) -[*](magic.md) -[*](proprietary_software.md) -[*](diogenes.md) -[*](data_hoarding.md) -[*](foss.md) -[*](dinosaur.md) -[*](game_of_life.md) -[*](often_confused.md) -[*](rgb332.md) -[*](license.md) -[*](sw_rendering.md) -[*](markov_chain.md) -[*](gnu.md) -[*](kek.md) -[*](go.md) -[*](evil.md) -[*](murderer.md) -[*](xonotic.md) -[*](ascii_art.md) -[*](js.md) -[*](fascism.md) -[*](randomness.md) -[*](selflessness.md) -[*](censorship.md) -[*](crow_funding.md) -[*](finished.md) -[*](tool_slave.md) -[*](acronym.md) -[*](settled.md) -[*](usa.md) -[*](dinosaur.md) -[*](ioccc.md) -[*](proof.md) -[*](arduboy.md) -[*](duskos.md) -[*](low_poly.md) -[*](loc.md) -[*](public_domain.md) -[*](portability.md) -[*](faggot.md) -[*](usenet.md) -[*](earth.md) -[*](devuan.md) -[*](slowly_boiling_the_frog.md) -[*](hyperoperation.md) -[*](goodbye_world.md) -[*](library.md) -[*](cyber.md) -[*](framework.md) -[*](living.md) -[*](capitalism.md) -[*](pride.md) -[*](often_confused.md) -[*](proprietary.md) -[*](evil.md) -[*](dependency.md) -[*](rsa.md) -[*](sudoku.md) -[*](tor.md) -[*](wow.md) -[*](90s.md) -[*](README.md) -[*](cc.md) -[*](finished.md) -[*](holy_war.md) -[*](hw.md) -[*](tom_scott.md) -[*](rms.md) -[*](phd.md) -[*](distance.md) -[*](social_inertia.md) -[*](main.md) -[*](function.md) -[*](emoticon.md) -[*](3d_modeling.md) -[*](gnu.md) -[*](sqrt.md) -[*](liberalism.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](docker.md) -[*](distrohopping.md) -[*](mandelbrot_set.md) -[*](autostereogram.md) -[*](loquendo.md) -[*](julia_set.md) -[*](analog.md) -[*](update_culture.md) -[*](marxism.md) -[*](sw.md) -[*](good_enough.md) -[*](triangle.md) -[*](game_of_life.md) -[*](double_buffering.md) -[*](game.md) -[*](complexity.md) -[*](tom_scott.md) -[*](byte.md) -[*](science.md) -[*](law.md) -[*](less_retarded_society.md) -[*](free_culture.md) -[*](needed.md) -[*](steganography.md) -[*](brainfuck.md) -[*](arduboy.md) -[*](dog.md) -[*](physics.md) -[*](chess.md) -[*](javascript.md) -[*](malware.md) -[*](iq.md) -[*](less_retarded_hardware.md) -[*](sigbovik.md) -[*](unretard.md) -[*](gaywashing.md) -[*](p_vs_np.md) -[*](sjw.md) -[*](42.md) -[*](resnicks_termite.md) -[*](permacomputing_wiki.md) -[*](wiki_rights.md) -[*](mob_software.md) -[*](hacker_culture.md) -[*](trolling.md) -[*](git.md) -[*](permacomputing_wiki.md) -[*](soydev.md) -[*](permacomputing.md) -[*](permacomputing.md) -[*](kiwifarms.md) -[*](cache.md) -[*](life.md) -[*](app.md) -[*](downto.md) -[*](neural_network.md) -[*](tpe.md) -[*](bill_gates.md) -[*](bloat_monopoly.md) -[*](nigeria.md) -[*](terry_davis.md) -[*](english.md) -[*](cloud.md) -[*](bit.md) -[*](modern_software.md) -[*](kids_these_days.md) -[*](procgen.md) -[*](youtube.md) -[*](project.md) -[*](pokitto.md) -[*](digital_signature.md) -[*](public_domain_computer.md) -[*](fork.md) -[*](money.md) -[*](data_structure.md) -[*](fsf.md) -[*](anarchism.md) -[*](shitword.md) -[*](atan.md) -[*](intellectual_property.md) -[*](anarch.md) -[*](devuan.md) -[*](global_discussion.md) -[*](pride.md) -[*](how_to.md) -[*](firmware.md) -[*](bloat.md) -[*](microsoft.md) -[*](freedom.md) -[*](build_engine.md) -[*](ethics.md) -[*](bbs.md) -[*](fight.md) -[*](usenet.md) -[*](4chan.md) -[*](zuckerberg.md) -[*](copyfree.md) -[*](logic_gate.md) -[*](chinese.md) -[*](leading_the_pig_to_the_slaughterhouse.md) -[*](www.md) -[*](recursion.md) -[*](arch.md) -[*](css.md) -[*](living.md) -[*](graphics.md) -[*](downto.md) -[*](arduboy.md) -[*](hero_culture.md) -[*](21st_century.md) -[*](reactionary_software.md) -[*](docker.md) -[*](homelessness.md) -[*](data_hoarding.md) -[*](network.md) -[*](mipmap.md) -[*](rock.md) -[*](entropy.md) -[*](paradigm.md) -[*](capitalism.md) -[*](de_facto.md) -[*](fight.md) -[*](modern.md) -[*](dependency.md) -[*](logic_gate.md) -[*](whale.md) -[*](compression.md) -[*](aaron_swartz.md) -[*](tranny.md) -[*](bloat.md) -[*](tas.md) -[*](prime.md) -[*](whale.md) -[*](wikidata.md) -[*](floss.md) -[*](ronja.md) -[*](ascii_art.md) -[*](regex.md) -[*](niggercoin.md) -[*](oop.md) -[*](dog.md) -[*](name_is_important.md) -[*](free_speech.md) -[*](fractal.md) -[*](good_enough.md) -[*](tpe.md) -[*](netstalking.md) -[*](freedom_distance.md) -[*](sorting.md) -[*](nd.md) -[*](compsci.md) -[*](fear_culture.md) -[*](linux.md) -[*](stereotype.md) -[*](3d_modeling.md) -[*](unicode.md) -[*](sigbovik.md) -[*](hero.md) -[*](x86.md) -[*](comment.md) -[*](graphics.md) -[*](sdf.md) -[*](kwangmyong.md) -[*](trash_magic.md) -[*](zoomer.md) -[*](unix_philosophy.md) -[*](lrs.md) -[*](shit.md) -[*](consumerism.md) -[*](cyberbullying.md) -[*](patent.md) -[*](compsci.md) -[*](ted_kaczynski.md) -[*](duke3d.md) -[*](downto.md) -[*](linux.md) -[*](bazaar.md) -[*](monad.md) -[*](idiot_fallacy.md) -[*](xd.md) -[*](troll.md) -[*](openai.md) -[*](entrepreneur.md) -[*](work.md) -[*](robot.md) -[*](and.md) -[*](doom.md) -[*](dick_reveal.md) -[*](ashley_jones.md) -[*](computer.md) -[*](hard_to_learn_easy_to_master.md) -[*](attribution.md) -[*](noise.md) -[*](interplanetary_internet.md) -[*](fear_culture.md) -[*](operating_system.md) -[*](future.md) -[*](dodleston.md) -[*](collapse.md) -[*](unfuck.md) -[*](bloat.md) -[*](tensor_product.md) -[*](niggercoin.md) -[*](foss.md) [*](ai.md) -[*](see_through_clothes.md) -[*](freedom.md) -[*](color.md) -[*](privacy.md) -[*](entropy.md) -[*](graveyard.md) -[*](body_shaming.md) -[*](programming_language.md) -[*](minigame.md) -[*](paradigm.md) -[*](wikipedia.md) -[*](antialiasing.md) -[*](fascism.md) -[*](privacy.md) -[*](float.md) -[*](aliasing.md) -[*](color.md) -[*](comun.md) -[*](ascii_art.md) -[*](tensor_product.md) -[*](jedi_engine.md) -[*](pedophilia.md) -[*](jargon_file.md) -[*](unicode.md) -[*](deep_blue.md) -[*](chasm_the_rift.md) -[*](analytic_geometry.md) -[*](3d_model.md) -[*](maintenance.md) -[*](cloud.md) -[*](how_to.md) -[*](sqrt.md) -[*](3d_rendering.md) -[*](boot.md) -[*](universe.md) -[*](billboard.md) -[*](jesus.md) -[*](racetrack.md) -[*](bootstrap.md) -[*](encyclopedia.md) -[*](exercises.md) -[*](lrs.md) -[*](nigger.md) -[*](competition.md) -[*](left_right.md) -[*](hero_culture.md) -[*](free_culture.md) -[*](fail_ab.md) -[*](czechia.md) -[*](malware.md) -[*](avpd.md) -[*](cracking.md) -[*](piracy.md) -[*](yes_they_can.md) -[*](loc.md) -[*](tranny_software.md) -[*](easy_to_learn_hard_to_master.md) -[*](recursion.md) -[*](reddit.md) -[*](cc0.md) -[*](progress.md) -[*](entrepreneur.md) -[*](debugging.md) -[*](information.md) -[*](information.md) -[*](formal_language.md) -[*](mechanical.md) -[*](c_sharp.md) -[*](chess.md) -[*](programming_style.md) -[*](tech.md) -[*](plan9.md) -[*](nc.md) -[*](esolang.md) -[*](rms.md) -[*](creative_commons.md) -[*](watchdog.md) -[*](npc.md) -[*](githopping.md) -[*](hacking.md) -[*](atheism.md) -[*](google.md) -[*](README.md) -[*](computer.md) -[*](liberalism.md) -[*](compression.md) -[*](atheism.md) -[*](web.md) -[*](wiki_tldr.md) -[*](fediverse.md) -[*](cheating.md) -[*](soydev.md) -[*](education.md) -[*](wiki_stats.md) -[*](wavelet_transform.md) -[*](sw.md) -[*](tor.md) -[*](human_language.md) -[*](quantum_gate.md) -[*](soydev.md) -[*](history.md) -[*](computational_complexity.md) -[*](web.md) -[*](software.md) -[*](interesting.md) -[*](combinatorics.md) -[*](kwangmyong.md) -[*](nonogram.md) -[*](newspeak.md) -[*](soyence.md) -[*](fail_ab.md) -[*](axiom_of_choice.md) -[*](turing_machine.md) -[*](bootstrap.md) -[*](dungeons_and_dragons.md) -[*](cracker.md) -[*](ancap.md) -[*](os.md) -[*](raylib.md) -[*](proprietary_software.md) -[*](needed.md) -[*](crypto.md) -[*](fascist.md) -[*](productivity_cult.md) -[*](open_console.md) -[*](physics.md) -[*](pseudoleft.md) -[*](analog.md) -[*](ssao.md) -[*](deferred_shading.md) -[*](palette.md) -[*](assertiveness.md) -[*](cheating.md) -[*](old.md) -[*](greenwashing.md) -[*](gaywashing.md) -[*](exercises.md) -[*](body_shaming.md) -[*](cancel_culture.md) -[*](morality.md) -[*](foss.md) -[*](real_number.md) -[*](flatland.md) -[*](trash_magic.md) -[*](css.md) -[*](raycastlib.md) -[*](coc.md) -[*](wikiwikiweb.md) -[*](mandelbrot_set.md) -[*](logic_circuit.md) -[*](people.md) [*](gemini.md) [*](raycastlib.md) -[*](antivirus_paradox.md) -[*](watchdog.md) -[*](throwaway_script.md) -[*](cc.md) -[*](usa.md) -[*](bitreich.md) -[*](programming_style.md) -[*](ioccc.md) -[*](qubit.md) -[*](universe.md) -[*](java.md) -[*](backpropagation.md) -[*](uxn.md) -[*](collision.md) -[*](left.md) -[*](ashley_jones.md) -[*](right.md) -[*](c_tutorial.md) -[*](gopher.md) -[*](floss.md) -[*](public_domain_computer.md) -[*](microtransaction.md) -[*](brainfuck.md) -[*](niger.md) -[*](README.md) -[*](law.md) -[*](ram.md) -[*](or.md) -[*](elon_musk.md) -[*](morality.md) -[*](crypto.md) -[*](anpac.md) -[*](tranny.md) -[*](shogi.md) -[*](blender.md) -[*](body_shaming.md) -[*](windows.md) -[*](countercomplex.md) -[*](whale.md) -[*](capitalist_singularity.md) -[*](oop.md) -[*](public_domain_computer.md) -[*](nanogenmo.md) -[*](deep_blue.md) -[*](consumerism.md) -[*](wiki_post_mortem.md) -[*](compression.md) -[*](speech_synthesis.md) -[*](morality.md) -[*](windows.md) -[*](furry.md) -[*](hacking.md) -[*](neural_network.md) -[*](microsoft.md) -[*](atheism.md) -[*](global_discussion.md) -[*](bytebeat.md) -[*](productivity_cult.md) -[*](ram.md) -[*](see_through_clothes.md) -[*](cpu.md) -[*](ronja.md) -[*](lrs_wiki.md) -[*](palette.md) -[*](luke_smith.md) -[*](distrohopping.md) -[*](semiconductor.md) -[*](f2p.md) -[*](game.md) -[*](fight_culture.md) -[*](physics_engine.md) -[*](macrofucker.md) -[*](jokes.md) -[*](gay.md) -[*](suckless.md) -[*](democracy.md) -[*](mechanical.md) -[*](turing_machine.md) -[*](digital.md) -[*](capitalist_software.md) -[*](vim.md) -[*](geek.md) [*](raycasting.md) -[*](dynamic_programming.md) -[*](shader.md) -[*](billboard.md) -[*](race.md) -[*](work.md) +[*](vim.md) +[*](fail_ab.md) +[*](golang.md) +[*](bytebeat.md) +[*](openai.md) +[*](geek.md) +[*](unary.md) +[*](proprietary.md) +[*](boot.md) +[*](free_will.md) +[*](noise.md) +[*](go.md) +[*](build_engine.md) +[*](license.md) +[*](graphics.md) +[*](elo.md) [*](algorithm.md) -[*](pi.md) -[*](robot.md) -[*](trolling.md) -[*](fsf.md) -[*](gnu.md) -[*](anpac.md) -[*](chaos.md) -[*](copyright.md) -[*](hero.md) -[*](quaternion.md) -[*](rgb332.md) -[*](pseudo3d.md) -[*](twos_complement.md) -[*](systemd.md) -[*](wikiwikiweb.md) -[*](gigachad.md) -[*](lisp.md) -[*](wizard.md) -[*](fork.md) -[*](trom.md) -[*](git.md) -[*](bullshit.md) -[*](3d_rendering.md) -[*](black.md) -[*](encyclopedia.md) -[*](data_structure.md) -[*](version_numbering.md) -[*](attribution.md) +[*](speech_synthesis.md) +[*](see_through_clothes.md) +[*](ram.md) +[*](saf.md) +[*](kids_these_days.md) +[*](marketing.md) +[*](avpd.md) +[*](resnicks_termite.md) +[*](living.md) +[*](data_hoarding.md) +[*](easier_done_than_said.md) +[*](drummyfish.md) +[*](sjw.md) +[*](io.md) +[*](privacy.md) +[*](speech_synthesis.md) +[*](hexadecimal.md) +[*](freedom_distance.md) +[*](usa.md) +[*](wiki_authors.md) +[*](fediverse.md) +[*](wiki_style.md) +[*](programming_style.md) +[*](raylib.md) +[*](rationalwiki.md) +[*](smallchesslib.md) +[*](military.md) +[*](morality.md) +[*](graveyard.md) +[*](sorting.md) +[*](less_retarded_society.md) +[*](crime_against_economy.md) +[*](langtons_ant.md) +[*](duskos.md) +[*](ai.md) +[*](turing_machine.md) +[*](bytebeat.md) +[*](english.md) +[*](byte.md) +[*](newspeak.md) +[*](qubit.md) +[*](usa.md) +[*](fixed_point.md) +[*](fascist.md) +[*](future_proof.md) +[*](crow_funding.md) [*](c.md) -[*](randomness.md) -[*](fantasy_console.md) -[*](capitalism.md) -[*](free_body.md) -[*](island.md) -[*](approximation.md) -[*](netstalking.md) -[*](procgen.md) -[*](czechia.md) +[*](hacker_culture.md) +[*](double_buffering.md) +[*](free.md) +[*](myths.md) +[*](mipmap.md) +[*](nanogenmo.md) +[*](data_structure.md) +[*](privacy.md) +[*](splinternet.md) +[*](cc.md) +[*](disease.md) +[*](faq.md) +[*](bbs.md) +[*](needed.md) +[*](saf.md) +[*](gay.md) +[*](computational_complexity.md) +[*](capitalist_software.md) +[*](copyright.md) +[*](creative_commons.md) +[*](build_engine.md) +[*](proprietary.md) +[*](consumerism.md) +[*](real_number.md) +[*](backpropagation.md) [*](infinity.md) -[*](internet.md) -[*](algorithm.md) +[*](gigachad.md) +[*](tor.md) +[*](marble_race.md) +[*](fuck.md) +[*](unix.md) +[*](hack.md) +[*](fqa.md) +[*](microtheft.md) +[*](black.md) +[*](unicode.md) +[*](cyberbullying.md) +[*](fediverse.md) +[*](tech.md) +[*](no_knowledge_proof.md) +[*](john_carmack.md) +[*](anarch.md) +[*](deep_blue.md) +[*](exercises.md) +[*](hero.md) +[*](body_shaming.md) +[*](cyber.md) +[*](copyfree.md) +[*](ronja.md) +[*](fizzbuzz.md) +[*](elon_musk.md) +[*](liberalism.md) +[*](public_domain.md) +[*](black.md) +[*](chaos.md) +[*](quantum_gate.md) +[*](bytebeat.md) +[*](graphics.md) +[*](robot.md) +[*](viznut.md) +[*](splinternet.md) +[*](antivirus_paradox.md) +[*](greenwashing.md) +[*](bloat.md) +[*](history.md) +[*](good_enough.md) +[*](windows.md) +[*](motivation.md) +[*](loquendo.md) +[*](left_right.md) +[*](optimization.md) [*](sudoku.md) -[*](countercomplex.md) +[*](communism.md) +[*](coc.md) +[*](ted_kaczynski.md) +[*](raylib.md) +[*](yes_they_can.md) +[*](java.md) +[*](youtube.md) +[*](technology.md) +[*](game_of_life.md) +[*](steganography.md) +[*](jargon_file.md) +[*](tas.md) +[*](race.md) +[*](coc.md) +[*](logic.md) +[*](bit.md) +[*](malware.md) +[*](cc.md) +[*](chinese.md) +[*](steganography.md) +[*](cracking.md) +[*](motivation.md) +[*](floss.md) +[*](jedi_engine.md) +[*](communism.md) +[*](consumerism.md) +[*](go.md) +[*](sjw.md) +[*](security.md) +[*](markov_chain.md) +[*](pseudoleft.md) +[*](crypto.md) +[*](hacking.md) +[*](rock.md) +[*](watchdog.md) +[*](hard_to_learn_easy_to_master.md) +[*](encryption.md) +[*](arduboy.md) +[*](elo.md) +[*](hash.md) +[*](magic.md) +[*](raycastlib.md) +[*](charity_sex.md) +[*](frameless.md) +[*](hacker_culture.md) +[*](robot.md) +[*](comment.md) +[*](nokia.md) +[*](often_misunderstood.md) +[*](open_source.md) +[*](pseudoleft.md) +[*](pedophilia.md) +[*](football.md) +[*](js.md) +[*](hexadecimal.md) +[*](sqrt.md) +[*](90s.md) +[*](music.md) +[*](fizzbuzz.md) +[*](cat_v.md) +[*](ascii.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](rapeware.md) +[*](future_proof.md) +[*](competition.md) +[*](unfuck.md) +[*](left.md) +[*](aliasing.md) +[*](os.md) +[*](collision_detection.md) +[*](apple.md) +[*](bbs.md) +[*](digital.md) +[*](semiconductor.md) +[*](kiwifarms.md) +[*](global_discussion.md) +[*](cancel_culture.md) +[*](dramatica.md) +[*](hardware.md) +[*](fight_culture.md) +[*](dungeons_and_dragons.md) +[*](license.md) +[*](linux.md) +[*](antivirus_paradox.md) +[*](ancap.md) +[*](sw.md) +[*](web.md) +[*](girl.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](fourier_transform.md) +[*](sw.md) +[*](app.md) +[*](feminism.md) +[*](pi.md) +[*](proprietary_software.md) +[*](adam_smith.md) +[*](quaternion.md) +[*](suicide.md) +[*](entropy.md) +[*](wizard.md) +[*](xonotic.md) +[*](logic_gate.md) +[*](fascism.md) +[*](small3dlib.md) +[*](zoomer.md) +[*](implicit.md) +[*](open_console.md) +[*](line.md) +[*](javascript.md) +[*](free_culture.md) +[*](audiophilia.md) +[*](lil.md) +[*](phd.md) +[*](plan9.md) +[*](lrs.md) +[*](doom.md) +[*](modern_software.md) +[*](fight_culture.md) +[*](settled.md) +[*](monad.md) +[*](rust.md) +[*](compsci.md) +[*](forth.md) +[*](see_through_clothes.md) +[*](rule110.md) +[*](antivirus_paradox.md) +[*](rationalwiki.md) +[*](encyclopedia.md) +[*](usenet.md) +[*](network.md) +[*](football.md) +[*](ubi.md) +[*](earth.md) +[*](deep_blue.md) +[*](free_universe.md) +[*](trom.md) +[*](czechia.md) +[*](lrs_dictionary.md) +[*](computer.md) +[*](egoism.md) +[*](tor.md) +[*](git.md) +[*](wikiwikiweb.md) +[*](algorithm.md) +[*](elon_musk.md) +[*](doom.md) +[*](furry.md) +[*](nationalism.md) +[*](microtransaction.md) +[*](dramatica.md) +[*](czechia.md) +[*](unix_philosophy.md) +[*](lisp.md) +[*](mechanical.md) +[*](stereotype.md) +[*](mandelbrot_set.md) +[*](kwangmyong.md) +[*](old.md) +[*](proof.md) +[*](soyence.md) +[*](fixed_point.md) +[*](langtons_ant.md) +[*](cloudflare.md) +[*](unary.md) +[*](backgammon.md) +[*](openarena.md) +[*](teletext.md) +[*](fascism.md) +[*](42.md) +[*](debugging.md) +[*](lambda_calculus.md) +[*](hack.md) +[*](living.md) +[*](recursion.md) +[*](cache.md) +[*](anarchism.md) +[*](lgbt.md) +[*](one.md) +[*](terry_davis.md) +[*](ancap.md) +[*](nc.md) +[*](encryption.md) +[*](interpolation.md) +[*](viznut.md) +[*](open_console.md) +[*](hero.md) +[*](lisp.md) +[*](xd.md) +[*](raycasting.md) +[*](digital_signature.md) +[*](nokia.md) +[*](free_software.md) +[*](app.md) +[*](interesting.md) +[*](fractal.md) +[*](murderer.md) +[*](maintenance.md) +[*](pd.md) +[*](elo.md) +[*](ui.md) +[*](stereotype.md) +[*](compression.md) +[*](free_speech.md) +[*](bloat.md) +[*](military.md) +[*](paradigm.md) +[*](work.md) +[*](freedom.md) +[*](tinyphysicsengine.md) +[*](project.md) +[*](disease.md) +[*](furry.md) +[*](linear_algebra.md) +[*](facebook.md) +[*](cpu.md) +[*](world_broadcast.md) +[*](git.md) +[*](logic_gate.md) +[*](comun.md) +[*](permacomputing_wiki.md) +[*](distrohopping.md) +[*](python.md) +[*](permacomputing.md) +[*](justice.md) +[*](people.md) +[*](game.md) +[*](viznut.md) +[*](project.md) +[*](graphics.md) +[*](beauty.md) +[*](libertarianism.md) +[*](copyleft.md) +[*](shortcut_thinking.md) +[*](nonogram.md) +[*](recursion.md) +[*](woman.md) +[*](yes_they_can.md) +[*](books.md) +[*](entrepreneur.md) +[*](phd.md) +[*](bill_gates.md) +[*](julia_set.md) +[*](distance.md) +[*](free_hardware.md) +[*](nationalism.md) +[*](shortcut_thinking.md) +[*](wiki_post_mortem.md) +[*](lrs.md) +[*](software.md) +[*](python.md) +[*](art.md) +[*](raycasting.md) +[*](niger.md) +[*](kiss.md) +[*](math.md) +[*](trump.md) +[*](approximation.md) +[*](main.md) +[*](assertiveness.md) +[*](demo.md) +[*](c_pitfalls.md) +[*](formal_language.md) +[*](trolling.md) [*](ioccc.md) +[*](kek.md) +[*](cos.md) +[*](shader.md) +[*](systemd.md) +[*](zen.md) +[*](deferred_shading.md) +[*](sdf.md) +[*](copyleft.md) +[*](thrembo.md) +[*](firmware.md) +[*](rms.md) +[*](capitalist_software.md) +[*](pride.md) +[*](how_to.md) +[*](wiki_style.md) +[*](markov_chain.md) +[*](assertiveness.md) +[*](sdf.md) +[*](racism.md) +[*](reddit.md) +[*](marketing.md) +[*](42.md) +[*](law.md) +[*](p_vs_np.md) +[*](minigame.md) +[*](nc.md) +[*](military.md) +[*](xxiivv.md) +[*](john_carmack.md) +[*](physics_engine.md) +[*](pride.md) +[*](wiki_tldr.md) +[*](os.md) +[*](physics.md) +[*](c_tutorial.md) +[*](easier_done_than_said.md) +[*](cracker.md) +[*](internet.md) +[*](lotr.md) +[*](feminism.md) +[*](femoid.md) +[*](sigbovik.md) +[*](lil.md) +[*](technology.md) +[*](sin.md) +[*](hard_to_learn_easy_to_master.md) +[*](wiki_post_mortem.md) +[*](free_speech.md) +[*](bytecode.md) +[*](speech_synthesis.md) +[*](myths.md) +[*](acronym.md) +[*](altruism.md) +[*](gemini.md) +[*](free_will.md) +[*](nonogram.md) +[*](floss.md) +[*](debugging.md) +[*](tranny.md) +[*](version_numbering.md) +[*](downto.md) +[*](pseudo3d.md) +[*](www.md) +[*](censorship.md) +[*](duskos.md) +[*](fuck.md) +[*](ted_kaczynski.md) +[*](hitler.md) +[*](devuan.md) +[*](gaywashing.md) +[*](easy_to_learn_hard_to_master.md) +[*](free_hardware.md) +[*](explicit.md) +[*](racetrack.md) +[*](trom.md) +[*](wikiwikiweb.md) +[*](mouse.md) +[*](island.md) +[*](whale.md) +[*](90s.md) +[*](public_domain.md) +[*](jokes.md) +[*](less_retarded_society.md) +[*](chaos.md) +[*](tattoo.md) +[*](axiom_of_choice.md) +[*](explicit.md) +[*](pascal.md) +[*](productivity_cult.md) +[*](niger.md) +[*](game_engine.md) +[*](temple_os.md) +[*](dependency.md) +[*](dick_reveal.md) +[*](complexity.md) +[*](cpp.md) +[*](life.md) +[*](fight.md) +[*](logic_circuit.md) +[*](normalization.md) +[*](flatland.md) +[*](normalization.md) +[*](transistor.md) +[*](smol_internet.md) +[*](encryption.md) +[*](wiby.md) +[*](permacomputing.md) +[*](tech.md) +[*](digital_signature.md) +[*](zero.md) +[*](blender.md) +[*](bytecode.md) +[*](loc.md) +[*](terry_davis.md) +[*](wiki_pages.md) +[*](xxiivv.md) +[*](game_engine.md) +[*](cpu.md) +[*](brain_software.md) +[*](paywall.md) +[*](semiconductor.md) +[*](ram.md) +[*](project.md) +[*](cyberbullying.md) +[*](cancer.md) +[*](xd.md) +[*](intellectual_property.md) +[*](fork.md) +[*](collision_detection.md) +[*](rgb565.md) +[*](nc.md) +[*](autostereogram.md) +[*](chasm_the_rift.md) +[*](marxism.md) +[*](democracy.md) +[*](prime.md) +[*](no_knowledge_proof.md) +[*](mob_software.md) +[*](less_retarded_hardware.md) +[*](chinese.md) +[*](toxic.md) +[*](color.md) +[*](democracy.md) +[*](nord_vpn.md) +[*](suckless.md) +[*](pride.md) +[*](derivative.md) +[*](ssao.md) +[*](quantum_gate.md) +[*](autostereogram.md) +[*](line.md) +[*](gui.md) +[*](wiki_style.md) +[*](wikidata.md) +[*](evil.md) +[*](bill_gates.md) +[*](framework.md) +[*](git.md) +[*](tpe.md) +[*](name_is_important.md) +[*](entrepreneur.md) +[*](smol_internet.md) +[*](lambda_calculus.md) +[*](4chan.md) +[*](cpu.md) +[*](work.md) +[*](pseudominimalism.md) +[*](binary.md) +[*](finished.md) +[*](analog.md) +[*](good_enough.md) +[*](infinity.md) +[*](suckless.md) +[*](qubit.md) +[*](political_correctness.md) +[*](dog.md) +[*](procgen.md) +[*](public_domain_computer.md) +[*](c_sharp.md) +[*](smart.md) +[*](pascal.md) +[*](corporation.md) +[*](productivity_cult.md) +[*](monad.md) +[*](dick_reveal.md) +[*](toxic.md) +[*](100r.md) +[*](universe.md) +[*](duke3d.md) +[*](ashley_jones.md) +[*](line.md) +[*](minigame.md) +[*](transistor.md) +[*](interplanetary_internet.md) +[*](anal_bead.md) +[*](openai.md) +[*](beauty.md) +[*](hitler.md) +[*](logic_circuit.md) +[*](uxn.md) +[*](physics_engine.md) +[*](p_vs_np.md) +[*](implicit.md) +[*](palette.md) +[*](bootstrap.md) +[*](security.md) +[*](collision.md) +[*](sin.md) +[*](recursion.md) +[*](often_confused.md) +[*](mental_outlaw.md) +[*](quantum_gate.md) +[*](fourier_transform.md) +[*](kwangmyong.md) +[*](pseudoleft.md) +[*](update_culture.md) +[*](tool_slave.md) +[*](beauty.md) +[*](pi.md) +[*](anpac.md) +[*](css.md) +[*](and.md) +[*](right.md) +[*](antialiasing.md) +[*](tranny_software.md) +[*](combinatorics.md) +[*](gender_studies.md) +[*](bbs.md) +[*](frameless.md) +[*](README.md) +[*](audiophilia.md) +[*](altruism.md) +[*](c_sharp.md) +[*](libre.md) +[*](brainfuck.md) +[*](lisp.md) +[*](distrohopping.md) +[*](bloat.md) +[*](rapeware.md) +[*](hero_culture.md) +[*](rights_culture.md) +[*](lambda_calculus.md) +[*](memory_management.md) +[*](earth.md) +[*](tangram.md) +[*](tranny.md) +[*](wiby.md) +[*](distrohopping.md) +[*](body_shaming.md) +[*](music.md) +[*](left_right.md) +[*](cloudflare.md) +[*](gnu.md) +[*](and.md) +[*](portal_rendering.md) +[*](web.md) +[*](gay.md) +[*](bit_hack.md) +[*](dynamic_programming.md) +[*](ashley_jones.md) +[*](everyone_does_it.md) +[*](wavelet_transform.md) +[*](soydev.md) +[*](tas.md) +[*](100r.md) +[*](iq.md) +[*](fsf.md) +[*](niger.md) +[*](pseudominimalism.md) +[*](terry_davis.md) +[*](leading_the_pig_to_the_slaughterhouse.md) +[*](yes_they_can.md) +[*](interaction_net.md) +[*](neural_network.md) +[*](bit.md) +[*](resnicks_termite.md) +[*](just_werks.md) +[*](firmware.md) +[*](pedophilia.md) +[*](unretard.md) +[*](calculus.md) +[*](marxism.md) +[*](wiby.md) +[*](internet.md) +[*](smol_internet.md) +[*](sigbovik.md) +[*](crypto.md) +[*](tensor_product.md) +[*](technology.md) +[*](githopping.md) +[*](githopping.md) +[*](cloudflare.md) +[*](greenwashing.md) +[*](demoscene.md) +[*](windows.md) +[*](binary.md) +[*](compiler_bomb.md) +[*](operating_system.md) +[*](venus_project.md) +[*](just_werks.md) +[*](future.md) +[*](cracking.md) +[*](furry.md) +[*](explicit.md) +[*](interaction_net.md) +[*](charity_sex.md) +[*](public_domain_computer.md) +[*](crypto.md) +[*](wiki_tldr.md) +[*](race.md) +[*](backgammon.md) +[*](logic.md) +[*](capitalism.md) +[*](jesus.md) +[*](openarena.md) +[*](distance.md) +[*](ubi.md) +[*](proprietary_software.md) +[*](regex.md) +[*](interaction_net.md) +[*](wiki_rights.md) +[*](npc.md) +[*](marxism.md) +[*](smallchesslib.md) +[*](normalization.md) +[*](or.md) +[*](steve_jobs.md) +[*](everyone_does_it.md) +[*](mechanical.md) +[*](bloat_monopoly.md) +[*](unretard.md) +[*](lrs.md) +[*](brainfuck.md) +[*](friend_detox.md) +[*](corporation.md) +[*](goodbye_world.md) +[*](drummyfish.md) +[*](billboard.md) +[*](lrs_dictionary.md) +[*](unfuck.md) +[*](youtube.md) +[*](wiki_stats.md) +[*](programming_style.md) +[*](cc0.md) +[*](comment.md) +[*](java.md) +[*](dungeons_and_dragons.md) +[*](3d_rendering.md) +[*](cpp.md) +[*](transsexual.md) +[*](countercomplex.md) +[*](triangle.md) +[*](cloud.md) +[*](cc.md) +[*](facebook.md) +[*](less_retarded_software.md) +[*](physics_engine.md) +[*](loquendo.md) +[*](atan.md) +[*](capitalist_singularity.md) +[*](gui.md) +[*](diogenes.md) +[*](collision.md) +[*](foss.md) +[*](no_knowledge_proof.md) +[*](emoticon.md) +[*](ethics.md) +[*](dodleston.md) +[*](everyone_does_it.md) +[*](esolang.md) +[*](de_facto.md) +[*](world_broadcast.md) +[*](operating_system.md) +[*](programming_style.md) +[*](palette.md) +[*](demoscene.md) +[*](suicide.md) +[*](julia_set.md) +[*](wikiwikiweb.md) +[*](gaywashing.md) +[*](bootstrap.md) +[*](shogi.md) +[*](patent.md) +[*](bloat_monopoly.md) +[*](analog.md) +[*](countercomplex.md) +[*](programming_language.md) +[*](facebook.md) +[*](pokitto.md) +[*](coding.md) +[*](ascii_art.md) +[*](shitword.md) +[*](autoupdate.md) +[*](ioccc.md) +[*](bazaar.md) +[*](data_hoarding.md) +[*](bit.md) +[*](graveyard.md) +[*](library.md) +[*](hero_culture.md) +[*](randomness.md) +[*](linear_algebra.md) +[*](minesweeper.md) +[*](old.md) +[*](gui.md) +[*](21st_century.md) +[*](troll.md) +[*](cracking.md) +[*](memory_management.md) +[*](wiki_rights.md) +[*](earth.md) +[*](shit.md) +[*](selflessness.md) +[*](mental_outlaw.md) +[*](anal_bead.md) +[*](holy_war.md) +[*](niggercoin.md) +[*](ioccc.md) +[*](rsa.md) +[*](toxic.md) +[*](cache.md) +[*](downto.md) +[*](fediverse.md) +[*](tangram.md) +[*](turing_machine.md) +[*](logic_circuit.md) +[*](public_domain.md) +[*](tangram.md) +[*](encyclopedia.md) +[*](anarchism.md) +[*](math.md) +[*](iq.md) +[*](www.md) +[*](minimalism.md) +[*](version_numbering.md) +[*](frameless.md) +[*](transsexual.md) +[*](small3dlib.md) +[*](capitalism.md) +[*](compiler_bomb.md) +[*](monad.md) +[*](assembly.md) +[*](rights_culture.md) +[*](combinatorics.md) +[*](right.md) +[*](motivation.md) +[*](fqa.md) +[*](3d_rendering.md) +[*](productivity_cult.md) +[*](kwangmyong.md) +[*](boat.md) +[*](derivative.md) +[*](primitive_3d.md) +[*](dynamic_programming.md) +[*](mipmap.md) +[*](interesting.md) +[*](holy_war.md) +[*](throwaway_script.md) +[*](noise.md) +[*](bitreich.md) +[*](ethics.md) +[*](watchdog.md) +[*](network.md) +[*](trom.md) +[*](often_misunderstood.md) +[*](wikidata.md) +[*](jedi_engine.md) +[*](sanism.md) +[*](libertarianism.md) +[*](chaos.md) +[*](culture.md) +[*](moderation.md) +[*](or.md) +[*](faggot.md) +[*](memory_management.md) +[*](integral.md) +[*](autoupdate.md) +[*](javascript.md) +[*](football.md) +[*](netstalking.md) +[*](quaternion.md) +[*](wiki_authors.md) +[*](systemd.md) +[*](digital.md) +[*](hyperoperation.md) +[*](patent.md) +[*](physics.md) +[*](free.md) +[*](crow_funding.md) +[*](microtransaction.md) +[*](minimalism.md) +[*](f2p.md) +[*](atheism.md) +[*](approximation.md) +[*](comun.md) +[*](kiss.md) +[*](tom_scott.md) +[*](trash_magic.md) +[*](lrs_wiki.md) +[*](robot.md) +[*](fail_ab.md) +[*](femoid.md) +[*](crime_against_economy.md) +[*](gopher.md) +[*](evil.md) +[*](interpolation.md) +[*](settled.md) +[*](loc.md) +[*](wow.md) +[*](newspeak.md) +[*](comun.md) +[*](determinism.md) +[*](x86.md) +[*](soyence.md) +[*](demoscene.md) +[*](temple_os.md) +[*](prime.md) +[*](pascal.md) +[*](procgen.md) +[*](digital.md) +[*](capitalist_singularity.md) +[*](bullshit.md) +[*](e.md) +[*](duke3d.md) +[*](fear_culture.md) +[*](ssao.md) +[*](paradigm.md) +[*](old.md) +[*](money.md) +[*](linux.md) +[*](docker.md) +[*](permacomputing_wiki.md) +[*](21st_century.md) +[*](wikipedia.md) +[*](selflessness.md) +[*](fascism.md) +[*](microsoft.md) +[*](marketing.md) +[*](e.md) +[*](pseudo3d.md) +[*](forth.md) +[*](geek.md) +[*](less_retarded_hardware.md) +[*](permacomputing_wiki.md) +[*](love.md) +[*](kiwifarms.md) +[*](reactionary_software.md) +[*](downto.md) +[*](creative_commons.md) +[*](deep_blue.md) +[*](unicode.md) +[*](atheism.md) +[*](egoism.md) +[*](tas.md) +[*](homelessness.md) +[*](used.md) +[*](name_is_important.md) +[*](sjw.md) +[*](java.md) +[*](nd.md) +[*](dick_reveal.md) +[*](jedi_engine.md) +[*](sw_rendering.md) +[*](hw.md) +[*](privacy.md) +[*](oop.md) +[*](harry_potter.md) +[*](less_retarded_software.md) +[*](nord_vpn.md) +[*](bytecode.md) +[*](twos_complement.md) +[*](portal_rendering.md) +[*](fascist.md) +[*](portability.md) +[*](holy_war.md) +[*](hardware.md) +[*](throwaway_script.md) +[*](unfuck.md) +[*](emoticon.md) +[*](chess.md) +[*](ascii_art.md) +[*](diogenes.md) +[*](kek.md) +[*](shogi.md) +[*](anarch.md) +[*](os.md) +[*](greenwashing.md) +[*](3d_model.md) +[*](competition.md) +[*](unix.md) +[*](name_is_important.md) +[*](copyleft.md) +[*](netstalking.md) +[*](free_hardware.md) +[*](wizard.md) +[*](fqa.md) +[*](gnu.md) +[*](nd.md) +[*](formal_language.md) +[*](programming_language.md) +[*](settled.md) +[*](rights_culture.md) +[*](microtransaction.md) +[*](trolling.md) +[*](dinosaur.md) +[*](acronym.md) +[*](public_domain_computer.md) +[*](mainstream.md) +[*](nanogenmo.md) +[*](build_engine.md) +[*](oop.md) +[*](js.md) +[*](antialiasing.md) +[*](zuckerberg.md) +[*](troll.md) +[*](cancel_culture.md) +[*](good_enough.md) +[*](gigachad.md) +[*](gemini.md) +[*](fractal.md) +[*](free_speech.md) +[*](formal_language.md) +[*](vector.md) +[*](billboard.md) +[*](soydev.md) +[*](collision_detection.md) +[*](sigbovik.md) +[*](netstalking.md) +[*](rsa.md) +[*](fun.md) +[*](trusting_trust.md) +[*](goodbye_world.md) +[*](tpe.md) +[*](function.md) +[*](data_structure.md) +[*](fsf.md) +[*](freedom.md) +[*](shogi.md) +[*](audiophilia.md) +[*](pokitto.md) +[*](island.md) +[*](bs.md) +[*](raycastlib.md) +[*](tranny_software.md) +[*](cos.md) +[*](cc0.md) +[*](number.md) +[*](race.md) +[*](linear_algebra.md) +[*](cracker.md) +[*](lotr.md) +[*](fail_ab.md) +[*](political_correctness.md) +[*](compiler_bomb.md) +[*](dependency.md) +[*](wiki_stats.md) +[*](malware.md) +[*](reddit.md) +[*](npc.md) +[*](operating_system.md) +[*](global_discussion.md) +[*](cheating.md) +[*](rsa.md) +[*](cache.md) +[*](czechia.md) +[*](nigeria.md) +[*](ascii.md) +[*](shitword.md) +[*](rgb565.md) +[*](tinyphysicsengine.md) +[*](jargon_file.md) +[*](justice.md) +[*](ancap.md) +[*](rock.md) +[*](kids_these_days.md) +[*](quine.md) +[*](information.md) +[*](main.md) +[*](README.md) +[*](fantasy_console.md) +[*](bazaar.md) +[*](fun.md) +[*](approximation.md) +[*](selflessness.md) +[*](wikipedia.md) +[*](money.md) +[*](girl.md) +[*](ronja.md) +[*](qubit.md) +[*](nokia.md) +[*](cancer.md) +[*](ashley_jones.md) +[*](unretard.md) +[*](systemd.md) +[*](autoupdate.md) +[*](tom_scott.md) +[*](flatland.md) +[*](mud.md) +[*](unicode.md) +[*](pseudorandomness.md) +[*](wiki_pages.md) +[*](tor.md) +[*](regex.md) +[*](ui.md) +[*](mandelbrot_set.md) +[*](compression.md) +[*](exercises.md) +[*](color.md) +[*](avpd.md) +[*](maintenance.md) +[*](plusnigger.md) +[*](and.md) +[*](mipmap.md) +[*](fear_culture.md) +[*](how_to.md) +[*](free_culture.md) +[*](quine.md) +[*](openarena.md) +[*](quaternion.md) +[*](blender.md) +[*](license.md) +[*](wow.md) +[*](rust.md) +[*](soyence.md) +[*](english.md) +[*](twos_complement.md) +[*](hash.md) +[*](wiki_pages.md) +[*](patent.md) +[*](fantasy_console.md) +[*](jesus.md) +[*](google.md) +[*](free_software.md) +[*](uxn.md) +[*](lrs_dictionary.md) +[*](lgbt.md) +[*](css.md) +[*](computational_complexity.md) +[*](freedom_distance.md) +[*](less_retarded_software.md) +[*](paradigm.md) +[*](whale.md) +[*](education.md) +[*](woman.md) +[*](universe.md) +[*](assertiveness.md) +[*](portal_rendering.md) +[*](one.md) +[*](piracy.md) +[*](education.md) +[*](transsexual.md) +[*](avpd.md) +[*](mob_software.md) +[*](left_right.md) +[*](chess.md) +[*](infinity.md) +[*](rule110.md) +[*](portability.md) +[*](feminism.md) +[*](plan9.md) +[*](software.md) +[*](future.md) +[*](libertarianism.md) +[*](deferred_shading.md) +[*](pseudorandomness.md) +[*](boot.md) +[*](murderer.md) +[*](sw_rendering.md) +[*](tool_slave.md) +[*](brain_software.md) +[*](proof.md) +[*](optimization.md) +[*](100r.md) +[*](smart.md) +[*](nationalism.md) +[*](usenet.md) +[*](attribution.md) +[*](float.md) +[*](chinese.md) +[*](aliasing.md) +[*](people.md) +[*](binary.md) +[*](lgbt.md) +[*](logic.md) +[*](fourier_transform.md) +[*](social_inertia.md) +[*](de_facto.md) +[*](tech.md) +[*](go.md) +[*](rationalwiki.md) +[*](determinism.md) +[*](hacker_culture.md) +[*](elon_musk.md) +[*](loc.md) +[*](global_discussion.md) +[*](compsci.md) +[*](cat_v.md) +[*](c_tutorial.md) +[*](bitreich.md) +[*](piracy.md) +[*](plan9.md) +[*](bullshit.md) +[*](interpolation.md) +[*](faggot.md) +[*](chess.md) +[*](pseudo3d.md) +[*](primitive_3d.md) +[*](hard_to_learn_easy_to_master.md) +[*](calculus.md) +[*](collapse.md) +[*](microtheft.md) +[*](suicide.md) +[*](soydev.md) +[*](portability.md) +[*](low_poly.md) +[*](books.md) +[*](social_inertia.md) +[*](hero.md) +[*](zoomer.md) +[*](dinosaur.md) +[*](math.md) +[*](integral.md) +[*](3d_modeling.md) +[*](shit.md) +[*](steve_jobs.md) +[*](collapse.md) +[*](phd.md) +[*](venus_project.md) +[*](fork.md) +[*](plusnigger.md) +[*](science.md) +[*](femoid.md) +[*](steve_jobs.md) +[*](foss.md) +[*](wiki_stats.md) +[*](sudoku.md) +[*](game_engine.md) +[*](modern_software.md) +[*](assembly.md) +[*](thrembo.md) +[*](hash.md) +[*](billboard.md) +[*](mob_software.md) +[*](3d_modeling.md) +[*](tpe.md) +[*](coding.md) +[*](arch.md) +[*](chasm_the_rift.md) +[*](luke_smith.md) +[*](slowly_boiling_the_frog.md) +[*](music.md) +[*](magic.md) +[*](unix_philosophy.md) +[*](computational_complexity.md) +[*](mud.md) +[*](compsci.md) +[*](attribution.md) +[*](number.md) +[*](rule110.md) +[*](or.md) +[*](adam_smith.md) +[*](love.md) +[*](modern.md) +[*](devuan.md) +[*](kids_these_days.md) +[*](often_misunderstood.md) +[*](sorting.md) +[*](splinternet.md) +[*](optimization.md) +[*](rgb565.md) +[*](mainstream.md) +[*](determinism.md) +[*](moderation.md) +[*](left.md) +[*](arduboy.md) +[*](x86.md) +[*](microsoft.md) +[*](coding.md) +[*](jesus.md) +[*](girl.md) +[*](mouse.md) +[*](duke3d.md) +[*](stereotype.md) +[*](low_poly.md) +[*](pseudominimalism.md) +[*](jokes.md) +[*](charity_sex.md) +[*](pi.md) +[*](bs.md) +[*](kek.md) +[*](distance.md) +[*](rust.md) +[*](library.md) +[*](free_will.md) +[*](future.md) +[*](openai.md) +[*](programming_language.md) +[*](devuan.md) +[*](float.md) +[*](c.md) +[*](acronym.md) +[*](aaron_swartz.md) +[*](paywall.md) +[*](twos_complement.md) +[*](left.md) +[*](c_tutorial.md) +[*](wiki_rights.md) +[*](ssao.md) +[*](physics.md) +[*](combinatorics.md) +[*](nigger.md) +[*](teletext.md) +[*](fork.md) +[*](plusnigger.md) +[*](fixed_point.md) +[*](wikipedia.md) +[*](function.md) +[*](bazaar.md) +[*](free_body.md) +[*](jargon_file.md) +[*](gaywashing.md) +[*](life.md) +[*](www.md) +[*](culture.md) +[*](gender_studies.md) +[*](derivative.md) +[*](fascist.md) +[*](c_pitfalls.md) +[*](trump.md) +[*](hacking.md) +[*](implicit.md) +[*](liberalism.md) +[*](compression.md) +[*](cancel_culture.md) +[*](copyfree.md) +[*](youtube.md) +[*](censorship.md) +[*](love.md) +[*](minesweeper.md) +[*](suckless.md) +[*](tranny_software.md) +[*](c.md) +[*](free_universe.md) +[*](ram.md) +[*](3d_modeling.md) +[*](xxiivv.md) +[*](debugging.md) +[*](exercises.md) +[*](minigame.md) +[*](entropy.md) +[*](attribution.md) +[*](mandelbrot_set.md) +[*](f2p.md) +[*](future_proof.md) +[*](myths.md) +[*](mud.md) +[*](ui.md) +[*](hw.md) +[*](42.md) +[*](human_language.md) +[*](racism.md) +[*](censorship.md) +[*](temple_os.md) +[*](history.md) +[*](rgb332.md) +[*](fear_culture.md) +[*](forth.md) +[*](shortcut_thinking.md) +[*](docker.md) +[*](4chan.md) +[*](altruism.md) +[*](often_confused.md) +[*](sqrt.md) +[*](wiki_tldr.md) +[*](how_to.md) +[*](gigachad.md) +[*](trash_magic.md) +[*](21st_century.md) +[*](whale.md) +[*](bilinear.md) +[*](dynamic_programming.md) +[*](kiss.md) +[*](less_retarded_hardware.md) +[*](gender_studies.md) +[*](fight.md) +[*](saf.md) +[*](finished.md) +[*](right.md) +[*](disease.md) +[*](homelessness.md) +[*](hyperoperation.md) +[*](hexadecimal.md) +[*](x86.md) +[*](atheism.md) +[*](reactionary_software.md) +[*](hitler.md) +[*](microsoft.md) +[*](aaron_swartz.md) +[*](c_pitfalls.md) +[*](anarchism.md) +[*](julia_set.md) +[*](body_shaming.md) +[*](art.md) +[*](brain_software.md) +[*](money.md) +[*](esolang.md) +[*](sdf.md) +[*](esolang.md) +[*](cos.md) +[*](marble_race.md) +[*](apple.md) +[*](nigger.md) +[*](watchdog.md) +[*](dog.md) +[*](capitalism.md) +[*](mouse.md) +[*](copyfree.md) +[*](prime.md) +[*](intellectual_property.md) +[*](hw.md) +[*](uxn.md) +[*](backpropagation.md) +[*](macrofucker.md) +[*](css.md) +[*](abstraction.md) +[*](ascii.md) +[*](google.md) +[*](moderation.md) +[*](apple.md) +[*](framework.md) +[*](universe.md) +[*](used.md) +[*](political_correctness.md) +[*](smart.md) +[*](encyclopedia.md) +[*](hardware.md) +[*](programming_tips.md) +[*](golang.md) +[*](trump.md) +[*](luke_smith.md) +[*](smallchesslib.md) +[*](trusting_trust.md) +[*](low_poly.md) +[*](byte.md) +[*](tensor_product.md) +[*](modern.md) +[*](bullshit.md) +[*](free_culture.md) +[*](fizzbuzz.md) +[*](python.md) +[*](demo.md) +[*](permacomputing.md) +[*](free_body.md) +[*](needed.md) +[*](regex.md) +[*](atan.md) +[*](turing_machine.md) +[*](bill_gates.md) +[*](troll.md) +[*](data_structure.md) +[*](app.md) +[*](rock.md) +[*](anpac.md) +[*](raylib.md) +[*](gay.md) +[*](lmao.md) +[*](sudoku.md) +[*](neural_network.md) +[*](nigger.md) +[*](venus_project.md) +[*](creative_commons.md) +[*](rapeware.md) +[*](shader.md) +[*](justice.md) +[*](real_number.md) +[*](law.md) +[*](double_buffering.md) +[*](tattoo.md) +[*](version_numbering.md) +[*](trash_magic.md) +[*](maintenance.md) +[*](color.md) +[*](programming.md) +[*](abstraction.md) +[*](graveyard.md) +[*](corporation.md) +[*](boat.md) +[*](docker.md) +[*](bit_hack.md) +[*](human_language.md) +[*](triangle.md) +[*](shit.md) +[*](sw.md) +[*](geek.md) +[*](float.md) +[*](framework.md) +[*](entropy.md) +[*](tom_scott.md) +[*](nonogram.md) +[*](capitalist_software.md) +[*](unix_philosophy.md) +[*](noise.md) +[*](randomness.md) +[*](security.md) +[*](throwaway_script.md) +[*](nigeria.md) +[*](mechanical.md) +[*](rms.md) +[*](adam_smith.md) +[*](vector.md) +[*](arch.md) +[*](firmware.md) +[*](quine.md) +[*](zoomer.md) +[*](copyright.md) +[*](palette.md) +[*](finished.md) +[*](web.md) +[*](demo.md) +[*](antialiasing.md) +[*](programming.md) +[*](dog.md) +[*](less_retarded_society.md) +[*](freedom_distance.md) +[*](friend_detox.md) +[*](computer.md) +[*](wiki_post_mortem.md) +[*](githopping.md) +[*](anpac.md) +[*](goodbye_world.md) +[*](wavelet_transform.md) +[*](game_of_life.md) +[*](vim.md) +[*](lotr.md) +[*](arch.md) +[*](faggot.md) +[*](tattoo.md) +[*](social_inertia.md) +[*](usenet.md) +[*](microtheft.md) +[*](history.md) +[*](logic_gate.md) +[*](easy_to_learn_hard_to_master.md) +[*](double_buffering.md) +[*](boat.md) +[*](racism.md) +[*](golang.md) +[*](aaron_swartz.md) +[*](rms.md) +[*](main.md) +[*](cyberbullying.md) +[*](nd.md) +[*](rgb332.md) +[*](art.md) +[*](transistor.md) +[*](cc0.md) +[*](nord_vpn.md) +[*](copyright.md) +[*](3d_rendering.md) +[*](cloud.md) +[*](langtons_ant.md) +[*](bs.md) +[*](fun.md) +[*](work.md) +[*](software.md) +[*](chasm_the_rift.md) +[*](deferred_shading.md) +[*](boot.md) +[*](cpp.md) +[*](reddit.md) +[*](science.md) +[*](sqrt.md) +[*](update_culture.md) +[*](io.md) +[*](interesting.md) +[*](cloud.md) +[*](windows.md) +[*](brainfuck.md) +[*](backpropagation.md) +[*](atan.md) +[*](sanism.md) +[*](crime_against_economy.md) +[*](vector.md) +[*](analog.md) +[*](blender.md) +[*](interplanetary_internet.md) +[*](network.md) +[*](anarch.md) +[*](cheating.md) +[*](game_of_life.md) +[*](collapse.md) +[*](countercomplex.md) +[*](fsf.md) +[*](cheating.md) +[*](trolling.md) +[*](de_facto.md) +[*](egoism.md) +[*](reactionary_software.md) +[*](see_through_clothes.md) +[*](anal_bead.md) +[*](assembly.md) +[*](small3dlib.md) +[*](bitreich.md) +[*](analytic_geometry.md) +[*](ethics.md) +[*](f2p.md) +[*](gopher.md) +[*](bit_hack.md) +[*](complexity.md) +[*](hyperoperation.md) +[*](progress.md) +[*](computer.md) +[*](cat_v.md) +[*](hacking.md) +[*](zen.md) +[*](README.md) +[*](lil.md) +[*](just_werks.md) +[*](programming.md) +[*](vim.md) +[*](books.md) +[*](ascii_art.md) +[*](floss.md) +[*](cyber.md) +[*](consumerism.md) +[*](faq.md) +[*](macrofucker.md) +[*](morality.md) +[*](procgen.md) +[*](analytic_geometry.md) +[*](progress.md) +[*](information.md) +[*](sin.md) +[*](faq.md) +[*](culture.md) +[*](xonotic.md) +[*](data_hoarding.md) +[*](modern_software.md) +[*](resnicks_termite.md) +[*](aliasing.md) +[*](javascript.md) +[*](dramatica.md) +[*](ai.md) +[*](zen.md) +[*](thrembo.md) +[*](lmao.md) +[*](zero.md) +[*](number.md) +[*](morality.md) +[*](dependency.md) +[*](zuckerberg.md) +[*](programming_tips.md) +[*](pd.md) +[*](wizard.md) +[*](kiwifarms.md) +[*](lmao.md) +[*](sorting.md) +[*](newspeak.md) +[*](paywall.md) +[*](bloat_monopoly.md) +[*](free_software.md) +[*](ted_kaczynski.md) +[*](shader.md) +[*](tensor_product.md) +[*](wikidata.md) +[*](fight.md) +[*](mental_outlaw.md) +[*](libre.md) +[*](c_sharp.md) +[*](island.md) +[*](murderer.md) +[*](internet.md) +[*](modern.md) +[*](tranny.md) +[*](programming_tips.md) +[*](marble_race.md) +[*](people.md) +[*](bootstrap.md) +[*](intellectual_property.md) +[*](malware.md) +[*](arduboy.md) +[*](xonotic.md) +[*](wow.md) +[*](3d_model.md) +[*](function.md) +[*](easy_to_learn_hard_to_master.md) +[*](lrs_wiki.md) +[*](liberalism.md) +[*](library.md) +[*](unix.md) +[*](proprietary_software.md) +[*](ubi.md) +[*](wiki_authors.md) +[*](dodleston.md) +[*](drummyfish.md) +[*](libre.md) +[*](fantasy_console.md) +[*](fight_culture.md) +[*](google.md) +[*](axiom_of_choice.md) +[*](world_broadcast.md) +[*](steganography.md) +[*](90s.md) +[*](free_body.md) +[*](idiot_fallacy.md) +[*](nanogenmo.md) +[*](abstraction.md) +[*](analytic_geometry.md) +[*](education.md) +[*](proof.md) +[*](lrs_wiki.md) +[*](shitword.md) +[*](bilinear.md) +[*](usa.md) +[*](collision.md) +[*](update_culture.md) +[*](capitalist_singularity.md) +[*](entrepreneur.md) +[*](slowly_boiling_the_frog.md) +[*](human_language.md) +[*](foss.md) +[*](semiconductor.md) +[*](fractal.md) +[*](xor.md) +[*](evil.md) +[*](neural_network.md) +[*](magic.md) +[*](pd.md) +[*](integral.md) +[*](game.md) +[*](teletext.md) +[*](niggercoin.md) +[*](progress.md) +[*](pokitto.md) +[*](woman.md) +[*](diogenes.md) +[*](comment.md) +[*](cyber.md) +[*](unary.md) +[*](io.md) +[*](real_number.md) +[*](dodleston.md) +[*](emoticon.md) +[*](john_carmack.md) +[*](pseudorandomness.md) +[*](xor.md) +[*](4chan.md) +[*](open_source.md) +[*](freedom.md) +[*](law.md) +[*](primitive_3d.md) +[*](proprietary.md) +[*](wavelet_transform.md) +[*](science.md) +[*](mainstream.md) +[*](cracker.md) +[*](hack.md) +[*](dungeons_and_dragons.md) +[*](english.md) +[*](byte.md) +[*](npc.md) +[*](backgammon.md) +[*](fuck.md) +[*](life.md) +[*](competition.md) +[*](minesweeper.md) +[*](open_console.md) +[*](zero.md) +[*](duskos.md) +[*](democracy.md) +[*](xd.md) +[*](often_confused.md) +[*](needed.md) +[*](dinosaur.md) diff --git a/wiki_pages.md b/wiki_pages.md index d2f8926..34be597 100644 --- a/wiki_pages.md +++ b/wiki_pages.md @@ -2,4 +2,4 @@ This is an autogenerated page listing all pages. -**[100r](100r.md)** (10) -- **[21st_century](21st_century.md)** (48) -- **[3d_model](3d_model.md)** (256) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (590) -- **[42](42.md)** (14) -- **[4chan](4chan.md)** (34) -- **[90s](90s.md)** (59) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (391) -- **[adam_smith](adam_smith.md)** (37) -- **[ai](ai.md)** (30) -- **[algorithm](algorithm.md)** (367) -- **[aliasing](aliasing.md)** (61) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (8) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (107) -- **[anarchism](anarchism.md)** (17) -- **[ancap](ancap.md)** (31) -- **[and](and.md)** (2) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (10) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (20) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (20) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (206) -- **[ashley_jones](ashley_jones.md)** (32) -- **[assembly](assembly.md)** (262) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (25) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (6) -- **[autostereogram](autostereogram.md)** (120) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (6) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (29) -- **[beauty](beauty.md)** (25) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (35) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (139) -- **[bit](bit.md)** (10) -- **[bit_hack](bit_hack.md)** (173) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (197) -- **[bloat_monopoly](bloat_monopoly.md)** (14) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (91) -- **[books](books.md)** (35) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (51) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (383) -- **[c_pitfalls](c_pitfalls.md)** (160) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2157) -- **[cache](cache.md)** (27) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (29) -- **[capitalism](capitalism.md)** (160) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (15) -- **[censorship](censorship.md)** (61) -- **[chaos](chaos.md)** (109) -- **[charity_sex](charity_sex.md)** (6) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (54) -- **[chess](chess.md)** (508) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (27) -- **[coc](coc.md)** (19) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (36) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (29) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (19) -- **[communism](communism.md)** (27) -- **[competition](competition.md)** (12) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (233) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (182) -- **[consumerism](consumerism.md)** (16) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (56) -- **[corporation](corporation.md)** (22) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (17) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (38) -- **[css](css.md)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[cyberbullying](cyberbullying.md)** (8) -- **[czechia](czechia.md)** (26) -- **[data_hoarding](data_hoarding.md)** (31) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (138) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (21) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (52) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (18) -- **[digital_signature](digital_signature.md)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (40) -- **[disease](disease.md)** (65) -- **[distance](distance.md)** (129) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (36) -- **[doom](doom.md)** (72) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (30) -- **[drummyfish](drummyfish.md)** (48) -- **[duke3d](duke3d.md)** (30) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (34) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (22) -- **[earth](earth.md)** (67) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (22) -- **[elo](elo.md)** (155) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (75) -- **[english](english.md)** (19) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (18) -- **[evil](evil.md)** (26) -- **[exercises](exercises.md)** (359) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (4) -- **[fail_ab](fail_ab.md)** (47) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (291) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (63) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (12) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (155) -- **[fizzbuzz](fizzbuzz.md)** (232) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (56) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (154) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (39) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (78) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (12) -- **[free_will](free_will.md)** (21) -- **[freedom](freedom.md)** (28) -- **[freedom_distance](freedom_distance.md)** (4) -- **[friend_detox](friend_detox.md)** (2) -- **[fsf](fsf.md)** (30) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (32) -- **[function](function.md)** (138) -- **[furry](furry.md)** (24) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (45) -- **[game](game.md)** (161) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (39) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (8) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (78) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (64) -- **[go](go.md)** (100) -- **[golang](golang.md)** (17) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (16) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (36) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (33) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (78) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (18) -- **[hexadecimal](hexadecimal.md)** (37) -- **[history](history.md)** (104) -- **[hitler](hitler.md)** (39) -- **[holy_war](holy_war.md)** (25) -- **[homelessness](homelessness.md)** (102) -- **[how_to](how_to.md)** (227) -- **[human_language](human_language.md)** (68) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (24) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (25) -- **[internet](internet.md)** (124) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (35) -- **[iq](iq.md)** (122) -- **[island](island.md)** (71) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (136) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (99) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (110) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (24) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (7) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (42) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (6) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (13) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (55) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (146) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (134) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (57) -- **[life](life.md)** (12) -- **[lil](lil.md)** (21) -- **[line](line.md)** (153) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (72) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (38) -- **[lmao](lmao.md)** (47) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (18) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (202) -- **[loquendo](loquendo.md)** (18) -- **[lotr](lotr.md)** (20) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (167) -- **[lrs_dictionary](lrs_dictionary.md)** (123) -- **[lrs_wiki](lrs_wiki.md)** (43) -- **[luke_smith](luke_smith.md)** (20) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (7) -- **[main](main.md)** (156) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (9) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (12) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (64) -- **[minimalism](minimalism.md)** (83) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (40) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (21) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (59) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (80) -- **[netstalking](netstalking.md)** (9) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (12) -- **[niger](niger.md)** (11) -- **[nigeria](nigeria.md)** (10) -- **[nigger](nigger.md)** (74) -- **[niggercoin](niggercoin.md)** (7) -- **[no_knowledge_proof](no_knowledge_proof.md)** (20) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (14) -- **[nonogram](nonogram.md)** (42) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (9) -- **[npc](npc.md)** (10) -- **[number](number.md)** (303) -- **[often_confused](often_confused.md)** (139) -- **[often_misunderstood](often_misunderstood.md)** (20) -- **[old](old.md)** (4) -- **[one](one.md)** (13) -- **[oop](oop.md)** (389) -- **[open_console](open_console.md)** (70) -- **[open_source](open_source.md)** (40) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (74) -- **[optimization](optimization.md)** (100) -- **[or](or.md)** (2) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[pascal](pascal.md)** (66) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (66) -- **[people](people.md)** (73) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (78) -- **[portability](portability.md)** (183) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (6) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (32) -- **[procgen](procgen.md)** (387) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (44) -- **[programming_language](programming_language.md)** (174) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (17) -- **[progress](progress.md)** (30) -- **[project](project.md)** (32) -- **[proof](proof.md)** (4) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (10) -- **[pseudorandomness](pseudorandomness.md)** (152) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (52) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1837) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (10) -- **[raycasting](raycasting.md)** (513) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (109) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (207) -- **[rgb332](rgb332.md)** (95) -- **[rgb565](rgb565.md)** (32) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (55) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (25) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (28) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (17) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (19) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (16) -- **[shit](shit.md)** (33) -- **[shitword](shitword.md)** (54) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (89) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (182) -- **[sjw](sjw.md)** (27) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (35) -- **[smart](smart.md)** (11) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (42) -- **[soyence](soyence.md)** (86) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (116) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (284) -- **[steve_jobs](steve_jobs.md)** (36) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (213) -- **[suicide](suicide.md)** (41) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (72) -- **[tas](tas.md)** (22) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (8) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (20) -- **[thrembo](thrembo.md)** (16) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tool_slave](tool_slave.md)** (14) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny](tranny.md)** (2) -- **[tranny_software](tranny_software.md)** (31) -- **[transistor](transistor.md)** (29) -- **[transsexual](transsexual.md)** (50) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (84) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (48) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (8) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (220) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (34) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (14) -- **[unfuck](unfuck.md)** (18) -- **[unicode](unicode.md)** (86) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (17) -- **[update_culture](update_culture.md)** (24) -- **[usa](usa.md)** (68) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (45) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (88) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (16) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (215) -- **[wiki_style](wiki_style.md)** (76) -- **[wiki_tldr](wiki_tldr.md)** (65) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (97) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (59) -- **[wizard](wizard.md)** (27) -- **[woman](woman.md)** (176) -- **[work](work.md)** (55) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (124) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (114) -- **[xor](xor.md)** (2) -- **[xxiivv](xxiivv.md)** (34) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (46) -- **[zen](zen.md)** (16) -- **[zero](zero.md)** (31) -- **[zoomer](zoomer.md)** (38) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file +**[100r](100r.md)** (10) -- **[21st_century](21st_century.md)** (48) -- **[3d_model](3d_model.md)** (256) -- **[3d_modeling](3d_modeling.md)** (2) -- **[3d_rendering](3d_rendering.md)** (590) -- **[42](42.md)** (14) -- **[4chan](4chan.md)** (34) -- **[90s](90s.md)** (59) -- **[README](README.md)** (9) -- **[aaron_swartz](aaron_swartz.md)** (4) -- **[abstraction](abstraction.md)** (20) -- **[acronym](acronym.md)** (391) -- **[adam_smith](adam_smith.md)** (37) -- **[ai](ai.md)** (30) -- **[algorithm](algorithm.md)** (367) -- **[aliasing](aliasing.md)** (61) -- **[altruism](altruism.md)** (6) -- **[anal_bead](anal_bead.md)** (8) -- **[analog](analog.md)** (2) -- **[analytic_geometry](analytic_geometry.md)** (72) -- **[anarch](anarch.md)** (107) -- **[anarchism](anarchism.md)** (17) -- **[ancap](ancap.md)** (31) -- **[and](and.md)** (2) -- **[anpac](anpac.md)** (6) -- **[antialiasing](antialiasing.md)** (157) -- **[antivirus_paradox](antivirus_paradox.md)** (8) -- **[app](app.md)** (10) -- **[apple](apple.md)** (6) -- **[approximation](approximation.md)** (20) -- **[arch](arch.md)** (6) -- **[arduboy](arduboy.md)** (39) -- **[art](art.md)** (20) -- **[ascii](ascii.md)** (149) -- **[ascii_art](ascii_art.md)** (206) -- **[ashley_jones](ashley_jones.md)** (32) -- **[assembly](assembly.md)** (262) -- **[assertiveness](assertiveness.md)** (2) -- **[atan](atan.md)** (23) -- **[atheism](atheism.md)** (25) -- **[attribution](attribution.md)** (16) -- **[audiophilia](audiophilia.md)** (6) -- **[autostereogram](autostereogram.md)** (120) -- **[autoupdate](autoupdate.md)** (2) -- **[avpd](avpd.md)** (6) -- **[axiom_of_choice](axiom_of_choice.md)** (10) -- **[backgammon](backgammon.md)** (58) -- **[backpropagation](backpropagation.md)** (87) -- **[bazaar](bazaar.md)** (8) -- **[bbs](bbs.md)** (29) -- **[beauty](beauty.md)** (25) -- **[bilinear](bilinear.md)** (124) -- **[bill_gates](bill_gates.md)** (35) -- **[billboard](billboard.md)** (59) -- **[binary](binary.md)** (142) -- **[bit](bit.md)** (10) -- **[bit_hack](bit_hack.md)** (173) -- **[bitreich](bitreich.md)** (28) -- **[black](black.md)** (2) -- **[blender](blender.md)** (10) -- **[bloat](bloat.md)** (197) -- **[bloat_monopoly](bloat_monopoly.md)** (14) -- **[boat](boat.md)** (34) -- **[body_shaming](body_shaming.md)** (91) -- **[books](books.md)** (35) -- **[boot](boot.md)** (2) -- **[bootstrap](bootstrap.md)** (49) -- **[brain_software](brain_software.md)** (14) -- **[brainfuck](brainfuck.md)** (382) -- **[bs](bs.md)** (2) -- **[build_engine](build_engine.md)** (2) -- **[bullshit](bullshit.md)** (51) -- **[byte](byte.md)** (19) -- **[bytebeat](bytebeat.md)** (144) -- **[bytecode](bytecode.md)** (281) -- **[c](c.md)** (383) -- **[c_pitfalls](c_pitfalls.md)** (160) -- **[c_sharp](c_sharp.md)** (2) -- **[c_tutorial](c_tutorial.md)** (2157) -- **[cache](cache.md)** (27) -- **[calculus](calculus.md)** (186) -- **[cancel_culture](cancel_culture.md)** (4) -- **[cancer](cancer.md)** (29) -- **[capitalism](capitalism.md)** (160) -- **[capitalist_singularity](capitalist_singularity.md)** (4) -- **[capitalist_software](capitalist_software.md)** (28) -- **[cat_v](cat_v.md)** (12) -- **[cc](cc.md)** (6) -- **[cc0](cc0.md)** (15) -- **[censorship](censorship.md)** (61) -- **[chaos](chaos.md)** (109) -- **[charity_sex](charity_sex.md)** (6) -- **[chasm_the_rift](chasm_the_rift.md)** (16) -- **[cheating](cheating.md)** (54) -- **[chess](chess.md)** (508) -- **[chinese](chinese.md)** (13) -- **[cloud](cloud.md)** (8) -- **[cloudflare](cloudflare.md)** (27) -- **[coc](coc.md)** (19) -- **[coding](coding.md)** (6) -- **[collapse](collapse.md)** (36) -- **[collision](collision.md)** (8) -- **[collision_detection](collision_detection.md)** (26) -- **[color](color.md)** (29) -- **[combinatorics](combinatorics.md)** (53) -- **[comment](comment.md)** (19) -- **[communism](communism.md)** (27) -- **[competition](competition.md)** (12) -- **[compiler_bomb](compiler_bomb.md)** (11) -- **[complexity](complexity.md)** (6) -- **[compression](compression.md)** (233) -- **[compsci](compsci.md)** (21) -- **[computational_complexity](computational_complexity.md)** (98) -- **[computer](computer.md)** (121) -- **[comun](comun.md)** (182) -- **[consumerism](consumerism.md)** (16) -- **[copyfree](copyfree.md)** (12) -- **[copyleft](copyleft.md)** (30) -- **[copyright](copyright.md)** (56) -- **[corporation](corporation.md)** (22) -- **[cos](cos.md)** (2) -- **[countercomplex](countercomplex.md)** (4) -- **[cpp](cpp.md)** (63) -- **[cpu](cpu.md)** (91) -- **[cracker](cracker.md)** (6) -- **[cracking](cracking.md)** (2) -- **[creative_commons](creative_commons.md)** (34) -- **[crime_against_economy](crime_against_economy.md)** (17) -- **[crow_funding](crow_funding.md)** (4) -- **[crypto](crypto.md)** (38) -- **[css](css.md)** (68) -- **[culture](culture.md)** (24) -- **[cyber](cyber.md)** (2) -- **[cyberbullying](cyberbullying.md)** (8) -- **[czechia](czechia.md)** (26) -- **[data_hoarding](data_hoarding.md)** (31) -- **[data_structure](data_structure.md)** (38) -- **[de_facto](de_facto.md)** (12) -- **[debugging](debugging.md)** (138) -- **[deep_blue](deep_blue.md)** (17) -- **[deferred_shading](deferred_shading.md)** (11) -- **[demo](demo.md)** (7) -- **[democracy](democracy.md)** (21) -- **[demoscene](demoscene.md)** (23) -- **[dependency](dependency.md)** (52) -- **[derivative](derivative.md)** (2) -- **[determinism](determinism.md)** (24) -- **[devuan](devuan.md)** (8) -- **[dick_reveal](dick_reveal.md)** (12) -- **[digital](digital.md)** (18) -- **[digital_signature](digital_signature.md)** (12) -- **[dinosaur](dinosaur.md)** (4) -- **[diogenes](diogenes.md)** (40) -- **[disease](disease.md)** (65) -- **[distance](distance.md)** (129) -- **[distrohopping](distrohopping.md)** (11) -- **[docker](docker.md)** (2) -- **[dodleston](dodleston.md)** (6) -- **[dog](dog.md)** (36) -- **[doom](doom.md)** (72) -- **[double_buffering](double_buffering.md)** (26) -- **[downto](downto.md)** (18) -- **[dramatica](dramatica.md)** (30) -- **[drummyfish](drummyfish.md)** (48) -- **[duke3d](duke3d.md)** (30) -- **[dungeons_and_dragons](dungeons_and_dragons.md)** (10) -- **[duskos](duskos.md)** (34) -- **[dynamic_programming](dynamic_programming.md)** (45) -- **[e](e.md)** (22) -- **[earth](earth.md)** (67) -- **[easier_done_than_said](easier_done_than_said.md)** (4) -- **[easy_to_learn_hard_to_master](easy_to_learn_hard_to_master.md)** (17) -- **[education](education.md)** (4) -- **[egoism](egoism.md)** (22) -- **[elo](elo.md)** (155) -- **[elon_musk](elon_musk.md)** (8) -- **[emoticon](emoticon.md)** (135) -- **[encryption](encryption.md)** (4) -- **[encyclopedia](encyclopedia.md)** (75) -- **[english](english.md)** (19) -- **[entrepreneur](entrepreneur.md)** (2) -- **[entropy](entropy.md)** (51) -- **[esolang](esolang.md)** (82) -- **[ethics](ethics.md)** (4) -- **[everyone_does_it](everyone_does_it.md)** (18) -- **[evil](evil.md)** (26) -- **[exercises](exercises.md)** (359) -- **[explicit](explicit.md)** (2) -- **[f2p](f2p.md)** (2) -- **[facebook](facebook.md)** (4) -- **[faggot](faggot.md)** (4) -- **[fail_ab](fail_ab.md)** (47) -- **[fantasy_console](fantasy_console.md)** (41) -- **[faq](faq.md)** (291) -- **[fascism](fascism.md)** (25) -- **[fascist](fascist.md)** (2) -- **[fear_culture](fear_culture.md)** (4) -- **[fediverse](fediverse.md)** (12) -- **[feminism](feminism.md)** (63) -- **[femoid](femoid.md)** (2) -- **[fight](fight.md)** (2) -- **[fight_culture](fight_culture.md)** (12) -- **[finished](finished.md)** (16) -- **[firmware](firmware.md)** (3) -- **[fixed_point](fixed_point.md)** (155) -- **[fizzbuzz](fizzbuzz.md)** (232) -- **[flatland](flatland.md)** (22) -- **[float](float.md)** (64) -- **[floss](floss.md)** (2) -- **[football](football.md)** (56) -- **[fork](fork.md)** (27) -- **[formal_language](formal_language.md)** (24) -- **[forth](forth.md)** (284) -- **[foss](foss.md)** (2) -- **[fourier_transform](fourier_transform.md)** (209) -- **[fqa](fqa.md)** (2) -- **[fractal](fractal.md)** (154) -- **[frameless](frameless.md)** (10) -- **[framework](framework.md)** (2) -- **[free](free.md)** (2) -- **[free_body](free_body.md)** (13) -- **[free_culture](free_culture.md)** (39) -- **[free_hardware](free_hardware.md)** (56) -- **[free_software](free_software.md)** (78) -- **[free_speech](free_speech.md)** (18) -- **[free_universe](free_universe.md)** (12) -- **[free_will](free_will.md)** (21) -- **[freedom](freedom.md)** (28) -- **[freedom_distance](freedom_distance.md)** (4) -- **[friend_detox](friend_detox.md)** (2) -- **[fsf](fsf.md)** (30) -- **[fuck](fuck.md)** (2) -- **[fun](fun.md)** (32) -- **[function](function.md)** (138) -- **[furry](furry.md)** (24) -- **[future](future.md)** (11) -- **[future_proof](future_proof.md)** (45) -- **[game](game.md)** (161) -- **[game_engine](game_engine.md)** (49) -- **[game_of_life](game_of_life.md)** (224) -- **[gay](gay.md)** (39) -- **[gaywashing](gaywashing.md)** (2) -- **[geek](geek.md)** (8) -- **[gemini](gemini.md)** (16) -- **[gender_studies](gender_studies.md)** (9) -- **[gigachad](gigachad.md)** (2) -- **[girl](girl.md)** (2) -- **[git](git.md)** (78) -- **[githopping](githopping.md)** (6) -- **[global_discussion](global_discussion.md)** (11) -- **[gnu](gnu.md)** (64) -- **[go](go.md)** (100) -- **[golang](golang.md)** (17) -- **[good_enough](good_enough.md)** (6) -- **[goodbye_world](goodbye_world.md)** (8) -- **[google](google.md)** (16) -- **[gopher](gopher.md)** (68) -- **[graphics](graphics.md)** (40) -- **[graveyard](graveyard.md)** (36) -- **[greenwashing](greenwashing.md)** (4) -- **[gui](gui.md)** (33) -- **[hack](hack.md)** (2) -- **[hacker_culture](hacker_culture.md)** (2) -- **[hacking](hacking.md)** (78) -- **[hard_to_learn_easy_to_master](hard_to_learn_easy_to_master.md)** (4) -- **[hardware](hardware.md)** (2) -- **[harry_potter](harry_potter.md)** (10) -- **[hash](hash.md)** (176) -- **[hero](hero.md)** (2) -- **[hero_culture](hero_culture.md)** (18) -- **[hexadecimal](hexadecimal.md)** (37) -- **[history](history.md)** (104) -- **[hitler](hitler.md)** (39) -- **[holy_war](holy_war.md)** (25) -- **[homelessness](homelessness.md)** (102) -- **[how_to](how_to.md)** (227) -- **[human_language](human_language.md)** (68) -- **[hw](hw.md)** (2) -- **[hyperoperation](hyperoperation.md)** (236) -- **[idiot_fallacy](idiot_fallacy.md)** (24) -- **[implicit](implicit.md)** (2) -- **[infinity](infinity.md)** (26) -- **[information](information.md)** (18) -- **[integral](integral.md)** (2) -- **[intellectual_property](intellectual_property.md)** (14) -- **[interaction_net](interaction_net.md)** (135) -- **[interesting](interesting.md)** (25) -- **[internet](internet.md)** (124) -- **[interplanetary_internet](interplanetary_internet.md)** (14) -- **[interpolation](interpolation.md)** (47) -- **[io](io.md)** (18) -- **[ioccc](ioccc.md)** (35) -- **[iq](iq.md)** (122) -- **[island](island.md)** (71) -- **[jargon_file](jargon_file.md)** (12) -- **[java](java.md)** (10) -- **[javascript](javascript.md)** (136) -- **[jedi_engine](jedi_engine.md)** (2) -- **[jesus](jesus.md)** (99) -- **[john_carmack](john_carmack.md)** (19) -- **[jokes](jokes.md)** (110) -- **[js](js.md)** (4) -- **[julia_set](julia_set.md)** (99) -- **[just_werks](just_werks.md)** (24) -- **[justice](justice.md)** (2) -- **[kek](kek.md)** (7) -- **[kids_these_days](kids_these_days.md)** (6) -- **[kiss](kiss.md)** (42) -- **[kiwifarms](kiwifarms.md)** (2) -- **[kwangmyong](kwangmyong.md)** (11) -- **[lambda_calculus](lambda_calculus.md)** (57) -- **[langtons_ant](langtons_ant.md)** (159) -- **[law](law.md)** (6) -- **[leading_the_pig_to_the_slaughterhouse](leading_the_pig_to_the_slaughterhouse.md)** (13) -- **[left](left.md)** (2) -- **[left_right](left_right.md)** (55) -- **[less_retarded_hardware](less_retarded_hardware.md)** (2) -- **[less_retarded_society](less_retarded_society.md)** (146) -- **[less_retarded_software](less_retarded_software.md)** (2) -- **[lgbt](lgbt.md)** (134) -- **[liberalism](liberalism.md)** (6) -- **[libertarianism](libertarianism.md)** (12) -- **[library](library.md)** (29) -- **[libre](libre.md)** (2) -- **[license](license.md)** (57) -- **[life](life.md)** (12) -- **[lil](lil.md)** (21) -- **[line](line.md)** (153) -- **[linear_algebra](linear_algebra.md)** (117) -- **[linux](linux.md)** (72) -- **[lisp](lisp.md)** (123) -- **[living](living.md)** (38) -- **[lmao](lmao.md)** (47) -- **[loc](loc.md)** (11) -- **[logic](logic.md)** (18) -- **[logic_circuit](logic_circuit.md)** (166) -- **[logic_gate](logic_gate.md)** (202) -- **[loquendo](loquendo.md)** (18) -- **[lotr](lotr.md)** (20) -- **[love](love.md)** (28) -- **[low_poly](low_poly.md)** (17) -- **[lrs](lrs.md)** (167) -- **[lrs_dictionary](lrs_dictionary.md)** (123) -- **[lrs_wiki](lrs_wiki.md)** (43) -- **[luke_smith](luke_smith.md)** (20) -- **[macrofucker](macrofucker.md)** (2) -- **[magic](magic.md)** (7) -- **[main](main.md)** (156) -- **[mainstream](mainstream.md)** (4) -- **[maintenance](maintenance.md)** (9) -- **[malware](malware.md)** (2) -- **[mandelbrot_set](mandelbrot_set.md)** (174) -- **[marble_race](marble_race.md)** (6) -- **[marketing](marketing.md)** (28) -- **[markov_chain](markov_chain.md)** (152) -- **[marxism](marxism.md)** (12) -- **[math](math.md)** (40) -- **[mechanical](mechanical.md)** (202) -- **[memory_management](memory_management.md)** (78) -- **[mental_outlaw](mental_outlaw.md)** (4) -- **[microsoft](microsoft.md)** (8) -- **[microtheft](microtheft.md)** (2) -- **[microtransaction](microtransaction.md)** (4) -- **[military](military.md)** (6) -- **[minesweeper](minesweeper.md)** (25) -- **[minigame](minigame.md)** (64) -- **[minimalism](minimalism.md)** (83) -- **[mipmap](mipmap.md)** (44) -- **[mob_software](mob_software.md)** (4) -- **[moderation](moderation.md)** (2) -- **[modern](modern.md)** (40) -- **[modern_software](modern_software.md)** (2) -- **[monad](monad.md)** (48) -- **[money](money.md)** (21) -- **[morality](morality.md)** (10) -- **[motivation](motivation.md)** (4) -- **[mouse](mouse.md)** (6) -- **[mud](mud.md)** (5) -- **[murderer](murderer.md)** (2) -- **[music](music.md)** (59) -- **[myths](myths.md)** (12) -- **[name_is_important](name_is_important.md)** (21) -- **[nanogenmo](nanogenmo.md)** (11) -- **[nationalism](nationalism.md)** (12) -- **[nc](nc.md)** (22) -- **[nd](nd.md)** (6) -- **[needed](needed.md)** (80) -- **[netstalking](netstalking.md)** (9) -- **[network](network.md)** (187) -- **[neural_network](neural_network.md)** (26) -- **[newspeak](newspeak.md)** (12) -- **[niger](niger.md)** (11) -- **[nigeria](nigeria.md)** (10) -- **[nigger](nigger.md)** (74) -- **[niggercoin](niggercoin.md)** (7) -- **[no_knowledge_proof](no_knowledge_proof.md)** (20) -- **[noise](noise.md)** (118) -- **[nokia](nokia.md)** (14) -- **[nonogram](nonogram.md)** (42) -- **[nord_vpn](nord_vpn.md)** (4) -- **[normalization](normalization.md)** (9) -- **[npc](npc.md)** (10) -- **[number](number.md)** (303) -- **[often_confused](often_confused.md)** (141) -- **[often_misunderstood](often_misunderstood.md)** (20) -- **[old](old.md)** (4) -- **[one](one.md)** (13) -- **[oop](oop.md)** (389) -- **[open_console](open_console.md)** (70) -- **[open_source](open_source.md)** (40) -- **[openai](openai.md)** (2) -- **[openarena](openarena.md)** (26) -- **[operating_system](operating_system.md)** (74) -- **[optimization](optimization.md)** (100) -- **[or](or.md)** (2) -- **[os](os.md)** (2) -- **[p_vs_np](p_vs_np.md)** (19) -- **[palette](palette.md)** (62) -- **[paradigm](paradigm.md)** (27) -- **[pascal](pascal.md)** (66) -- **[patent](patent.md)** (22) -- **[paywall](paywall.md)** (2) -- **[pd](pd.md)** (2) -- **[pedophilia](pedophilia.md)** (66) -- **[people](people.md)** (73) -- **[permacomputing](permacomputing.md)** (2) -- **[permacomputing_wiki](permacomputing_wiki.md)** (14) -- **[phd](phd.md)** (13) -- **[physics](physics.md)** (4) -- **[physics_engine](physics_engine.md)** (26) -- **[pi](pi.md)** (151) -- **[piracy](piracy.md)** (18) -- **[plan9](plan9.md)** (10) -- **[plusnigger](plusnigger.md)** (5) -- **[pokitto](pokitto.md)** (43) -- **[political_correctness](political_correctness.md)** (78) -- **[portability](portability.md)** (183) -- **[portal_rendering](portal_rendering.md)** (24) -- **[pride](pride.md)** (6) -- **[prime](prime.md)** (136) -- **[primitive_3d](primitive_3d.md)** (2) -- **[privacy](privacy.md)** (32) -- **[procgen](procgen.md)** (387) -- **[productivity_cult](productivity_cult.md)** (27) -- **[programming](programming.md)** (44) -- **[programming_language](programming_language.md)** (174) -- **[programming_style](programming_style.md)** (119) -- **[programming_tips](programming_tips.md)** (17) -- **[progress](progress.md)** (30) -- **[project](project.md)** (32) -- **[proof](proof.md)** (4) -- **[proprietary](proprietary.md)** (12) -- **[proprietary_software](proprietary_software.md)** (2) -- **[pseudo3d](pseudo3d.md)** (13) -- **[pseudoleft](pseudoleft.md)** (2) -- **[pseudominimalism](pseudominimalism.md)** (10) -- **[pseudorandomness](pseudorandomness.md)** (152) -- **[public_domain](public_domain.md)** (88) -- **[public_domain_computer](public_domain_computer.md)** (56) -- **[python](python.md)** (66) -- **[quantum_gate](quantum_gate.md)** (64) -- **[quaternion](quaternion.md)** (32) -- **[qubit](qubit.md)** (22) -- **[quine](quine.md)** (54) -- **[race](race.md)** (52) -- **[racetrack](racetrack.md)** (31) -- **[racism](racism.md)** (10) -- **[ram](ram.md)** (31) -- **[random_page](random_page.md)** (1846) -- **[randomness](randomness.md)** (161) -- **[rapeware](rapeware.md)** (2) -- **[rationalwiki](rationalwiki.md)** (10) -- **[raycasting](raycasting.md)** (513) -- **[raycastlib](raycastlib.md)** (30) -- **[raylib](raylib.md)** (23) -- **[reactionary_software](reactionary_software.md)** (27) -- **[real_number](real_number.md)** (49) -- **[recursion](recursion.md)** (109) -- **[reddit](reddit.md)** (22) -- **[regex](regex.md)** (210) -- **[resnicks_termite](resnicks_termite.md)** (207) -- **[rgb332](rgb332.md)** (95) -- **[rgb565](rgb565.md)** (32) -- **[right](right.md)** (6) -- **[rights_culture](rights_culture.md)** (2) -- **[rms](rms.md)** (55) -- **[robot](robot.md)** (4) -- **[rock](rock.md)** (44) -- **[ronja](ronja.md)** (10) -- **[rsa](rsa.md)** (129) -- **[rule110](rule110.md)** (108) -- **[rust](rust.md)** (25) -- **[saf](saf.md)** (65) -- **[sanism](sanism.md)** (4) -- **[science](science.md)** (28) -- **[sdf](sdf.md)** (29) -- **[security](security.md)** (17) -- **[see_through_clothes](see_through_clothes.md)** (2) -- **[selflessness](selflessness.md)** (19) -- **[semiconductor](semiconductor.md)** (13) -- **[settled](settled.md)** (8) -- **[shader](shader.md)** (16) -- **[shit](shit.md)** (33) -- **[shitword](shitword.md)** (54) -- **[shogi](shogi.md)** (79) -- **[shortcut_thinking](shortcut_thinking.md)** (89) -- **[sigbovik](sigbovik.md)** (11) -- **[sin](sin.md)** (182) -- **[sjw](sjw.md)** (27) -- **[slowly_boiling_the_frog](slowly_boiling_the_frog.md)** (16) -- **[small3dlib](small3dlib.md)** (52) -- **[smallchesslib](smallchesslib.md)** (35) -- **[smart](smart.md)** (11) -- **[smol_internet](smol_internet.md)** (19) -- **[social_inertia](social_inertia.md)** (2) -- **[software](software.md)** (2) -- **[sorting](sorting.md)** (235) -- **[soydev](soydev.md)** (42) -- **[soyence](soyence.md)** (86) -- **[speech_synthesis](speech_synthesis.md)** (85) -- **[splinternet](splinternet.md)** (2) -- **[sqrt](sqrt.md)** (116) -- **[ssao](ssao.md)** (15) -- **[steganography](steganography.md)** (225) -- **[stereotype](stereotype.md)** (284) -- **[steve_jobs](steve_jobs.md)** (36) -- **[suckless](suckless.md)** (50) -- **[sudoku](sudoku.md)** (213) -- **[suicide](suicide.md)** (41) -- **[sw](sw.md)** (10) -- **[sw_rendering](sw_rendering.md)** (64) -- **[systemd](systemd.md)** (6) -- **[tangram](tangram.md)** (72) -- **[tas](tas.md)** (22) -- **[tattoo](tattoo.md)** (4) -- **[tech](tech.md)** (2) -- **[technology](technology.md)** (8) -- **[ted_kaczynski](ted_kaczynski.md)** (29) -- **[teletext](teletext.md)** (18) -- **[temple_os](temple_os.md)** (33) -- **[tensor_product](tensor_product.md)** (4) -- **[terry_davis](terry_davis.md)** (20) -- **[thrembo](thrembo.md)** (16) -- **[throwaway_script](throwaway_script.md)** (7) -- **[tinyphysicsengine](tinyphysicsengine.md)** (6) -- **[tom_scott](tom_scott.md)** (4) -- **[tool_slave](tool_slave.md)** (14) -- **[tor](tor.md)** (15) -- **[toxic](toxic.md)** (2) -- **[tpe](tpe.md)** (2) -- **[tranny](tranny.md)** (2) -- **[tranny_software](tranny_software.md)** (31) -- **[transistor](transistor.md)** (29) -- **[transsexual](transsexual.md)** (50) -- **[trash_magic](trash_magic.md)** (21) -- **[triangle](triangle.md)** (84) -- **[troll](troll.md)** (4) -- **[trolling](trolling.md)** (48) -- **[trom](trom.md)** (32) -- **[trump](trump.md)** (8) -- **[trusting_trust](trusting_trust.md)** (6) -- **[turing_machine](turing_machine.md)** (220) -- **[twos_complement](twos_complement.md)** (34) -- **[ubi](ubi.md)** (34) -- **[ui](ui.md)** (8) -- **[unary](unary.md)** (14) -- **[unfuck](unfuck.md)** (18) -- **[unicode](unicode.md)** (86) -- **[universe](universe.md)** (4) -- **[unix](unix.md)** (28) -- **[unix_philosophy](unix_philosophy.md)** (55) -- **[unretard](unretard.md)** (17) -- **[update_culture](update_culture.md)** (24) -- **[usa](usa.md)** (68) -- **[used](used.md)** (2) -- **[usenet](usenet.md)** (147) -- **[uxn](uxn.md)** (45) -- **[vector](vector.md)** (109) -- **[venus_project](venus_project.md)** (61) -- **[version_numbering](version_numbering.md)** (88) -- **[vim](vim.md)** (80) -- **[viznut](viznut.md)** (10) -- **[watchdog](watchdog.md)** (10) -- **[wavelet_transform](wavelet_transform.md)** (35) -- **[web](web.md)** (4) -- **[whale](whale.md)** (13) -- **[wiby](wiby.md)** (14) -- **[wiki_authors](wiki_authors.md)** (10) -- **[wiki_pages](wiki_pages.md)** (4) -- **[wiki_post_mortem](wiki_post_mortem.md)** (16) -- **[wiki_rights](wiki_rights.md)** (10) -- **[wiki_stats](wiki_stats.md)** (213) -- **[wiki_style](wiki_style.md)** (76) -- **[wiki_tldr](wiki_tldr.md)** (65) -- **[wikidata](wikidata.md)** (55) -- **[wikipedia](wikipedia.md)** (97) -- **[wikiwikiweb](wikiwikiweb.md)** (32) -- **[windows](windows.md)** (59) -- **[wizard](wizard.md)** (27) -- **[woman](woman.md)** (176) -- **[work](work.md)** (58) -- **[world_broadcast](world_broadcast.md)** (13) -- **[wow](wow.md)** (10) -- **[www](www.md)** (124) -- **[x86](x86.md)** (4) -- **[xd](xd.md)** (0) -- **[xonotic](xonotic.md)** (114) -- **[xor](xor.md)** (2) -- **[xxiivv](xxiivv.md)** (34) -- **[yes_they_can](yes_they_can.md)** (10) -- **[youtube](youtube.md)** (46) -- **[zen](zen.md)** (16) -- **[zero](zero.md)** (31) -- **[zoomer](zoomer.md)** (38) -- **[zuckerberg](zuckerberg.md)** (2) \ No newline at end of file diff --git a/wiki_stats.md b/wiki_stats.md index e564543..760ce2e 100644 --- a/wiki_stats.md +++ b/wiki_stats.md @@ -2,10 +2,10 @@ This is an autogenerated article holding stats about this wiki. -- number of articles: 612 -- number of commits: 944 -- total size of all texts in bytes: 4811795 -- total number of lines of article texts: 35380 +- number of articles: 615 +- number of commits: 945 +- total size of all texts in bytes: 4839800 +- total number of lines of article texts: 35587 - number of script lines: 294 - occurrences of the word "person": 9 - occurrences of the word "nigger": 103 @@ -35,60 +35,71 @@ longest articles: top 50 5+ letter words: -- which (2647) -- there (2083) +- which (2673) +- there (2102) - people (1976) -- example (1634) -- other (1510) -- about (1325) -- number (1288) +- example (1657) +- other (1517) +- about (1330) +- number (1296) - software (1234) -- because (1051) -- their (1030) -- program (1020) -- would (997) -- something (959) -- being (952) -- things (920) +- because (1064) +- their (1032) +- program (1021) +- would (1000) +- something (961) +- being (953) +- things (926) - language (915) -- called (890) -- simple (821) -- computer (818) -- numbers (813) -- without (807) +- called (893) +- simple (826) +- function (826) +- computer (821) +- numbers (818) +- without (808) +- different (761) - however (758) -- different (758) - programming (751) -- these (742) -- function (741) -- world (722) -- system (696) -- doesn (679) -- should (675) -- still (666) +- these (747) +- world (723) +- system (699) +- doesn (681) +- should (678) +- still (669) - games (657) -- while (649) -- drummyfish (633) -- point (632) +- while (652) +- point (642) +- drummyfish (635) - society (631) -- simply (620) -- possible (608) -- using (600) -- probably (586) -- always (574) -- course (569) -- though (568) -- similar (565) +- simply (622) +- possible (610) +- using (601) +- probably (588) +- always (585) +- course (572) +- though (570) +- similar (570) - https (565) -- basically (554) -- really (538) +- basically (561) +- really (542) +- actually (542) - someone (537) -- memory (535) -- actually (535) +- memory (536) latest changes: ``` +Date: Sun Dec 15 20:50:53 2024 +0100 + ashley_jones.md + binary.md + calculus.md + derivative.md + integral.md + often_confused.md + random_page.md + wiki_pages.md + wiki_stats.md + work.md Date: Sat Dec 14 16:25:29 2024 +0100 debugging.md disease.md @@ -111,19 +122,6 @@ Date: Sat Dec 14 16:25:29 2024 +0100 xxiivv.md Date: Fri Dec 13 20:40:56 2024 +0100 90s.md - freedom.md - hitler.md - internet.md - logic_gate.md - lrs_dictionary.md - progress.md - random_page.md - shortcut_thinking.md - soyence.md - technology.md - wiki_pages.md - wiki_stats.md -Date: Thu Dec 12 21:58:18 2024 +0100 ``` most wanted pages: @@ -163,21 +161,21 @@ most popular and lonely pages: - [censorship](censorship.md) (112) - [modern](modern.md) (111) - [computer](computer.md) (108) -- [kiss](kiss.md) (106) +- [kiss](kiss.md) (107) - [fun](fun.md) (104) -- [programming](programming.md) (101) -- [math](math.md) (100) +- [programming](programming.md) (102) +- [math](math.md) (101) - [gnu](gnu.md) (97) - [shit](shit.md) (95) - [linux](linux.md) (95) - [fight_culture](fight_culture.md) (94) -- [bullshit](bullshit.md) (92) -- [woman](woman.md) (90) +- [bullshit](bullshit.md) (93) +- [woman](woman.md) (91) - [hacking](hacking.md) (90) - [corporation](corporation.md) (87) - [less_retarded_society](less_retarded_society.md) (86) +- [art](art.md) (86) - [free_culture](free_culture.md) (85) -- [art](art.md) (85) - [public_domain](public_domain.md) (83) - [pseudoleft](pseudoleft.md) (83) - [chess](chess.md) (83) diff --git a/work.md b/work.md index e709b1f..3b8ba1a 100644 --- a/work.md +++ b/work.md @@ -39,7 +39,7 @@ For lawyer cunts: we officially DO NOT ADVISE any illegal methods mentioned here - **Getting a rich partner?**: someone rich can just take care of you for sex and love, however it may be not worth it as rich people are often capitalists whom it's better to stay away from. - **Moving to some nice community that doesn't force work**: the problem is actually finding such community, but maybe some hippie tent villages could be like that -- look up *mutual aid networks*. Multiple people living together can be an advantage, they may pool in money to pay the absolutely necessary bills like property tax -- this will spread the expenses over many people so that every member will have to pay just a very small amount per year. They may then use their land to establish a micro community that works on [communist](communism.md) principles, making their own food etc. - **Going to [jail](jail.md)**: in some countries prisons are quite luxurious and once in jail you can just refuse to work as they cannot lock you up more. In jail you have shelter and food, i.e. already more than most people in a capitalist society. However watch out: for some crimes you may just get fined, not actually locked up, so it's good to study the law to know which crimes it's best to commit to safely get one to jail. Your inspiration may be David Hampson who repeatedly gets himself arrested by standing in the middle of the road and then just refuses to talk to anyone. -- **Moving to area where disasters happen regularly**, like some highly earthquake rich land, may allow one to just jump charities. It's hard to keep businesses running under a volcano that erupts every other week, so you just run around from charity tent to another one, get food, free healthcare etc. It may also be a nice, adventurous life. +- **Moving to area where disasters happen regularly**, like some highly earthquake rich land, may allow one to just jump the humanitarian help. It's hard to keep businesses running under a volcano that erupts every other week, so you just run around from charity tent to another one, get food, free healthcare etc. It may also be a nice, adventurous life. - **US edition: suing the employer**: If you're a [woman](woman.md), nowadays you can successfully sue anyone for rape, you don't even need evidence, making $1000000 shouldn't be a problem. A non-white can play it on [racism](racism.md), a "disabiled" man can play it on disability etc. However one mustn't hurt a fellow working class poorfag, it must be made so that the comapany or some rich manager pays. IN THEORY it is possible to plot with one's coworkers -- for example the coworkers on same positions talk to each other, reveal their pays to one another, then the one with lowest pay sues for discrimination and they split the profit. Etc. - **Becoming a prostitute (usually for [women](woman.md))**: it's easy money and you literally get paid for having [sex](sex.md). Unless you're real ugly it may be enough to just "work" like this for a few days in a month. With shit like OnlyFans you don't even have to actually have real sex or risk STDs, it's literally like godmode cheat for women. - **The gypsy way: making tons of children**: gypsies managed to [hack](hacking.md) the system by just making 10, 15 or maybe 20 children -- not only you stay on maternal leave, but you can take financial support for every one of them. The genius of this method is that since CHILDREN ARE MAGICAL, the state HAS TO make sure children are properly cared for AND at the same time it's difficult (e.g. enraging to [feminists](feminism.md) but even just general public) and messy to separate children from their mother, SO as long as a woman is a mother of a non-adult child, she can just 100% refuse to work and the state has no other choice than throw money at her so that the children (and the mother along with them) are fine. So a woman just makes 2 or 3 children, then as they're reaching 18 she makes another and so on until old age. The only danger is in actually getting the children taken away, so a big stress is on NOT taking drugs, NOT drinking, NOT doing idiotic shit like beating the children, NOT whoring for more money and so on.