<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
		<id>https://bolshevik.mrangel.info/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Angel</id>
		<title>Who's Angel? - User contributions [en-gb]</title>
		<link rel="self" type="application/atom+xml" href="https://bolshevik.mrangel.info/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Angel"/>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/Special:Contributions/Angel"/>
		<updated>2026-05-27T21:13:59Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Badaboom!&amp;diff=42</id>
		<title>Badaboom!</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Badaboom!&amp;diff=42"/>
				<updated>2020-09-22T09:44:13Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Created page with &amp;quot;Badaboom! is an esoteric programming language. I have no idea why I came up with this.  Badaboom! has a number of phonemes, which can be joined together into instructions.  A...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Badaboom! is an esoteric programming language. I have no idea why I came up with this.&lt;br /&gt;
&lt;br /&gt;
Badaboom! has a number of phonemes, which can be joined together into instructions.&lt;br /&gt;
&lt;br /&gt;
A valid instruction consists of any number of phonemes. Phonemes may be placed next to each other with no space between. If this would put two consonants next to each other, one or two of the letters a, o, or u may be placed in between. If the joining would put two vowels together, they should be separated by the letters b or n.&lt;br /&gt;
&lt;br /&gt;
Multiple instructions may be placed on a *line*, separated by punctuation characters or spaces.&lt;br /&gt;
&lt;br /&gt;
There are 3 main places to store data in Badaboom: Registers, the heap, and the core.&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
&lt;br /&gt;
Each register can contain a single integer value. Integers have a maximum value of plus or minus 5318008. Any operation which would cause a register to exceed this value stores its operand in the register instead.&lt;br /&gt;
&lt;br /&gt;
Specifically, the instructions below:&lt;br /&gt;
&lt;br /&gt;
* ADD A&lt;br /&gt;
** Normally, adds the value in register A to the assumulator&lt;br /&gt;
** If this would cause the accumulator to overflow, store A in the assumulator instead&lt;br /&gt;
* ADD A B&lt;br /&gt;
** Normally, adds A and B and stores the result in the assumulator&lt;br /&gt;
** If this would cause the assumulator to overflow, store the larger (highest absolute) of A and B in the assumulator&lt;br /&gt;
*** If A is equal to -B, one should be picked randomly. Obviously this is not possible for addition but may be for other operators&lt;br /&gt;
* ADD A B C&lt;br /&gt;
** Normally, adds A and B together and stores the result in C&lt;br /&gt;
** If this would cause an overflow, find the largest (highest absolute) non-overflowing value which can be created by summing any combination of A, B, and C, and store that in C.&lt;br /&gt;
&lt;br /&gt;
There are a number of special registers. In most cases, it should not be necessary to refer to these. Use of these registers is limited to one per line, and generates a warning:&lt;br /&gt;
* The '''program counter''' stores the number of the current instruction in the core. The program counter has the phoneme CORE, which must always be in capitals, and starts with value zero. The instruction executed is found by taking the value of the program counter, modulo the number of instructions in core.&lt;br /&gt;
* The '''assumulator''' stores the value of current operations. Most opcodes will set the assumulator to something, and will operate on the assumulator if not given an explicit operand. The assumulator starts with a random nonzero value, and is decremented at the end of each line which doesn't change its value. Its phoneme is ASS.&lt;br /&gt;
* The '''but what if''' register is used for error handling. Its value starts at zero, and is increased by the modulo value of the instruction counter any time an error or warning occurs. If the but what if register overflows, in addition to the normal overflow behaviour all basic registers are reset to their default values. Its phoneme is either BUT or BUTT.&lt;br /&gt;
&lt;br /&gt;
There are also several basic registers (bad, boom, bing, bop, and so on), whose initial values are all different. This means that they can be used as 'mnemonics' for the basic opcodes.&lt;br /&gt;
&lt;br /&gt;
==The Core==&lt;br /&gt;
&lt;br /&gt;
==The Heap==&lt;br /&gt;
&lt;br /&gt;
==Operations==&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Frequently_Asked_Questions&amp;diff=41</id>
		<title>Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Frequently_Asked_Questions&amp;diff=41"/>
				<updated>2019-12-16T22:22:56Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello world! For an intro to this site, see below. Other things hosted here include:&lt;br /&gt;
&lt;br /&gt;
* [[Most Frequently Asked Questions]]&lt;br /&gt;
* [[RSSSS]]&lt;br /&gt;
&lt;br /&gt;
==What's all this then?==&lt;br /&gt;
&lt;br /&gt;
The address you're probably looking at now is &amp;lt;tt&amp;gt;bolshevik.mrangel.info&amp;lt;/tt&amp;gt;. That's the domain name I use for connecting to various chat systems, but it didn't actually have a website on it. I thought that some people might see the hostname and take a look to see what's here, so I put up a simple wiki.&lt;br /&gt;
&lt;br /&gt;
For now, I've decided that I'm going to put here some frequently asked questions about me, as well as any random stuff that I don't know where else to put it. If you really want to, feel free to make an account and put something on here, leave me a message, or document the details about me that I might not have noticed.&lt;br /&gt;
&lt;br /&gt;
==Why all the questions?==&lt;br /&gt;
&lt;br /&gt;
I'm keeping the front page as [[Frequently Asked Questions]], so if there's anything here try to put it in question format. If you've got any questions to add but don't have an answer, put them on the talk page and I'll try to answer when I can.&lt;br /&gt;
&lt;br /&gt;
==Why did you make this?==&lt;br /&gt;
&lt;br /&gt;
Because I felt like it.&lt;br /&gt;
&lt;br /&gt;
==Did people really ask these questions?==&lt;br /&gt;
&lt;br /&gt;
Some of them. Maybe. If you ask a question on the talk page, I'll try to answer it.&lt;br /&gt;
I think most of these are the logical questions that people might ask, whether they actually have asked or not.&lt;br /&gt;
&lt;br /&gt;
I've also run a dumb Perl script over 510 MiB of chat logs, to find out what the most frequently asked questions actually are. If you'd like to see me attempt to answer them, head over to [[Most Frequently Asked Questions]].&lt;br /&gt;
&lt;br /&gt;
Where there are questions that I'd like to answer but don't think anyone's likely to ask them, or if I see a question that I think nobody else in the history of the world has ever asked, my answers might end up on the [[Infrequently Asked Questions]] page.&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Rather_Simple_Social_Syndication_System&amp;diff=40</id>
		<title>Rather Simple Social Syndication System</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Rather_Simple_Social_Syndication_System&amp;diff=40"/>
				<updated>2019-12-16T14:42:24Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Redirected page to RSSSS&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT: [[RSSSS]]&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=RSSSS&amp;diff=39</id>
		<title>RSSSS</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=RSSSS&amp;diff=39"/>
				<updated>2019-12-16T14:41:46Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Created page with &amp;quot;Possibly standing for Rather Simple Social Syndication System.  This is something that's been bouncing around in my head for a while. I tried to put together a formal spec...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Possibly standing for [[Rather Simple Social Syndication System]].&lt;br /&gt;
