Update
This commit is contained in:
parent
6f8eee7efa
commit
ff6c15886f
11 changed files with 2009 additions and 1991 deletions
|
@ -12,6 +12,8 @@ Compression means encoding [data](data.md) (such as images or texts) in a differ
|
|||
|
||||
We should also mention compression is not applied just to files on hard drives, it may just as well be used let's say in [RAM](ram.md) to utilize it more efficiently. [OpenGL](opengl.md) for instance offers the option to compress textures uploaded to the [GPU](gpu.md) to save space.
|
||||
|
||||
As for computational [complexity](complexity.md), it is mostly safe to assume that compression will be more demanding than decompression in terms of resources, and sometimes it's possible to dedicate more resources (time, memory, electricity, ...) to achieve a better compression ratio, i.e. we can "try harder" to "compress the file more". Whereas a compressed file can always be decoded only in one way (to obtain the original file) and the decompression process is normally quite fast and straightforward (e.g. "replace symbols with words from a dictionary"), it happens often that a file can be compressed in many different ways, some of which are better (smaller), and seldom there is another way but [brute force](brute_force.md) to find the best one. This asymmetry in cost of compression and decompression can be advantageous though, considering typical scenarios such as distributing compressed video over the Internet: we have to dedicate a lot of [CPU](cpu.md) time to compress the video well, but only once. The video will then be distributed to many clients and we are benefiting from saved bandwidth on every single copy we transfer, and thanks to simplicity of decompression the clients (of which there are many) aren't bothered nearly as much -- the total cost we're collectively paying is much smaller than if compression was cheap and decompression expensive.
|
||||
|
||||
Why don't we compress everything? Firstly because compressed data is slow to work with, it requires significant [CPU](cpu.md) time to compress and decompress data, it's a kind of a space-time tradeoff (we gain more storage space for the cost of CPU time). Compression also [obscures](obscurity.md) data, for example compressed text file will typically no longer be human readable, any code wanting to work with such data will have to include the nontrivial decompression code. Compressed data is also more prone to [corruption](corruption.md) because redundant information (which can help restoring corrupted data) is removed from it -- in fact we sometimes purposefully do the opposite of compression and make our data bigger to protect it from corruption (see e.g. [error correcting](error_correction.md) codes, [RAID](raid.md) etc.). And last but not least, many data can hardly be compressed or are so small it's not even worth it.
|
||||
|
||||
The basic division of compression methods is to:
|
||||
|
|
|
@ -8,6 +8,8 @@ Gopher **doesn't use any [encryption](encryption.md)** (though some servers allo
|
|||
|
||||
**How big is/was gopherspace?** In 1994 there were over 1300 gopher servers (source: 1994 book *Finding it on the Internet"*), around 1995 there were already more than 6000 (source: 1995 video *Searching the Internet - Gopher | The Internet Revealed*). Most of them are now gone, in 2005 there were only 145 servers reported by Veronica search engine (source: *2007 gopher archive*), though Gopher recently saw a new wave of popularity. As of 2023 the Veronica search engine reported 315 gopher servers in the world with 5+ million indexed selectors, which they estimated was 83% of the whole gopherspace (the peak server count was in 2020 at almost 400). Quarry search engine reports 369 servers and 1+ million indexed selectors. Contrition search engine reported even 495 servers and 7+ million selectors. The "grawler" crawler of gopherspace.de reported 192 active servers at the beginning of 2016, 182 in 2020, 413 in 2023 (bumped its search list) and 380 in 2024. Gopher LAWN directory (made by [bitreich](bitreich.md)) contains 281 selected quality gopher holes.
|
||||
|
||||
{ PRO TIP: **Do you want to make your own gopher index?** You can easily use FOSS web crawlers such as [Yacy](yacy.md) and some kind of gopher web proxy. I tried it and it works, just remember to tell the crawler to not obey robots.txt as the proxies usually don't want to be crawled, just shit on them. This can not only give you a map of the gopherspace but also fulltext search. ~drummyfish }
|
||||
|
||||
From the user's perspective **the most important distinction from the Web** is that gopher is based on **menus** instead of "webpages"; a menu is simply a column of items of different predefined types, most importantly e.g. a *text file* (which clients can directly display), *directory* (link to another menu), *text label* (just shows some text), *binary file* etc. A menu can't be formatted or visually changed, there are no colors, images, scripts or [hypertext](hypertext.md) -- a menu is not a presentation tool, it is simply a navigation node towards files users are searching for (but the mentioned ASCII art and label items allow for somewhat mimicking "websites" anyway). Gopher is also often **browsed from the [command line](cli.md)**, though graphical clients are a thing too. Addressing works with [URLs](url.md) just as the Web, the URLs just differ by the protocol part (`gopher://` instead of `http://`), e.g.: `gopher://gopher.floodgap.com:70/1/gstats`. What on Web is called a "website" on gopher we call a **gopherhole** or just *hole* (i.e. a collection of resources usually under a single [domain](domain.md)) and the whole gopher network is called a **gopherspace**. [Blogs](blog.md) are common on gopher and are called **phlogs** (collectively a *phlogosphere*). As menus can refer to one another, gopher creates something akin to a **global [file system](file_system.md)**, so browsing gopher is like browsing folders and can comfortably be handled with just 4 arrow keys. Note that as menus can link to any other menu freely, the structure of the "file system" is not a [tree](tree.md) but rather a general [graph](graph.md). Another difference from the Web is gopher's great emphasis on **[plaintext](plaintext.md) and [ASCII art](ascii_art.md)** as it cannot embed images and other media in the menus (even though of course the menus can link to them). There is also a support for sending text to a server so it is possible to implement [search engines](search_engine.md), guest books, [games](game.md) etc.
|
||||
|
||||
Gopher is just an [application layer](l7.md) [protocol](protocol.md) (officially running on [port](port.md) 70 assigned by [IANA](iana.md)), i.e it sits above lower layer protocols like [TCP](tcp.md) and takes the same role as [HTTP](http.md) on the Web and so only defines how clients and servers talk to each other -- the gopher protocol doesn't say how menus are written or stored on servers. Nevertheless for the creation of menus so called **gophermaps** have been established, which is a simple format for writing menus and are the gopher equivalent of Web's [HTML](html.md) files (just much simpler, basically just menu items on separate lines, the exact syntax is ultimately defined by server implementation). A server doesn't have to use gophermaps, it may be e.g. configured to create menus automatically from directories and files stored on the server, however gophermaps allow users to write custom menus manually. Typically in someone's gopherhole you'll be served a welcoming intro menu similar to a personal webpage that's been written as a gophermap, which may then link to directories storing personal files or other hand written menus. Some gopher servers also allow creating dynamic content with scripts called **moles**.
|
||||
|
|
16
hitler.md
16
hitler.md
|
@ -4,7 +4,7 @@
|
|||
|
||||
Adolf Hitler was a painter who killed several million [Jews](jew.md).^([citation needed]) Widely regarded as the absolute worst human in whole [history](history.md), his name itself has become a common insult, argument fallacy, synonym of [evil](evil.md), cruelty and satanic behavior. He is best known for having been the leader of [Nazis](nazi.md), starting World War II, conducting genocide of Jews ([Holocaust](holocaust.md)) and starring as final boss in [Wolfenstein 3D](wolf3D.md) (spoiler alert). The most memorable part of his image was definitely the toothbrush moustache he wore, undercut hair and strong voice he combined with theatrical performance to deliver speeches that captured crowds of millions (basically like today's [TikTok](tiktok.md) celebrities, but he did it all real time and without the [Internet](internet.md)).
|
||||
|
||||
How many jews exactly he killed is a subject of very controversial debates, but for example in many parts of [Europe](europe.md) it is now REQUIRED BY [LAW](law.md) to acknowledge at least 6 million OR ELSE -- if you argue it was fewer, even by ONE jew, you are officially committing the crime of "Holocaust denial" (see also [wrongthink](wrongthink.md)). In any case the facts speak that he was the **head of the [Nazi](nazi.md) party** (NSDAP) -- which openly fanatically hated Jews -- later on also the head of whole Germany -- there he was called *Fuhrer* ("[leader](hero_culture.md)") -- and, most importantly, **started [World War II](ww2.md)**, the deadliest conflict in whole [history](history.md) with countless millions of victims on all sides; he was a [militant](military.md) [nationalist](nationalism.md) [fascist](fascism.md), [racist](racism.md) (in the TRUE sense of the world) and a state [capitalist](capitalism.md) -- i.e. probably an incarnation of devil himself. In reality he was no different from an average [CEO](ceo.md) in our [current days](21st_century.md): the word "impossible" didn't exist in Hitler's dictionary. He was a great, highly respected [leader](hero_culture.md), patriot loving his country above all, an amazing inspirational speaker with unique, memorable image, a charismatic, confident, [productive](productivity_cult.md) and [assertive](assertiveness.md) psychopath chasing his goal tirelessly by any means necessary, who dedicated everything to his vision and worked day and night to achieve it, who created order by force, brought what he perceived as [justice](justice.md), who gave people great many [jobs](work.md) and achieved unprecedented technological [progress](progress.md), created many industries and on top he was a [war](war.md) [hero](hero_culture.md.md) -- this in essence is what every [American](usa.md) ever strives to be. He really was just like Churchill with only one difference: he lost the war. His methods for maximizing self interest through populism, force, [fear](fear_culture.md) and political flexibility were so successful in fact that they were subsequently adopted by the whole western world, our [current society](21st_century.md) can now be viewed as consisting solely of aspiring Hitlers: everyone who means anything in our highly [competitive](competition.md) [capitalist](capitalism.md) society has to master the essential skills of lying, manipulation, populist rhetoric, abuse of power, dirty political games, [propaganda](marketing.md), scaremongering and a myriad of others. In this Hitler was very ahead of his time and did away with all the naive thinkers who thought it was possible to achieve things by legitimate, even ethical means.
|
||||
How many jews exactly he killed is a subject of very controversial debates, but for example in many parts of [Europe](europe.md) it is now REQUIRED BY [LAW](law.md) to acknowledge at least 6 million OR ELSE -- if you argue it was fewer, even by ONE jew, you are officially committing the crime of "Holocaust denial" (see also [wrongthink](wrongthink.md)). In any case the facts speak that he was the **head of the [Nazi](nazi.md) party** (NSDAP) -- which openly fanatically hated Jews -- later on also the head of whole Germany -- there he was called *Fuhrer* ("[leader](hero_culture.md)") -- and, most importantly, **started [World War II](ww2.md)**, the deadliest conflict in whole [history](history.md) with countless millions of victims on all sides; he was a [militant](military.md) [nationalist](nationalism.md) [fascist](fascism.md), [racist](racism.md) (in the TRUE sense of the world) and a state [capitalist](capitalism.md) -- i.e. probably an incarnation of devil himself. In reality he was no different from an average [CEO](ceo.md) in our [current days](21st_century.md): the word "impossible" didn't exist in Hitler's dictionary. He was a great, highly respected [leader](hero_culture.md), patriot loving his country above all, an amazing inspirational speaker with unique, memorable image, a charismatic, confident, [productive](productivity_cult.md) and [assertive](assertiveness.md) psychopath chasing his goal tirelessly by any means necessary, who dedicated his soul to a vision and worked day and night to achieve it, who created order with [law](law.md), brought what he perceived as [justice](justice.md), who gave people great many [jobs](work.md) and achieved unprecedented technological [progress](progress.md), created many industries and on top he was a [war](war.md) [hero](hero_culture.md.md) -- this in essence embodies what every [American](usa.md) ever strives to be. He really was just like Churchill with only one difference: he lost the war. His methods for maximizing self interest through populism, force, [fear](fear_culture.md) and political flexibility were so successful in fact that they were subsequently adopted by the whole western world, our [current society](21st_century.md) can now be viewed as consisting solely of aspiring Hitlers: everyone who means anything in our highly [competitive](competition.md) [capitalist](capitalism.md) society has to master the essential skills of lying, manipulation, populist rhetoric, abuse of power, dirty political games, [propaganda](marketing.md), scaremongering and a myriad of others. In this Hitler was very ahead of his time and did away with all the naive thinkers who thought it was possible to achieve things by legitimate, even ethical means. Hitler indeed believed that [greed is good](capitalism.md) and you should never give up.
|
||||
|
||||
```
|
||||
_.-.._
|
||||
|
@ -18,12 +18,12 @@ How many jews exactly he killed is a subject of very controversial debates, but
|
|||
|
||||
*Hitler*
|
||||
|
||||
Just like every capitalist/leader/entrepreneur/etc. he only lived thinking about [competition](competition.md) and showed us what is needed if you take competing seriously and truly WANT to win, not just participate. Hitler was basically a **[pseudoleftist](pseudoleft.md)** and **his methods are mimicked by modern pseudoleft, most notably [LGBT](lgbt.md) and [feminism](feminism.md)**. For example:
|
||||
Just like every capitalist/leader/entrepreneur/etc. he only lived thinking about [competition](competition.md) and showed us what is needed if you take competing seriously and truly WANT to win, not just participate -- he lost his biggest game but indeed, in the meantime, achieved victories that most will only ever dream of. Hitler was basically a **[pseudoleftist](pseudoleft.md)** and **his methods are mimicked by modern pseudoleft, most notably [LGBT](lgbt.md) and [feminism](feminism.md)**. For example:
|
||||
|
||||
- He misleadingly called himself a "[socialist](socialism.md)" (his party was called "National Socialist German Workers' Party") despite being a pure example of rightism (e.g. by arguing for strong hierarchies everywhere in society: in state, among races, in military etc.), a [fascist](fascism.md) aiming to benefit the group he belonged to (Germans, white [race](race.md)), just as LGBT/feminists call themselves "leftist" and "socialist" despite actually being fascists who want to benefit the group they belong to (gays/females).
|
||||
- He brainwashed children: see Hitlerjugend. He knew children are an easy target for propaganda and that they would grow up to be soldiers [fighting](fight_culture.md) for whatever they were taught as young. This is what LGBT/feminism does nowadays with all the woke children fairytales etc.
|
||||
- He deceivingly called himself a "[socialist](socialism.md)" (his party was called "National Socialist German Workers' Party") despite being a pure example of rightism (e.g. by arguing for strong hierarchies everywhere in society: in state, among [races](race.md), in military etc.), a [fascist](fascism.md) aiming to benefit the group he belonged to (Germans, white [race](race.md)), just as LGBT/feminists call themselves "leftist" and "socialist" despite actually being fascists who want to benefit the group they belong to (gays/females).
|
||||
- He brainwashed children: see Hitlerjugend. He knew children pose an easy target for propaganda and that they'd grow up to become soldiers [fighting](fight_culture.md) for whatever they were taught as young. This is what LGBT/feminism does nowadays with all the woke children fairytales etc.
|
||||
- He manipulated [science](science.md), for example he refused discoveries made by Jewish scientists. Similar things are happening with [soyence](soyence.md). See [gender studies](gender_studies.md).
|
||||
- He absolutely loved propaganda, especially movies, he knew that's how you brainwash the masses very effectively. This is exactly what LGBT/feminism does with all the woke movies etc.
|
||||
- He absolutely loved propaganda, especially movies, he knew that insofar as manipulating the masses goes, mass media brainwashing always falls on a fertile ground. This is exactly what LGBT/feminism does with all the woke movies and shit.
|
||||
- He practiced hardcore [censorship](censorship.md) and ritual destruction of works deemed "harmful" to the regime, famously supporting public burning of books that were not aligned with his ideology, such as those written by Jews. This is the same as what LGBT/feminists nowadays do with old works that are "too focused on white men" etc.
|
||||
- He loved [military](military.md) parades, demonstrations of power, waving flags and creating [fear](fear_culture.md) -- again, just like what we see with all the gay parades, gay flags, [cancel culture](cancel_culture.md) etc.
|
||||
- ...
|
||||
|
@ -34,8 +34,10 @@ Numerous "conspiracy theories" revolve around Hitler, to name just some:
|
|||
|
||||
- Was he a jew?
|
||||
- Was he an alien?
|
||||
- Was his death only faked and is he still alive? Possible places of hiding include: Argentina, another planet, inside of [Earth](earth.md) (the Hollow Earth theory), ...
|
||||
- Did he actually ever give order for the Holocaust?
|
||||
- Was he an incarnation of devil?
|
||||
- Was he worse than [Elon Musk](elon_musk.md)?
|
||||
- Was his death faked and does he still in fact live? Possible hiding places include: Argentina, another planet, another dimension or inside of the [Earth](earth.md) (assumes the Hollow Earth model).
|
||||
- Did he actually ever directly order the Holocaust?
|
||||
|
||||
## See Also
|
||||
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
| [Hyperbola](hyperbola.md) | Hyperbloat |
|
||||
| [identity](identity.md) | pose |
|
||||
| Immanuel Kant | Immanuel Cunt, Immanuel Can't (sorry, just too obvious :D) |
|
||||
| [incest](incest.md) | wincest |
|
||||
| influencer | manipulator |
|
||||
| [Intel](intel.md) | [Incel](incel.md) |
|
||||
| [interactive](interactivity.md) | hyperactive |
|
||||
|
|
|
@ -1,16 +1,18 @@
|
|||
# Luke Smith
|
||||
|
||||
Luke Smith was -- before becoming [crypto](crypto.md) [influencer](influencer.md), scam promoter and a generic turd in a suit (around 2022) -- an [American](usa.md) [Internet](internet.md) tech mini pseudocelebrity known for making videos about [suckless](suckless.md) software, independent living in the woods and here and there about [historical](history.md), political, linguistic and religious topics. He played a big role in making suckless more popular, however he later started to behave in hugely retarded ways and now isn't worth following anymore.
|
||||
Noteworthy to [suckless](suckless.md) lore, Luke Smith was (prior to becoming a [crypto](crypto.md) [influencer](influencer.md), scam promoter and a generic turd in a suit, circa 2022) an [American](usa.md) [Internet](internet.md) tech mini pseudocelebrity known for making videos about suckless software, independent living in the woods and here and there about [historical](history.md), political, linguistic and religious topics. He played a big role in making suckless more popular and is known as its most well known promoter, however he later on started to behave in hugely retarded ways and now isn't worth following anymore.
|
||||
|
||||
His look has been described as the *default Runescape character* (UPDATE: now adopted a Charles Darwin image): he is bald, over 30 years old (probably born around 1990) and lives in a rural location in Florida (exact coordinates have been doxxed but legally can't be shared here, but let's just say the road around his house bears his name). He is a [Christian](christianity.md) (well, the [militant](military.md) [fascist](fascism.md) USA "Christian") he goes to the church etc. He has a podcast called *Not Related!* (https://notrelated.xyz/) in which he discusses things such as alternative historical theories -- actually a great podcast. He has a minimalist [90s](90s.md) style website https://lukesmith.xyz/ and his own [peertube](peertube.md) instance where his videos can be watched if one doesn't want to watch them on [YouTube](youtube.md). He is the author of [LARBS](larbs.md) and minimalist recipe site https://based.cooking/ (recently he spoiled the site with some shitty web framework lol).
|
||||
It's been stated in his comment section that he looks like the *default Runescape character* (UPDATE: now adopted a Charles Darwin image): he is bald, over 30 years old (probably born around 1990) and lives in a rural location in Florida (exact coordinates have been doxxed but legally can't be shared here, but let's just say the road around his house bears his name). He is a [Christian](christianity.md) (well, the [militant](military.md) [fascist](fascism.md) USA "Christian") he goes to the church etc. He has a podcast called *Not Related!* (https://notrelated.xyz/) in which he discusses things such as alternative historical theories -- actually a great podcast. He has a minimalist [90s](90s.md) style website https://lukesmith.xyz/ and his own [peertube](peertube.md) instance where his videos can be watched if one doesn't want to watch them on [YouTube](youtube.md). He is the author of [LARBS](larbs.md) and minimalist recipe site https://based.cooking/ (recently he spoiled the site with some shitty web framework lol).
|
||||
|
||||
He used to be kind of [based](based.md) in things like identifying harmfulness of [bloat](bloat.md) and [soyence](soyence.md), but also retarded to a very high level other times, for example he used to shill the [Brave](brave.md) browser pretty hard before he realized it was actually a huge scam all along xD He's openly a rightist fascist, [capitalist](capitalism.md), also probably a Nazi etc. In July 2022 **he started promoting some bloody [bloated](bloat.md) [modern](modern.md) [tranny](tranny_software.md) website generator that literally uses [JavaScript](js.md)**? WHAT THE FUCK. Like a good [capitalist](capitalism.md) (to which he self admitted in his podcast) he instantly turned 180 degrees against his own teaching as soon as he smelled the promotion money. Also he's shilling [crypto](crypto.md), he lets himself be paid for promoting extremely shitty webhosts in his web tutorials, he's anti-[porn](porn.md), anti-[games](game.md), anti-fun and leans towards medieval ideas such as "imagination and boredom being [harmful](harmful.md) because it makes you watch porn" etc. He went to huge [shit](shit.md), you wouldn't even believe. Though he even now still probably promotes [suckless](suckless.md) somehow, he isn't a programmer (shell scripting isn't programming) and sometimes doesn't seem to understand basic programming ideas (such as branchless programming), he's more of a typical [productivity](productivity_cult.md) retard. For Luke suckless is something more akin to a brand he associated himself with, something he plays a mascot for because it provided him with a bit of personal convenience, this guy doesn't even care about deeper values it seems. As of 2023 he seems to have become obsessed with adopting a new identity of a turd in a very cheap suit, he literally looks like the door-to-door scam seller lol. All in all, a huge letdown. Of course, Luke is a [type B fail](fail_ab.md).
|
||||
Great many things Luke has rambled about turned out to be absolutely [based](based.md) and true, especially in his beginnings: he identified and revealed the harmfulness of [shit](shit.md) such as [bloat](bloat.md) and [soyence](soyence.md), and communicated it well to the common folk, but other times he's been highly retarded too, for example he used to shill the [Brave](brave.md) browser pretty hard before he realized it was actually a huge scam all along xD He's openly a rightist fascist, [capitalist](capitalism.md), also probably a Nazi etc. In July 2022 **he started promoting some bloody [bloated](bloat.md) [modern](modern.md) [tranny](tranny_software.md) website generator that literally uses [JavaScript](js.md)**? WHAT THE FUCK. Like a good [capitalist](capitalism.md) (to which he self admitted in his podcast) he instantly turned 180 degrees against his own teaching as soon as he smelled the promotion money. Also he's shilling [crypto](crypto.md), he lets himself be paid for promoting extremely shitty webhosts in his web tutorials, he's anti-[porn](porn.md), anti-[games](game.md), anti-fun and leans towards medieval ideas such as "imagination and boredom being [harmful](harmful.md) because it makes you watch porn" etc. He went to huge [shit](shit.md), you wouldn't even believe. Though he even now still probably promotes [suckless](suckless.md) somehow, he isn't a programmer (shell scripting isn't programming) and sometimes doesn't seem to understand basic programming ideas (such as branchless programming), he's more of a typical [productivity](productivity_cult.md) retard. For Luke suckless is something more akin to a brand he associated himself with, something he plays a mascot for because it provided him with a bit of personal convenience, this guy doesn't even care about deeper values it seems. As of 2023 he seems to have become obsessed with adopting a new identity of a turd in a very cheap suit, he literally looks like the door-to-door scam seller lol. All in all, a huge letdown. Of course, Luke is a [type B fail](fail_ab.md).
|
||||
|
||||
His videos consisted of normie-friendly tutorials on suckless software, rants, independent living, live-streams and podcasts. The typical Luke Smith video is him walking somewhere in the middle of a jungle talking about how retarded modern technology is and how everyone should move to the woods.
|
||||
Go and watch a few of his videos if you will, but prefer the older ones. They mostly consisted of normie-friendly tutorials on suckless software, rants and ramblings around independent living and even live streams and podcasts. The typical Luke Smith video is him walking somewhere in the middle of a jungle talking about how retarded and bloated modern technology is and how everyone should move to the woods.
|
||||
|
||||
Luke studies [PhD](phd.md) in linguistics but is very critical of academia -- he "speaks" several languages (including [Latin](latin.md)), though many of them to a low level with bad American accent and he can't sometimes even speak English correctly (using phrases such as "the reason is because", "less people" etc.). He is a self described [right-winder](left_right.md), retarded [capitalist](capitalism.md) and talks in meme phrases which makes his "content" kind of enjoyable. He despises such things as [soydevry](soydev.md), [bloat](bloat.md), "consoomerism" (though he loves money he makes off of it) and [soyence](soyence.md).
|
||||
Earlier in his videos Luke mentioned he studied [PhD](phd.md) in linguistics (maybe he already has it?) but was very critical of [academia](academia.md) -- he "speaks" several languages (including [Latin](latin.md)), though many of them to a low level with bad American accent and he can't sometimes even speak English correctly (using phrases such as "the reason is because", "less people" etc.). He is a self described [right-winder](left_right.md), retarded [capitalist](capitalism.md) and talks in meme phrases which makes his "content" kind of enjoyable. He despises such things as [soydevry](soydev.md), [bloat](bloat.md), "consoomerism" (though he loves money he makes off of it) and [soyence](soyence.md).
|
||||
|
||||
There seems to be a guy who could very well be Luke's brother, Jacob W Smith -- he has a website at https://jacobwsmith.xyz/index.html, he shares many Luke's opinions, writes about him, is a member of Christian webring, seems of similar age, also the name etcetc.
|
||||
Rather [interesting](interesting.md) was also the discovery of a website of someone who might be Luke's brother, Jacob W Smith -- he has a website at https://jacobwsmith.xyz/index.html, he shares many Luke's opinions, writes about him, is a member of Christian webring, seems of similar age, also the name etcetc.
|
||||
|
||||
{ Note to self: make sure the starting paragraph letters stay the same. ~drummyfish }
|
||||
|
||||
So for realz, is he retarded or based? Both: when talking about his field of expertise -- linguistics/history -- he's quite good; when talking about technology, you have to do a lot of filtering and once he goes on about political opinions, you just cover your ears and go NANANANANANA.
|
||||
|
||||
|
|
2
main.md
2
main.md
File diff suppressed because one or more lines are too long
3816
random_page.md
3816
random_page.md
File diff suppressed because it is too large
Load diff
|
@ -349,13 +349,14 @@ Some stereotypes are:
|
|||
- privileged, rich, go to prestigious universities, wear suits, play golf, are members of VIP clubs
|
||||
- sometimes supremacists, "oppress" other [races](race.md) (knowingly or not)
|
||||
- not many strong stereotypes as whiteness is seen as the default, the norm to which others are compared
|
||||
- **by sex/gender/orientation**:
|
||||
- **by sex/gender/orientation/natural social role**:
|
||||
- **[gays](gay.md)**:
|
||||
- men act feminine, are good at [art](art.md) and women jobs, like pink color, fashion, cooking and cleaning, extroverted
|
||||
- there are two types: the feminine sissy and the big hairy bear biker, in a pair one does mommy and the other one daddy
|
||||
- there are two types of gay men:
|
||||
- the sissy: easily recognizable, act feminine and theatrical, are good at [art](art.md) and woman jobs like ballet and organizing weddings, like pink color, fashion, cooking and cleaning, are extroverted and social, love parties and talking on phone for hours, in a pair plays the mommy
|
||||
- the big hairy bear biker, [tattooed](tattoo.md) with beard, is silent and never smiles, in a pair plays the daddy, harder to recognize as gay
|
||||
- love to wear latex and leather
|
||||
- women (lesbian) are masculine, ugly with short pink hair
|
||||
- spread [AIDS](aids.md)
|
||||
- women (lesbian) are masculine, muscular, have deep voice, ugly with short pink hair, behave a lot like men (are tough, like cars, wear pants, ...)
|
||||
- spread [AIDS](aids.md) or a similar [disease](disease.md)
|
||||
- **[men](man.md)**:
|
||||
- direct, strong, decisive, stubborn, overconfident, primitive, irresponsible, conservative, when provoked may easily become rude and aggressive, beat their wives
|
||||
- [competitive](competition.md)
|
||||
|
@ -369,23 +370,28 @@ Some stereotypes are:
|
|||
- "racist", no political correctness
|
||||
- like games such as bingo, crosswords and [sudoku](sudoku.md)
|
||||
- pants pulled up high, newsboy cap
|
||||
- **[transsexual](transsexual.md)**:
|
||||
- always male to female
|
||||
- always a [programmer](programming.md) (or rather "[coder](coding.md)", there exists nothing else a tranny can do
|
||||
- 100% insane, depressed, [suicidal](suicide.md), self harm scars, no transsexual ever died of old age
|
||||
- either a cute trap or absolutely disgusting and hilariously failed transition
|
||||
- **[women](woman.md)** (may also apply to gay men):
|
||||
- bad at driving, bad spatial skills
|
||||
- bad at logical thinking and [math](math.md)
|
||||
- bad at [logical](logic.md) thinking and [math](math.md)
|
||||
- manipulative, calculating, acting and pretending
|
||||
- passive aggressive
|
||||
- whores
|
||||
- bitches
|
||||
- good at [multitasking](multitasking.md)
|
||||
- good at [multitasking](multitasking.md), also potentially good "soft skills" like organizing people
|
||||
- gossip
|
||||
- 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
|
||||
- attracted to douchebags, assholes and [money](money.md), golddigging, avoid nice guys
|
||||
- can distinguish and name different shades of similar [colors](color.md)
|
||||
- on board of a ship bring bad luck
|
||||
- love fashion, the color pink, Barbie dolls, cleaning, ironing, cooking etc.
|
||||
- love fashion, the color pink, romantic comedies, Barbie dolls, cleaning, ironing, cooking etc.
|
||||
- get good grades at school because of tryharding, memorization (without deep understanding), following rules and diligence, i.e. conformance (which the corrupt system rewards before talent and actual skill), but still can't catch up to men at math
|
||||
- secretly want to have sex with [dogs](dog.md) rather than men
|
||||
- read manuals
|
||||
|
|
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
119
wiki_stats.md
119
wiki_stats.md
|
@ -3,9 +3,9 @@
|
|||
This is an autogenerated article holding stats about this wiki.
|
||||
|
||||
- number of articles: 643
|
||||
- number of commits: 1027
|
||||
- total size of all texts in bytes: 5571776
|
||||
- total number of lines of article texts: 40057
|
||||
- number of commits: 1028
|
||||
- total size of all texts in bytes: 5577082
|
||||
- total number of lines of article texts: 40087
|
||||
- number of script lines: 324
|
||||
- occurrences of the word "person": 10
|
||||
- occurrences of the word "nigger": 155
|
||||
|
@ -35,60 +35,79 @@ longest articles:
|
|||
|
||||
top 50 5+ letter words:
|
||||
|
||||
- which (2996)
|
||||
- there (2363)
|
||||
- people (2233)
|
||||
- example (1938)
|
||||
- other (1710)
|
||||
- about (1530)
|
||||
- number (1472)
|
||||
- which (2998)
|
||||
- there (2364)
|
||||
- people (2236)
|
||||
- example (1939)
|
||||
- other (1713)
|
||||
- about (1529)
|
||||
- number (1471)
|
||||
- software (1326)
|
||||
- because (1260)
|
||||
- their (1180)
|
||||
- something (1165)
|
||||
- would (1147)
|
||||
- being (1125)
|
||||
- program (1084)
|
||||
- their (1183)
|
||||
- something (1167)
|
||||
- would (1148)
|
||||
- being (1126)
|
||||
- program (1085)
|
||||
- language (1034)
|
||||
- called (1008)
|
||||
- things (956)
|
||||
- without (931)
|
||||
- things (957)
|
||||
- without (932)
|
||||
- simple (902)
|
||||
- numbers (882)
|
||||
- numbers (883)
|
||||
- function (882)
|
||||
- computer (875)
|
||||
- computer (876)
|
||||
- different (846)
|
||||
- world (817)
|
||||
- world (822)
|
||||
- these (813)
|
||||
- programming (812)
|
||||
- however (808)
|
||||
- should (784)
|
||||
- however (809)
|
||||
- should (786)
|
||||
- still (781)
|
||||
- system (777)
|
||||
- doesn (752)
|
||||
- games (740)
|
||||
- drummyfish (730)
|
||||
- always (724)
|
||||
- possible (723)
|
||||
- always (722)
|
||||
- point (712)
|
||||
- probably (705)
|
||||
- while (697)
|
||||
- society (695)
|
||||
- https (693)
|
||||
- simply (691)
|
||||
- using (665)
|
||||
- someone (650)
|
||||
- point (713)
|
||||
- probably (704)
|
||||
- society (697)
|
||||
- while (696)
|
||||
- https (695)
|
||||
- simply (689)
|
||||
- using (664)
|
||||
- someone (651)
|
||||
- course (646)
|
||||
- actually (639)
|
||||
- similar (633)
|
||||
- first (622)
|
||||
- actually (640)
|
||||
- similar (635)
|
||||
- first (624)
|
||||
- value (617)
|
||||
- though (598)
|
||||
- really (594)
|
||||
- though (599)
|
||||
- really (596)
|
||||
|
||||
latest changes:
|
||||
|
||||
```
|
||||
Date: Wed Jun 4 13:17:53 2025 +0200
|
||||
3d_model.md
|
||||
bilinear.md
|
||||
free_will.md
|
||||
furry.md
|
||||
lgbt.md
|
||||
lrs_dictionary.md
|
||||
main.md
|
||||
often_confused.md
|
||||
programming_style.md
|
||||
random_page.md
|
||||
shitword.md
|
||||
trolling.md
|
||||
unretard.md
|
||||
usa.md
|
||||
wiki_pages.md
|
||||
wiki_stats.md
|
||||
woman.md
|
||||
work.md
|
||||
Date: Thu May 29 17:30:19 2025 +0200
|
||||
ai.md
|
||||
backgammon.md
|
||||
|
@ -108,24 +127,6 @@ Date: Thu May 29 17:30:19 2025 +0200
|
|||
usa.md
|
||||
wiki_pages.md
|
||||
wiki_stats.md
|
||||
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
|
||||
```
|
||||
|
||||
most wanted pages:
|
||||
|
@ -154,7 +155,7 @@ most wanted pages:
|
|||
most popular and lonely pages:
|
||||
|
||||
- [lrs](lrs.md) (352)
|
||||
- [capitalism](capitalism.md) (326)
|
||||
- [capitalism](capitalism.md) (328)
|
||||
- [bloat](bloat.md) (252)
|
||||
- [c](c.md) (249)
|
||||
- [free_software](free_software.md) (211)
|
||||
|
@ -171,14 +172,14 @@ most popular and lonely pages:
|
|||
- [shit](shit.md) (119)
|
||||
- [programming](programming.md) (119)
|
||||
- [woman](woman.md) (116)
|
||||
- [art](art.md) (109)
|
||||
- [art](art.md) (110)
|
||||
- [history](history.md) (108)
|
||||
- [gnu](gnu.md) (108)
|
||||
- [history](history.md) (107)
|
||||
- [bullshit](bullshit.md) (107)
|
||||
- [linux](linux.md) (106)
|
||||
- [corporation](corporation.md) (105)
|
||||
- [corporation](corporation.md) (106)
|
||||
- [fight_culture](fight_culture.md) (101)
|
||||
- [work](work.md) (98)
|
||||
- [work](work.md) (99)
|
||||
- [hacking](hacking.md) (97)
|
||||
- [internet](internet.md) (95)
|
||||
- [less_retarded_society](less_retarded_society.md) (94)
|
||||
|
|
Loading…
Reference in a new issue