Recent changes

Unfortunately, grouping results by page is not available on mobile. If you would like to use the group by page feature please visit the desktop site.

Track the most recent changes to the wiki on this page.

Recent changes options Below are the changes since 26 June 2024, 04:12 (up to 50 shown). (Reset date selection)
Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Hide bots | Hide minor edits
Show new changes starting from 05:48, 5 July 2024
 
 
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

5 July 2024

4 July 2024

3 July 2024

2 July 2024

  • Contionary:ðorsker 22:34 −2Sware talk contribs
  • N Module:string/char 22:33 +1,019Sware talk contribs(Created page with "local char = string.char local concat = table.concat local tonumber = tonumber local function err(cp) error("Codepoint " .. cp .. " is out of range: codepoints must be between 0x0 and 0x10FFFF.", 2) end local function utf8_char(cp) cp = tonumber(cp) if cp < 0 then err("-0x" .. ("%X"):format(-cp + 1)) elseif cp < 0x80 then return char(cp) elseif cp < 0x800 then return char( 0xC0 + cp / 0x40, 0x80 + cp % 0x40 ) elseif cp < 0x10000 then if cp >= 0xD8...")