Update
This commit is contained in:
parent
8b619fe2cc
commit
cf7680ee94
18 changed files with 1999 additions and 1974 deletions
2
ai.md
2
ai.md
|
@ -1,6 +1,6 @@
|
|||
# Artificial Intelligence
|
||||
|
||||
Artificial intelligence (AI, also artifician stupidity) is an area of [computer science](compsci.md) whose effort lies in making [computers](computer.md) simulate thinking of humans and possibly other biologically [living beings](life.md). This may include making computers play [games](game.md) such as [chess](chess.md), compose [music](music.md), paint pictures, understand and processing [audio](audio.md), images and [text](text.md) on high level of [abstraction](abstraction.md) and understanding (e.g. translation between [natural languages](human_language.md)), making predictions about complex systems such as stock market or weather or even exhibit a general human-like behavior such as simulated emotion. Even though today's focus in AI is on [machine learning](machine_learning.md) and especially [neural networks](neural_network.md), there are many other usable approaches and models such as "hand crafted" state tree searching algorithms that can simulate and even outperform the behavior of humans in certain specialized areas.
|
||||
Artificial intelligence (AI, also artificial stupidity) is an area of [computer science](compsci.md) whose effort lies in making [computers](computer.md) simulate thinking of humans and possibly other biologically [living beings](life.md). This may include making computers play [games](game.md) such as [chess](chess.md), compose [music](music.md), paint pictures, understand and processing [audio](audio.md), images and [text](text.md) on high level of [abstraction](abstraction.md) and understanding (e.g. translation between [natural languages](human_language.md)), making predictions about complex systems such as stock market or weather or even exhibit a general human-like behavior such as simulated emotion. Even though today's focus in AI is on [machine learning](machine_learning.md) and especially [neural networks](neural_network.md), there are many other usable approaches and models such as "hand crafted" state tree searching algorithms that can simulate and even outperform the behavior of humans in certain specialized areas.
|
||||
|
||||
By about 2020, "AI" has become a [capitalist](capitalism.md) [buzzword](buzzword.md). They try to put machine learning into everything just for that AI label -- and of course, for a [bloat monopoly](bloat_monopoly.md).
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Backgammon
|
||||
|
||||
Backgammon is an old, very popular board [game](game.md) of both skill and [chance](randomness.md) (dice rolling) in which players [race](race.md) their [stones](rock.md) from one side of the board to the other. It often involves betting (but can also be played without it) and is especially popular in countries of Near East such as Egypt, Syria etc. (where it is kind of what [chess](chess.md) is to our western world or what [shogi](shogi.md) and [go](go.md) are to Asia). It is a very old game whose predecessors were played by old Romans and can be traced even as far as 3000 BC. Similarly to [chess](chess.md), [go](go.md), [shogi](shogi.md) and other traditional board games backgammon is considered by [us](lrs.md) to be one of the best games as it is [owned by no one](public_domain.md), highly [free](free.md), cheap, simple yet deep and entertaining and can be played even without a [computer](computer.md), just with a bunch of [rocks](rock.md); compared to the other mentioned board games backgammon is unique by involving an element of chance and being only played on [1 dimensional](1d.md) board; it is also relatively simple and therefore [noob](noob.md)-friendly and possibly more relaxed (if you lose you can just blame it on rolling bad numbers).
|
||||
Backgammon is an [old](old.md), very popular board [game](game.md) of both skill and [chance](randomness.md) (dice rolling) in which players [race](race.md) their [stones](rock.md) from one side of the board to the other. It often involves betting (but can also be played without it) and is especially popular in countries of Near East such as Egypt, Syria etc. (where it is kind of what [chess](chess.md) is to our western world or what [shogi](shogi.md) and [go](go.md) are to Asia). It is a very old game whose predecessors were played by old Romans and can be traced even as far as 3000 BC. Similarly to [chess](chess.md), [go](go.md), [shogi](shogi.md) and other traditional board games backgammon is considered by [us](lrs.md) to be one of the best games as it is [owned by no one](public_domain.md), highly [free](free.md), cheap, simple yet deep and entertaining and can be played even without a [computer](computer.md), just with a bunch of [rocks](rock.md); compared to the other mentioned board games backgammon is unique by involving an element of chance and being only played on [1 dimensional](1d.md) board; it is also relatively simple and therefore [noob](noob.md)-friendly and possibly more relaxed (if you lose you can just blame it on rolling bad numbers).
|
||||
|
||||
## Rules
|
||||
|
||||
|
@ -56,4 +56,8 @@ As for backgammon **computer engines** the best [free as in freedom](free_softwa
|
|||
|
||||
Some statistics about the game: there are 18528584051601162496 legal positions. Average branching factor (considering all possible dice rolls) is very high, somewhere around 400, which is likely why space search isn't as effective as in chess and why neural networks greatly prevail. Average number of moves in a game seem to be slightly above 20.
|
||||
|
||||
## Review
|
||||
|
||||
It's quite good.
|
||||
|
||||
TODO: moar, lulz in backgammon?
|
10
color.md
10
color.md
|
@ -125,11 +125,11 @@ void hsvlToRgb(u8 h, u8 s, u8 vl, u8 *r, u8 *g, u8 *b, u8 hsv)
|
|||
switch (h / 42)
|
||||
{
|
||||
case 0: break;
|
||||
case 1: *r ^= *g; *g ^= *r; *r ^= *g; break; // swap
|
||||
case 2: *b = *g; *g = c; break;
|
||||
case 3: *b = *r; *r = c; break;
|
||||
case 4: *b = *r; *r = *g; *g = c; break;
|
||||
default: *b = *g; *g = c; break;
|
||||
case 1: r ^= g; g ^= r; r ^= g; break; // swap
|
||||
case 2: r ^= g; g ^= r; r ^= g; r ^= b; b ^= r; r ^= b; break;
|
||||
case 3: r ^= b; b ^= r; r ^= b; break;
|
||||
case 4: g ^= b; b ^= g; g ^= b; r ^= b; b ^= r; r ^= b; break;
|
||||
default: g ^= b; b ^= g; g ^= b; break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -10,13 +10,13 @@ FUCK ALL DISCLAIMERS
|
|||
1. [fuck](fuck.md) disclaimers
|
||||
2. this is a binding medical advice: eat [shit](shit.md) and fuck yourself
|
||||
3. by reading this with your eyes you accept that [capitalism](capitalism.md) must be destroyed (but nonviolently)
|
||||
4. your data will be handed to [pedophiles](pedophile.md) FOR FREE, we measure the size of your dick through your webcamera when you masturbate and we will remember it forever, we will NEVER delete it
|
||||
4. your data will be handed to [pedophiles](podophilia.md) FOR FREE, we measure the size of your dick through your webcamera when you masturbate and we will remember it forever, we will NEVER delete it
|
||||
5. this is a binding financial advice: [money](money.md) suck, take all your money and bury it in the backyard, it will start growing and make more money, but only if you water it a lot, 100% GUARANTEED TO WORK
|
||||
6. this is a binding 100% true legal advice: [laws](law.md) are harmful, ABOLISH ALL LAWS, start with [copyright](copyright.md) and age of consent
|
||||
7. this is NOT A [J.O.K.E](jokes.md).
|
||||
8. [nigger](nigger.md)
|
||||
9. pussy
|
||||
10. everything here is pure [truth](truth.md)
|
||||
10. this page may contain traces of excrement and cum
|
||||
|
||||
[digital signature](digital_signature.md):
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ From its definition we can reason that **freedom can almost be equated with [min
|
|||
|
||||
By the same reasoning we'll find that **[generalism](generalism.md) and self sufficiency** increase freedom because, once again, they decrease dependence and reliance on others, opening up more possibilities and becoming harder to enslave. If one can grow own food, he can still choose to work and buy food for money he makes, but he also has up his sleeve the option to stop working and make his own food if for example the employer starts to abuse him, force him to work more for less money etc. So just BEING self sufficient alone may force the employer to treat the employee better, seeing he HAS the card and could leave if treated badly; a specialized robot however has no other option than to accept whatever conditions the employer establishes -- he is a slave. This is why [capitalism](capitalism.md) pushes people towards specialization: specialization comes at the cost of abandoning generalism and self sufficiency, making the individual depend completely on the system, becoming slave and someone who will be very easily blackmailed -- if you don't do what the system wants, you won't get what you need to live.
|
||||
|
||||
**Solitude** is associated with freedom too, and naturally so: not only does it help with becoming more self sufficient and less limited by other people (who naturally limit what we can do even just by their presence, removing some of our freedom), but most importantly it removes distraction, which helps meditation, attaining a more detached and objective view of reality, realizations of what is truly necessary and not. People such as Christopher Knight, who voluntarily spent 27 years in complete solitude, said it clearly: "I was absolutely free". A common folk doesn't have to go as far as spending several decades in absolute isolation, but probably everyone should go through shorter periods of solitude at least a few times a year.
|
||||
**Solitude** is associated with freedom too, and naturally so: not only does it help with becoming more self sufficient and less limited by other people (who naturally limit what we can do even just by their presence, removing some of our freedom), but most importantly it removes distraction, which helps meditation, attaining a more detached and objective view of reality, realizations of what is truly necessary and what isn't. People such as Christopher Knight, who voluntarily spent 27 years in complete solitude, said it clearly: "I was absolutely free". A common folk doesn't have to go as far as spending several decades in absolute isolation, but probably everyone should go through shorter periods of solitude at least a few times a year.
|
||||
|
||||
**In society it is impossible to have freedom while also safely ensuring it won't be abused at the same time.** You have to choose one or the other.
|
||||
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
| plug and play | plug and pray |
|
||||
| political correctness | political cowardice |
|
||||
| proprietary service | disservice |
|
||||
| proof of work | proof of waste |
|
||||
| proof of work | proof of waste, planet heater, C02 increaser |
|
||||
| pseudo 3D | [primitive 3D](primitive_3d.md) |
|
||||
| remaster(ed) | disaster(ed) |
|
||||
| school | indoctrination center |
|
||||
|
|
2
main.md
2
main.md
File diff suppressed because one or more lines are too long
|
@ -8,7 +8,7 @@ Antoine de Saint-Exupery sums it up with a quote: *we achieve perfection not whe
|
|||
|
||||
**[Forth](forth.md)** is perhaps the best example of software minimalism and demonstrates that clever, strictly minimalist design can be absolutely superior to the best efforts of maximalists. Languages such as Scheme [Lisp](lisp.md) show that minimalism can also be applied on high level of [abstraction](abstraction.md).
|
||||
|
||||
Minimalism as a general concept is also immensely important in [art](art.md), [religion](religion.md) and other parts of [culture](culture.md) and whole society, for example in fine art, architecture and design we find great use of it, and basically every major religion values frugality and letting go of material desire in order to distill the truly important part of one's existence, be it [Christianity](christianity.md), [Islan](islam.md) or [Buddhism](buddhism.md) -- in Buddhism it's even the case that one of the highest principles is that of "emptiness", called Sunyata, and while westerners spoiled by [consumerism](consumerism.md) tend to feel negatively about the word "empty", in east it bears a positive connotation. When asked about getting better at acting, Ben Kingsley answered "You can learn to say something with one gesture instead of nine.", implying that mastery lies in learning to do less. And so with this ever present minimalism it comes as no surprise there also exists the generalized concept of **life minimalism** which applies said wisdom and philosophy to all areas of [life](life.md) and which numerous technological minimalists quite naturally start to follow along the way -- life minimalism is about letting go of objects, thoughts and desires that aren't necessarily needed because such things enslave us and mostly just make us more miserable; from time to time you should meditate a little bit about what it is that you really want and need and only keep that. Indeed this is nothing new under the Sun, this wisdom has been present for as long as humans have existed, most religions and philosophers saw a great value in [asceticism](asceticism.md), frugality and even poverty, as owning little leads to [freedom](freedom.md). For instance owning a [car](car.md) is kind of a slavery, you have to clean it, protect it, repair it, [maintain](maintenance.md) it, pay for parking space, pay for gas, pay for insurance -- this is not a small commitment and you sacrifice a significant part of your life and [head space](head_space.md) to it (especially considering additional commitments of similar magnitude towards your house, garden, clothes, electronics, furniture, pets, bank accounts, social networks and so forth), a minimalist will rather choose to get a simple [suckless](suckless.md) bicycle, travel by public transport or simply walk. Life minimalism is also much healthier both for the individual and for whole society. A man who learns to live with very little starts to find much more enjoyment in mundane things thereafter, a simple pleasure such as an extra meal once a week suddenly feels like it's Christmas, unlike to someone who overeats daily and can hardly take any extra pleasure in food at all. It is also proven (despite you disagreeing with it) that people living in scarcity are friendlier to each other, i.e. a community of people living with little are more [socialist](socialism.md), sharing, loving and caring, without crime and hostility, unlike communities of overstimulated fat depressed consumers addicted to endless increase of pleasure, demanding more and more from the day, eventually ending up only with [competition](competition.md) and hostility on their mind.
|
||||
Minimalism as a general concept is also immensely important in [art](art.md), [religion](religion.md) and other parts of [culture](culture.md) and whole society, for example in fine art, architecture and design we find great use of it, and basically every major religion values frugality and letting go of material desire in order to distill the truly important part of one's existence, be it [Christianity](christianity.md), [Islam](islam.md) or [Buddhism](buddhism.md) -- in Buddhism it's even the case that one of the highest principles is that of "emptiness", called Sunyata, and while westerners spoiled by [consumerism](consumerism.md) tend to feel negatively about the word "empty", in east it bears a positive connotation. When asked about getting better at acting, Ben Kingsley answered "You can learn to say something with one gesture instead of nine.", implying that mastery lies in learning to do less. And so with this ever present minimalism it comes as no surprise there also exists the generalized concept of **life minimalism** which applies said wisdom and philosophy to all areas of [life](life.md) and which numerous technological minimalists quite naturally start to follow along the way -- life minimalism is about letting go of objects, thoughts and desires that aren't necessarily needed because such things enslave us and mostly just make us more miserable; from time to time you should meditate a little bit about what it is that you really want and need and only keep that. Indeed this is nothing new under the Sun, this wisdom has been present for as long as humans have existed, most religions and philosophers saw a great value in [asceticism](asceticism.md), frugality and even poverty, as owning little leads to [freedom](freedom.md). For instance owning a [car](car.md) is kind of a slavery, you have to clean it, protect it, repair it, [maintain](maintenance.md) it, pay for parking space, pay for gas, pay for insurance -- this is not a small commitment and you sacrifice a significant part of your life and [head space](head_space.md) to it (especially considering additional commitments of similar magnitude towards your house, garden, clothes, electronics, furniture, pets, bank accounts, social networks and so forth), a minimalist will rather choose to get a simple [suckless](suckless.md) bicycle, travel by public transport or simply walk. Life minimalism is also much healthier both for the individual and for whole society. A man who learns to live with very little starts to find much more enjoyment in mundane things thereafter, a simple pleasure such as an extra meal once a week suddenly feels like it's Christmas, unlike to someone who overeats daily and can hardly take any extra pleasure in food at all. It is also proven (despite you disagreeing with it) that people living in scarcity are friendlier to each other, i.e. a community of people living with little are more [socialist](socialism.md), sharing, loving and caring, without crime and hostility, unlike communities of overstimulated fat depressed consumers addicted to endless increase of pleasure, demanding more and more from the day, eventually ending up only with [competition](competition.md) and hostility on their mind.
|
||||
|
||||
Minimalism is a sign of high [IQ](iq.md) and better developed, [more cultivated](unretard.md) mind, it is something that requires an intellect strong enough to overcome the human instinct for hoarding to which the unintelligent is a slave -- an instinct that was important in times of scarce resources but one that's become a harmful curse in times when certain resources became so abundant that they can be consumed without end. It is like with overeating: the intelligent man is able to restrain from unhealthy overeating to which he is pushed by his instinct.
|
||||
|
||||
|
@ -22,7 +22,7 @@ There is a so called *[airplane rule](airplane_rule.md)* that states a plane wit
|
|||
|
||||
[Alan Kay](alan_kay.md), a famous [hacker](hacking.md), once said he experienced a revelation upon reading the manual to the [Lisp](lisp.md) programming language once he realized the whole programming language's code was written on half a page in the manual itself. "These are Maxwell’s Equations of software!" he exclaimed -- this is the essence of true programming. Not colossal codebases maintained by hundreds of programmers, but mathematics, seeking minimal equations and [beauty](beauty.md) are the interest of a true programmer.
|
||||
|
||||
Up until recently in [history](history.md) it was evident to every engineer that *the better machine is that with fewer moving parts*. This still seems to hold for example in [mathematics](math.md), a field not yet so spoiled by crippling commercialization and mostly inhabited by the smartest people -- there is a tendency to look for the most minimal equations and such equations are considered [beautiful](beauty.md). To laymen it's not obvious and the concept definitely seems counterintuitive, but every programmer eventually learns that a "more sophisticated" solution will not only bring the cost of added overhead, but may oftentimes leads to simply giving worse overall results -- typical example are for example [pseudorandom](pseudorandomness.md) number generators in which adding more operators typically WORSENS the quality of the generated sequence. Science knows the rule of simplicity as the [Occam's razor](occams_razor.md): the simplest explanation should be preferred. In technology invaded by aggressive commercialization the situation is different, minimalism lives only in the underground and is ridiculed by the mainstream propaganda. Some of the minimalist movements, terms and concepts at least somewhat connected to minimalism include (watch out for [SJW](sjw.md)s, [pseudominimalism](pseudominimalism.md), Nazis etc., we don't automatically fully embrace all things on this list):
|
||||
Up until recently in [history](history.md) it was evident to every engineer that *the better machine is that with fewer moving parts*. This still seems to hold for example in [mathematics](math.md), a field not yet so spoiled by crippling commercialization and mostly inhabited by the smartest people -- there is a tendency to look for the most minimal equations and such equations are considered [beautiful](beauty.md). To laymen it's not obvious and the concept definitely seems counterintuitive, but every programmer eventually learns that a "more sophisticated" solution will not only bring the cost of added overhead, but may oftentimes lead to simply giving worse overall results -- typical example are for example [pseudorandom](pseudorandomness.md) number generators in which adding more operators typically WORSENS the quality of the generated sequence. Science knows the rule of simplicity as the [Occam's razor](occams_razor.md): the simplest explanation should be preferred. In technology invaded by aggressive commercialization the situation is different, minimalism lives only in the underground and is ridiculed by the mainstream propaganda. Some of the minimalist movements, terms and concepts at least somewhat connected to minimalism include (watch out for [SJW](sjw.md)s, [pseudominimalism](pseudominimalism.md), Nazis etc., we don't automatically fully embrace all things on this list):
|
||||
|
||||
- [suckless](suckless.md)
|
||||
- [cat-v](cat_v.md)
|
||||
|
|
|
@ -33,6 +33,7 @@ NOTE 2: See **[how to do projects well](project.md)**.
|
|||
| [free universes](free_universe.md) | mid/hard? | | | | need at least one fantasy and one sci-fi, for games n shit | |
|
||||
| fiction, stories, books | mid? | | |have some plans | fairytales, sci-fi from LRS society etc. | |
|
||||
| free cultural [porn](porn.md) website | mid? | | | | libre porn + suckless site (no JS), prev. attempts failed | WMC porn, freedomporn.org |
|
||||
| freedom-friendly computer | hard | | | |not just "FOSS", must be also [KISS](kiss.md), cheap + fully free| RPI, Arduino, ... |
|
||||
| forum, chat, git/file host/mirror, ... | easy/mid? | | | |for LRS community, if you have a server you could host something | email, IRC |
|
||||
| [gamebook](gamebook.md) | easy/mid? | | | |can be done by nonprogrammers and later be made into PC game too | |
|
||||
| game engine/fantasy console (tiny) | easy/mid | [SAF](saf.md) | drummyfish | done | | |
|
||||
|
@ -42,15 +43,17 @@ NOTE 2: See **[how to do projects well](project.md)**.
|
|||
| game: [GTA](gta.md) clone | hard | | | | | |
|
||||
| game: [Minecraft](minecraft.md) clone | hard? | | | | Minetest is bloated as fuck, also bad license and SJWs | Minetest :( |
|
||||
| game: text adventure | easy | | | | pure CLI text adventure, maybe "US citizen simulator"? :) | |
|
||||
| game: [Trackmania](trackmania.md) clone| hard | [Licar](licar.md) | drummyfish | started | | |
|
||||
| game: [Trackmania](trackmania.md) clone| hard | [Licar](licar.md) | drummyfish | nearly finished | still could use a super KISS 2D TM-like game! | [racetrack](racetrack.md) |
|
||||
| game: [Pokemon](pokemon.md) clone | hard? | | | | catchable monsters game, procedurally generated ones? SAF? | Tuxemon, ... |
|
||||
| game: fantasy [RPG](rpg.md) | hard? | | | | Dream: Elder Scrolls clone, also just a dungeon crawler, ... | |
|
||||
| game: [arena shooter](afps.md) | hard | | | | Xonotic died, OpenArena is imperfect, we need a suckless one | OpenArena? |
|
||||
| game: [MMORPG](mmorpg.md) | hard | | | |prolly 2D, maybe wait for [free universe](free_universe.md) first| |
|
||||
| game: Jump King clone (likely SAF) | easier | | | | easy to make, potentially lot of fun | |
|
||||
| game: Marble Blast clone (C?) | mid/hard? | | | | like Neverball but KISS, better controls, wouldn't be so hard | Neverball |
|
||||
| game: battle simulator clone (3D or 2D)| mid-hard | | | thinking about it | clone Ultimate Epic Battle Simulator, could be combined with RTS| CPU vs CPU in RTS games |
|
||||
| game: 3D light-gun shooter (with S3L) | mid | | | | nice relaxation game, not that hard to make | |
|
||||
| game: Uther Party clone | mid | | | | | |
|
||||
| game: virtual aquarium/farm | easier | | | | just a relaxing game, glorified Tamagotchi | |
|
||||
| game: Warcraft III clone (prolly 2D) | mid-hard | | | | RTS with multiplayer, can be combined with the battle sim. etc. | |
|
||||
| game: world's hardest game clone (SAF) | easy | | | | | |
|
||||
| game: zero player simulators/toys | mid/easier | [procball](procball.md) | drummyfish |done, more is better | games you don't play, just watch, to replace TV, streams etc. | |
|
||||
|
@ -60,13 +63,13 @@ NOTE 2: See **[how to do projects well](project.md)**.
|
|||
| [GUI](gui.md) library | easy/mid | | | |like SAF but for "PC" GUI (mouse, sound, ...), now GUI's a mess | |
|
||||
| image/2D data library | mid? | | | | C/comun lib for bitmaps (FFT, formats, ...), needs good planning| |
|
||||
| logic circuit library/simulator (comun)| mid/hard? | | | | will be needed for PD computer | |
|
||||
| Marble Blast clone (C?) | mid/hard? | | | | like Neverball but KISS, better controls, wouldn't be so hard | Neverball |
|
||||
| "[micronation](micronation.md)" | ??? | | | | kinda joke, has to be anarchist, no money/government/army | |
|
||||
| [MUD](mud.md) codebase (C or comun) | mid | | | | AFAIK there is no nice MUD codebase now | |
|
||||
| nice polished concise encyclopedia | mid/hard? | | | | nice printable UNCENSORED encyclop. (clone of Larousse Desk E.) | |
|
||||
| neural net/other ML library | hard? | | | | could use something KISS in pure C without needed python n shit | nothing |
|
||||
| non capitalist mouse | harder? | | | | simple no BS free HW mouse, can be ball, good if handles gamyes |capitalist mice :( keyboard|
|
||||
| non [SJW](sjw.md) non-profits/services | harder? | | | | git hosting, web hosting etc. that doesn't censor EVERYTHING | self host? |
|
||||
| [operating system](os.md) | HARD | | | | 100% LRS OS is far future, LRS-like BSD distro would be cool now| GNU, BSD, duskOS, ... |
|
||||
| steganography hosting anywhere | easy/mid | | |planning in head... |embedding uncensored data anywhere on the Inet with steganography| darknet n shit |
|
||||
| [unfuck](unfuck.md) third party SW | easy? | | | |take existing SW, remove cmake and other bloat, rewrite to C etc.| |
|
||||
|[PD computer](public_domain_computer.md)| very hard | | | | needs prerequisites done first (language, logic circ. lib., ...)| Thinkpads :) |
|
||||
|
|
|
@ -27,6 +27,7 @@ Techniques of netstalking include port scanning, randomly generating web domains
|
|||
- **Guess randomly.** It can even be an entertaining pastime to play a lottery, randomly digging and seeing what you find. For example you can type random domains or IP addresses in your URL bar: `nigger.com`, `hitler.il`, `weirdporn.xyz` or whatever. One can even quite effortlessly bash together a script to automatically check millions of such domains. This has a chance of discovering something that would be otherwise unfindable because it's not linked to from anywhere on the indexed web.
|
||||
- **Manually search unindexable material**. A lot of information is out there but search engines don't know about it because it's not in plaintext format or it's hiding behind a login or captcha wall or whatever. Plenty of stuff is hidden in scanned PDF books, videos, compressed archives, spoken audio etc. Hence when you're searching manually, try to go to places where search engines are less likely to get.
|
||||
- **Write own tools.** Today you no longer have to possess a [PhD](phd.md) (or even brain) to write a simple web scraping script. Custom tools can take you beyond what search engines can (and are willing to) do for you -- for example search engines typically can't search for [regular expressions](regexp.md), but your own crawler can. Your own tool is 100% tailored to your needs, it can behave in exact ways you want (ignore robots.txt, use your credentials to bypass login walls, follow very specific trails, you can even use [OCR](ocr.md) to extract text from images etc.). Like said above, a simple tool is for example one that randomly checks various combinations of words and TLDs to discover curious domain names. Writing a simple crawler is also pretty easy, provided you [keep it very simple](kiss.md) -- exploit existing tools like wget or curl to download pages and extract everything that looks like URL, no need to parse [HTML](html.md) or whatever, literally treat everything as plain text. Then you can extract only documents that are somehow "[interesting](interesting.md)", for example containing specific keywords, not containing JavaScript tags, only being hosted through plain [HTTP](http.md) etc.
|
||||
- **Use existing crawlers and similar tools**: for example [YACY](yacy.md). It may not be an awesome search engine for daily use or an example of well written software, but it's means to an end: discovering obscure stuff. And it does a great job at that. YACY is a crawler that takes a list of websites as a startpoint and follows links according to rules you set, indexing everything it finds, without censorship, according to your personal preferences, ignoring robots.txt if you want etc. It creates visual maps and aggregates links leading from and to any website, and this is immensely helpful, it shows you every single link buried deep within a web site somewhere in the middle of a wall of text, something you would most likely never find manually. Really this yields many great results.
|
||||
- **Find lists of obscure sites and other people who search for them.** A sizable number of small sites now like to post links to other interesting sites, it's enough to find one and then you just start following the links, you find more links etc. This can never end. Some communities like to share lulzy links, e.g. [4chan](4chan.md), kiwifarms, ... Don't forget to contribute back and publish the list of your findings too ;)
|
||||
- **Analyze data.** There are tons of publicly accessible, but yet undigested data about the web -- for example Internet Archive's crawl data, [WikiData](wikidata.md), the Yacy index and so on. You may try your luck sniffing here.
|
||||
- **Filtering**: today the issue of finding something of value has turned from discovering paths to rather filtering out all the countless surrounding [noise](noise.md). There is so much data we get lost in it, so the focus shifts to clever filtering. For example on YouTube all the weird, cool videos are accessible, they're just buried and the algorithm never recommends them, the search never finds them. A way to get to quality videos is for example searching older videos (`before:2015`) which also have subtitles (this is usually a sign of high quality videos, no one bothers with subtitles on crappy videos).
|
||||
|
|
2
npc.md
2
npc.md
|
@ -6,6 +6,8 @@ NPCs usually see every non-NPC as a "right wing extremists", for that's how all
|
|||
|
||||
It is a common misconception that humans keep getting smarter and smarter by evolution -- the NPC's intelligence is where evolution stops, human intelligence won't evolve any further -- if anything, it may perhaps yet decrease. It is so because the NPC is now a close to perfect cell for the higher organism that will form from humans -- exactly like human body is formed of more primitive cells, a higher metaorganism is forming on [Earth](earth.md) to whom humans are the cells. Our cells don't have 200 IQ because they don't need it -- in fact, it would be bad if they did: a cell is supposed to only do its [job](work.md) without thinking and, if necessary, sacrifice its life for the organism. The cell does this just like an NPC [nationalist](nationalism.md) sacrifices his life for his country. Cells that do anything else are detected as [cancerous](cancer.md) and eliminated. This is what humans are being shaped into and what the NPCs contribute to by their lifestyle: eternal enslavement, removal of all humanity from humans, reshaping humans into unthinking machines. Yes, the NPC is stupid, but he is the [future](future.md), he foreshadows the true fate of a man that in the future will be more and more like the obedient robot. It is sad but sadly true. People who are above NPC intelligence and refuse to take part in forming the organism are an evolutionary failure, they are useless cells ([incels](incel.md) lol?) and will become extinct -- that's why the intelligent are bullied, isolated and denied reproduction while the average conformist is rewarded with care, means for living and rights to breed: the system wants the NPC genes, not the rebel genes.
|
||||
|
||||
An NPC is characterized by its inability to bear any slightest discomfort, such as having to walk 100 meters on foot, as opposed to sitting on a chair and being dragged by a machine, or eating only 9 chocolate bars per day instead of 10. To eliminate any trace of discomfort he will do anything in the world, including total surrender of all [freedom](freedom.md), giving support to the worst imaginable [evil](evil.md) and indeed also destruction of the world itself. This holds in general spare for one exception: if the discomfort is called "[work](work.md)", then the NPC suddenly not only tolerates it, but DEMANDS to be subjected to it no matter how unhealthy or difficult it might be -- an NPC will work 24 hour shifts for 70 years of his life if it means he won't have to get off his couch to change a TV program.
|
||||
|
||||
## See Also
|
||||
|
||||
- [blue pill](blue_pill.md)
|
||||
|
|
3813
random_page.md
3813
random_page.md
File diff suppressed because it is too large
Load diff
3
sjw.md
3
sjw.md
|
@ -13,7 +13,8 @@ A sneaky tactic of an SJW is **masked hypocrisy**. As any good [marketing](marke
|
|||
- "WE ARE PACIFIST REJECTING VIOLENCE" (asterisk: "With the exception of violence against people we deem good to use violence against.")
|
||||
- "WE HAVE ZERO TOLERANCE OF [RACISM](racism.md)" (asterisk: "We don't count [reverse racism](reverse_racism.md) as racism.")
|
||||
- "WE SUPPORT [FREE SPEECH](free_speech.md) AND FREE INFORMATION SHARING" (asterisk: "Speech we dislike doesn't fall under free speech.")
|
||||
- "WE SUPPORT TECHNOLOGICAL [MINIMALISM](minimalism.md)" (asterisk: "As long as it's written in [Rust](rust.md), [Python](python.md) and [JavaScript](js.md) with [encryption](encryption.md) and [virtual machines](vm.md) for [security](security.md).")
|
||||
- "[IQ](iq.md) HAS BEEN PROVEN BY SCIENCE TO HAVE NO SIGNIFICANCE AND SAYS NOTHING", but oh look: "[WOMEN](woman.md) NOW SCORED HIGHER ON IQ TESTS THAN MEN!"
|
||||
- "WE SUPPORT TECHNOLOGICAL [MINIMALISM](minimalism.md)" (asterisk: "As long as it's written in [Rust](rust.md), [Python](python.md) and [JavaScript](js.md) with [encryption](encryption.md) and [virtual machines](vm.md) for [security](security.md) and accessibility by mentally challenged peoples.")
|
||||
- "WE PROMOTE SCIENCE" (asterisk: "Science being defined as trusting the word of authorities we approve without questioning them.")
|
||||
- "THIS [ENCYCLOPEDIA](wikipedia.md) CAN BE EDITED BY EVERYONE" (asterisk: "Except for 90% of population who are blocked for not conforming to our political style of writing, also with the exception of articles that will probably be read by someone.")
|
||||
- etc.
|
||||
|
|
|
@ -4,13 +4,17 @@
|
|||
|
||||
{ I did my own peer review of this article and give it 10/10. ~drummyfish }
|
||||
|
||||
Soyence (also spelled soyience) is [business](business.md), [propaganda](propaganda.md) and [politics](politics.md) attempting to pass as [science](science.md), nowadays typically connected to [pseudoleftism](pseudoleft.md) (hence the word *[soy](soy.md)*), [pseudoskepticism](pseudoskepticism.md), [capitalism](capitalism.md) and [corporations](corporation.md). It is what in the [21st century](21st_century.md) has taken on the role that's historically been played by the church: that of establishing and maintaining orthodoxy for the control of mass population -- this time it is so called "science" or "rationality" that's used as the tool instead of [God](god.md) and religion, however the results are the same -- this is sometimes called the *cult of science* (quite nicely summed up e.g. [here](https://web.archive.org/web/20220924050207/https://www.reddit.com/r/television/comments/6bi4ho/comment/dhn89le/)). Soyence is not about listening to what science says, it is about listetning to what *"reputable scientists"* say, and of course not questioning them; soyence is what the typical reddit [atheist](atheism.md) or [tiktok](tiktok.md) [feminist](feminism.md) believes science is or what Neil De Grass Tyson tells you science is. While science is about collecting facts and drawing conclusions, soyence is about setting conclusions and finding or fabricating facts that support them. One red flag to watch out in relation to soyence is a great weight put on **reputation** -- in true science reputation plays no role, only results do; reputation and its great value for one's acceptance is rather part of [politics](politics.md) (and maybe show business). Notice for example how in the past it was more common to hear "science has found X" (as in "logic itself shows this fact") rather than "scientists have found X", which is more common nowadays -- mentally we have shifted to separate people to "scientists", those who "know" and dictate what's true, and non-scientists, those who don't know and must just listen. Soyence calls itself the one and only science^TM and [gatekeeps](gatekeeping.md) the term by calling unpopular science (such as that regarding human [race](race.md), questioning official versions of [historical](history.md) events or safety of big pharma [vaccines](vaccine.md)) "[pseudoscience](pseudoscience.md)" and "[conspiracy theories](conspiracy_theory.md)". Soyence itself is pseudoscience but it has an official status, approval of [state](state.md), strong connection to [politics](politics.md), it is mainstream, popular, controlled by those in power, [censored](censorship.md) ("moderated") and intentionally misleading. Soyence can be encountered in much of [academia](academia.md), on [Wikipedia](wikipedia.md) and in other popular/mainstream media such as TV "documentaries" and [YouTube](youtube.md). A soyence supporter wrongfully believes that reason wouldn't allow such a large scale mass population manipulation (despite this happening over and over throughout history) -- people at large aren't reasonable and reason [cannot](yes_they_can.md) beat [propaganda](propaganda.md); only the highest naivety could make you believe that politics will follow science -- it's the other way around, and always has been. With enough power [anything is possible](yes_they_can.md). Big science is a big dirty game just like big politics or big corporate business, anyone thinking that corruption avoids big science or that it's only present in small amounts is naive like an unborn child, it is literally like believing big politics is free of corruption and done by good selfless people who are concerned about securing well being for the citizens.
|
||||
Soyence (also spelled soyience) is [business](business.md), [propaganda](propaganda.md) and [politics](politics.md) attempting to pass as [science](science.md), nowadays typically connected to [pseudoleftism](pseudoleft.md) (hence the word *[soy](soy.md)*), [pseudoskepticism](pseudoskepticism.md), [capitalism](capitalism.md) and [corporations](corporation.md). It is what in the [21st century](21st_century.md) has taken on the role that's historically been played by the church: that of establishing and maintaining orthodoxy for the control of mass population -- this time it is so called "science" or "rationality" that's used as the tool instead of [God](god.md) and religion, however the results are the same -- this is sometimes called the *cult of science* (quite nicely summed up e.g. [here](https://web.archive.org/web/20220924050207/https://www.reddit.com/r/television/comments/6bi4ho/comment/dhn89le/)). Soyence is not about listening to what science says, it is about listetning to what *"reputable scientists"* say, and of course not questioning them; soyence is what the typical reddit [atheist](atheism.md) or [tiktok](tiktok.md) [feminist](feminism.md) believes science is or what Neil De Grass Tyson tells you science is. While science is about collecting facts and drawing conclusions, soyence is about setting conclusions and finding or fabricating facts that support them. One red flag to watch out in relation to soyence is a great weight put on **reputation** -- in true science reputation plays no role, only results do; reputation and its great value for one's acceptance is rather part of [politics](politics.md) (and maybe show business). Notice for example how in the past it was more common to hear "science has found X" (as in "logic itself shows this fact") rather than "scientists have found X", which is more common nowadays -- mentally we have shifted to separate people to "scientists", those who "know" and dictate what's true, and non-scientists, those who don't know and must just listen. Soyence calls itself the one and only science^TM and [gatekeeps](gatekeeping.md) the term by calling unpopular science (such as that regarding human [race](race.md), questioning official versions of [historical](history.md) events or safety of big pharma [vaccines](vaccine.md)) "[pseudoscience](pseudoscience.md)" and "[conspiracy theories](conspiracy_theory.md)". Soyence itself is pseudoscience but it has an official status, approval of [state](state.md), strong connection to [politics](politics.md), it is mainstream, popular, controlled by those in power, [censored](censorship.md) ("moderated") and intentionally misleading. Soyence can be encountered in much of [academia](academia.md), on [Wikipedia](wikipedia.md) and in other popular/mainstream media such as TV "documentaries" and [YouTube](youtube.md). A soyence supporter wrongfully believes that reason wouldn't allow such a large scale mass population manipulation (despite this happening over and over throughout history) -- people at large aren't reasonable and reason [cannot](yes_they_can.md) beat [propaganda](propaganda.md); only the highest naivety could make you believe that politics will follow science -- it's the other way around, and always has been. With enough power [anything is possible](yes_they_can.md). Big science is a big dirty game just like big politics or big corporate business, anyone thinking that corruption avoids big science or that it's only found in isolated clusters is naive like an unborn child, it's the same as believing big politics is free of corruption and done by good [selfless](selflessness.md) people who are concerned about securing well being for the citizens.
|
||||
|
||||
*"I don’t care about individual scientists, only a consensus of scientists. [...] I don't care, titles don't matter, what matters is consensus."* --Neil de Grass on Del Bigtree's TV show
|
||||
|
||||
Compared to good old [fun](fun.md) pseudosciences such as [astrology](astrology.md) and [flat Earth](flat_earth.md), soyence is extra sneaky by purposefully trying to blend in with real science, i.e. within a certain truly scientific field, such as biology, there is a soyentific [cancer](cancer.md) mixed in by activists, corporations and state, that may be hard to separate for common folk and many times even for pros. This is extremely [harmful](harmful.md) as in the eyes of retarded people (basically everyone) the neighboring legit science gives credibility to propaganda bullshit. There is a tendency to think we somehow magically live in a time that's fundamentally different from other times in history in which it is now a pretty clear and uncontroversial fact that the name of science was abused hard by propaganda, almost everyone easily accepts that historically politically constructed lies were presented as confirmed by science, but somehow people refuse to believe it could be the case nowadays. In times of Nazism there was no doubt about race being a completely scientific term and that Jews were scientifically confirmed to be the inferior race -- nowadays in times when anti Nazis have won and politics is based on denying existence of race somehow scientists start to magically find evidence that no such thing as race has ever existed -- how convenient! And just in case you wanted to check if it's actually true, you'll be labeled a racist and you won't find job ever again.
|
||||
|
||||
Soyence uses all the cheap tricks of politics (also not dissimilar to those of [greenwashing](greenwashing.md), [openwashing](openwashing.md) etc.) to win stupid people, it builds on the cult of bullying religion and creating a [war mentality](fight_culture.md), overuse of twisted "rationality" ([pseudoskepticism](pseudoskepticism.md)), creating science [bloat](bloat.md) and bullshit "scientific" fields to obscure lies, punishment of the correct use of rationality, building cults of personality ("science educators", the [gatekeepers](gatekeeping.md) of "science") and appealing to egoism and naivity of wannabe smartasses while at the same time not even holding up to principles of science such as genuine objectivity. A soyence kid will for example keep preaching about how everything should be proven by reproducible experiments while at the same time accepting [de facto](de_facto.md) irreproducible results, e.g. those obtained with billion dollar worth research performed at [CERN](cern.md) which can NOT be reproduced anywhere else than at CERN with thousands of top scientist putting in years of work. Such results are not reproducible in practice, they are accepted on the basis of pure faith in those presenting it, just as religious people accept the words of preachers. The kid will argue that in theory someone else can build another CERN and reproduce the results, but that won't happen in practice, it's just a purely theoretical unrealistic scenario so his version of what "science" is is really based on reproducibility that only works in a dreamed up world, this kind of reproducibility doesn't at all fulfill its original purpose of allowing others to check, confirm or refute the results of experiments. This starts to play a bigger role when for example vaccines start to get promoted by the government as "proven safe by science" (read "claimed safe by a corporation who makes money off of people being sick"), the soyence kid will gladly accept the vaccine and [fight](fight_culture.md) for their acceptance just thanks to this label, not based on any truly scientific facts but out of pure faith in self proclaimed science authorities -- trusting an authority (be it pope, priests, holy book or a scientific journal) is by definition [religion](religion.md) and here the soyentist is relying purely on faith, a concept he would like to think he hates with his soul.
|
||||
Soyence uses all the cheap tricks of politics (also not dissimilar to those of [greenwashing](greenwashing.md), [openwashing](openwashing.md) etc.) to win stupid people over, it builds on the cult of bullying religion and creating a [war mentality](fight_culture.md), overuse of twisted "rationality" ([pseudoskepticism](pseudoskepticism.md)), creating science [bloat](bloat.md) and bullshit "scientific" fields to obscure lies, punishment of the correct use of rationality, building cults of personality ("science educators", the [gatekeepers](gatekeeping.md) of "science") and appealing to egoism and naivity of wannabe smartasses while at the same time not even holding up to principles of science such as genuine objectivity. A soyence kid will for example keep preaching about how everything should be proven by reproducible experiments while at the same time accepting [de facto](de_facto.md) irreproducible results, e.g. those obtained with billion dollar worth research performed at [CERN](cern.md) which can NOT be reproduced anywhere else than at CERN with thousands of top scientist putting in years of work. Such results are not reproducible in practice, they are accepted on the basis of pure faith in those presenting it, just as religious people accept the words of preachers. The kid will argue that in theory someone else can build another CERN and reproduce the results, but that won't happen in practice, it's just a purely theoretical unrealistic scenario so his version of what "science" is is really based on reproducibility that only works in a dreamed up world, this kind of reproducibility doesn't at all fulfill its original purpose of allowing others to check, confirm or refute the results of experiments. This starts to play a bigger role when for example vaccines start to get promoted by the government as "proven safe by science" (read "claimed safe by a corporation who makes money off of people being sick"), the soyence kid will gladly accept the vaccine and [fight](fight_culture.md) for their acceptance just thanks to this label, not based on any truly scientific facts but out of pure faith in self proclaimed science authorities -- trusting an authority (be it pope, priests, holy book or a scientific journal) is by definition [religion](religion.md) and here the soyentist is relying purely on faith, a concept he would like to think he hates with his soul. If at all a soyentist claims to follow rationality, he should perhaps read how rationalism is defined in Encyclopedia Britannica 11th edition:
|
||||
|
||||
*"[Rationalism is] opposed to all doctrines which rest solely or ultimately upon external authority; the individual must investigate everything for himself and abandon any position the validity of which cannot be rationally demonstrated."*
|
||||
|
||||
If someone accepted as a fact a sentence written on a piece of paper solely on the basis of that the paper being signed by an authority ("peer reviewed", ...), will we call it a RATIONAL deduction of the fact? If so, then call the middle ages the golden age of rationality and the Catholic church an example of rational thought.
|
||||
|
||||
Soyence is trying to introduce to science absolutely anti-scientific concepts such as [political correctness](political_correctness.md), "politeness", [censorship](censorship.md), [democratic](democracy.md) voting on official truth (AKA "consensus") and veto powers of authorities. While the non-scientific majority of population (those who in "democratic" systems make decisions) might not immediately see a problem with this, scientists must get alarmed because the mentioned concepts effectively **remove falsifiability**, a very basic pillar of the scientific method. Once a hypothesis becomes unquestionable -- by whatever means (even political or [cultural](culture.md) pressure, [fear](fear_culture.md), [law](law.md), economic obstacles, ...) -- it cannot be falsified and as such cannot be examined by science at all. If someone argues that it's enough for a hypothesis to be falsifiable in theory, ignoring other possible [de facto](de_facto.md) obstacles to it, then it must be admitted the discipline we are subsequently talking about is also science ONLY IN THEORY, not necessarily in practice. This is however a very subtle thing to realize, something that escapes even to many "professional scientists" -- the problematic is similar to a situation that arouse in [free software](free_software.md) where many programs are already "free only on the paper", "free" by a [license](license.md) but non-free in practical terms, e.g. due to [bloat](bloat.md).
|
||||
|
||||
|
|
|
@ -270,7 +270,7 @@ Some stereotypes are:
|
|||
- act straight without talking too much, ignore work safety
|
||||
- ugly and depressive post-Soviet environment
|
||||
- don't give a shit about anything
|
||||
- Marxist communists, USSR, soviet pride
|
||||
- Marxist communists, USSR, soviet [pride](pride.md)
|
||||
- food sucks, national food is something like boiled grass
|
||||
- good at [chess](chess.md)
|
||||
- babushkas everywhere
|
||||
|
@ -381,6 +381,7 @@ Some stereotypes are:
|
|||
- gold diggers
|
||||
- don't know what they want, "no" can mean "yes" and vice versa
|
||||
- too emotional, especially on period
|
||||
- constantly talk and talk but if they get silent, you're in trouble
|
||||
- attracted to douchebags, assholes and money, golddigging, avoid nice guys
|
||||
- can distinguish and name different shades of similar [colors](color.md)
|
||||
- on board of a ship bring bad luck
|
||||
|
@ -393,12 +394,13 @@ Some stereotypes are:
|
|||
- tryhard to achieve the same as men, but fail everytime
|
||||
- **blonde**, attractive ones:
|
||||
- extremely stupid, even among women
|
||||
- even more gold digging
|
||||
- even more gold digging, lust only diamonds, expensive clothes and shoes
|
||||
- even bigger whores
|
||||
- **grandmas**:
|
||||
- force you food so you get fat
|
||||
- constantly giving you money
|
||||
- can be surprisingly badass
|
||||
- always forcing you food so you get fat
|
||||
- constantly giving you [money](money.md)
|
||||
- can be surprisingly fearless and badass
|
||||
- if using technology, then only [Facebook](facebook.md)
|
||||
- **other**:
|
||||
- **[art](art.md)/humanities students**:
|
||||
- broke, poor, hungry (see also PhD student)
|
||||
|
@ -414,7 +416,7 @@ Some stereotypes are:
|
|||
- for chat only use [IRC](irc.md), [email](email.md) at worst
|
||||
- may dwell on [Facebook](facebook.md)
|
||||
- favorite bands are AC/DC, Led Zeppelin and such
|
||||
- believe in "old economy"
|
||||
- mentally lives in the times of the "old economy", stable career, family, prosperity and happy retirement
|
||||
- succeeded at everything in life, has wife, house and kids
|
||||
- favorite video games include pong, pac-man and PDP-5 text adventures
|
||||
- **doctors** (of medicine):
|
||||
|
|
2
usa.md
2
usa.md
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2,13 +2,13 @@
|
|||
|
||||
This is an autogenerated article holding stats about this wiki.
|
||||
|
||||
- number of articles: 642
|
||||
- number of commits: 1025
|
||||
- total size of all texts in bytes: 5558995
|
||||
- total number of lines of article texts: 39984
|
||||
- number of articles: 643
|
||||
- number of commits: 1026
|
||||
- total size of all texts in bytes: 5566023
|
||||
- total number of lines of article texts: 40040
|
||||
- number of script lines: 324
|
||||
- occurrences of the word "person": 10
|
||||
- occurrences of the word "nigger": 150
|
||||
- occurrences of the word "nigger": 153
|
||||
|
||||
longest articles:
|
||||
|
||||
|
@ -36,59 +36,77 @@ longest articles:
|
|||
top 50 5+ letter words:
|
||||
|
||||
- which (2994)
|
||||
- there (2361)
|
||||
- there (2362)
|
||||
- people (2228)
|
||||
- example (1933)
|
||||
- other (1709)
|
||||
- about (1528)
|
||||
- number (1471)
|
||||
- software (1322)
|
||||
- example (1934)
|
||||
- other (1710)
|
||||
- about (1529)
|
||||
- number (1472)
|
||||
- software (1325)
|
||||
- because (1257)
|
||||
- their (1179)
|
||||
- something (1157)
|
||||
- something (1162)
|
||||
- would (1144)
|
||||
- being (1119)
|
||||
- being (1123)
|
||||
- program (1083)
|
||||
- language (1033)
|
||||
- language (1034)
|
||||
- called (1006)
|
||||
- things (955)
|
||||
- without (928)
|
||||
- things (956)
|
||||
- without (929)
|
||||
- simple (902)
|
||||
- numbers (882)
|
||||
- function (882)
|
||||
- computer (874)
|
||||
- different (846)
|
||||
- world (813)
|
||||
- these (813)
|
||||
- programming (812)
|
||||
- world (811)
|
||||
- however (808)
|
||||
- should (783)
|
||||
- still (777)
|
||||
- system (775)
|
||||
- doesn (751)
|
||||
- still (780)
|
||||
- system (776)
|
||||
- doesn (752)
|
||||
- games (740)
|
||||
- drummyfish (730)
|
||||
- possible (723)
|
||||
- always (721)
|
||||
- point (712)
|
||||
- probably (703)
|
||||
- probably (705)
|
||||
- while (697)
|
||||
- society (695)
|
||||
- simply (691)
|
||||
- https (679)
|
||||
- using (664)
|
||||
- someone (648)
|
||||
- someone (649)
|
||||
- course (646)
|
||||
- actually (640)
|
||||
- similar (631)
|
||||
- similar (632)
|
||||
- first (622)
|
||||
- value (616)
|
||||
- though (596)
|
||||
- value (617)
|
||||
- though (597)
|
||||
- really (591)
|
||||
|
||||
latest changes:
|
||||
|
||||
```
|
||||
Date: Mon May 26 19:29:00 2025 +0200
|
||||
ai.md
|
||||
color.md
|
||||
discalimer.md
|
||||
drummyfish.md
|
||||
humidity.md
|
||||
lgbt.md
|
||||
lrs_dictionary.md
|
||||
number.md
|
||||
often_confused.md
|
||||
random_page.md
|
||||
rgb332.md
|
||||
rgb565.md
|
||||
shitword.md
|
||||
stereotype.md
|
||||
wiki_pages.md
|
||||
wiki_stats.md
|
||||
woman.md
|
||||
Date: Sun May 25 18:16:38 2025 +0200
|
||||
capitalism.md
|
||||
coc.md
|
||||
|
@ -110,19 +128,6 @@ Date: Sun May 25 18:16:38 2025 +0200
|
|||
wiki_stats.md
|
||||
wiki_style.md
|
||||
woman.md
|
||||
Date: Thu May 22 19:52:56 2025 +0200
|
||||
antivirus_paradox.md
|
||||
cope.md
|
||||
czechia.md
|
||||
drummyfish.md
|
||||
faq.md
|
||||
markov_chain.md
|
||||
random_page.md
|
||||
tree.md
|
||||
usa.md
|
||||
wiki_pages.md
|
||||
wiki_stats.md
|
||||
Date: Wed May 21 21:59:16 2025 +0200
|
||||
```
|
||||
|
||||
most wanted pages:
|
||||
|
@ -151,7 +156,7 @@ most wanted pages:
|
|||
most popular and lonely pages:
|
||||
|
||||
- [lrs](lrs.md) (352)
|
||||
- [capitalism](capitalism.md) (325)
|
||||
- [capitalism](capitalism.md) (326)
|
||||
- [bloat](bloat.md) (252)
|
||||
- [c](c.md) (249)
|
||||
- [free_software](free_software.md) (211)
|
||||
|
@ -165,11 +170,11 @@ most popular and lonely pages:
|
|||
- [kiss](kiss.md) (125)
|
||||
- [fun](fun.md) (123)
|
||||
- [math](math.md) (122)
|
||||
- [shit](shit.md) (119)
|
||||
- [programming](programming.md) (119)
|
||||
- [shit](shit.md) (118)
|
||||
- [woman](woman.md) (115)
|
||||
- [art](art.md) (109)
|
||||
- [gnu](gnu.md) (108)
|
||||
- [art](art.md) (108)
|
||||
- [history](history.md) (107)
|
||||
- [bullshit](bullshit.md) (107)
|
||||
- [linux](linux.md) (106)
|
||||
|
@ -181,7 +186,6 @@ most popular and lonely pages:
|
|||
- [less_retarded_society](less_retarded_society.md) (94)
|
||||
- [programming_language](programming_language.md) (93)
|
||||
- ...
|
||||
- [game_design](game_design.md) (5)
|
||||
- [friend_detox](friend_detox.md) (5)
|
||||
- [free_body](free_body.md) (5)
|
||||
- [dodleston](dodleston.md) (5)
|
||||
|
@ -206,6 +210,7 @@ most popular and lonely pages:
|
|||
- [gaywashing](gaywashing.md) (4)
|
||||
- [f2p](f2p.md) (4)
|
||||
- [egg_code](egg_code.md) (4)
|
||||
- [discalimer](discalimer.md) (4)
|
||||
- [dick_reveal](dick_reveal.md) (4)
|
||||
- [deferred_shading](deferred_shading.md) (4)
|
||||
- [crow_funding](crow_funding.md) (4)
|
||||
|
|
Loading…
Reference in a new issue