Module:Outline of the week
Appearance
-- Define a list of Wikipedia outline page names
local pages = {
"[[Outline of physics]]",
"[[Outline of robotics]]",
"[[Outline of computer science]]",
"[[Outline of biology]]",
"[[Outline of history]]",
"[[Outline of literature]]",
"[[Outline of music]]",
"[[Outline of philosophy]]",
"[[Outline of psychology]]",
"[[Outline of sociology]]"
}
-- Get the current week number
local week = os.date("%U")
-- Use the week number to select a page from the list
local page = pages[tonumber(week) % #pages + 1]
-- Display the selected page
print(page)