User contributions for Lord-Giganticus
Jump to navigation
Jump to search
13 May 2024
- 03:4803:48, 13 May 2024 diff hist +42 User:Lord-Giganticus No edit summary current
- 03:4703:47, 13 May 2024 diff hist +23,324 N Module:ConvertNumeric Created page with "-- Module for converting between different representations of numbers. See talk page for user documentation. -- For unit tests see: Module:ConvertNumeric/testcases -- When editing, preview with: Module_talk:ConvertNumeric/testcases -- First, edit Module:ConvertNumeric/sandbox, then preview with Module_talk:ConvertNumeric/sandbox/testcases require('strict') local ones_position = { [0] = 'zero', [1] = 'one', [2] = 'two', [3] = 'three', [4] = 'four',..." current
9 March 2023
- 16:1016:10, 9 March 2023 diff hist 0 m Starlight Protected "Starlight": Let's not cause more issues with this dead program. ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
- 16:0816:08, 9 March 2023 diff hist +1,458 N Starlight Created page with "Starlight was a WIP tool made by Super Hackio that ultimately was canned due to drama and others not working on the project. = Basic Info = Starlight's developers were: * Super Hackio (Lead Developer) * JuPaHe64 (3d renderer/graphics) * Someone (Object Database/misc) * Lord-Giganticus (Build scripts/misc) Much like Whitehole, Starlight needed to know where your Game's file were, and then could open the galaxy with basic info. Starlight had a feature where certain ani..."
7 March 2023
- 21:5321:53, 7 March 2023 diff hist +208 N Template:Infobox/scenario Created page with "{| class="textbox grid alt center" style="max-width:75%; background:656565;" rules=all |- ! colspan=3 | Star info |- ! Name !! Star No. !! Access Requirement |- | {{{Name}}} || {{{Number}}} || {{{Access}}} |}" current
5 March 2023
- 21:4421:44, 5 March 2023 diff hist +1 Yaz0 No edit summary
- 18:1218:12, 5 March 2023 diff hist +952 N Yaz0 make the page
- 17:4517:45, 5 March 2023 diff hist −1 m Category:File formats No edit summary current
- 17:4517:45, 5 March 2023 diff hist +10 m Category:File formats No edit summary
- 04:3004:30, 5 March 2023 diff hist +76 N Template:Navbox Created page with "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> </noinclude>" current
- 04:2704:27, 5 March 2023 diff hist +17,537 N Module:Navbox Created page with "local p = {} local navbar = require('Module:Navbar')._navbar local cfg = mw.loadData('Module:Navbox/configuration') local getArgs -- lazily initialized local args local format = string.format local function striped(wikitext, border) -- Return wikitext with markers replaced for odd/even striping. -- Child (subgroup) navboxes are flagged with a category that is removed -- by parent navboxes. The result is that the category shows all pages -- where a child navbox is no..." current
- 04:2404:24, 5 March 2023 diff hist −748 Template:Hlist/styles.css No edit summary current
- 04:2304:23, 5 March 2023 diff hist −517 Template:Hlist/styles.css No edit summary
- 04:2304:23, 5 March 2023 diff hist +2,869 N Template:Hlist/styles.css Created page with "→* hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * [[MediaWiki talk:Common.css/to do#hlist-separated]]: /* * TODO: When the majority of readership supports it (or some beautiful world * in which grade C support is ab..."
- 04:2204:22, 5 March 2023 diff hist +186 N Template:Plainlist/styles.css Created page with ".plainlist ol, .plainlist ul { line-height: inherit; list-style: none; margin: 0; padding: 0; →Reset Minerva default: } .plainlist ol li, .plainlist ul li { margin-bottom: 0; }" current
- 04:1104:11, 5 March 2023 diff hist +3,713 N Module:Navbox/configuration Created page with "return { aria_label = 'Navbox', nowrap_item = '%s<span class="nowrap">%s</span>', templatestyles = mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { src = 'Module:Navbox/styles.css' } }, hlist_templatestyles = 'Hlist/styles.css', plainlist_templatestyles = 'Plainlist/styles.css', -- do not localize marker table marker = { oddeven = '\127_ODDEVEN_\127', restart = '\127_ODDEVEN0_\127', regex = '\127_ODDEVEN(%d?)_\127' }, category = {..." current
- 04:1004:10, 5 March 2023 diff hist +5,276 N Module:Navbar Created page with "local p = {} local cfg = mw.loadData('Module:Navbar/configuration') local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_arg = 2 end if template then title_arg = 'template' end return title_arg end local function choose_links(template, args) -- The show table indicates the default displayed items. -- view, talk, edit, hist, move, watch -- TODO: Move to configuration. local show = {true, true, true, false, false..." current
- 04:0904:09, 5 March 2023 diff hist +915 N Module:Navbar/configuration Created page with "return { ['templatestyles'] = 'Module:Navbar/styles.css', ['hlist_templatestyles'] = 'Hlist/styles.css', ['box_text'] = 'This box: ', -- default text box when not plain or mini ['title_namespace'] = 'Template', -- namespace to default to for title ['invalid_title'] = 'Invalid title ', ['classes'] = { -- set a line to nil if you don't want it ['navbar'] = 'navbar', ['plainlinks'] = 'plainlinks', -- plainlinks ['horizontal_list'] = 'hlist', -- horizontal lis..." current
- 04:0804:08, 5 March 2023 diff hist +15,281 N Module:TableTools Created page with "------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should not -- -- be called directly from #invoke...." current
- 04:0804:08, 5 March 2023 diff hist +1,092 N Module:Exponential search Created page with "-- This module provides a generic exponential search algorithm. requirestrict local checkType = require('libraryUtil').checkType local floor = math.floor local function midPoint(lower, upper) return floor(lower + (upper - lower) / 2) end local function search(testFunc, i, lower, upper) if testFunc(i) then if i + 1 == upper then return i end lower = i if upper then i = midPoint(lower, upper) else i = i * 2 end return search(testFunc, i, low..." current
- 04:0604:06, 5 March 2023 diff hist +6,971 N Module:Color contrast Created page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126 *..." current
- 04:0504:05, 5 March 2023 diff hist +6,119 N Module:Color contrast/colors Created page with "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511..." current
- 04:0204:02, 5 March 2023 diff hist +10,054 N Module:Arguments Created page with "-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string'..." current
- 03:3503:35, 5 March 2023 diff hist +3,930 N Category:List of Super Mario Galaxy 2 Galaxies Created page with "This category contains all the galaxies in Super Mario Galaxy 2 LEGEND:<br> <nowiki># Has a Grand Star</nowiki> == World 1 == {| class = "wikitable" ! Name !! No. of Stars !! Access requirement |- | Sky Station Galaxy || 6 || None |- | Yoshi Star Galaxy || 6 || 1 star |- | Spin-Dig Galaxy || 6 || 3 stars including Yoshi Star 1 |- | Fluffy Bluff Galaxy || 6 || Spin Dig 1 |- | Flip-Swap Galaxy || 4 || 3 stars including Yoshi Star 1 |- | Rightside Do..."
- 03:0003:00, 5 March 2023 diff hist +2 Category:List of Super Mario Galaxy 1 Galaxies No edit summary current
4 March 2023
- 22:1022:10, 4 March 2023 diff hist +2,712 N Category:List of Super Mario Galaxy 1 Galaxies not done yet btw
19 August 2022
- 04:1104:11, 19 August 2022 diff hist +101 m File system Reverted edits by GalaxyMaster (talk) to last revision by Lord-Giganticus Tags: Rollback Reverted
- 02:2402:24, 19 August 2022 diff hist +173 N MediaWiki:Monobook.css Created page with "→All CSS here will be loaded for users of the MonoBook skin: →Dark Mode fixes: .client-js.client-darkmode .mw-wiki-logo { filter: invert( 1 ) hue-rotate( 180deg ) }" current
- 02:2402:24, 19 August 2022 diff hist +108 N MediaWiki:Vector-2022.css Created page with "→Dark Mode fixes: .client-js.client-darkmode .mw-wiki-logo { filter: invert( 1 ) hue-rotate( 180deg ) }" current
- 02:2402:24, 19 August 2022 diff hist −108 User:Lord-Giganticus/vector-2022.css Blanked the page current Tag: Blanking
- 02:2302:23, 19 August 2022 diff hist +108 N User:Lord-Giganticus/vector-2022.css Created page with "→Dark Mode fixes: .client-js.client-darkmode .mw-wiki-logo { filter: invert( 1 ) hue-rotate( 180deg ) }"
- 02:2102:21, 19 August 2022 diff hist +110 MediaWiki:Vector.css No edit summary current
- 02:2102:21, 19 August 2022 diff hist −110 MediaWiki:Common.css No edit summary current
- 02:2102:21, 19 August 2022 diff hist −124 MediaWiki:Timeless.css No edit summary current
- 02:1902:19, 19 August 2022 diff hist +14 MediaWiki:Timeless.css No edit summary
- 02:1802:18, 19 August 2022 diff hist +174 N MediaWiki:Timeless.css Created page with "→All CSS here will be loaded for users of the Timeless skin: →Dark Mode fixes: .client-js.client-darkmode .mw-wiki-logo { filter: invert( 1 ) hue-rotate( 180deg ) }"
- 02:1302:13, 19 August 2022 diff hist −54 MediaWiki:Common.css No edit summary
- 02:1202:12, 19 August 2022 diff hist +116 N MediaWiki:Vector.css Created page with "→All CSS here will be loaded for users of the Vector skin: .client-js.client-darkmode { background: #f6f6f6; }"
- 01:0801:08, 19 August 2022 diff hist −56 File system →Regional folders
- 01:0501:05, 19 August 2022 diff hist +821 File system →SMG2
- 00:5900:59, 19 August 2022 diff hist +696 File system No edit summary
- 00:4500:45, 19 August 2022 diff hist +3 MediaWiki:Common.css No edit summary
- 00:4400:44, 19 August 2022 diff hist −3 MediaWiki:Common.css No edit summary
- 00:4300:43, 19 August 2022 diff hist +2 MediaWiki:Common.css No edit summary
- 00:4200:42, 19 August 2022 diff hist −22 MediaWiki:Common.css No edit summary Tag: Manual revert
- 00:4100:41, 19 August 2022 diff hist +22 MediaWiki:Common.css No edit summary Tag: Reverted
- 00:3700:37, 19 August 2022 diff hist −415 MediaWiki:Common.css No edit summary
- 00:2800:28, 19 August 2022 diff hist +986 File system No edit summary
18 August 2022
- 23:2623:26, 18 August 2022 diff hist +384 N File system Created page with "<table class="navbox" border="0" style="align-content: left; text-align: center"> <tr><th colspan="16" style="border-left:2px solid #fdfdfd;width:100%;">SMG1 Filesystem</th></tr> <tr> <td width="1px" valign="top"> <table style="width: 150px; height: 250px; display:flex; flex-direction: column; overflow:auto"> <tr><td style="width: 150px;">dev</td></tr> </table> </td> </tr> </table>"
- 23:2523:25, 18 August 2022 diff hist +490 MediaWiki:Common.css No edit summary