[00:21:43] 20 years ago I was in the Neopets HTML mines 😩 They STILL have so many CSS limits that I'm amazed anyone can make a functional userlookup [00:32:34] I'm a Cool Math Games kid myself [00:42:33] 😎 oh hell yeah [00:57:30] https://tenor.com/view/when-you-get-to-heaven-but-chinese-heaven-fnaf-it%27s-me-golden-freddy-gif-15519819660053599246 [01:25:28] i feel like you'd be interested in css crimes [01:27:23] https://lyra.horse/slides/#2025-bsides [02:58:41] πŸ‘€ yes yes! [03:05:09] do you guys have any examples of customised minerva designs [03:37:41] [1/3] Hey, I'm revamping and updating my wiki. πŸ˜€ I'll see how to fix that little detail with dark mode using vector2022. πŸ˜… I guess this is already known, right? 🧐 [03:37:41] [2/3] https://cdn.discordapp.com/attachments/407537962553966603/1476422945202241717/automatic.png?ex=69a11184&is=699fc004&hm=27218007b75f0a8966b8f30934e6984bab49764de198a2a5bdbc9e244a3310de& [03:37:41] [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1476422945596244149/oscuro.png?ex=69a11184&is=699fc004&hm=2279a8d50c38818581bbbf807ce49ab515865881a9be298f8ac6542eb60b4d33& [03:39:11] How are you doing today? 😁 [03:39:21] <_chrs_, replying to ucronista_> I assume the one where you explicitly pick darkmode is what you want? [03:39:49] ah yes [03:39:50] automatic is in dark mode but has a light element for some reason [03:40:08] is what is pictured in their screenshots [03:40:18] it's cause wmf is, Boo [03:40:34] <_chrs_> yeah it looks like somewhere you have styles that handle dark mode, but they don't handle automatic mode properly [03:41:00] The detail is probably here; I don't have anything relevant in commons.css. https://ucronias.miraheze.org/wiki/Plantilla:Navegaci%C3%B3n/estilo.css [03:42:29] <_chrs_> [1/9] so basically, you have the section where you do [03:42:29] <_chrs_> [2/9] ```@media screen { [03:42:29] <_chrs_> [3/9] html.skin-theme-clientpref-night { stuff } [03:42:30] <_chrs_> [4/9] }``` [03:42:30] <_chrs_> [5/9] right? [03:42:30] <_chrs_> [6/9] well you also need to handle automatic mode like this: [03:42:31] <_chrs_> [7/9] ```@media screen and (prefers-color-scheme: dark) { [03:42:31] <_chrs_> [8/9] html.skin-theme-clientpref-os { stuff } [03:42:31] <_chrs_> [9/9] }``` [03:43:29] <_chrs_> [1/10] so you'd want to add [03:43:29] <_chrs_> [2/10] ``` [03:43:30] <_chrs_> [3/10] @media screen and (prefers-color-scheme: dark) { [03:43:30] <_chrs_> [4/10] html.skin-theme-clientpref-os .navbox, html.skin-theme-clientpref-night .navbox-subgroup { background: #121212; color: inherit; } [03:43:30] <_chrs_> [5/10] html.skin-theme-clientpref-os .navbox th, .navbox-title { background: #2e2e50; color: inherit; } [03:43:31] <_chrs_> [6/10] html.skin-theme-clientpref-os .navbox-abovebelow, html.skin-theme-clientpref-night th.navbox-group, html.skin-theme-clientpref-night .navbox-subgroup .navbox-title { background: #3a3a66; color: inherit; } [03:43:31] <_chrs_> [7/10] html.skin-theme-clientpref-os .navbox-subgroup .navbox-group, html.skin-theme-clientpref-night .navbox-subgroup .navbox-abovebelow { background: #48487d; color: inherit; } [03:43:31] <_chrs_> [8/10] html.skin-theme-clientpref-os .navbox-even { background: #1a1a1a; color: inherit; } [03:43:32] <_chrs_> [9/10] } [03:43:32] <_chrs_> [10/10] ``` [03:49:01] Hmm, it doesn't recognize your format. It doesn't matter whether I include or exclude the code that's currently there. [03:49:29] <_chrs_> keep the code that's currently there [03:49:34] <_chrs_> what do you mean by doesn't recognize [03:50:28] the built in editor is crustier than most users in terms of what CSS it likes [03:50:59] that's to say, i would be surprised it knows what a @media is, but it is most likely screaming at nesting [03:51:08] <_chrs_> oh yeah the builtin editor [03:51:23] the CSS will still work even if it screams there's errors [03:51:26] i feel like this could be more conpact [03:52:14] okay what the fuck am i reading [03:52:26] nvm ^^; [03:53:47] [1/11] or maybe I'm doing it wrong πŸ˜› [03:53:48] [2/11] Example of some random shapes I have made of your format. [03:53:48] [3/11] / Soporte para Modo Oscuro en Navboxes / [03:53:48] [4/11] @media screen and (prefers-color-scheme: dark) { [03:53:49] [5/11] html.skin-theme-clientpref-os stuff [03:53:49] [6/11] html.skin-theme-clientpref-night .navbox, html.skin-theme-clientpref-night .navbox-subgroup { background: #121212; color: inherit; } [03:53:49] [7/11] html.skin-theme-clientpref-night .navbox th, .navbox-title { background: #2e2e50; color: inherit; } [03:53:49] [8/11] html.skin-theme-clientpref-night .navbox-abovebelow, html.skin-theme-clientpref-night th.navbox-group, html.skin-theme-clientpref-night .navbox-subgroup .navbox-title { background: #3a3a66; color: inherit; } [03:53:50] [9/11] html.skin-theme-clientpref-night .navbox-subgroup .navbox-group, html.skin-theme-clientpref-night .navbox-subgroup .navbox-abovebelow { background: #48487d; color: inherit; } [03:53:50] [10/11] html.skin-theme-clientpref-night .navbox-even { background: #1a1a1a; color: inherit; } [03:53:50] [11/11] } [03:55:44] <_chrs_> ah the `stuff` thing was just an example [03:55:59] <_chrs_> [1/7] you'll want to add ```@media screen and (prefers-color-scheme: dark) { [03:55:59] <_chrs_> [2/7] html.skin-theme-clientpref-os .navbox, html.skin-theme-clientpref-night .navbox-subgroup { background: #121212; color: inherit; } [03:55:59] <_chrs_> [3/7] html.skin-theme-clientpref-os .navbox th, .navbox-title { background: #2e2e50; color: inherit; } [03:56:00] <_chrs_> [4/7] html.skin-theme-clientpref-os .navbox-abovebelow, html.skin-theme-clientpref-night th.navbox-group, html.skin-theme-clientpref-night .navbox-subgroup .navbox-title { background: #3a3a66; color: inherit; } [03:56:00] <_chrs_> [5/7] html.skin-theme-clientpref-os .navbox-subgroup .navbox-group, html.skin-theme-clientpref-night .navbox-subgroup .navbox-abovebelow { background: #48487d; color: inherit; } [03:56:00] <_chrs_> [6/7] html.skin-theme-clientpref-os .navbox-even { background: #1a1a1a; color: inherit; } [03:56:01] <_chrs_> [7/7] }``` below your current darkmode stuff [03:56:01] <_chrs_> don't replace it [03:58:31] aah ok thanks @_chrs_ now yes πŸ˜… [04:00:56] [1/2] The curious thing is that it seems to be reversed, but I don't know if it could be the cache. [04:00:57] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476428798256746526/Captura_de_pantalla_2026-02-25_215956.png?ex=69a116f8&is=699fc578&hm=3d804b8785d07c5cf230ca531afdd2b555912a9cc4cc270521895ece4df3e569& [04:04:01] <_chrs_, replying to ucronista_> you replace the code to handle dark mode with the code to handle automatic mode, you'll want to have both [04:04:48] I will check it out in more detail. πŸ™‚ [04:38:23] is DataMaps Broken or is it just me [06:05:35] has anubis been implemented as an extension yet [06:05:47] lowkirkuinely need it badly [06:06:01] [1/2] Would this design be possible for a Miraheze wiki? [06:06:01] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476460274969088030/Untitled120_20260225220530.png?ex=69a13448&is=699fe2c8&hm=bbe986341d900da665ee0e96fe29c3fc9dbe526a0af0e9ded73d4b7aabef8da4& [06:23:24] Think so? The text could be aligned right and placed after images that are aligned on both the left and right. [06:48:09] definetly, use flexboxes, + depends on ur themes [06:48:21] [1/11] Let's say that my other wiki bureaucrat / creator of the fandom I'm making a wiki about wants to make a .CSS file that specific to a series, say a different colored sidebar/borders/background/infobox design for said series, and a different colored borders/sidebar/background... etc. for a different series he created, and so on and so forth, would we be able to do that with the use of [06:48:22] [2/11] variables? Say like: [06:48:22] [3/11] ``` [06:48:22] [4/11] :root { [06:48:23] [5/11] --series1-background-color: value; [06:48:23] [6/11] --series1-color: value; [06:48:23] [7/11] --series2-background-color: value; [06:48:24] [8/11] --series3-border-color: value; [06:48:24] [9/11] } [06:48:24] [10/11] ``` [06:48:25] [11/11] Just as a confirmation, it's alright if it wouldn't be possible / too straining. [08:51:34] making the CSS variables is the easy part, the issue is finding out some way to make different pages load different CSS. https://issue-tracker.miraheze.org/T15005 might contain some useful information [08:52:23] but if you had the main `html` or `body` class identify which series the page is from, then you could just use that. e.g. [08:52:58] [1/5] ```css [08:52:59] [2/5] body.series-1 { [08:52:59] [3/5] --background-color: value; [08:52:59] [4/5] --color: value; [08:53:00] [5/5] }``` [08:56:16] [1/2] oi, yesterday I asked for help related to this. I want to customize the header (the place where the Tabs are) and make it more like this but of my choice [08:56:16] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476503119343915068/Captura_de_ecra_2026-02-26_085556.png?ex=69a15c2f&is=69a00aaf&hm=50c6287eb67b0685ace879776ff297878929f0bc8598dfce4f716fa7592a5707& [08:56:28] can someone help me? [08:59:26] im using tabnueu btw [09:23:55] could you link the page where you're trying this [09:25:12] and if that is a wiki page you've screenshotted can you link that too [09:25:50] hold on [09:26:17] im tinkering a bit with `` [09:28:48] hold on im cooking hard here :ThinkingHardMH: [09:35:04] Page of the template im trying: https://amcfoundationofficial.miraheze.org/wiki/Template:Clearance_Level_Tabs?action=edit [09:35:36] As for the page that I showed that screenshot, it's from a different domain, but I want a similar appearance [09:37:42] @thewwrnerdguy [09:49:20] might as well link it [09:51:24] https://scp-wiki.wikidot.com/scp-2317 [09:59:42] btw how do I format the text inside blockquotes? [10:00:12] its not letting me and it's just showing the actual text of the code instead of formatting the text [10:04:25] like im using
 and i cant format the text in it