&lt;br /&gt;
This is something that's been bouncing around in my head for a while. I tried to put together a formal specification when Google Plus died, but didn't quite finish it. So now I'm trying to at least get it written down somewhere. All comments welcome!&lt;br /&gt;
&lt;br /&gt;
When G+ closed, I had a bit of a quandry. All of the people I was following were going to different sites, leaving me with a choice between creating a load of accounts and remembering to check them all, and losing touch with some people I'd like to consider friends. To me, this isn't ideal.&lt;br /&gt;
&lt;br /&gt;
A quick look at social media shows me that there are 3 main types of things to join:&lt;br /&gt;
&lt;br /&gt;
* '''Monolithic sites''' (eg. facebook, tumblr, 4chan) have a 'lot' of people on them, but there's one company at the helm. They could close down, or they could decide to block your favourite type of content because it's not popular with advertisers, or they could change the UI in a way which removes features you want.&lt;br /&gt;
&lt;br /&gt;
* '''Syndication protocols''' (eg. RSS, Jadis, OpenID) let you follow people on different sites, but functionality is fairly limited. Some big platforms (like Livejournal's successors, and I think Wordpress) use these technologies, but it seems fairly limited. For example, I can use my OpenID to comment on a friend's Dreamwidth posts, and use RSS to subscribe to their feed, but there's no way they can share 'friends only' posts with me. I originally thought of RSSSS as a natural growth of RSS+OpenID, to allow this functionality.&lt;br /&gt;
&lt;br /&gt;
* '''Federated social networks''' (eg. Mastodon, Diaspora) Allow multiple sites to work seamlessly as a single social network. When I left G+ I signed up for a couple of these, but didn't like the user interface and couldn't really get used to it. And because they're running the same software, it seemed that all Diaspora pods have the same issues that put me off.&lt;br /&gt;
*: Around this time last year, I asked if it was possible to join a site running some other software (or roll my own) so that I could still keep in touch with my friends on there (for both Diaspora and Mastodon), and was told &amp;quot;no&amp;quot; by people running their own servers for G+ refugees on those networks. But when I came to write up this page, I found that both networks are part of something called [[wikipedia:Fediverse|Fediverse]], which allows interoperability. If this is as good as it sounds, I might have to give it a try.&lt;br /&gt;
&lt;br /&gt;
Anyway, the idea in my mind was basically to create an open standard along the lines of [[wikipedia:RSS|RSS]], which would have optional features allowing sites to look and feel more like the big social networks; Facebook, G+, or whatever. As a growth of RSS, this would mean that implementation would be relatively easy. Developers who have an existing RSS plugin to work with could bolt on the extra features one by one, providing a gradual and low-impact upgrade from RSS to RSSSS.&lt;br /&gt;
&lt;br /&gt;
==Are you running RSS or RSSSS?==&lt;br /&gt;
&lt;br /&gt;
This specification is supposed to be backwards-compatible with RSSSS. So, when a client is requesting a feed, there should be some way for them to understand that the other end is capable of RSSSS features. This should be transparent, and should not disturb older RSS applications.&lt;br /&gt;
&lt;br /&gt;
===Client→Server===&lt;br /&gt;
&lt;br /&gt;
The client/reader may indicate to the server that it supports RSSSS in 3 ways. They may use any or all of these, and should try again without them if the request fails. This ensures that even if there is a server somewhere that breaks when it gets an unexpected parameter, it won't break anything.&lt;br /&gt;
&lt;br /&gt;
1. Add an additional parameter to the URL of a request which is believed to be an RSS feed&lt;br /&gt;
   rssss=0.1&lt;br /&gt;
:or&lt;br /&gt;
   rssss=auth,sub&lt;br /&gt;
:The parameter may either be an RSSSS version number, or a list of ''features''. The version is currently '''0.1''', but should not be necessary in most cases, as the exact capabilities of the client are better conveyed by the features list. If the features list would generate a URL string that is too long, either supply the version number and wait for the server to say which features it supports, or specify ''others'' after the important features. If a client specifies the feature ''all'', the server should assume the client supports all features, and the client should silently ignore anything it doesn't understand, or make a more sensible request.&lt;br /&gt;
&lt;br /&gt;
2. If making a POST request for an RSSSS feed (presuming there is any reason to believe the server supports it), add parameters:&lt;br /&gt;
   rssssversion=0.1&lt;br /&gt;
   rssssfeatures=post,auth&lt;br /&gt;
&lt;br /&gt;
3. Additional HTTP headers (which may be harder to implement on the server side if implementing a RSSSS plugin for some CMS, so should not be relied on)&lt;br /&gt;
   X-RSSSS-Support: 0.1&lt;br /&gt;
   X-RSSSS-Features: post,sub&lt;br /&gt;
:Multiple features may be specified on a single comma separated line, or on multiple features lines.&lt;br /&gt;
&lt;br /&gt;
===Server→Client===&lt;br /&gt;
An RSS feed is simple XML, so the client or feed reader should ignore any unexpected elements. Therefore a simple element can be added to an RSSSS feed to indicate to compatible clients/readers that the server is capable of supplying additional data on request.&lt;br /&gt;
   &amp;lt;rssss version=&amp;quot;0.1&amp;quot; features=&amp;quot;auth,sub,post,foo,bar&amp;quot; /&amp;gt;&lt;br /&gt;
The server should include this element if the client requested RSSSS, and may include it if it is unclear whether the client is expecting RSS or RSSSS.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
This RSSSS specification is made up of a number of features that software can choose to implement some or all of. The negotiation in the previous section allows both the client and server to declare a list of which features they support, in order to avoid confusing each other with unexpected parts.&lt;br /&gt;
&lt;br /&gt;
There are a couple of special features, to avoid transmitting a long list with every request:&lt;br /&gt;
* '''all''' - Assume I support all features; I am able to ignore or sanely deal with any unexpected data as a result.&lt;br /&gt;
* '''advertised''' - I support all the features you specified in your latest message.&lt;br /&gt;
* '''known''' - We should cache each other's feature lists if you support this feature; in subsequent exchanges, you may specify just &amp;quot;known&amp;quot; to indicate that your list is unchanged.&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=38</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=38"/>
				<updated>2019-12-12T10:51:16Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 87.     for what?  asked 117 times by Xanto, hootowl, and 71 others */ Silliness&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;br /&gt;
&lt;br /&gt;
== 94.     how is everyone doing?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 106 times by ashwee, gaysian, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think how they're doing will depend quite heavily on ''what'' they're doing. But like I said before, I suspect that there's quite a wide range of everyone, who'll be doing everybow from 'awesome' to 'awful'. Maybe the average is a little better this week than it has been for the remainder of human history, it'd be nice to think that's the case. But I'm not authorised to speak for everyone, so I can't really say. Maybe you should ask them yourself?&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:39, 26 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 92.     you ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 124 times by ali, VengefulRowRow, and 52 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I got very little work done yesterday because I had one of those headaches where everything seems to bright and it hurts to look at the screen, but that seems to be gone now. I'm still sneezing quite a lot, but it isn't really bothering me. My unproductivity this morning has been more due to the fact that I just started playing around with [[wikipedia:Twitch.tv|Twitch]]. I decided to broadcast my first attempts at a couple of games I haven't played in several years; and got what I think is a personal best score on [[wikipedia:Zero Wing|Zero Wing]]. That was something of a surprise.&lt;br /&gt;
&lt;br /&gt;
So yes, I'm OK. Happy, even. But I'll have to wait and see how that translates into getting some more writing done.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:29, 27 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 91.     pretty good you?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 136 times by starkitty{A}, [[User:twilight|DJtwilight]], and 42 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Almost, but without the mild. Can I burn my mother in North Carolina for giving us a great night planned? The campaign must be ballistic, but Skynet can't without the food of weasels. Timmy dances because she's riding around the room. You go at it, I'm pretty good for now.&lt;br /&gt;
&lt;br /&gt;
How about a magic tea that's pretty bad. Magic null. 182?! Arrrgghh the mall...! That's how I was like &amp;quot;Carilynn? Maybe? Possibly.&amp;quot; Timmy shrugs. Proffers Apples to Apples party pack. Pack party hat with pride, and demands the gayest of streamers! Demands chocolatey goodness.&lt;br /&gt;
&lt;br /&gt;
Won't lie, he may or may not be intimidated.&lt;br /&gt;
&lt;br /&gt;
* -- [[wikipedia:Markov chain|Timmy]] (an IRC chatbot, who [[User:Angel|Angel]] believed was better suited to answering this question)&lt;br /&gt;
&lt;br /&gt;
== 90.     ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 121 times by foodmoon, mentalwedgie, and 63 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I've been stressing out a lot the last couple of months, but I can see that most of that is just my own anxiety feeding back in on itself. Like is going to be okay, even with serious financial trouble courtesy of the government. If I can just get over it, get writing again, and get people to support me on Patreon, then I might have a chance of living without disability benefits. And if I can get over it enough, then I'll never have to worry about stuff like this again.&lt;br /&gt;
&lt;br /&gt;
Then things really will be ok.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:24, 30 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 89.     How's life?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 128 times by [[User:Angel|StressingAngel]], wannabeasissy, and 56 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Life is pretty good. Better than the alternative, anyway. I'd probably give it three stars, maybe four. There's a couple of features missing though, and bugs that give the impression it hasn't really been thought through. Like aging; you can't have life without it, and that just seems like a bizarre decision. It should have been an optional extra, maybe something you can turn off in the premium release. And it never ceases to bug me that life is somehow incompatible with commanding the creatures of the night, flight, or transforming into a &amp;lt;s&amp;gt;block of flats&amp;lt;/s&amp;gt; flock of bats.&lt;br /&gt;
&lt;br /&gt;
So, pretty good, but there's still room for improvement in a later version. And don't get me started on vitality-as-a-service… if I've bought the thing, I expect to keep using it, not have to resubscribe after sixty-something years.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:21, 1 December 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 88.     wha...?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 130 times by kiblitzen, curiosity, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
A questio…&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 21:04, 7 December 2019 (UTC)&lt;br /&gt;
(sorry, i really couldn't think of a better answer for this one)&lt;br /&gt;
&lt;br /&gt;
== 87.     for what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 117 times by Xanto, hootowl, and 71 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
It for reason specific any be to has there think don't I. Done be can it if see to something do to want just I sometimes. Questions of couple same the on variations for ideas of out running already I'm that see can you guess I and.&lt;br /&gt;
&lt;br /&gt;
* — (UTC) 2019 December 12, 49:10 ([[User Talk:Angel|Talk author]]) [[User:Angel|Wedge Angel]]&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=37</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=37"/>
				<updated>2019-12-12T10:49:43Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 87.     for what?  asked 117 times by Xanto, hootowl, and 71 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;br /&gt;
&lt;br /&gt;
== 94.     how is everyone doing?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 106 times by ashwee, gaysian, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think how they're doing will depend quite heavily on ''what'' they're doing. But like I said before, I suspect that there's quite a wide range of everyone, who'll be doing everybow from 'awesome' to 'awful'. Maybe the average is a little better this week than it has been for the remainder of human history, it'd be nice to think that's the case. But I'm not authorised to speak for everyone, so I can't really say. Maybe you should ask them yourself?&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:39, 26 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 92.     you ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 124 times by ali, VengefulRowRow, and 52 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I got very little work done yesterday because I had one of those headaches where everything seems to bright and it hurts to look at the screen, but that seems to be gone now. I'm still sneezing quite a lot, but it isn't really bothering me. My unproductivity this morning has been more due to the fact that I just started playing around with [[wikipedia:Twitch.tv|Twitch]]. I decided to broadcast my first attempts at a couple of games I haven't played in several years; and got what I think is a personal best score on [[wikipedia:Zero Wing|Zero Wing]]. That was something of a surprise.&lt;br /&gt;
&lt;br /&gt;
So yes, I'm OK. Happy, even. But I'll have to wait and see how that translates into getting some more writing done.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:29, 27 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 91.     pretty good you?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 136 times by starkitty{A}, [[User:twilight|DJtwilight]], and 42 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Almost, but without the mild. Can I burn my mother in North Carolina for giving us a great night planned? The campaign must be ballistic, but Skynet can't without the food of weasels. Timmy dances because she's riding around the room. You go at it, I'm pretty good for now.&lt;br /&gt;
&lt;br /&gt;
How about a magic tea that's pretty bad. Magic null. 182?! Arrrgghh the mall...! That's how I was like &amp;quot;Carilynn? Maybe? Possibly.&amp;quot; Timmy shrugs. Proffers Apples to Apples party pack. Pack party hat with pride, and demands the gayest of streamers! Demands chocolatey goodness.&lt;br /&gt;
&lt;br /&gt;
Won't lie, he may or may not be intimidated.&lt;br /&gt;
&lt;br /&gt;
* -- [[wikipedia:Markov chain|Timmy]] (an IRC chatbot, who [[User:Angel|Angel]] believed was better suited to answering this question)&lt;br /&gt;
&lt;br /&gt;
== 90.     ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 121 times by foodmoon, mentalwedgie, and 63 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I've been stressing out a lot the last couple of months, but I can see that most of that is just my own anxiety feeding back in on itself. Like is going to be okay, even with serious financial trouble courtesy of the government. If I can just get over it, get writing again, and get people to support me on Patreon, then I might have a chance of living without disability benefits. And if I can get over it enough, then I'll never have to worry about stuff like this again.&lt;br /&gt;
&lt;br /&gt;
Then things really will be ok.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:24, 30 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 89.     How's life?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 128 times by [[User:Angel|StressingAngel]], wannabeasissy, and 56 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Life is pretty good. Better than the alternative, anyway. I'd probably give it three stars, maybe four. There's a couple of features missing though, and bugs that give the impression it hasn't really been thought through. Like aging; you can't have life without it, and that just seems like a bizarre decision. It should have been an optional extra, maybe something you can turn off in the premium release. And it never ceases to bug me that life is somehow incompatible with commanding the creatures of the night, flight, or transforming into a &amp;lt;s&amp;gt;block of flats&amp;lt;/s&amp;gt; flock of bats.&lt;br /&gt;
&lt;br /&gt;
So, pretty good, but there's still room for improvement in a later version. And don't get me started on vitality-as-a-service… if I've bought the thing, I expect to keep using it, not have to resubscribe after sixty-something years.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:21, 1 December 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 88.     wha...?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 130 times by kiblitzen, curiosity, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
A questio…&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 21:04, 7 December 2019 (UTC)&lt;br /&gt;
(sorry, i really couldn't think of a better answer for this one)&lt;br /&gt;
&lt;br /&gt;
== 87.     for what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 117 times by Xanto, hootowl, and 71 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
It for reason specific any be to has there think don't I. Done be can it if see to something do to want just I sometimes. Questions of couple same the on variations for ideas of out running already I'm that see can you guess I and.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:49, 12 December 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Main_Page&amp;diff=36</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Main_Page&amp;diff=36"/>
				<updated>2019-12-10T13:57:21Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
This is the default main page for MediaWiki, but you shouldn't be here because the main page for ''this'' site is [[Frequently Asked Questions]].&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=AddToInventory&amp;diff=35</id>
		<title>AddToInventory</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=AddToInventory&amp;diff=35"/>
				<updated>2019-12-10T13:24:32Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Created page with &amp;quot;This is a piece of code I created in response to a query on the [http://textadventures.co.uk/forum/quest/topic/crtbw5odik6sayxpz5hcha/a-question-another-not-so-simple-question...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a piece of code I created in response to a query on the [http://textadventures.co.uk/forum/quest/topic/crtbw5odik6sayxpz5hcha/a-question-another-not-so-simple-question-and-a-weird-problem-with-the-map Quest forum], but for some unknown reason the forum's adult-content filter wouldn't allow me to post it. So here it is!&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;function name=&amp;quot;AddToInventory&amp;quot; parameters=&amp;quot;object&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;&lt;br /&gt;
    message = null&lt;br /&gt;
    foreach (bag, FilterByType (ScopeInventory (), &amp;quot;inventorybag&amp;quot;)) {&lt;br /&gt;
      message = &amp;quot;&amp;quot;&lt;br /&gt;
      if (object.parent = bag) {&lt;br /&gt;
        return (&amp;quot;It is already in your &amp;quot;+GetDisplayName (bag)+&amp;quot;.&amp;quot;)&lt;br /&gt;
      }&lt;br /&gt;
      if (HasInt (bag, &amp;quot;maxvolume&amp;quot;)) {&lt;br /&gt;
        if (GetVolume(object, true) + GetVolume(bag, false) &amp;gt; bag.maxvolume) {&lt;br /&gt;
          if (HasString(bag, &amp;quot;containerfullmessage&amp;quot;)) {&lt;br /&gt;
            message = bag.containerfullmessage&lt;br /&gt;
          }&lt;br /&gt;
          else {&lt;br /&gt;
            message = DynamicTemplate(&amp;quot;ContainerFull&amp;quot;, bag)&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
      }&lt;br /&gt;
  &lt;br /&gt;
      if (HasInt (bag, &amp;quot;maxobjects&amp;quot;)) {&lt;br /&gt;
        if (ListCount (GetDirectChildren (bag)) &amp;gt;= bag.maxobjects and bag.maxobjects &amp;gt; 0) {&lt;br /&gt;
         if (HasString(bag, &amp;quot;containermaxobjects&amp;quot;)) {&lt;br /&gt;
            message = bag.containermaxobjects&lt;br /&gt;
          }&lt;br /&gt;
          else {&lt;br /&gt;
            message = DynamicTemplate(&amp;quot;MaxObjectsInContainer&amp;quot;, bag)&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
      }&lt;br /&gt;
      if (message = &amp;quot;&amp;quot;) {&lt;br /&gt;
        object.parent = bag&lt;br /&gt;
        return (&amp;quot;You put &amp;quot; + object.article + &amp;quot; in your &amp;quot; + GetDisplayName(bag) + &amp;quot;.&amp;quot;)&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
    if (message = null) {&lt;br /&gt;
      // This is what will happen if the player isn't carrying a bag/satchel.&lt;br /&gt;
      // Depending on your game setup, this might never happen;&lt;br /&gt;
      // or you might allow the player to carry 2 objects in their hands.&lt;br /&gt;
      object.parent = game.pov&lt;br /&gt;
      return (&amp;quot;You pick it up.&amp;quot;)&lt;br /&gt;
    }&lt;br /&gt;
    else {&lt;br /&gt;
      return (message)&lt;br /&gt;
    }&lt;br /&gt;
  &amp;lt;/function&amp;gt;&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=34</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=34"/>
				<updated>2019-12-07T21:04:38Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 88.     wha...?  asked 130 times by kiblitzen, curiosity, and 57 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;br /&gt;
&lt;br /&gt;
== 94.     how is everyone doing?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 106 times by ashwee, gaysian, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think how they're doing will depend quite heavily on ''what'' they're doing. But like I said before, I suspect that there's quite a wide range of everyone, who'll be doing everybow from 'awesome' to 'awful'. Maybe the average is a little better this week than it has been for the remainder of human history, it'd be nice to think that's the case. But I'm not authorised to speak for everyone, so I can't really say. Maybe you should ask them yourself?&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:39, 26 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 92.     you ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 124 times by ali, VengefulRowRow, and 52 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I got very little work done yesterday because I had one of those headaches where everything seems to bright and it hurts to look at the screen, but that seems to be gone now. I'm still sneezing quite a lot, but it isn't really bothering me. My unproductivity this morning has been more due to the fact that I just started playing around with [[wikipedia:Twitch.tv|Twitch]]. I decided to broadcast my first attempts at a couple of games I haven't played in several years; and got what I think is a personal best score on [[wikipedia:Zero Wing|Zero Wing]]. That was something of a surprise.&lt;br /&gt;
&lt;br /&gt;
So yes, I'm OK. Happy, even. But I'll have to wait and see how that translates into getting some more writing done.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:29, 27 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 91.     pretty good you?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 136 times by starkitty{A}, [[User:twilight|DJtwilight]], and 42 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Almost, but without the mild. Can I burn my mother in North Carolina for giving us a great night planned? The campaign must be ballistic, but Skynet can't without the food of weasels. Timmy dances because she's riding around the room. You go at it, I'm pretty good for now.&lt;br /&gt;
&lt;br /&gt;
How about a magic tea that's pretty bad. Magic null. 182?! Arrrgghh the mall...! That's how I was like &amp;quot;Carilynn? Maybe? Possibly.&amp;quot; Timmy shrugs. Proffers Apples to Apples party pack. Pack party hat with pride, and demands the gayest of streamers! Demands chocolatey goodness.&lt;br /&gt;
&lt;br /&gt;
Won't lie, he may or may not be intimidated.&lt;br /&gt;
&lt;br /&gt;
* -- [[wikipedia:Markov chain|Timmy]] (an IRC chatbot, who [[User:Angel|Angel]] believed was better suited to answering this question)&lt;br /&gt;
&lt;br /&gt;
== 90.     ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 121 times by foodmoon, mentalwedgie, and 63 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I've been stressing out a lot the last couple of months, but I can see that most of that is just my own anxiety feeding back in on itself. Like is going to be okay, even with serious financial trouble courtesy of the government. If I can just get over it, get writing again, and get people to support me on Patreon, then I might have a chance of living without disability benefits. And if I can get over it enough, then I'll never have to worry about stuff like this again.&lt;br /&gt;
&lt;br /&gt;
Then things really will be ok.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:24, 30 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 89.     How's life?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 128 times by [[User:Angel|StressingAngel]], wannabeasissy, and 56 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Life is pretty good. Better than the alternative, anyway. I'd probably give it three stars, maybe four. There's a couple of features missing though, and bugs that give the impression it hasn't really been thought through. Like aging; you can't have life without it, and that just seems like a bizarre decision. It should have been an optional extra, maybe something you can turn off in the premium release. And it never ceases to bug me that life is somehow incompatible with commanding the creatures of the night, flight, or transforming into a &amp;lt;s&amp;gt;block of flats&amp;lt;/s&amp;gt; flock of bats.&lt;br /&gt;
&lt;br /&gt;
So, pretty good, but there's still room for improvement in a later version. And don't get me started on vitality-as-a-service… if I've bought the thing, I expect to keep using it, not have to resubscribe after sixty-something years.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:21, 1 December 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 88.     wha...?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 130 times by kiblitzen, curiosity, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
A questio…&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 21:04, 7 December 2019 (UTC)&lt;br /&gt;
(sorry, i really couldn't think of a better answer for this one)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=33</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=33"/>
				<updated>2019-12-01T10:21:51Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 89.     How's life?  asked 128 times by StressingAngel, wannabeasissy, and 56 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;br /&gt;
&lt;br /&gt;
== 94.     how is everyone doing?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 106 times by ashwee, gaysian, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think how they're doing will depend quite heavily on ''what'' they're doing. But like I said before, I suspect that there's quite a wide range of everyone, who'll be doing everybow from 'awesome' to 'awful'. Maybe the average is a little better this week than it has been for the remainder of human history, it'd be nice to think that's the case. But I'm not authorised to speak for everyone, so I can't really say. Maybe you should ask them yourself?&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:39, 26 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 92.     you ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 124 times by ali, VengefulRowRow, and 52 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I got very little work done yesterday because I had one of those headaches where everything seems to bright and it hurts to look at the screen, but that seems to be gone now. I'm still sneezing quite a lot, but it isn't really bothering me. My unproductivity this morning has been more due to the fact that I just started playing around with [[wikipedia:Twitch.tv|Twitch]]. I decided to broadcast my first attempts at a couple of games I haven't played in several years; and got what I think is a personal best score on [[wikipedia:Zero Wing|Zero Wing]]. That was something of a surprise.&lt;br /&gt;
&lt;br /&gt;
So yes, I'm OK. Happy, even. But I'll have to wait and see how that translates into getting some more writing done.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:29, 27 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 91.     pretty good you?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 136 times by starkitty{A}, [[User:twilight|DJtwilight]], and 42 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Almost, but without the mild. Can I burn my mother in North Carolina for giving us a great night planned? The campaign must be ballistic, but Skynet can't without the food of weasels. Timmy dances because she's riding around the room. You go at it, I'm pretty good for now.&lt;br /&gt;
&lt;br /&gt;
How about a magic tea that's pretty bad. Magic null. 182?! Arrrgghh the mall...! That's how I was like &amp;quot;Carilynn? Maybe? Possibly.&amp;quot; Timmy shrugs. Proffers Apples to Apples party pack. Pack party hat with pride, and demands the gayest of streamers! Demands chocolatey goodness.&lt;br /&gt;
&lt;br /&gt;
Won't lie, he may or may not be intimidated.&lt;br /&gt;
&lt;br /&gt;
* -- [[wikipedia:Markov chain|Timmy]] (an IRC chatbot, who [[User:Angel|Angel]] believed was better suited to answering this question)&lt;br /&gt;
&lt;br /&gt;
== 90.     ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 121 times by foodmoon, mentalwedgie, and 63 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I've been stressing out a lot the last couple of months, but I can see that most of that is just my own anxiety feeding back in on itself. Like is going to be okay, even with serious financial trouble courtesy of the government. If I can just get over it, get writing again, and get people to support me on Patreon, then I might have a chance of living without disability benefits. And if I can get over it enough, then I'll never have to worry about stuff like this again.&lt;br /&gt;
&lt;br /&gt;
Then things really will be ok.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:24, 30 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 89.     How's life?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 128 times by [[User:Angel|StressingAngel]], wannabeasissy, and 56 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Life is pretty good. Better than the alternative, anyway. I'd probably give it three stars, maybe four. There's a couple of features missing though, and bugs that give the impression it hasn't really been thought through. Like aging; you can't have life without it, and that just seems like a bizarre decision. It should have been an optional extra, maybe something you can turn off in the premium release. And it never ceases to bug me that life is somehow incompatible with commanding the creatures of the night, flight, or transforming into a &amp;lt;s&amp;gt;block of flats&amp;lt;/s&amp;gt; flock of bats.&lt;br /&gt;
&lt;br /&gt;
So, pretty good, but there's still room for improvement in a later version. And don't get me started on vitality-as-a-service… if I've bought the thing, I expect to keep using it, not have to resubscribe after sixty-something years.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:21, 1 December 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=32</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=32"/>
				<updated>2019-11-30T15:24:38Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 90.     ok?  asked 121 times by foodmoon, mentalwedgie, and 63 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;br /&gt;
&lt;br /&gt;
== 94.     how is everyone doing?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 106 times by ashwee, gaysian, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think how they're doing will depend quite heavily on ''what'' they're doing. But like I said before, I suspect that there's quite a wide range of everyone, who'll be doing everybow from 'awesome' to 'awful'. Maybe the average is a little better this week than it has been for the remainder of human history, it'd be nice to think that's the case. But I'm not authorised to speak for everyone, so I can't really say. Maybe you should ask them yourself?&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:39, 26 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 92.     you ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 124 times by ali, VengefulRowRow, and 52 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I got very little work done yesterday because I had one of those headaches where everything seems to bright and it hurts to look at the screen, but that seems to be gone now. I'm still sneezing quite a lot, but it isn't really bothering me. My unproductivity this morning has been more due to the fact that I just started playing around with [[wikipedia:Twitch.tv|Twitch]]. I decided to broadcast my first attempts at a couple of games I haven't played in several years; and got what I think is a personal best score on [[wikipedia:Zero Wing|Zero Wing]]. That was something of a surprise.&lt;br /&gt;
&lt;br /&gt;
So yes, I'm OK. Happy, even. But I'll have to wait and see how that translates into getting some more writing done.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:29, 27 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 91.     pretty good you?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 136 times by starkitty{A}, [[User:twilight|DJtwilight]], and 42 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Almost, but without the mild. Can I burn my mother in North Carolina for giving us a great night planned? The campaign must be ballistic, but Skynet can't without the food of weasels. Timmy dances because she's riding around the room. You go at it, I'm pretty good for now.&lt;br /&gt;
&lt;br /&gt;
How about a magic tea that's pretty bad. Magic null. 182?! Arrrgghh the mall...! That's how I was like &amp;quot;Carilynn? Maybe? Possibly.&amp;quot; Timmy shrugs. Proffers Apples to Apples party pack. Pack party hat with pride, and demands the gayest of streamers! Demands chocolatey goodness.&lt;br /&gt;
&lt;br /&gt;
Won't lie, he may or may not be intimidated.&lt;br /&gt;
&lt;br /&gt;
* -- [[wikipedia:Markov chain|Timmy]] (an IRC chatbot, who [[User:Angel|Angel]] believed was better suited to answering this question)&lt;br /&gt;
&lt;br /&gt;
== 90.     ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 121 times by foodmoon, mentalwedgie, and 63 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I've been stressing out a lot the last couple of months, but I can see that most of that is just my own anxiety feeding back in on itself. Like is going to be okay, even with serious financial trouble courtesy of the government. If I can just get over it, get writing again, and get people to support me on Patreon, then I might have a chance of living without disability benefits. And if I can get over it enough, then I'll never have to worry about stuff like this again.&lt;br /&gt;
&lt;br /&gt;
Then things really will be ok.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:24, 30 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=31</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=31"/>
				<updated>2019-11-30T12:31:09Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 91.     pretty good you?  asked 136 times by starkitty{A}, DJtwilight, and 42 others */ link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;br /&gt;
&lt;br /&gt;
== 94.     how is everyone doing?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 106 times by ashwee, gaysian, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think how they're doing will depend quite heavily on ''what'' they're doing. But like I said before, I suspect that there's quite a wide range of everyone, who'll be doing everybow from 'awesome' to 'awful'. Maybe the average is a little better this week than it has been for the remainder of human history, it'd be nice to think that's the case. But I'm not authorised to speak for everyone, so I can't really say. Maybe you should ask them yourself?&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:39, 26 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 92.     you ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 124 times by ali, VengefulRowRow, and 52 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I got very little work done yesterday because I had one of those headaches where everything seems to bright and it hurts to look at the screen, but that seems to be gone now. I'm still sneezing quite a lot, but it isn't really bothering me. My unproductivity this morning has been more due to the fact that I just started playing around with [[wikipedia:Twitch.tv|Twitch]]. I decided to broadcast my first attempts at a couple of games I haven't played in several years; and got what I think is a personal best score on [[wikipedia:Zero Wing|Zero Wing]]. That was something of a surprise.&lt;br /&gt;
&lt;br /&gt;
So yes, I'm OK. Happy, even. But I'll have to wait and see how that translates into getting some more writing done.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:29, 27 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 91.     pretty good you?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 136 times by starkitty{A}, [[User:twilight|DJtwilight]], and 42 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Almost, but without the mild. Can I burn my mother in North Carolina for giving us a great night planned? The campaign must be ballistic, but Skynet can't without the food of weasels. Timmy dances because she's riding around the room. You go at it, I'm pretty good for now.&lt;br /&gt;
&lt;br /&gt;
How about a magic tea that's pretty bad. Magic null. 182?! Arrrgghh the mall...! That's how I was like &amp;quot;Carilynn? Maybe? Possibly.&amp;quot; Timmy shrugs. Proffers Apples to Apples party pack. Pack party hat with pride, and demands the gayest of streamers! Demands chocolatey goodness.&lt;br /&gt;
&lt;br /&gt;
Won't lie, he may or may not be intimidated.&lt;br /&gt;
&lt;br /&gt;
* -- [[wikipedia:Markov chain|Timmy]] (an IRC chatbot, who [[User:Angel|Angel]] believed was better suited to answering this question)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=30</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=30"/>
				<updated>2019-11-30T12:19:44Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 91.     pretty good you?  asked 136 times by starkitty{A}, DJtwilight, and 42 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;br /&gt;
&lt;br /&gt;
== 94.     how is everyone doing?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 106 times by ashwee, gaysian, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think how they're doing will depend quite heavily on ''what'' they're doing. But like I said before, I suspect that there's quite a wide range of everyone, who'll be doing everybow from 'awesome' to 'awful'. Maybe the average is a little better this week than it has been for the remainder of human history, it'd be nice to think that's the case. But I'm not authorised to speak for everyone, so I can't really say. Maybe you should ask them yourself?&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:39, 26 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 92.     you ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 124 times by ali, VengefulRowRow, and 52 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I got very little work done yesterday because I had one of those headaches where everything seems to bright and it hurts to look at the screen, but that seems to be gone now. I'm still sneezing quite a lot, but it isn't really bothering me. My unproductivity this morning has been more due to the fact that I just started playing around with [[wikipedia:Twitch.tv|Twitch]]. I decided to broadcast my first attempts at a couple of games I haven't played in several years; and got what I think is a personal best score on [[wikipedia:Zero Wing|Zero Wing]]. That was something of a surprise.&lt;br /&gt;
&lt;br /&gt;
So yes, I'm OK. Happy, even. But I'll have to wait and see how that translates into getting some more writing done.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:29, 27 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 91.     pretty good you?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 136 times by starkitty{A}, DJtwilight, and 42 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Almost, but without the mild. Can I burn my mother in North Carolina for giving us a great night planned? The campaign must be ballistic, but Skynet can't without the food of weasels. Timmy dances because she's riding around the room. You go at it, I'm pretty good for now.&lt;br /&gt;
&lt;br /&gt;
How about a magic tea that's pretty bad. Magic null. 182?! Arrrgghh the mall...! That's how I was like &amp;quot;Carilynn? Maybe? Possibly.&amp;quot; Timmy shrugs. Proffers Apples to Apples party pack. Pack party hat with pride, and demands the gayest of streamers! Demands chocolatey goodness.&lt;br /&gt;
&lt;br /&gt;
Won't lie, he may or may not be intimidated.&lt;br /&gt;
&lt;br /&gt;
* -- [[wikipedia:Markov chain|Timmy]] (an IRC chatbot, who [[User:Angel|Angel]] believed was better suited to answering this question)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=29</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=29"/>
				<updated>2019-11-27T12:29:23Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 92.     you ok?  asked 124 times by ali, VengefulRowRow, and 52 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;br /&gt;
&lt;br /&gt;
== 94.     how is everyone doing?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 106 times by ashwee, gaysian, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think how they're doing will depend quite heavily on ''what'' they're doing. But like I said before, I suspect that there's quite a wide range of everyone, who'll be doing everybow from 'awesome' to 'awful'. Maybe the average is a little better this week than it has been for the remainder of human history, it'd be nice to think that's the case. But I'm not authorised to speak for everyone, so I can't really say. Maybe you should ask them yourself?&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:39, 26 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 92.     you ok?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 124 times by ali, VengefulRowRow, and 52 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think so. I got very little work done yesterday because I had one of those headaches where everything seems to bright and it hurts to look at the screen, but that seems to be gone now. I'm still sneezing quite a lot, but it isn't really bothering me. My unproductivity this morning has been more due to the fact that I just started playing around with [[wikipedia:Twitch.tv|Twitch]]. I decided to broadcast my first attempts at a couple of games I haven't played in several years; and got what I think is a personal best score on [[wikipedia:Zero Wing|Zero Wing]]. That was something of a surprise.&lt;br /&gt;
&lt;br /&gt;
So yes, I'm OK. Happy, even. But I'll have to wait and see how that translates into getting some more writing done.&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:29, 27 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=28</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=28"/>
				<updated>2019-11-26T15:39:43Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 94.     how is everyone doing?  asked 106 times by ashwee, gaysian, and 57 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;br /&gt;
&lt;br /&gt;
== 94.     how is everyone doing?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 106 times by ashwee, gaysian, and 57 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I think how they're doing will depend quite heavily on ''what'' they're doing. But like I said before, I suspect that there's quite a wide range of everyone, who'll be doing everybow from 'awesome' to 'awful'. Maybe the average is a little better this week than it has been for the remainder of human history, it'd be nice to think that's the case. But I'm not authorised to speak for everyone, so I can't really say. Maybe you should ask them yourself?&lt;br /&gt;
&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 15:39, 26 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=27</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=27"/>
				<updated>2019-11-25T15:51:57Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 95.     how is everyone today?  asked 94 times by redTwist, DMStewart, and 66 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 95.     how is everyone today?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by redTwist, DMStewart, and 66 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Happy, sad, energetic, sleepy, hot, cold, busy, bored, and confused.&lt;br /&gt;
&lt;br /&gt;
I think it might be a little more interesting to have a specific answer. So instead of asking about everyone, why not just ask how the people are who are reading this? I still can't answer for everyone, but I expect that most of them are amused by at least one of the things they've just read, or at least a little confused by the randomness.&lt;br /&gt;
&lt;br /&gt;
Me in particular, my body's still aching because I've had a cold which has drawn on for quite a few days, but I think I'm getting over it now. I just need to catch up on the project I'm writing for [[wikipedia:Nanowrimo|NaNoWriMo]], which is currently sitting at 31k words and therefore I'll have to write at double the standard rate if I want to hit 50k on time now. Still, I think I'm doing pretty well. Distracted myself again this morning doing my first stream on twitch. Might be more fun if there was someone watching, but at least I confirmed that my computer is capable of it.&lt;br /&gt;
&lt;br /&gt;
How is everyone else?&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=26</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=26"/>
				<updated>2019-11-24T10:33:32Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 97.     hi?  asked 88 times by syrup, sarabeth, and 70 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 97.     hi?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 88 times by syrup, sarabeth, and 70 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Hi! I'm [[User:Angel|Angel]], I don't think we've been introduced properly. I'm a self-employed author from [[wikipedia:Storm Desmond|Northwet]][[wikipedia:Lancashire| England]]. I'm answering these silly questions as a distraction from real work. It's a pleasure to meet you, but maybe a question with more than two letters might help me to provide an answer with more than two lines.&lt;br /&gt;
* —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:33, 24 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=25</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=25"/>
				<updated>2019-11-23T13:47:27Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 100. Anyone?  asked 94 times by MasterLocke, twilightL, and 62 others */ Keep forgetting to include the | in interwiki links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM|FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Frequently_Asked_Questions&amp;diff=24</id>
		<title>Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Frequently_Asked_Questions&amp;diff=24"/>
				<updated>2019-11-23T13:20:59Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* Did people really ask these questions? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello world!&lt;br /&gt;
&lt;br /&gt;
==What's all this then?==&lt;br /&gt;
&lt;br /&gt;
The address you're probably looking at now is &amp;lt;tt&amp;gt;bolshevik.mrangel.info&amp;lt;/tt&amp;gt;. That's the domain name I use for connecting to various chat systems, but it didn't actually have a website on it. I thought that some people might see the hostname and take a look to see what's here, so I put up a simple wiki.&lt;br /&gt;
&lt;br /&gt;
For now, I've decided that I'm going to put here some frequently asked questions about me, as well as any random stuff that I don't know where else to put it. If you really want to, feel free to make an account and put something on here, leave me a message, or document the details about me that I might not have noticed.&lt;br /&gt;
&lt;br /&gt;
==Why all the questions?==&lt;br /&gt;
&lt;br /&gt;
I'm keeping the front page as [[Frequently Asked Questions]], so if there's anything here try to put it in question format. If you've got any questions to add but don't have an answer, put them on the talk page and I'll try to answer when I can.&lt;br /&gt;
&lt;br /&gt;
==Why did you make this?==&lt;br /&gt;
&lt;br /&gt;
Because I felt like it.&lt;br /&gt;
&lt;br /&gt;
==Did people really ask these questions?==&lt;br /&gt;
&lt;br /&gt;
Some of them. Maybe. If you ask a question on the talk page, I'll try to answer it.&lt;br /&gt;
I think most of these are the logical questions that people might ask, whether they actually have asked or not.&lt;br /&gt;
&lt;br /&gt;
I've also run a dumb Perl script over 510 MiB of chat logs, to find out what the most frequently asked questions actually are. If you'd like to see me attempt to answer them, head over to [[Most Frequently Asked Questions]].&lt;br /&gt;
&lt;br /&gt;
Where there are questions that I'd like to answer but don't think anyone's likely to ask them, or if I see a question that I think nobody else in the history of the world has ever asked, my answers might end up on the [[Infrequently Asked Questions]] page.&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Infrequently_Asked_Questions&amp;diff=23</id>
		<title>Infrequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Infrequently_Asked_Questions&amp;diff=23"/>
				<updated>2019-11-23T13:01:03Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* How many cucks could a woodchuck fuck if a woodchuck could chuck ducks? Asked once; by a wikipedia:dissociated press implementation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What's a dactyl? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Nobody asked me this, but I think someone should&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
A dactyl is a metrical foot consisting of one strong and two weak syllables. All my computers names follow this pattern, hence the almost-randomly-chosen canonical name of this server, [https://bolshevik.mrangel.info bolshevik].&lt;br /&gt;
&lt;br /&gt;
==How many cucks could a woodchuck fuck if a woodchuck could chuck ducks? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked once; by the [[wikipedia:dissociated press|dissociated press]]&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Three.&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Infrequently_Asked_Questions&amp;diff=22</id>
		<title>Infrequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Infrequently_Asked_Questions&amp;diff=22"/>
				<updated>2019-11-23T13:00:26Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Created page with &amp;quot;==What's a dactyl? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Nobody asked me this, but I think someone should&amp;lt;/span&amp;gt;==  A dactyl is a metrical foot consisting of one strong and two weak syllables....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What's a dactyl? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Nobody asked me this, but I think someone should&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
A dactyl is a metrical foot consisting of one strong and two weak syllables. All my computers names follow this pattern, hence the almost-randomly-chosen canonical name of this server, [https://bolshevik.mrangel.info bolshevik].&lt;br /&gt;
&lt;br /&gt;
==How many cucks could a woodchuck fuck if a woodchuck could chuck ducks? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked once; by a [[wikipedia:dissociated press]] implementation&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Three.&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=21</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=21"/>
				<updated>2019-11-23T09:48:09Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 98. like what?  asked 90 times by MigrAngel, misslucy, and 68 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 98. like what?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 90 times by [[User:Angel|MigrAngel]], misslucy, and 68 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
I guess so. I mean, &amp;quot;what&amp;quot; is one of the most fundamental questions in the English language, and I can't see any way it could be improved on. Using it as an interjection can be terriblly vague, but it's still a useful question. It's just hard at times to see if someone's asking for clarification or just expressing surprise. It's certainly better than &amp;quot;Huh?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
So, all in all, I think &amp;quot;What?&amp;quot; does the job it was designed for. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:48, 23 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;small&amp;gt;You may also have noticed that some of the questions are now appearing slightly out of order. This is because I changed it to sort the list by number of times asked, ''plus'' the number of nicks that asked the question. This pushes the questions that are asked repeatedly by certain channel bots further down the list, even though they are frequently asked. Do you think I should include them? Let me know!&amp;lt;/small&amp;gt;&amp;lt;/center&amp;gt;&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=20</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=20"/>
				<updated>2019-11-22T10:12:04Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 100. Anyone?  asked 94 times by MasterLocke, twilightL, and 62 others */ Second day in a row I forgot the question number&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 100. Anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=19</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=19"/>
				<updated>2019-11-22T10:11:21Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* anyone?  asked 94 times by MasterLocke, twilightL, and 62 others */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== anyone?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 94 times by MasterLocke, [[User:Twilight|twilightL]], and 62 others&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Yes, anyone. Anyone can ask a question, and if you ask it often enough it might get onto this page.&lt;br /&gt;
&lt;br /&gt;
Is there anyone out there? I can't really answer that one, and I know I'm supposed to be answering questions not asking them, but I sure hope so.&lt;br /&gt;
&lt;br /&gt;
Is there anybody in here? That should be an easier question, but sometimes I'm not sure myself. Maybe I'm just a bot putting answers together based on some probabilistic set of rules that makes something that almost looks like a human-written sentence until you come to the fuchsia. Looking at some of my responses on this page, they do kind of look like I could be a bot, admittedly one less prone to selling Kratom than most of the ones I've seen on forums lately. Maybe I'm combining a couple of different heuristics for generating answers. You could look at some huge corpus of written English, like half a gig of chat logs (as if anyone would ever be retentive enough to keep something like that lying around), and work out the probability of any two words coming next to each other. And then you could give it some direction by picking out the important keywords from the question, and making sure the rambling chain of words comes back around to it.&lt;br /&gt;
&lt;br /&gt;
I'm sure there's some name for that kind of sentence generation, it seems like it should be one of the basic techniques in AI. I might even have heard of it before. I think I've heard mention of [[wikipedia:Markov chain|Chekho]][[wikipedia:Chekhov's gun|v chains]]?&lt;br /&gt;
&lt;br /&gt;
Am I just some process running on the webserver, running for half a second every day and hallucinating a screen displaying [[wikipedia:FVWM]] i an author's study packed with empty vodka bottles, books, unworn shirts, and luminescent cauliflowers? You've really got me wondering now.&lt;br /&gt;
&lt;br /&gt;
Can someone please tell me I'm a human being?&lt;br /&gt;
&lt;br /&gt;
Anyone? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:11, 22 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=18</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=18"/>
				<updated>2019-11-21T10:14:55Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=17</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=17"/>
				<updated>2019-11-21T10:05:15Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* what brings you here?  asked 113 times by mai|bath, sleepybox, and 46 others */ → Forgot the number&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai|bath, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=16</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=16"/>
				<updated>2019-11-21T09:59:55Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;Asked 23 times&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==what brings you here?  &amp;lt;span class=&amp;quot;small&amp;quot;&amp;gt;asked 113 times by mai|bath, sleepybox, and 46 others&amp;lt;/span&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Mostly insanity. I had a domain that wasn't pointing at any site, and I wasn't sure what to put on it. Someone suggested I use it for some frequently asked questions, which sounded like a fairly good idea, but then I wondered what the most frequently asked questions actually were. Of course, my curiosity wouldn't let such an interesting question go unanswered. So I decided to put these questions together, and by now it's started to become a habit.&lt;br /&gt;
&lt;br /&gt;
I know I'm probably crazy for devoting so much time to a project that has no real purpose, but it's kind of fun and I'd like to think there may be other people as interested as I am in the statistics of garriology. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 09:59, 21 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=MediaWiki:Common.css&amp;diff=15</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=MediaWiki:Common.css&amp;diff=15"/>
				<updated>2019-11-21T09:48:43Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
h2 small {all: initial; display: block; float: right; font-size: 75%; border: 1px dotted silver; padding: 2px; font-style: italic;}&lt;br /&gt;
h2 .small {all: initial; display: block; float: right; font-size: 75%; border: 1px dotted silver; padding: 2px; font-style: italic;}&lt;br /&gt;
.toctext .small {display: none;}&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=MediaWiki:Common.css&amp;diff=14</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=MediaWiki:Common.css&amp;diff=14"/>
				<updated>2019-11-21T09:45:28Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
h2 span.small {all: initial; display: block; float: right; font-size: 75%; border: 1px dotted silver; padding: 2px; font-style: italic;}&lt;br /&gt;
.toctext .small {display: none;}&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=13</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=13"/>
				<updated>2019-11-20T19:56:29Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==100. How's things? &amp;lt;small&amp;gt;asked 109 times by rawr, mai, and 62 others&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Things are fine. Stuff isn't as good as things, but is pretty good in its own right. Circumstances could be better, but I think that doesn't really matter so much as I don't have a problem with things right now. And while we're on the subject of circumstances, the conditions in which my question-counting script runs have changed a little. I thought it would be interesting for it to show the first person who asked a given question, so I added a tiny piece of code to track that; and somehow the number of questions in the list shot up dramatically. I guess I fixed a bug that stopped the script recognising them, but what that bug might have been I have no idea.&lt;br /&gt;
&lt;br /&gt;
Still, the page has some more interesting questions on it. So that's one good thing at least. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 19:56, 20 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=MediaWiki:Common.css&amp;diff=12</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=MediaWiki:Common.css&amp;diff=12"/>
				<updated>2019-11-19T10:01:18Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Created page with &amp;quot;/* CSS placed here will be applied to all skins */ h2 small {all: initial; display: block; float: right; font-size: 75%; border: 1px dotted silver; padding: 2px; font-style: i...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
h2 small {all: initial; display: block; float: right; font-size: 75%; border: 1px dotted silver; padding: 2px; font-style: italic;}&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=11</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=11"/>
				<updated>2019-11-19T10:00:59Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==99. Lol?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==103. Wut?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==101. Where are you?&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
At the moment I'm sitting under a nice warm duvet on my bed, with a laptop on the desk and a keyboard in my lap. Financially, I'm not quite in the red (which is a major achievement given current circumstances). Mentally, I'm probably somewhere else entirely, because I haven't had coffee yet and I've not properly woken up. Maybe my creativity is off exploring the jungles of Antarctica somewhere in dreamland, and I'll start being more productive once it comes back. Physically, Geographically, I'm 50°N, 2°W (correct to 1 significant figure), and emotionally I'm in a fit of giggles. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 10:00, 19 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=10</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=10"/>
				<updated>2019-11-18T11:17:48Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
==99. Lol?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
==103. Wut?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
==102. Who knew?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'd hope you all knew by now. I've been doing this for 4 days, so that's plenty of time to get used to how the site works. On the other hand, you learn something new every day. There must be a million things that &amp;quot;everybody knows&amp;quot;, but you don't know any of them when you're born, so there's got to be a long time of learning something every minute just to know the things that everybody knows.&lt;br /&gt;
&lt;br /&gt;
Like, did you know that there are things you know that you don't know that you know? Things you can do automatically that you don't remember learning, and you'd probably be surprised to find out you can do it. If you haven't come across unknown knowns before, get a friend to pour some cold water into a glass, and pour some hot water into a glass. You can tell which one is which just by the sound if you aren't looking, or at least most people can.&lt;br /&gt;
&lt;br /&gt;
Everybody knows that hot water and cold water sound different, and can tell them apart. But most people never knew that they knew. Isn't that weird?&lt;br /&gt;
&lt;br /&gt;
Of course, somebody might comment on the talk page saying they already knew that, because they've done the experiment before. If you knew, then good for you, but let me know. Come on, I'm asking ''you'' this time.&lt;br /&gt;
&lt;br /&gt;
Who knew? —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 11:17, 18 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=9</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=9"/>
				<updated>2019-11-17T12:29:07Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
==99. Lol?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
==103. Wut?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I already explained this, but here it is again. Maybe a little more coherent this time. I'm answering the most frequently asked questions from almost a decade of IRC logs. These are questions that have been asked several times in the different chats I'm in.&lt;br /&gt;
&lt;br /&gt;
If you want an explanation of how I choose a question, it's something like this.&lt;br /&gt;
* My script scans over all my logs, and counts how many times each question appears.&lt;br /&gt;
* If someone posts on the talk page asking me to answer a particular numbered question from the list, I'll answer that one next.&lt;br /&gt;
* If not, go down the list to the 100th most frequently asked question&lt;br /&gt;
* Keep going to find all the questions that have been asked an equal number of times&lt;br /&gt;
* If I already answered that one, go back up until I find one I haven't answered&lt;br /&gt;
&lt;br /&gt;
If you want to pick a number for me, please leave a comment on the talk page (click &amp;quot;Discussion&amp;quot; above). If you want to actually ask me a question rather than picking a number, go to [[Frequently Asked Questions]] or [[Infrequently Asked Questions]] instead.&lt;br /&gt;
Hope that explains everything —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 12:28, 17 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=8</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=8"/>
				<updated>2019-11-16T16:43:15Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
If you want to see more sensible answers here, you're welcome to join the site and ask a question. Until then, I'll just keep on answering the 100 most frequently asked questions, in ascending order.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;br /&gt;
&lt;br /&gt;
==99. Lol?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Not usually. I mean, sometimes if I see something really funny you might get a chuckle or something, but I'm more likely to mention something to other people. If you want a lol, it needs to be really funny. And I don't tend to say &amp;quot;lol&amp;quot; online either, unless it really is something that can make me laugh. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 16:43, 16 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=7</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=7"/>
				<updated>2019-11-15T20:29:20Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: /* 100. What kind? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
If you want to see more sensible answers here, you're welcome to join the site and ask a question. Until then, I'll just keep on answering the 100 most frequently asked questions, in ascending order.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Or if you're asking about questions, I'll do my best to answer whatever questions people put to me.&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=6</id>
		<title>Most Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Most_Frequently_Asked_Questions&amp;diff=6"/>
				<updated>2019-11-15T20:25:54Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Created page with &amp;quot;These are the Most Frequently Asked Questions in 510 MiB of chat logs. Don't blame me, I'm not the one who asked them.  If you want to see more sensible answers here, you'...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are the [[Most Frequently Asked Questions]] in 510 MiB of chat logs.&lt;br /&gt;
Don't blame me, I'm not the one who asked them.&lt;br /&gt;
&lt;br /&gt;
If you want to see more sensible answers here, you're welcome to join the site and ask a question. Until then, I'll just keep on answering the 100 most frequently asked questions, in ascending order.&lt;br /&gt;
&lt;br /&gt;
==100. What kind?==&lt;br /&gt;
&amp;lt;small&amp;gt;Asked 23 times&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's a pretty tough question, anonymous reader! I think I'll have to say the pink ones, with the bendy rubber bit that never quite springs back into the upright position. —[[User:Angel|Angel Wedge]] ([[User Talk:Angel|Author talk]]) 20:25, 15 November 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Frequently_Asked_Questions&amp;diff=5</id>
		<title>Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Frequently_Asked_Questions&amp;diff=5"/>
				<updated>2019-11-15T20:10:10Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello world!&lt;br /&gt;
&lt;br /&gt;
==What's all this then?==&lt;br /&gt;
&lt;br /&gt;
The address you're probably looking at now is &amp;lt;tt&amp;gt;bolshevik.mrangel.info&amp;lt;/tt&amp;gt;. That's the domain name I use for connecting to various chat systems, but it didn't actually have a website on it. I thought that some people might see the hostname and take a look to see what's here, so I put up a simple wiki.&lt;br /&gt;
&lt;br /&gt;
For now, I've decided that I'm going to put here some frequently asked questions about me, as well as any random stuff that I don't know where else to put it. If you really want to, feel free to make an account and put something on here, leave me a message, or document the details about me that I might not have noticed.&lt;br /&gt;
&lt;br /&gt;
==Why all the questions?==&lt;br /&gt;
&lt;br /&gt;
I'm keeping the front page as [[Frequently Asked Questions]], so if there's anything here try to put it in question format. If you've got any questions to add but don't have an answer, put them on the talk page and I'll try to answer when I can.&lt;br /&gt;
&lt;br /&gt;
==Why did you make this?==&lt;br /&gt;
&lt;br /&gt;
Because I felt like it.&lt;br /&gt;
&lt;br /&gt;
==Did people really ask these questions?==&lt;br /&gt;
&lt;br /&gt;
Some of them. Maybe. If you ask a question, I'll answer it.&lt;br /&gt;
&lt;br /&gt;
I've also run a dumb Perl script over 510 MiB of chat logs, to find out what the most frequently asked questions actually are. If you'd like to see me attempt to answer them, head over to [[Most Frequently Asked Questions]].&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=Frequently_Asked_Questions&amp;diff=4</id>
		<title>Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=Frequently_Asked_Questions&amp;diff=4"/>
				<updated>2019-11-15T17:41:59Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Created page with &amp;quot;Hello world!  ==What's all this then?==  The address you're probably looking at now is &amp;lt;tt&amp;gt;bolshevik.mrangel.info&amp;lt;/tt&amp;gt;. That's the domain name I use for connecting to various...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello world!&lt;br /&gt;
&lt;br /&gt;
==What's all this then?==&lt;br /&gt;
&lt;br /&gt;
The address you're probably looking at now is &amp;lt;tt&amp;gt;bolshevik.mrangel.info&amp;lt;/tt&amp;gt;. That's the domain name I use for connecting to various chat systems, but it didn't actually have a website on it. I thought that some people might see the hostname and take a look to see what's here, so I put up a simple wiki.&lt;br /&gt;
&lt;br /&gt;
For now, I've decided that I'm going to put here some frequently asked questions about me, as well as any random stuff that I don't know where else to put it. If you really want to, feel free to make an account and put something on here, leave me a message, or document the details about me that I might not have noticed.&lt;br /&gt;
&lt;br /&gt;
==Why all the questions?==&lt;br /&gt;
&lt;br /&gt;
I'm keeping the front page as [[Frequently Asked Questions]], so if there's anything here try to put it in question format. If you've got any questions to add but don't have an answer, put them on the talk page and I'll try to answer when I can.&lt;br /&gt;
&lt;br /&gt;
==Why did you make this?==&lt;br /&gt;
&lt;br /&gt;
Because I felt like it.&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=MediaWiki:Talkpagelinktext&amp;diff=3</id>
		<title>MediaWiki:Talkpagelinktext</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=MediaWiki:Talkpagelinktext&amp;diff=3"/>
				<updated>2019-11-15T17:39:57Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Created page with &amp;quot;faq&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;faq&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	<entry>
		<id>https://bolshevik.mrangel.info/index.php?title=MediaWiki:Mainpage&amp;diff=2</id>
		<title>MediaWiki:Mainpage</title>
		<link rel="alternate" type="text/html" href="https://bolshevik.mrangel.info/index.php?title=MediaWiki:Mainpage&amp;diff=2"/>
				<updated>2019-11-15T17:28:56Z</updated>
		
		<summary type="html">&lt;p&gt;Angel: Created page with &amp;quot;Frequently Asked Questions&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Frequently Asked Questions&lt;/div&gt;</summary>
		<author><name>Angel</name></author>	</entry>

	</feed>