Difference between revisions of "Talk:2206: Mavis Beacon"

Explain xkcd: It's 'cause you're dumb.
Jump to: navigation, search
(Unicode)
(added discussion note)
Line 33: Line 33:
  
 
Fixed it - to do it, go to https://www.explainxkcd.com/wiki/index.php?title=2205:_Types_of_Approximation&action=Purge , this works for any page if you change "2205:_Types_of_Approximation" to what it should be.
 
Fixed it - to do it, go to https://www.explainxkcd.com/wiki/index.php?title=2205:_Types_of_Approximation&action=Purge , this works for any page if you change "2205:_Types_of_Approximation" to what it should be.
 +
 +
==Discussion==
 +
Is it worth mentioning "Typing of the Dead" and its sequel?--[[Special:Contributions/162.158.34.210|162.158.34.210]] 14:53, 24 September 2019 (UTC)

Revision as of 14:53, 24 September 2019


So the # key, then?

Shifted or not? The implication is that it is, since that's where ‘~’ is. 141.101.99.41 18:44, 23 September 2019 (UTC)

On a typical German QWERTZ layout keyboard, the tilde key '~' can/must be entered via AltGr++; alternatively, Ctrl+Alt++ should work when there is no AltGr key. On certain "dead key" keyboard layouts, there even is no single and direct '~' key: To type a tilde, one would have to press AltGr++ followed directly by a space or to double-tap + while holding AltGr. This would mean even more complicated or pretty much impossible key combinations that would be needed to be pressed at the same time. However, holding AltGr or Ctrl+Alt to try and type a tilde would probably cancel out the "single" Alt key necessary for the comic's secret key code. So, once you've managed to type a tilde, it likely wouldn't count any more for the key combo, making it impossible to type this key combination on such keyboard. --Passerby (talk) 19:26, 23 September 2019 (UTC)
I've seen many programs provide hotkey instructions calling the grave key the tilde key due to the difficulty of differentiating between the grave key and the apostrophe key. So I'd assume no shifting is required. CJB42 (talk) 01:51, 24 September 2019 (UTC)

The link from Friday's comic to this new one is missing. -boB (talk) 19:21, 23 September 2019 (UTC)

This page was created by the bot only a short while ago. I may be wrong, but I think those links will be set automagically by such bot at some point after the creation of this page. --Passerby (talk) 19:31, 23 September 2019 (UTC)

Unicode

Presumably a lot of this could be achieved with Unicode; any advances on 𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡𝟘? Sabik (talk) 05:07, 24 September 2019 (UTC)

Simple means of checking:
>>> import unicodedata as ucd
>>> for i in range(0x110000):
...     c = chr(i)
...     if ucd.normalize("NFKD", c)[0] in "0123456789":
...         print(c, end=", ")
It actually spits out
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ², ³, ¹, ¼, ½, ¾, ⁰, ⁴, ⁵, ⁶, ⁷, ⁸, ⁹, ₀, ₁, ₂, ₃, ₄, ₅, ₆, ₇, ₈, ₉, ⅐, ⅑, ⅒, ⅓, ⅔, ⅕, ⅖, ⅗, ⅘, ⅙, ⅚, ⅛, ⅜, ⅝, ⅞, ⅟, ↉, ①, ②, ③, ④, ⑤, ⑥, ⑦, ⑧, ⑨, ⑩, ⑪, ⑫, ⑬, ⑭, ⑮, ⑯, ⑰, ⑱, ⑲, ⑳, ⒈, ⒉, ⒊, ⒋, ⒌, ⒍, ⒎, ⒏, ⒐, ⒑, ⒒, ⒓, ⒔, ⒕, ⒖, ⒗, ⒘, ⒙, ⒚, ⒛, ⓪, ㉑, ㉒, ㉓, ㉔, ㉕, ㉖, ㉗, ㉘, ㉙, ㉚, ㉛, ㉜, ㉝, ㉞, ㉟, ㊱, ㊲, ㊳, ㊴, ㊵, ㊶, ㊷, ㊸, ㊹, ㊺, ㊻, ㊼, ㊽, ㊾, ㊿, ㋀, ㋁, ㋂, ㋃, ㋄, ㋅, ㋆, ㋇, ㋈, ㋉, ㋊, ㋋, ㍘, ㍙, ㍚, ㍛, ㍜, ㍝, ㍞, ㍟, ㍠, ㍡, ㍢, ㍣, ㍤, ㍥, ㍦, ㍧, ㍨, ㍩, ㍪, ㍫, ㍬, ㍭, ㍮, ㍯, ㍰, ㏠, ㏡, ㏢, ㏣, ㏤, ㏥, ㏦, ㏧, ㏨, ㏩, ㏪, ㏫, ㏬, ㏭, ㏮, ㏯, ㏰, ㏱, ㏲, ㏳, ㏴, ㏵, ㏶, ㏷, ㏸, ㏹, ㏺, ㏻, ㏼, ㏽, ㏾, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 𝟎, 𝟏, 𝟐, 𝟑, 𝟒, 𝟓, 𝟔, 𝟕, 𝟖, 𝟗, 𝟘, 𝟙, 𝟚, 𝟛, 𝟜, 𝟝, 𝟞, 𝟟, 𝟠, 𝟡, 𝟢, 𝟣, 𝟤, 𝟥, 𝟦, 𝟧, 𝟨, 𝟩, 𝟪, 𝟫, 𝟬, 𝟭, 𝟮, 𝟯, 𝟰, 𝟱, 𝟲, 𝟳, 𝟴, 𝟵, 𝟶, 𝟷, 𝟸, 𝟹, 𝟺, 𝟻, 𝟼, 𝟽, 𝟾, 𝟿, 🄀, 🄁, 🄂, 🄃, 🄄, 🄅, 🄆, 🄇, 🄈, 🄉, 🄊

So unless you're mis-using characters which are not supposed to be numbers (which would change the screenreader experience from annoying in this case to actually unintelligible and is therefore ill-advisable), that's probably the closest you'd get. --141.101.104.139 09:35, 24 September 2019 (UTC)

Trochees

To tie this to a recurring theme in Mr. Munroe's comics... "Mavis Beacon Teaches Typing - Heroes on the half shell." Ryanker (talk) 20:14, 23 September 2019 (UTC)

Other

Currently, the button on Comic #2205 to go to this comic is missing - someone with more technical expertise than me, please fix this 172.69.22.134 21:07, 23 September 2019 (UTC)

Fixed it - to do it, go to https://www.explainxkcd.com/wiki/index.php?title=2205:_Types_of_Approximation&action=Purge , this works for any page if you change "2205:_Types_of_Approximation" to what it should be.

Discussion

Is it worth mentioning "Typing of the Dead" and its sequel?--162.158.34.210 14:53, 24 September 2019 (UTC)