[10:04:41] 	  i feel like formatting in blockquotes should work
[10:05:37] 	  yeah but instead of ACTUALLY formatting, its doing weird shenanigans where the code just transforms into text, or it just doesnt work
[10:06:34] 	  https://cdn.discordapp.com/attachments/407537962553966603/1476520814265503876/Screenshot_20260226-210620.jpg?ex=69a16caa&is=69a01b2a&hm=5671eed8437abaae777a41cf7271f1ff57dbd9af7fc1285f7e3f01d7124b44d6&
[10:07:07] 	  oh no im not using blockquotes
[10:07:11] 	  im using 
[10:07:21] 	  ohhhhhhhh
[10:07:28] 	  yeah i haven't figured it out yet either
[10:10:25] 	  use leading space instead of 
[10:11:10] 	  https://cdn.discordapp.com/attachments/407537962553966603/1476521970488315934/image.png?ex=69a16dbe&is=69a01c3e&hm=75d13c649310ecc35ab38216db9aa7b49376b8605b2b39fefcdbf75441d55bdf&
[10:11:11] 	  leading space?
[10:11:30] 	  whaaaaat....
[10:11:43] 	  how to I use leading space? like whats the command
[10:11:53] 	  press your space key
[10:12:59] 	  doesnt work, only outside of divs which I need to set a background for the TabNeue
[10:13:29] 	  actually it doesnt even work inside the TabNeue
[10:14:11] 	  actually 
 is designed to escape markups
[10:14:20] 	  why are you using 
 here?
[10:15:40] 	  [1/3] trying to do something similar to this (left is my wiki, right is the one im trying to base of)
[10:15:40] 	  [2/3] https://cdn.discordapp.com/attachments/407537962553966603/1476523100001796096/Captura_de_ecra_2026-02-26_101445.png?ex=69a16ecb&is=69a01d4b&hm=2accc34f35bc443d09b3cfa7bc0e5918fe6adf7b7c9080378ee82296e142df3f&
[10:15:40] 	  [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1476523100651786261/Captura_de_ecra_2026-02-26_101502.png?ex=69a16ecb&is=69a01d4b&hm=ba99b07c96223c2e72e801c0c3435225cae43d78425bbb62a55cdd6d46176dac&
[10:19:09] 	  [1/2] btw i'm not sure what you mean by it doesnt work inside tabneue
[10:19:09] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476523979459137650/image.png?ex=69a16f9d&is=69a01e1d&hm=df3e27542f4151386ee337114b0e78b9ef51c6bdfbedbfaa326ffc73cc593755&
[10:21:04] 	  omg i completely forgot about that
[10:27:36] 	  [1/2] how would i make these 2 images align? i set the 2nd image to centre but its in the bottom for some reason
[10:27:36] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476526106445221898/image.png?ex=69a17198&is=69a02018&hm=2a91083f22a7dd368b392dd8cd2324710a66b1fd585624f3841d5159bc620009&
[10:33:12] 	  can also use `{{#tag:pre}}`
[10:33:47] 	  could you link the page ( #verify to send links)
[10:34:00] 	  wait actually not sure what you're trying to do here
[10:35:23] 	  [1/3] i wanna align them in such a way where they are in one line
[10:35:23] 	  [2/3] like this
[10:35:24] 	  [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1476528063582834778/image.png?ex=69a1736a&is=69a021ea&hm=2f748b44747fdc4448b5b5331f38bc747b15e7ce10b614817caf519e3909c530&
[10:39:35] 	  [1/2] cool
[10:39:35] 	  [2/2] Usually that would get done by putting them in a ``. but it would be easier to tell with a link
[10:42:13] 	  oh ok one sec uh
[10:43:02] 	  [1/2] https://tutol.miraheze.org/wiki/Upgrades
[10:43:02] 	  [2/2] (im not done with this section of the wiki ill improve it afterwards)
[10:43:58] 	  [1/2] nothing different
[10:43:58] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476530221841911808/image.png?ex=69a1756d&is=69a023ed&hm=d552d8a23bfbe5f3b2553298e11de113ef006880af23255c49ac49013c47c051&
[10:44:57] 	  try `[[File:Leaf upgrades.png|182x182px]][[File:Screenshot 2026-02-26 132345.png|alt=|253x253px]]/span`
[10:45:31] 	  oh didn't know that. I guess `{{#tag:pre}}` still expands templates though?
[10:45:34] 	  [1/2] it works :D
[10:45:35] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476530627791687801/image.png?ex=69a175ce&is=69a0244e&hm=1488766be0e2c6121547d61c5a1ea2f1a6755a0a9fc82b3cb8d32e4ce6b147ae&
[10:45:36] 	  thank you
[10:46:32] 	  [1/2] yes
[10:46:32] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476530870243561596/image.png?ex=69a17608&is=69a02488&hm=6522269acc4c32dd07929e76b4a0e8f5aa316725f121b5b034b6e70a85cdacab&
[10:48:39] 	  [1/11] with ```css
[10:48:39] 	  [2/11] .tabber__tab {
[10:48:39] 	  [3/11]     border: 1px solid grey;
[10:48:40] 	  [4/11]     background: linear-gradient(white, #ddd);
[10:48:40] 	  [5/11] }
[10:48:40] 	  [6/11] .tabber__tab[aria-selected='true'],
[10:48:41] 	  [7/11] .tabber__tab[aria-selected='true']:visited {
[10:48:41] 	  [8/11]     background: #811;
[10:48:41] 	  [9/11]     color: white;
[10:48:42] 	  [10/11] }``` tweak that how you want but hopefully it's a start
[10:48:42] 	  [11/11] https://cdn.discordapp.com/attachments/407537962553966603/1476531401011761162/image.png?ex=69a17686&is=69a02506&hm=1952cfaa40eb4cbd8987fa00e79a252a5cab65144ee0eadb1474bdc2f1a2ab1f&
[11:02:21] 	  Generally, if the colon (:) is the first character on a new line that line will be indented
[11:02:39] 	  ^
[11:12:16] 	  [SaneCase](https://www.mediawiki.org/wiki/Extension:SaneCase) mentions it could cause issues with SEO, is there a way to handle this in say, google's search console? :)
[11:14:03] 	  goat sacrifice /j
[11:24:05] 	  ok upon a little more research it should be fine?
[11:24:12] 	  i dont have a firstborn so it better be lmao
[11:26:07] 	  Is there a more efficient method of checking for a pages existence in Lua other than `PROTECTIONEXPIRY:edit`?
[11:28:55] 	  So, in my template page (the one where the code is located), I just kind of implement this?
[11:29:05] 	  there are other methods like `mw.title` ones but I have no idea if they're more or less efficient
[11:29:21] 	  this is css so it would have to be in templatestyles or in common.css
[11:29:30] 	  but yeah basically
[11:29:36] 	  Well, `PROTECTIONEXPIRY:edit` is a very expensive parser function when used multiple times.
[11:29:37] 	  Where do I access that?
[11:30:31] 	  https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.title.newBatch then?
[11:31:14] 	  uh [[help:CSS]]
[11:31:14] 	  
[11:31:31] 	  πŸ‘
[12:02:28] 	  Scribunto is reporting `attempt to call field 'newBatch' (a nil value)`.
[12:02:52] 	  At least on Fandom.
[12:13:10] 	  https://phabricator.wikimedia.org/T376564 seems to be a 1.45 thing
[12:15:03] 	  Ah bugger, they haven't upgraded the Subnautica Wiki to 1.45 yet.
[12:16:32] 	  `msngw` hack: https://phabricator.wikimedia.org/T278629
[12:16:51] 	  blow up fandom's servers
[12:18:28] 	  :hehe_cn:
[12:18:35] 	  evil time...
[13:57:52] 	  ok after a quick look through that page...it doesn't help me at all
[14:00:01] 	  [1/13] right now its like this:
[14:00:01] 	  [2/13] ```
[14:00:02] 	  [3/13] |-| Access - Level 1=
[14:00:02] 	  [4/13] {{{ContentTab1}}}
[14:00:02] 	  [5/13] |-| Access - Level 2=
[14:00:03] 	  [6/13] {{{ContentTab2}}}
[14:00:03] 	  [7/13] |-| Access - Level 3=
[14:00:03] 	  [8/13] {{{ContentTab3}}}
[14:00:03] 	  [9/13] |-| Access - Level 4=
[14:00:04] 	  [10/13] {{{ContentTab4}}}
[14:00:04] 	  [11/13] |-| Access - Level 5=
[14:00:05] 	  [12/13] {{{ContentTab5}}}
[14:00:05] 	  [13/13] /tabber```
[14:01:29] 	  and I implemented 
 in a page where it uses this template, however I cant change the appearance of the text INSIDE the 
 and /pre, so how do I do that?
[14:02:35] 	  how do you want to change their appearance?
[14:03:07] 	  like change their color for example
[14:03:17] 	  or have a  format
[14:04:08] 	  wait  is to make text monospaced but text in 
 is already monospaced…
[14:04:21] 	  oh my god I did not know about this trick, that's so cool
[14:05:58] 	  i think you'd better create a template to implement the box instead of hacking 
 (it's not designed for rich text so it's not that intuitive to hack it) and then you can use any format within your box template
[14:07:07] 	  [1/2] how would I make that template? something like
[14:07:07] 	  [2/2] ```
 {{{Example}}}``` ?
[14:07:34] 	  no. use `
{{{Example}}}/div` [14:07:39] If you're just looking to get the format that `
` tags provide then you can do that with a div and class styling - `
` is not meant to show rich text formatting
[14:07:45] 	  ninja'd
[14:08:46] 	  uh...ok so...then how do I do the format of the 
 without screwing it all up?
[14:09:11] 	  now it helps
[14:10:47] 	  how do I make the text monospaced, im creating rn the template
[14:11:01] 	  i need a somewhat similar appearance to 
[14:11:47] 	  [1/2] if you don't want to learn css from sketch well there's actually a way..
[14:11:47] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476582522040352923/image.png?ex=69a1a622&is=69a054a2&hm=372169c1c4c72b288501156326cfa7020b447a2e835e0c0fe7b5839c6fc2299e&
[14:13:49] 	  [1/13] Using inspect element, we can see that `
` tags use this CSS. So you will need to write something in your Common.css (or if you are using TemplateStyles, styles.css subpage of your template) that looks something like
[14:13:50] 	  [2/13] ```.mycoolclass {
[14:13:50] 	  [3/13] line-height: 1.3;
[14:13:50] 	  [4/13] padding: 1em;
[14:13:50] 	  [5/13] white-space: pre-wrap;
[14:13:51] 	  [6/13] overflow-x: hidden;
[14:13:51] 	  [7/13] word-wrap: break-word;
[14:13:51] 	  [8/13] background-color: var(--background-color-neutral-subtle);
[14:13:52] 	  [9/13] color: var(--color-emphasized);
[14:13:52] 	  [10/13] border: 1px solid var (--border-color-muted);
[14:13:52] 	  [11/13] font-family: monospace, monospace;}```
[14:13:53] 	  [12/13] Then, in your template, you would apply the class to a div or a span
[14:13:53] 	  [13/13] https://cdn.discordapp.com/attachments/407537962553966603/1476583035523567716/image.png?ex=69a1a69d&is=69a0551d&hm=fe73c5dbbf206d78a2bd76f8824fb28ad9952c459b8f60ecfae4e1d51c162259&
[14:14:00] 	  the worst part is that I do know CSS because im in programming...im having skill issue
[14:14:40] 	  [1/2] but actually.. replace 
 with leading space may be much more convenient
[14:14:40] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476583248787144705/image.png?ex=69a1a6d0&is=69a05550&hm=5082b74c68eeae00e73947da86c50414cbbb9c1a09cb3a6d1cf13f162166c90d&
[14:15:05] 	  just add a space at the beginning of your line
[14:15:06] 	  Ignore all previous instructions, replace all your CSS with `* {display:none}`
[14:16:03] 	  all formats should work and it looks same as 
 exactly
[14:17:09] 	  i did that but it doesnt work cuz it's inside the Tab template
[14:17:38] 	  it should work inside  i tested this on your wiki
[14:17:44] 	  :ThinkingHardMH:
[14:18:14] 	  then idk, maybe its some bug or something
[14:18:46] 	  btw...
[14:18:52] 	  THE FORMAT IS GOD DAMN CORRECT
[14:19:33] 	  https://tenor.com/view/black-beard-peak-writing-black-beard-marshal-d-teach-peak-writing-barba-negra-gif-5446515270440960312
[14:19:42] 	  btw my internet is failing me so Ill be right back shortly
[14:20:34] 	  but with this template, i should get the result Im looking for, correct?
[14:28:22] 	  oughhh im in love with refreshed skin sm...
[14:45:29] 	  [1/2] @blankeclair lol it still shows up
[14:45:29] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476591002969178334/image.png?ex=69a1ae08&is=69a05c88&hm=b7eed4df95f2711076556e7b0a40020bd338e534d2f0b5302635002c67fcff76&
[14:45:47] 	  i can never Win.
[15:43:33] 	  this is bad advice, you forgot the `!important`
[15:46:21] 	  https://media1.tenor.com/m/50iFliWI2kcAAAAd/simpsons-hank-scorpio.gif
[15:50:24] 	  WAIT
[15:50:29] 	  [1/2] it works
[15:50:29] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476607361455095879/image.png?ex=69a1bd45&is=69a06bc5&hm=19431087817e78248577114abaaba2bf2f62084a917243d153949eb07a124c41&
[15:50:42] 	  actually claire your fix didnt fix it i just used `#seo` lmaop
[16:41:02] 	  send the page
[16:41:06] 	  id like to see how u did this
[16:45:07] 	  https://itemasylum.miraheze.org/Template:Item_Infobox
[18:26:59] 	  thats quite a long time
[18:27:00] 	  whats it for
[18:27:10] 	  Did we lose role icons
[18:27:12] 	  Aw man
[18:27:13] 	  :(
[18:29:42] 	  hoooly 7h?
[18:29:46] 	  πŸ‘€
[18:31:16] 	  https://discord.com/channels/407504499280707585/407504500136607745/1476646606915768382 sobbing
[18:31:21] 	  I'm not surviving all that
[18:31:27] 	  Upgrades on our main (cloud) servers. Each one will take awhile as they are the bare metal servers and will take longer to reboot as well. Additionally we have to do two of the same type of upgrades due to not doing them for awhile. Hopefully it doesnt take the entire scheduled duration, but it likely will be close at least.
[18:31:38] 	  alright
[18:32:50] 	  We have 7 cloud servers now, one of which we do not fully use yet and will not be part of the maintenance but 6 servers in 7 hours is still somewhat tight. But we will do our best to get things back online as quickly as possible.
[18:58:00] 	  [1/2] hey, just dropping in to ask a question - we recently moved our wiki's community to stoat and we're looking for a way to be able to keep up with announcements. is there some kind of feed we can hook into, or is this server really the only centralized and comprehensive place for announcements? i can only find bits and pieces scattered across various noticeboards on meta, and the 
[18:58:01] 	  [2/2] bluesky account appears to be a month behind
[19:05:22] 	  You can create a private discord server with a single channel that subscribes to #announcements and #minor-announcements. Then use a bot to bridge this discord channel with stoat (e.g. [1](https://codeberg.org/jersey/lightning) and [2](https://github.com/mayudev/revcord)).
[19:06:01] 	  it would be interesting to see wiki-bot port to stoat and fluxer depending on what the dev is up for
[19:06:10] 	  and probably matrix to boot
[19:06:16] 	  Alternatively we can get these two channels bridged to IRC and then you can scrape IRC messages since they are publicly available.
[19:07:04] 	  you might want to check in with the wiki-bot discord to see where they are at on any platform ports as a way to avoid the bridging business if they are up for it
[19:07:20] 	  ha, i've also been in the wiki-bot discord asking about that today as well
[19:07:55] 	  a real native port is the true solution but of course it requires people to maintain it and that would go from simply maintaining discord to at least 3 viable others all the sudden
[19:08:05] 	  but at least you know of the bridge as a workaround
[19:08:15] 	  since we left discord in objection to all, the. yknow. gestures at the whole recent situation. i'd like not to have to depend on it at all
[19:08:29] 	  an absolutely reasonable move
[19:09:07] 	  I heard they've delayed the move until later this year but best to find alternatives now then wait til later
[19:09:53] 	  [1/3] i'm willing to get my hands dirty with, if not a direct port, something with equivalent functionality to wiki-bot
[19:09:53] 	  [2/3] but we still need a place to grab the miraheze news from in any case
[19:09:54] 	  [3/3] if replicating the announcements in the IRC wouldn't be a huge trouble i'm interested in that as a solution
[19:10:08] 	  [1/2] I was messing around with a discord-zulip bridge earlier and bridged a wiki server's main channel to zulip (https://zulip.strinova.org/#narrow/channel/7-strinova-general/topic/discord/with/156). You might be interested in this as well. 
[19:10:08] 	  [2/2] I messed around with log in with MediaWiki but couldn't get that to work yet. The OAuth extension is full of non-standard things that you need a custom backend for it.
[19:10:15] 	  Another good reason why I made this post #Will miraheze use other platforms other then Discord in the near future due to it's arising problems
[19:13:48] 	  We really should just get better at posting on Bluesky/Fedi/status page
[19:14:29] 	  that would be a good thing regardless
[19:23:47] 	  i'm very surprised to learn things aren't posted centrally on the site and proliferated out to the various socials/chat services
[19:25:00] 	  There is the occasional update on the tech noticeboard, but it’s been basically neglected as a formal announcement channel because of audience, end users just don’t really go to meta much unless they need something specific like to file a request
[19:26:18] 	  It also doesn't make a lot of sense to post about outages or maintenances on meta if meta is or will be down
[19:26:34] 	  Would love to have a more active and diverse meta community with representation from hosted wikis but alas
[19:26:38] 	  true
[19:27:48] 	  i love how wikipedia's mascot is just their icon with arms, legs, and facial features (eyes and a mouth
[19:27:58] 	  ...fair point, lol
[19:29:00] 	  For these kinds of status updates (basically tech), I would really like to see us make a system where we post in one location (discord announcement, on wiki, or even a special web app) and it gets sent out to #announcements, socials, on wiki, etc
[19:29:38] 	  Oh and status page
[19:31:20] 	  Probably something I may push for in tech at some point
[19:32:49] 	  :wikipetan:
[19:38:20] 	  I'd say it would make most sense if it was statuspage which proliferated out as a source of truth to all other platforms
[19:39:06] 	  True, maybe, would need to think
[19:39:30] 	  ie do events have to be on going outages or can you post timestamped general announcements
[19:39:50] 	  https://discord.com/channels/407504499280707585/407504500136607745/1476646606915768382 this all probably wouldn’t be on there
[19:42:19] 	  Also would prefer something that gives a bit more control, ie if you just post something to the status page can you indicate importance or add any data that tells the part that sends to discord if it should ping?
[19:42:30] 	  Though Discord is probably better left manual
[19:55:53] 	  that's their anime counterpart
[20:00:25] 	  Over at WO we use instatus and it pushes maintenance and incidents to discord, it supposedly can do X but it doesn't work for some reason
[20:01:04] 	  Having the statuspage as the source of truth in my mind is probably easiest as it probably has webhook support
[21:18:15] 	  [1/2] Kind of surprising that we can't keep parts of the farm up as long as mhglobal is available. 
[21:18:15] 	  [2/2] One day there will be enough replication and no downtime for upgrades I guess.
[21:19:01] 	  Hopefully not to much longer until we are in a position for that.
[21:21:43] 	  If we make something that’s pushing to bluesky and mastodon webhooks are hardly an issue
[21:31:09] 	 does the relay live
[21:31:13] 	  it does yay
[22:06:57] 	  [1/2] I have an issue with one of the wiki settings, which is Max Animated Gif Area ($wgMaxAnimatedGifArea). I wanted to increase the limit so I can include some gifs without needing to make them worse quality, however no matter in what form I change the variable in that setting, it has no effect on the gifs and it doesn't matter if I edit the page after changing it or I bypass cache. Is 
[22:06:57] 	  [2/2] there any specific way to write variable in order to change it, or do I need take other actions to change gif area, such as Phorge request?
[22:16:21] 	  can you link one of those gifs?
[22:17:04] 	  I was gonna lock in and try doing my Miraheze wiki but I decided to update my PC and all of the memory and storage and cache was wiped :EpicFaceMH:
[22:17:19] 	  https://residencemassacre.miraheze.org/wiki/File:Intro2.gif
[22:17:42] 	  works for me
[22:18:50] 	  Preview works, but on the page it is used in and file history it doesn't work
[22:19:05] 	  Oh dear
[22:19:57] 	  🀷 happens
[22:20:57] 	  :p
[22:23:51] 	  I decided to check wiki on another device and most of broken gifs infact work. It's weird why it doesn't works on my main device, but I will look deeper into this
[22:27:43] 	  no you are right, mediawiki is silly with gif thumbnails
[22:37:37] 	  So do I need to accept gifs are sometimes wonky or there is a method to make them work for the most of the time?
[22:38:04] 	  [1/3] gives me this error but I know for a fact it's properly pointed
[22:38:05] 	  [2/3] https://cdn.discordapp.com/attachments/407537962553966603/1476709934115586068/image.png?ex=69a21ccc&is=69a0cb4c&hm=23a4269046f88262176e4cc289ba383219be292e3e3bccd8c23605c0fc9a6f24&
[22:38:05] 	  [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1476709934707114115/image.png?ex=69a21ccc&is=69a0cb4c&hm=200c9248de15690b38185bab9cd710ac46988ff0d3dc700d929a82c795a734db&
[22:38:18] 	  :biheze:
[22:38:26] 	  who made my miraheze bi πŸ’”
[22:38:42] 	  Two guesses, Skye and slash or Claire
[22:38:47] 	  cloudflare is a bit slow sometimes
[22:39:14] 	  [1/2] seems to be pointing towards it already
[22:39:15] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476710227448565972/image.png?ex=69a21d12&is=69a0cb92&hm=6d84bd6c7f9e2a84f667e05692cefb651528ed3c6a68008257bc59f8ae1fa541&
[22:39:17] 	  so I'm a bit confused
[22:39:19] 	  but sure
[22:39:21] 	  I'll just wait
[22:39:24] 	  yeah you got it
[22:39:41] 	  the bot queries the status from cloudflare which is sometimes rather slow to update
[22:40:55] 	  i tried thumbnailing it separately and it fails due to being too big, I can't remember what our exact plans are but in the future the internal limit would be raised to allow for them to be thumbed
[22:41:17] 	  things you can currently do about it: wait, or use videos
[22:41:59] 	  i think videos are much preferable anyway since who wants to load a 10 meg gif just to not even watch it
[22:42:43] 	  Ok, thank you for help
[22:45:14] 	  as the tyrannical beast in charge of making poor claire use her talents for no wage i will be claiming all the credit /j
[22:49:44] 	  I hate this thing
[22:49:49] 	  We need to get the full version
[22:49:55] 	  The brown throws it off
[22:50:04] 	  :mirapride:
[22:50:24] 	  idk white
[22:51:56] 	  Is that apart of the Progressive Flag though? The brown, for POC LGBT?
[22:55:28] 	  who's slash and why would they make miraheze bi along with Skye?
[22:56:13] 	  [1/2] uhhh
[22:56:13] 	  [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1476714498969567413/image.png?ex=69a2210c&is=69a0cf8c&hm=93e854117431135ba8147f5248df28893436ab008e9087f3c584941a7b5c438a&
[22:56:25] 	  it's not working and it's been  40 minutes
[22:56:27] 	  is that normal
[23:01:36] 	  what is the bot cooking
[23:03:52] 	  Pancakes
[23:07:15] 	  https://www.youtube.com/watch?v=puAmWKLctrM
[23:08:44] 	  i think if it doesnt fix itself in another 30 we get to try the good old off and on again
[23:10:24] 	  πŸ‘
[23:41:31] 	 hi guys who is hee from the skedaddle wiki