<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://fictionbase.org/mw/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SuperHamster</id>
	<title>FictionBase - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://fictionbase.org/mw/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SuperHamster"/>
	<link rel="alternate" type="text/html" href="https://fictionbase.org/w/Special:Contributions/SuperHamster"/>
	<updated>2026-06-13T17:41:09Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Module:Story&amp;diff=11918</id>
		<title>Module:Story</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Module:Story&amp;diff=11918"/>
		<updated>2026-03-08T06:38:33Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Wikidata ID support&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
local function trim(s)&lt;br /&gt;
	if s == nil then return nil end&lt;br /&gt;
	s = tostring(s)&lt;br /&gt;
	s = mw.text.trim(s)&lt;br /&gt;
	if s == &amp;quot;&amp;quot; then return nil end&lt;br /&gt;
	return s&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function split_semicolons(s)&lt;br /&gt;
	s = trim(s)&lt;br /&gt;
	if not s then return {} end&lt;br /&gt;
	local parts = mw.text.split(s, &amp;quot;%s*;%s*&amp;quot;, false)&lt;br /&gt;
	local out = {}&lt;br /&gt;
	for _, part in ipairs(parts) do&lt;br /&gt;
		part = trim(part)&lt;br /&gt;
		if part then&lt;br /&gt;
			table.insert(out, part)&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return out&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function storeCargo(args)&lt;br /&gt;
	if not mw.ext.cargo then return end&lt;br /&gt;
&lt;br /&gt;
	mw.ext.cargo.store(&amp;quot;Stories&amp;quot;, {&lt;br /&gt;
		Title = args.title,&lt;br /&gt;
		Author = args.author,&lt;br /&gt;
		Publication = args.publication,&lt;br /&gt;
		Year = tonumber(args.year),&lt;br /&gt;
		Words = tonumber((args.words or &amp;quot;&amp;quot;):gsub(&amp;quot;,&amp;quot;, &amp;quot;&amp;quot;):match(&amp;quot;.*&amp;quot;)),&lt;br /&gt;
		Logline = args.logline,&lt;br /&gt;
		Read1Site = args.read1_site,&lt;br /&gt;
		Read1URL = args.read1_url,&lt;br /&gt;
		Read1Access = args.read1_access,&lt;br /&gt;
		Read2Site = args.read2_site,&lt;br /&gt;
		Read2URL = args.read2_url,&lt;br /&gt;
		Read2Access = args.read2_access,&lt;br /&gt;
		Read3Site = args.read3_site,&lt;br /&gt;
		Read3URL = args.read3_url,&lt;br /&gt;
		Read3Access = args.read3_access,&lt;br /&gt;
		Genres = args.genres,&lt;br /&gt;
		Collections = args.collections,&lt;br /&gt;
		Tags = args.tags,&lt;br /&gt;
		Notes = args.notes,&lt;br /&gt;
		IDWikidata = args.id_wikidata&lt;br /&gt;
	})&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function makeNsLink(ns, label)&lt;br /&gt;
	label = trim(label)&lt;br /&gt;
	if not label then return nil end&lt;br /&gt;
	local target = mw.ustring.gsub(label, &amp;quot;%s+&amp;quot;, &amp;quot;_&amp;quot;)&lt;br /&gt;
	return string.format(&amp;quot;[[%s:%s|%s]]&amp;quot;, ns, target, label)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function addField(meta, label, value, full, ns)&lt;br /&gt;
	value = trim(value)&lt;br /&gt;
	if not value then return end&lt;br /&gt;
&lt;br /&gt;
	if ns then&lt;br /&gt;
		value = makeNsLink(ns, value) or value&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local field = meta:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-field&amp;quot;)&lt;br /&gt;
	if full then field:addClass(&amp;quot;story-field-full&amp;quot;) end&lt;br /&gt;
	field:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-label&amp;quot;):wikitext(label)&lt;br /&gt;
	field:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-value&amp;quot;):wikitext(value)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function addMultiField(meta, label, raw, full, ns)&lt;br /&gt;
	local items = split_semicolons(raw)&lt;br /&gt;
	if #items == 0 then return end&lt;br /&gt;
	local field = meta:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-field&amp;quot;)&lt;br /&gt;
	if full then field:addClass(&amp;quot;story-field-full&amp;quot;) end&lt;br /&gt;
	field:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-label&amp;quot;):wikitext(label)&lt;br /&gt;
	local val = field:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-value&amp;quot;)&lt;br /&gt;
	for _, item in ipairs(items) do&lt;br /&gt;
		local wikitext = item&lt;br /&gt;
		if ns then&lt;br /&gt;
			wikitext = makeNsLink(ns, item) or item&lt;br /&gt;
		end&lt;br /&gt;
		val:tag(&amp;quot;span&amp;quot;):addClass(&amp;quot;story-chip&amp;quot;):wikitext(wikitext)&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function normalizeAccess(access)&lt;br /&gt;
	access = trim(access)&lt;br /&gt;
	if not access then return nil end&lt;br /&gt;
	access = mw.ustring.lower(access)&lt;br /&gt;
	if access ~= &amp;quot;free&amp;quot; and access ~= &amp;quot;paid&amp;quot; then return nil end&lt;br /&gt;
	return access&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function addReadOnline(meta, args)&lt;br /&gt;
	local links = {}&lt;br /&gt;
	for i = 1, 3 do&lt;br /&gt;
		local url = trim(args[&amp;quot;read&amp;quot; .. i .. &amp;quot;_url&amp;quot;])&lt;br /&gt;
		if url then&lt;br /&gt;
			local site = trim(args[&amp;quot;read&amp;quot; .. i .. &amp;quot;_site&amp;quot;]) or (&amp;quot;Link &amp;quot; .. i)&lt;br /&gt;
			local access = normalizeAccess(args[&amp;quot;read&amp;quot; .. i .. &amp;quot;_access&amp;quot;])&lt;br /&gt;
			table.insert(links, { url = url, site = site, access = access })&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	if #links == 0 then return end&lt;br /&gt;
&lt;br /&gt;
	local field = meta:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-field&amp;quot;):addClass(&amp;quot;story-field-full&amp;quot;)&lt;br /&gt;
	field:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-label&amp;quot;):wikitext(&amp;quot;Read online&amp;quot;)&lt;br /&gt;
	local val = field:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-value&amp;quot;)&lt;br /&gt;
	for _, l in ipairs(links) do&lt;br /&gt;
		local row = val:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-link&amp;quot;)&lt;br /&gt;
		row:wikitext(&amp;quot;[&amp;quot; .. l.url .. &amp;quot; &amp;quot; .. l.site .. &amp;quot;]&amp;quot;)&lt;br /&gt;
		if l.access then&lt;br /&gt;
			row:wikitext(&amp;quot; &amp;quot;)&lt;br /&gt;
			row:tag(&amp;quot;span&amp;quot;)&lt;br /&gt;
				:addClass(&amp;quot;story-badge&amp;quot;)&lt;br /&gt;
				:addClass(&amp;quot;story-badge-&amp;quot; .. l.access)&lt;br /&gt;
				:wikitext(mw.language.getContentLanguage():ucfirst(l.access))&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	local args = frame:getParent() and frame:getParent().args or frame.args&lt;br /&gt;
&lt;br /&gt;
	local title = trim(args.title) or &amp;quot;&amp;quot;&lt;br /&gt;
	local author = trim(args.author)&lt;br /&gt;
	local publication = trim(args.publication)&lt;br /&gt;
	local year = trim(args.year)&lt;br /&gt;
	local words = trim(args.words)&lt;br /&gt;
	local logline = trim(args.logline)&lt;br /&gt;
	local plot_summary = trim(args.plot_summary)&lt;br /&gt;
	local notes = trim(args.notes)&lt;br /&gt;
	local id_wikidata = trim(args.id_wikidata)&lt;br /&gt;
&lt;br /&gt;
	local root = mw.html.create(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-card&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
	local header = root:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-header&amp;quot;)&lt;br /&gt;
	header:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-title&amp;quot;):wikitext(title ~= &amp;quot;&amp;quot; and title or &amp;quot;Untitled&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
	if author then&lt;br /&gt;
		local byline = &amp;quot;By &amp;quot; .. author&lt;br /&gt;
		if publication then&lt;br /&gt;
			byline = byline .. &amp;quot;, first published in &amp;quot; .. publication&lt;br /&gt;
		end&lt;br /&gt;
		header:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-byline&amp;quot;):wikitext(byline)&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	if logline then&lt;br /&gt;
		header:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-logline&amp;quot;):wikitext(logline)&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local meta = root:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-meta&amp;quot;)&lt;br /&gt;
	addField(meta, &amp;quot;Author&amp;quot;, author, false, &amp;quot;Author&amp;quot;)&lt;br /&gt;
	addField(meta, &amp;quot;Published in&amp;quot;, publication, false, &amp;quot;Publication&amp;quot;)&lt;br /&gt;
	addField(meta, &amp;quot;Year&amp;quot;, year, false, &amp;quot;Year&amp;quot;)&lt;br /&gt;
	addField(meta, &amp;quot;Words&amp;quot;, words)&lt;br /&gt;
	addReadOnline(meta, args)&lt;br /&gt;
&lt;br /&gt;
	-- Split-capable multi-value fields (semicolon-separated)&lt;br /&gt;
	addMultiField(meta, &amp;quot;Genres&amp;quot;, args.genres, false, &amp;quot;Genre&amp;quot;)&lt;br /&gt;
	addMultiField(meta, &amp;quot;Collections&amp;quot;, args.collections, false, &amp;quot;Collection&amp;quot;)&lt;br /&gt;
	addMultiField(meta, &amp;quot;Tags&amp;quot;, args.tags, true, &amp;quot;Tag&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
	if plot_summary then&lt;br /&gt;
		local section = root:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-section&amp;quot;)&lt;br /&gt;
		section:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-section-title&amp;quot;):wikitext(&amp;quot;Plot Summary&amp;quot;)&lt;br /&gt;
		section:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-section-body&amp;quot;):wikitext(plot_summary)&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	if notes then&lt;br /&gt;
		local section = root:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-section&amp;quot;)&lt;br /&gt;
		section:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-section-title&amp;quot;):wikitext(&amp;quot;Notes&amp;quot;)&lt;br /&gt;
		section:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-section-body&amp;quot;):wikitext(notes)&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	if id_wikidata then&lt;br /&gt;
		local section = root:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-section&amp;quot;)&lt;br /&gt;
		section:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-section-title&amp;quot;):wikitext(&amp;quot;External links&amp;quot;)&lt;br /&gt;
		local body = section:tag(&amp;quot;div&amp;quot;):addClass(&amp;quot;story-section-body&amp;quot;)&lt;br /&gt;
		body:wikitext(&amp;quot;* [https://www.wikidata.org/wiki/&amp;quot; .. id_wikidata .. &amp;quot; Wikidata entry]&amp;quot;)&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	storeCargo(args)&lt;br /&gt;
&lt;br /&gt;
	return tostring(root)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Where%27s_the_Harm%3F_(Rebeca_Lloyd)&amp;diff=11917</id>
		<title>Short Story:Where&#039;s the Harm? (Rebeca Lloyd)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Where%27s_the_Harm%3F_(Rebeca_Lloyd)&amp;diff=11917"/>
		<updated>2026-03-08T06:18:32Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q115159383&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Where&#039;s the Harm?&lt;br /&gt;
|author=Rebeca Lloyd&lt;br /&gt;
|publication=Seven Strange Stories, Tartarus Press&lt;br /&gt;
|year=2017&lt;br /&gt;
|words=7500&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Horror&lt;br /&gt;
|tags=Brothers;Trance;Feeding;Cult;First Person;Sibling Rivalry;Death;Rituals;Hair&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q115159383&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Dark_Warm_Heart_(Rich_Larson)&amp;diff=11916</id>
		<title>Short Story:Dark Warm Heart (Rich Larson)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Dark_Warm_Heart_(Rich_Larson)&amp;diff=11916"/>
		<updated>2026-03-08T06:13:58Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q115304339&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Dark Warm Heart&lt;br /&gt;
|author=Rich Larson&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2017&lt;br /&gt;
|words=5600&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2017/04/12/dark-warm-heart/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Horror&lt;br /&gt;
|tags=Trauma;Married Couple;Feeding;Cannibalism;Legends;Pregnancy;Curse;Transformation;Cold;Wendigo;Love;Snow;Fear&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q115304339&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Zen_and_the_Art_of_Starship_Maintenance_(Tobias_Buckell)&amp;diff=11915</id>
		<title>Short Story:Zen and the Art of Starship Maintenance (Tobias Buckell)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Zen_and_the_Art_of_Starship_Maintenance_(Tobias_Buckell)&amp;diff=11915"/>
		<updated>2026-03-08T06:13:32Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131518708&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Zen and the Art of Starship Maintenance&lt;br /&gt;
|author=Tobias Buckell&lt;br /&gt;
|publication=Cosmic Powers&lt;br /&gt;
|year=2017&lt;br /&gt;
|words=6300&lt;br /&gt;
|read1_site=www.lightspeedmagazine.com&lt;br /&gt;
|read1_url=https://www.lightspeedmagazine.com/fiction/zen-art-starship-maintenance/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Science Fiction&lt;br /&gt;
|tags=Revenge;Morality;War Crimes;Space Battles;Humanity;Black Holes;Escape Pods;Warfare;Biology;Ethics;Revenge Story;Programming;Justice&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131518708&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Golden_Sun_(Kristi_DeMeester,_Richard_Thomas,_Damien_Angelica_Walters,_and_Michael_Wehunt)&amp;diff=11914</id>
		<title>Short Story:Golden Sun (Kristi DeMeester, Richard Thomas, Damien Angelica Walters, and Michael Wehunt)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Golden_Sun_(Kristi_DeMeester,_Richard_Thomas,_Damien_Angelica_Walters,_and_Michael_Wehunt)&amp;diff=11914"/>
		<updated>2026-03-08T06:12:53Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q112731303&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Golden Sun&lt;br /&gt;
|author=Kristi DeMeester, Richard Thomas, Damien Angelica Walters, and Michael Wehunt&lt;br /&gt;
|publication=Chiral Mad 4&lt;br /&gt;
|year=2018&lt;br /&gt;
|words=7400&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Horror&lt;br /&gt;
|tags=Trip;Discovery;Family Tension;Disappearance;Song&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q112731303&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Last_Conversation_(Paul_Tremblay)&amp;diff=11913</id>
		<title>Short Story:The Last Conversation (Paul Tremblay)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Last_Conversation_(Paul_Tremblay)&amp;diff=11913"/>
		<updated>2026-03-08T06:12:08Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q134564181&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Last Conversation&lt;br /&gt;
|author=Paul Tremblay&lt;br /&gt;
|publication=Amazon Original Stories&lt;br /&gt;
|year=2019&lt;br /&gt;
|words=12000&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Science Fiction&lt;br /&gt;
|tags=Doctor;Wife;Isolation;House;Pandemic;Second Person;Memory;Hospital;Tree;Death;Research&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q134564181&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:As_Dark_As_Hunger_(Qiouyi_S._Lu)&amp;diff=11912</id>
		<title>Short Story:As Dark As Hunger (Qiouyi S. Lu)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:As_Dark_As_Hunger_(Qiouyi_S._Lu)&amp;diff=11912"/>
		<updated>2026-03-08T06:11:43Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q108562306&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=As Dark As Hunger&lt;br /&gt;
|author=Qiouyi S. Lu&lt;br /&gt;
|publication=Black Static&lt;br /&gt;
|year=2019&lt;br /&gt;
|words=7800&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Erotica;Urban Fantasy;Horror&lt;br /&gt;
|tags=Mercy Killing;Body Dysphoria&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q108562306&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:As_the_Last_I_May_Know_(S.L._Huang)&amp;diff=11911</id>
		<title>Short Story:As the Last I May Know (S.L. Huang)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:As_the_Last_I_May_Know_(S.L._Huang)&amp;diff=11911"/>
		<updated>2026-03-08T06:11:20Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q97968393&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=As the Last I May Know&lt;br /&gt;
|author=S.L. Huang&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2019&lt;br /&gt;
|words=5359&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2019/10/23/as-the-last-i-may-know-s-l-huang/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Alternate History&lt;br /&gt;
|tags=Self Sacrifice;Morality;Military;Government;Fast Paced Plot;Friendship;Missiles;Ethics;War;Death;Order;Duty;Betrayal;Downbeat Ending&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q97968393&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Corialis_(T._L._Huchu)&amp;diff=11910</id>
		<title>Short Story:Corialis (T. L. Huchu)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Corialis_(T._L._Huchu)&amp;diff=11910"/>
		<updated>2026-03-08T06:10:57Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q136850113&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Corialis&lt;br /&gt;
|author=T. L. Huchu&lt;br /&gt;
|publication=FIYAH&lt;br /&gt;
|year=2019&lt;br /&gt;
|words=7015&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Science Fiction&lt;br /&gt;
|tags=Moon;Space;Settlement;Space Exploration;Microbiome;Human Sacrifice&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q136850113&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Galactic_Tourist_Industrial_Complex_(Tobias_Buckell)&amp;diff=11909</id>
		<title>Short Story:The Galactic Tourist Industrial Complex (Tobias Buckell)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Galactic_Tourist_Industrial_Complex_(Tobias_Buckell)&amp;diff=11909"/>
		<updated>2026-03-08T06:10:36Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131518707&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Galactic Tourist Industrial Complex&lt;br /&gt;
|author=Tobias Buckell&lt;br /&gt;
|publication=New Suns: Original Speculative Fiction of People of Color&lt;br /&gt;
|year=2019&lt;br /&gt;
|words=3800&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Nautical Fiction;Satire;Science Fiction&lt;br /&gt;
|tags=Economy;Aliens;Labor;Public Safety;Class;Travel;Friendship;Poverty And Class Inequality;Politics;Third Person Narrative;Death;Black Author;Humor&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131518707&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Glass_Bottle_Dancer_(Celeste_Rita_Baker)&amp;diff=11908</id>
		<title>Short Story:Glass Bottle Dancer (Celeste Rita Baker)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Glass_Bottle_Dancer_(Celeste_Rita_Baker)&amp;diff=11908"/>
		<updated>2026-03-08T06:09:46Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q134973491&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Glass Bottle Dancer&lt;br /&gt;
|author=Celeste Rita Baker&lt;br /&gt;
|publication=Lightspeed&lt;br /&gt;
|year=2020&lt;br /&gt;
|words=5683&lt;br /&gt;
|read1_site=lightspeedmagazine.com&lt;br /&gt;
|read1_url=https://www.lightspeedmagazine.com/fiction/glass-bottle-dancer/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Contemporary Fiction;Contemporary / Drama&lt;br /&gt;
|tags=Motherhood;Difficult Performances;Afro Caribbean Influences;Family;Learning New Things;Strange Twist;Perseverance;Roaches;Calypso Music;Triumphant Ending;Dancing;Following Dreams&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q134973491&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:City_of_Red_Midnight:_A_Hikayat_(Malik_Usman_T.)&amp;diff=11907</id>
		<title>Short Story:City of Red Midnight: A Hikayat (Malik Usman T.)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:City_of_Red_Midnight:_A_Hikayat_(Malik_Usman_T.)&amp;diff=11907"/>
		<updated>2026-03-08T06:00:34Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131472597&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=City of Red Midnight: A Hikayat&lt;br /&gt;
|author=Malik Usman T.&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2020&lt;br /&gt;
|words=14054&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2020/10/21/city-of-red-midnight-a-hikayat-usman-t-malik/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=&lt;br /&gt;
|tags=Revenge;Violence;Gore;Supernatural;Religion;Sex;Relationships;Storytelling;Power And Authority;Magic;Upbeat Ending;Twist Ending;Death&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131472597&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:It_Doesn%27t_Feel_Right_(Marshall_Smith)&amp;diff=11906</id>
		<title>Short Story:It Doesn&#039;t Feel Right (Marshall Smith)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:It_Doesn%27t_Feel_Right_(Marshall_Smith)&amp;diff=11906"/>
		<updated>2026-03-08T06:00:11Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q110535617&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=It Doesn&#039;t Feel Right&lt;br /&gt;
|author=Marshall Smith&lt;br /&gt;
|publication=After Sundown&lt;br /&gt;
|year=2020&lt;br /&gt;
|words=5100&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Horror&lt;br /&gt;
|tags=Attacking;Discipline;Cigarettes;School;Parenting;Routine&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q110535617&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:We_Do_Like_to_be_Beside_(Pete_W._Sutton)&amp;diff=11905</id>
		<title>Short Story:We Do Like to be Beside (Pete W. Sutton)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:We_Do_Like_to_be_Beside_(Pete_W._Sutton)&amp;diff=11905"/>
		<updated>2026-03-08T05:59:46Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q110566503&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=We Do Like to be Beside&lt;br /&gt;
|author=Pete W. Sutton&lt;br /&gt;
|publication=The Alchemy Press Book of Horror 2&lt;br /&gt;
|year=2020&lt;br /&gt;
|words=3400&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Young Adult (YA);Horror;Coming-Of-Age&lt;br /&gt;
|tags=Kidnapping;Searching;Forgetting;Trapped;Family;Lost;Sea;Dog&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q110566503&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Questions_Asked_in_the_Belly_of_the_World_(A.T._Greenblatt)&amp;diff=11904</id>
		<title>Short Story:Questions Asked in the Belly of the World (A.T. Greenblatt)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Questions_Asked_in_the_Belly_of_the_World_(A.T._Greenblatt)&amp;diff=11904"/>
		<updated>2026-03-08T05:59:12Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131472623&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Questions Asked in the Belly of the World&lt;br /&gt;
|author=A.T. Greenblatt&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2021&lt;br /&gt;
|words=9290&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2021/09/29/questions-asked-in-the-belly-of-the-world-a-t-greenblatt/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Fantasy&lt;br /&gt;
|tags=Creativity;Upbeat Ending;Art Criticism;Slow Plot&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131472623&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:There_Are_No_Monsters_on_Rancho_Buenavista_(Isabel_Canas)&amp;diff=11903</id>
		<title>Short Story:There Are No Monsters on Rancho Buenavista (Isabel Canas)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:There_Are_No_Monsters_on_Rancho_Buenavista_(Isabel_Canas)&amp;diff=11903"/>
		<updated>2026-03-08T05:58:32Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q123270482&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=There Are No Monsters on Rancho Buenavista&lt;br /&gt;
|author=Isabel Canas&lt;br /&gt;
|publication=Nightmare&lt;br /&gt;
|year=2022&lt;br /&gt;
|words=1000&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Supernatural Horror;Creature Horror;Flash Fiction;Horror&lt;br /&gt;
|tags=Fable;Jealousy;Transformation;Folktale;Urban Legend;Monster&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q123270482&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:White_Water,_Blue_Ocean_(Raquel_Nieves_Perez)&amp;diff=11902</id>
		<title>Short Story:White Water, Blue Ocean (Raquel Nieves Perez)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:White_Water,_Blue_Ocean_(Raquel_Nieves_Perez)&amp;diff=11902"/>
		<updated>2026-03-08T05:57:43Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q123281433&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=White Water, Blue Ocean&lt;br /&gt;
|author=Raquel Nieves Perez&lt;br /&gt;
|publication=Reclaim the Stars&lt;br /&gt;
|year=2022&lt;br /&gt;
|words=5500&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Fantasy;Bildungsroman&lt;br /&gt;
|tags=Intergenerational Trauma;Fable;Water Spirits;Ancestors;Forgiveness;Folktale&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q123281433&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Give_the_Family_My_Love_(A.T._Greenblatt)&amp;diff=11901</id>
		<title>Short Story:Give the Family My Love (A.T. Greenblatt)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Give_the_Family_My_Love_(A.T._Greenblatt)&amp;diff=11901"/>
		<updated>2026-03-08T05:54:59Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q105101562&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Give the Family My Love&lt;br /&gt;
|author=A.T. Greenblatt&lt;br /&gt;
|publication=Clarkesworld&lt;br /&gt;
|year=&lt;br /&gt;
|words=5343&lt;br /&gt;
|read1_site=clarkesworldmagazine.com&lt;br /&gt;
|read1_url=http://clarkesworldmagazine.com/greenblatt_02_19/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Science Fiction&lt;br /&gt;
|tags=Aliens;Speculative;Space;Plot Twist;Climate Change;Downbeat Ending&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q105101562&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Screwfly_Solution_(Alice_Sheldon)&amp;diff=11900</id>
		<title>Short Story:The Screwfly Solution (Alice Sheldon)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Screwfly_Solution_(Alice_Sheldon)&amp;diff=11900"/>
		<updated>2026-03-08T05:54:40Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q7762713&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Screwfly Solution&lt;br /&gt;
|author=Alice Sheldon&lt;br /&gt;
|publication=Analog&lt;br /&gt;
|year=&lt;br /&gt;
|words=8200&lt;br /&gt;
|read1_site=lexal.net&lt;br /&gt;
|read1_url=https://lexal.net/scifi/scifiction/classics/classics_archive/sheldon/sheldon1.html&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Dystopian;Science Fiction;Alternate History&lt;br /&gt;
|tags=Femicide;Human Experimentation;Survival;Epistolary;Ambiguous Ending&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q7762713&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Theory_of_Rocketry_(C._M._Kornbluth)&amp;diff=11899</id>
		<title>Short Story:Theory of Rocketry (C. M. Kornbluth)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Theory_of_Rocketry_(C._M._Kornbluth)&amp;diff=11899"/>
		<updated>2026-03-08T05:54:17Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131300577&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Theory of Rocketry&lt;br /&gt;
|author=C. M. Kornbluth&lt;br /&gt;
|publication=The Magazine of Fantasy &amp;amp; Science Fiction&lt;br /&gt;
|year=&lt;br /&gt;
|words=5500&lt;br /&gt;
|read1_site=www.fadedpage.com&lt;br /&gt;
|read1_url=https://www.fadedpage.com/books/20170606/html.php&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Science Fiction&lt;br /&gt;
|tags=High School;The Old Testament;Alternate Reality;Betrayal Plot Twist;William Shakespeare;Mentorship;Religion;Conversational Plot;Ominous Ending;Freud;Christianity;Slow Plot;Macbeth;Unsettling Ending;Quotidian Plot;Surveillance;Space;Psychology;Friendship;Teaching;Mundane Plot&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131300577&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Exchange_Value_(Charles_Johnson)&amp;diff=11898</id>
		<title>Short Story:Exchange Value (Charles Johnson)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Exchange_Value_(Charles_Johnson)&amp;diff=11898"/>
		<updated>2026-03-08T05:53:48Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q5419594&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Exchange Value&lt;br /&gt;
|author=Charles Johnson&lt;br /&gt;
|publication=Choice&lt;br /&gt;
|year=&lt;br /&gt;
|words=3200&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Crime;Literary Fiction;Comedy&lt;br /&gt;
|tags=Desire;Bad Karma&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q5419594&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Ginny_Sweethips%27_Flying_Circus_(Neal_Barrett_Jr.)&amp;diff=11897</id>
		<title>Short Story:Ginny Sweethips&#039; Flying Circus (Neal Barrett Jr.)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Ginny_Sweethips%27_Flying_Circus_(Neal_Barrett_Jr.)&amp;diff=11897"/>
		<updated>2026-03-08T05:49:26Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131215322&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Ginny Sweethips&#039; Flying Circus&lt;br /&gt;
|author=Neal Barrett Jr.&lt;br /&gt;
|publication=Asimov&#039;s Science Fiction&lt;br /&gt;
|year=&lt;br /&gt;
|words=7214&lt;br /&gt;
|read1_site=kingauthor.net&lt;br /&gt;
|read1_url=https://www.kingauthor.net/books/John%20Joseph%20Adams/Wastelands/Wastelands%20-%20John%20Joseph%20Adams.pdf&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Science-Fiction Story;Science Fiction&lt;br /&gt;
|tags=Androids;Ironic;Linear Plot;Guns;Deception;Drugs;Upbeat Ending;Violence;Sex Work;Prostitution;Odd&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131215322&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Winterberry_(Nicholas_A._DiChario)&amp;diff=11896</id>
		<title>Short Story:The Winterberry (Nicholas A. DiChario)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Winterberry_(Nicholas_A._DiChario)&amp;diff=11896"/>
		<updated>2026-03-08T05:47:03Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131308043&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Winterberry&lt;br /&gt;
|author=Nicholas A. DiChario&lt;br /&gt;
|publication=Alternate Kennedys (Tor Books)&lt;br /&gt;
|year=&lt;br /&gt;
|words=3100&lt;br /&gt;
|read1_site=erenow.net&lt;br /&gt;
|read1_url=https://erenow.net/common/the-best-alternate-history-stories-of-the-20th-century/3.php&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Science Fiction;Historical Fiction&lt;br /&gt;
|tags=Death Of A Mother;Writing;Secrets;Illness;Reading;Holidays;Curious Ending;Christmas;Family;History;Sweet Ending;Time Jumps;Mysterious;First Person POV;Unsettling;Vignette Y Plot&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131308043&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=User:SuperHamster/Todo&amp;diff=11895</id>
		<title>User:SuperHamster/Todo</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=User:SuperHamster/Todo&amp;diff=11895"/>
		<updated>2026-03-08T05:46:42Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: +&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* T.C. Boyle vs. Coraghessan Boyle&lt;br /&gt;
* Octavia E. Butler vs. Octavia Butler&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Bloodchild_(Octavia_Butler)&amp;diff=11894</id>
		<title>Short Story:Bloodchild (Octavia Butler)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Bloodchild_(Octavia_Butler)&amp;diff=11894"/>
		<updated>2026-03-08T05:45:04Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q20737828&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Bloodchild&lt;br /&gt;
|author=Octavia Butler&lt;br /&gt;
|publication=Asimov&#039;s Science Fiction&lt;br /&gt;
|year=&lt;br /&gt;
|words=7060&lt;br /&gt;
|read1_site=static1.squarespace.com&lt;br /&gt;
|read1_url=https://static1.squarespace.com/static/574dd51d62cd942085f12091/t/5ae0e84e562fa74f9c6773a5/1524688975128/octavia-butler-bloodchild.pdf&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Horror;Science Fiction&lt;br /&gt;
|tags=Human Livestock;Slavery Analogy;Parasitic Aliens;Right To Choose&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q20737828&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Childfinder_(Octavia_Butler)&amp;diff=11893</id>
		<title>Short Story:Childfinder (Octavia Butler)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Childfinder_(Octavia_Butler)&amp;diff=11893"/>
		<updated>2026-03-08T05:44:40Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q135209417&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Childfinder&lt;br /&gt;
|author=Octavia Butler&lt;br /&gt;
|publication=&lt;br /&gt;
|year=&lt;br /&gt;
|words=&lt;br /&gt;
|read1_site=jstor.org&lt;br /&gt;
|read1_url=https://www.jstor.org/stable/10.5406/j.ctt1hfr05s&lt;br /&gt;
|read1_access=institutional&lt;br /&gt;
|genres=Race Driven Science Fiction;Science Fiction;Speculative Fiction&lt;br /&gt;
|tags=Poverty;Supernatural;Youth;Organization;Racial Tension;Telepathy&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q135209417&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Speech_Sounds_(Octavia_Butler)&amp;diff=11892</id>
		<title>Short Story:Speech Sounds (Octavia Butler)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Speech_Sounds_(Octavia_Butler)&amp;diff=11892"/>
		<updated>2026-03-08T05:44:19Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q7575378&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Speech Sounds&lt;br /&gt;
|author=Octavia Butler&lt;br /&gt;
|publication=Asimov&#039;s Science Fiction&lt;br /&gt;
|year=&lt;br /&gt;
|words=5500&lt;br /&gt;
|read1_site=unl.edu&lt;br /&gt;
|read1_url=https://www.unl.edu/english/docs/englishweek17/engl200-speechsounds.pdf&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Apocalypse Literature;Science Fiction&lt;br /&gt;
|tags=Human Communication;Deterioration Of Modern Civilization;Terrifying Fatal Illness;Optimistic Ending;Befriending A Stranger;Normalized Violence;Loneliness;Mistrust Of Others&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q7575378&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Spidersong_(Susan_C._Petry)&amp;diff=11891</id>
		<title>Short Story:Spidersong (Susan C. Petry)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Spidersong_(Susan_C._Petry)&amp;diff=11891"/>
		<updated>2026-03-08T05:43:41Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131308003&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Spidersong&lt;br /&gt;
|author=Susan C. Petry&lt;br /&gt;
|publication=The Magazine of Fantasy &amp;amp; Science Fiction&lt;br /&gt;
|year=&lt;br /&gt;
|words=6500&lt;br /&gt;
|read1_site=lightspeedmagazine.com&lt;br /&gt;
|read1_url=https://www.lightspeedmagazine.com/fiction/spidersong/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Fantasy&lt;br /&gt;
|tags=Falling Out;Competition;Passion;Destruction;Lonely;Doomed Love;Family;Music;Scholarship;Culture;Breakup;Friendship&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131308003&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Man_Who_Had_No_Idea_(Thomas_Disch)&amp;diff=11890</id>
		<title>Short Story:The Man Who Had No Idea (Thomas Disch)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Man_Who_Had_No_Idea_(Thomas_Disch)&amp;diff=11890"/>
		<updated>2026-03-08T05:43:14Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q55635369&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Man Who Had No Idea&lt;br /&gt;
|author=Thomas Disch&lt;br /&gt;
|publication=The Magazine of Fantasy &amp;amp; Science Fiction&lt;br /&gt;
|year=&lt;br /&gt;
|words=10800&lt;br /&gt;
|read1_site=archive.org&lt;br /&gt;
|read1_url=https://archive.org/details/manwhohadnoideac00disc&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Dystopian;Satire;Science Fiction&lt;br /&gt;
|tags=Oppression;Trafficking;Conversation;Plot Twists;Crime;Bureaucracy&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q55635369&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=User:SuperHamster/Todo&amp;diff=11889</id>
		<title>User:SuperHamster/Todo</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=User:SuperHamster/Todo&amp;diff=11889"/>
		<updated>2026-03-08T05:42:47Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Rm excess parantheses&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* T.C. Boyle vs. Coraghessan Boyle&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=User:SuperHamster/Todo&amp;diff=11888</id>
		<title>User:SuperHamster/Todo</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=User:SuperHamster/Todo&amp;diff=11888"/>
		<updated>2026-03-08T05:42:36Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Starting todo list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* T.C. Boyle vs. Coraghessan Boyle)&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Are_We_Not_Men%3F_(T.C._Boyle)&amp;diff=11887</id>
		<title>Short Story:Are We Not Men? (T.C. Boyle)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Are_We_Not_Men%3F_(T.C._Boyle)&amp;diff=11887"/>
		<updated>2026-03-08T05:40:24Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q77239828&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Are We Not Men?&lt;br /&gt;
|author=T.C. Boyle&lt;br /&gt;
|publication=The New Yorker&lt;br /&gt;
|year=2016&lt;br /&gt;
|words=7000&lt;br /&gt;
|read1_site=newyorker.com&lt;br /&gt;
|read1_url=https://www.newyorker.com/magazine/2016/11/07/are-we-not-men&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Suburban Drama;Science Fiction&lt;br /&gt;
|tags=Pessimistic Ending;Fast Plot;Pregnancy;Bioethics;Marital Strife;Genetic Engineering;IVF;Adultery;Parenthood;Neighborhood Drama&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q77239828&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Witch_of_Orion_Waste_and_the_Boy_Knight_(E._Lily_U)&amp;diff=11886</id>
		<title>Short Story:The Witch of Orion Waste and the Boy Knight (E. Lily U)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Witch_of_Orion_Waste_and_the_Boy_Knight_(E._Lily_U)&amp;diff=11886"/>
		<updated>2026-03-08T05:39:11Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131516991&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Witch of Orion Waste and the Boy Knight&lt;br /&gt;
|author=E. Lily U&lt;br /&gt;
|publication=Uncanny Magazine&lt;br /&gt;
|year=2016&lt;br /&gt;
|words=5853&lt;br /&gt;
|read1_site=uncannymagazine.com&lt;br /&gt;
|read1_url=https://uncannymagazine.com/article/witch-orion-waste-boy-knight/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Fantasy&lt;br /&gt;
|tags=Quest;Unrequited Love;Fast Paced Plot;Journey;Witchcraft;Adventure;Knight;Magic;Personal Growth;Upbeat Ending;Other World;Betrayal;Dragons&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131516991&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Richard_of_York_Gave_Battle_In_Vain_(Danielle_Evans)&amp;diff=11885</id>
		<title>Short Story:Richard of York Gave Battle In Vain (Danielle Evans)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Richard_of_York_Gave_Battle_In_Vain_(Danielle_Evans)&amp;diff=11885"/>
		<updated>2026-03-08T05:38:22Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q77239847&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Richard of York Gave Battle In Vain&lt;br /&gt;
|author=Danielle Evans&lt;br /&gt;
|publication=American Short Fiction&lt;br /&gt;
|year=2016&lt;br /&gt;
|words=7000&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Romantic Comedy;Contemporary Fiction;Contemporary / Drama&lt;br /&gt;
|tags=Jealousy;Wedding;Love;Photography;Friendship Plot;Betrayal;Suspicion;One Night Stand;Road Trip;Heart Warming Ending;Second Thoughts;Cute Ending;Bittersweet Ending;Bonding;Friendship;Marriage&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q77239847&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Days_of_Our_Lives_(Adam_L.G._Nevill)&amp;diff=11884</id>
		<title>Short Story:The Days of Our Lives (Adam L.G. Nevill)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Days_of_Our_Lives_(Adam_L.G._Nevill)&amp;diff=11884"/>
		<updated>2026-03-08T05:37:42Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q107461348&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Days of Our Lives&lt;br /&gt;
|author=Adam L.G. Nevill&lt;br /&gt;
|publication=Dead Letters: An Anthology of the Undelivered, the Missing, the Returned...&lt;br /&gt;
|year=2016&lt;br /&gt;
|words=6400&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Horror&lt;br /&gt;
|tags=Domestic Abuse;Circular Plot;Mental Instability;Cult;Captivity&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q107461348&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Rates_of_Change_(James_S.A._Corey)&amp;diff=11883</id>
		<title>Short Story:Rates of Change (James S.A. Corey)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Rates_of_Change_(James_S.A._Corey)&amp;diff=11883"/>
		<updated>2026-03-08T05:37:02Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131517472&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Rates of Change&lt;br /&gt;
|author=James S.A. Corey&lt;br /&gt;
|publication=Meeting Infinity&lt;br /&gt;
|year=2015&lt;br /&gt;
|words=5500&lt;br /&gt;
|read1_site=lightspeedmagazine.com&lt;br /&gt;
|read1_url=https://www.lightspeedmagazine.com/fiction/rates-of-change/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Science Fiction&lt;br /&gt;
|tags=Evolution;Change;Accidents;Physicality;Reality;Cancer;Cosmetic Surgery;Medical Advancement;Age;Body Swapping;Generational Change&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131517472&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:A_Fist_of_Permutations_in_Lightning_and_Wildflowers_(Alyssa_Wong)&amp;diff=11882</id>
		<title>Short Story:A Fist of Permutations in Lightning and Wildflowers (Alyssa Wong)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:A_Fist_of_Permutations_in_Lightning_and_Wildflowers_(Alyssa_Wong)&amp;diff=11882"/>
		<updated>2026-03-08T05:35:30Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q131308096&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=A Fist of Permutations in Lightning and Wildflowers&lt;br /&gt;
|author=Alyssa Wong&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2016&lt;br /&gt;
|words=3477&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2016/03/02/a-fist-of-permutations-in-lightning-and-wildflowers-alyssa-wong/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Horror;Fantasy&lt;br /&gt;
|tags=Weather;Quiet Ending;Grief;Supernatural;Sisterhood;Ghosts;Magical Powers;Assault;Supernatural Powers;Floods;Nature;Death&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q131308096&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Hungry_Daughters_of_Starving_Mothers_(Alyssa_Wong)&amp;diff=11881</id>
		<title>Short Story:Hungry Daughters of Starving Mothers (Alyssa Wong)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Hungry_Daughters_of_Starving_Mothers_(Alyssa_Wong)&amp;diff=11881"/>
		<updated>2026-03-08T05:35:08Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q29956215&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Hungry Daughters of Starving Mothers&lt;br /&gt;
|author=Alyssa Wong&lt;br /&gt;
|publication=Queers Destroy Horror&lt;br /&gt;
|year=2015&lt;br /&gt;
|words=6500&lt;br /&gt;
|read1_site=nightmare-magazine.com&lt;br /&gt;
|read1_url=http://www.nightmare-magazine.com/fiction/hungry-daughters-of-starving-mothers/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Fantasy&lt;br /&gt;
|tags=LGBTQ;Tragic Ending;Mind Reading;Symbolic Cannibalism;Dangerous Love;Monsters;Dating;Death;Misogyny;Murder;Mothers&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q29956215&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Litany_of_Earth_(Ruthanna_Emrys)&amp;diff=11880</id>
		<title>Short Story:The Litany of Earth (Ruthanna Emrys)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Litany_of_Earth_(Ruthanna_Emrys)&amp;diff=11880"/>
		<updated>2026-03-08T05:34:35Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Correcting author name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Litany of Earth&lt;br /&gt;
|author=Ruthanna Emrys&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2014&lt;br /&gt;
|words=11518&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2014/05/14/the-litany-of-earth-ruthanna-emrys/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Horror&lt;br /&gt;
|tags=Revenge;Lovecraft;Overcoming Grief;Magic;Bookstore&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q55099189&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Litany_of_Earth_(Ruthanna_Emrys)&amp;diff=11879</id>
		<title>Short Story:The Litany of Earth (Ruthanna Emrys)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Litany_of_Earth_(Ruthanna_Emrys)&amp;diff=11879"/>
		<updated>2026-03-08T05:34:26Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: SuperHamster moved page Short Story:The Litany of Earth (Ruthana Emrys) to Short Story:The Litany of Earth (Ruthanna Emrys) without leaving a redirect: Correcting author name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Litany of Earth&lt;br /&gt;
|author=Ruthana Emrys&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2014&lt;br /&gt;
|words=11518&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2014/05/14/the-litany-of-earth-ruthanna-emrys/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Horror&lt;br /&gt;
|tags=Revenge;Lovecraft;Overcoming Grief;Magic;Bookstore&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q55099189&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Litany_of_Earth_(Ruthanna_Emrys)&amp;diff=11878</id>
		<title>Short Story:The Litany of Earth (Ruthanna Emrys)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Litany_of_Earth_(Ruthanna_Emrys)&amp;diff=11878"/>
		<updated>2026-03-08T05:34:00Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q55099189&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Litany of Earth&lt;br /&gt;
|author=Ruthana Emrys&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2014&lt;br /&gt;
|words=11518&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2014/05/14/the-litany-of-earth-ruthanna-emrys/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Horror&lt;br /&gt;
|tags=Revenge;Lovecraft;Overcoming Grief;Magic;Bookstore&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q55099189&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Goophered_Grapevine_(Charles_Chesnutt)&amp;diff=11877</id>
		<title>Short Story:The Goophered Grapevine (Charles Chesnutt)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Goophered_Grapevine_(Charles_Chesnutt)&amp;diff=11877"/>
		<updated>2026-03-08T05:33:06Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: SuperHamster moved page Short Story:The Goophered Grapevine (Charles W. Chestnut) to Short Story:The Goophered Grapevine (Charles Chesnutt) without leaving a redirect: Correcting author name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Goophered Grapevine&lt;br /&gt;
|author=Charles Chesnutt&lt;br /&gt;
|publication=Dark Matter: A Century of Speculative Fiction from the African Diaspora&lt;br /&gt;
|year=2014&lt;br /&gt;
|words=4500&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Southern Fiction;Southern Literature;Travel Narrative;Speculative Fiction&lt;br /&gt;
|tags=Voodoo;Race Relations;Flashback;Frame Story;Plantations;Witchcraft;Confederacy;Racism;Magic;Slavery;Interpretive Ending&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q19088555&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Goophered_Grapevine_(Charles_Chesnutt)&amp;diff=11876</id>
		<title>Short Story:The Goophered Grapevine (Charles Chesnutt)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Goophered_Grapevine_(Charles_Chesnutt)&amp;diff=11876"/>
		<updated>2026-03-08T05:32:46Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Correcting author name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Goophered Grapevine&lt;br /&gt;
|author=Charles Chesnutt&lt;br /&gt;
|publication=Dark Matter: A Century of Speculative Fiction from the African Diaspora&lt;br /&gt;
|year=2014&lt;br /&gt;
|words=4500&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Southern Fiction;Southern Literature;Travel Narrative;Speculative Fiction&lt;br /&gt;
|tags=Voodoo;Race Relations;Flashback;Frame Story;Plantations;Witchcraft;Confederacy;Racism;Magic;Slavery;Interpretive Ending&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q19088555&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Goophered_Grapevine_(Charles_Chesnutt)&amp;diff=11875</id>
		<title>Short Story:The Goophered Grapevine (Charles Chesnutt)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Goophered_Grapevine_(Charles_Chesnutt)&amp;diff=11875"/>
		<updated>2026-03-08T05:32:32Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q19088555&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Goophered Grapevine&lt;br /&gt;
|author=Charles W. Chestnut&lt;br /&gt;
|publication=Dark Matter: A Century of Speculative Fiction from the African Diaspora&lt;br /&gt;
|year=2014&lt;br /&gt;
|words=4500&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Southern Fiction;Southern Literature;Travel Narrative;Speculative Fiction&lt;br /&gt;
|tags=Voodoo;Race Relations;Flashback;Frame Story;Plantations;Witchcraft;Confederacy;Racism;Magic;Slavery;Interpretive Ending&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q19088555&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Bus_Fare_(Caitlin_R._Kiernan)&amp;diff=11874</id>
		<title>Short Story:Bus Fare (Caitlin R. Kiernan)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Bus_Fare_(Caitlin_R._Kiernan)&amp;diff=11874"/>
		<updated>2026-03-08T05:32:09Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q107206431&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Bus Fare&lt;br /&gt;
|author=Caitlin R. Kiernan&lt;br /&gt;
|publication=Subterranean Magazine&lt;br /&gt;
|year=2014&lt;br /&gt;
|words=4300&lt;br /&gt;
|read1_site=subterraneanpress.com&lt;br /&gt;
|read1_url=https://subterraneanpress.com/magazine/spring_2014/busfare_by_caitlnr._kiernan&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Fantasy&lt;br /&gt;
|tags=Riddles;Independence;Betrayal;Abandonment;Murder;Angels;Ambiguous Ending&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q107206431&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Fisher_Queen_(Alyssa_Wong)&amp;diff=11873</id>
		<title>Short Story:The Fisher Queen (Alyssa Wong)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Fisher_Queen_(Alyssa_Wong)&amp;diff=11873"/>
		<updated>2026-03-08T05:31:29Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q134700004&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Fisher Queen&lt;br /&gt;
|author=Alyssa Wong&lt;br /&gt;
|publication=The Magazine of Fantasy &amp;amp; Science Fiction&lt;br /&gt;
|year=2014&lt;br /&gt;
|words=5479&lt;br /&gt;
|read1_site=&lt;br /&gt;
|read1_url=&lt;br /&gt;
|read1_access=&lt;br /&gt;
|genres=Magical Realism;Science Fiction&lt;br /&gt;
|tags=Fast Paced Plot;Sexual Violence;Sexual Assault;Consumption;Mermaids&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q134700004&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Cartographer_Wasps_and_the_Anarchist_Bees_(E._Lily_U)&amp;diff=11872</id>
		<title>Short Story:The Cartographer Wasps and the Anarchist Bees (E. Lily U)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Cartographer_Wasps_and_the_Anarchist_Bees_(E._Lily_U)&amp;diff=11872"/>
		<updated>2026-03-08T05:30:17Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q72820658&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Cartographer Wasps and the Anarchist Bees&lt;br /&gt;
|author=E. Lily U&lt;br /&gt;
|publication=Clarkesworld Magazine&lt;br /&gt;
|year=2011&lt;br /&gt;
|words=3400&lt;br /&gt;
|read1_site=clarkesworldmagazine.com&lt;br /&gt;
|read1_url=http://clarkesworldmagazine.com/yu_04_11/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Fantasy&lt;br /&gt;
|tags=Action Y Plot;Monarchy And Anarchy;Nature Themes;Bees Versus Wasps;War;Bee Kingdoms;Generational Change;Betrayal;Kingdoms;Exploration And Conquest&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q72820658&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:Good_Night,_Moon_(Bruce_Sterling,_Rudy_Rucker)&amp;diff=11871</id>
		<title>Short Story:Good Night, Moon (Bruce Sterling, Rudy Rucker)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:Good_Night,_Moon_(Bruce_Sterling,_Rudy_Rucker)&amp;diff=11871"/>
		<updated>2026-03-08T05:29:42Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q5582848&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=Good Night, Moon&lt;br /&gt;
|author=Bruce Sterling, Rudy Rucker&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2010&lt;br /&gt;
|words=4786&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2010/10/13/good-night-moon/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Speculative Fiction&lt;br /&gt;
|tags=Nightmares;Body Horror;Aging&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q5582848&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_Ones_Who_Stay_and_Fight_(N.K._Jemisin)&amp;diff=11870</id>
		<title>Short Story:The Ones Who Stay and Fight (N.K. Jemisin)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_Ones_Who_Stay_and_Fight_(N.K._Jemisin)&amp;diff=11870"/>
		<updated>2026-03-08T05:28:35Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q76413672&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The Ones Who Stay and Fight&lt;br /&gt;
|author=N.K. Jemisin&lt;br /&gt;
|publication=How Long &#039;til Black Future Month?&lt;br /&gt;
|year=2018&lt;br /&gt;
|words=3800&lt;br /&gt;
|read1_site=lightspeedmagazine.com&lt;br /&gt;
|read1_url=https://www.lightspeedmagazine.com/fiction/the-ones-who-stay-and-fight/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Science Fiction;Speculative Fiction&lt;br /&gt;
|tags=Speculative;Theoretical;Speaking Directly To Reader;No Fourth Wall;Social Commentary;Second Person POV;Conceptual;Social Justice&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q76413672&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
	<entry>
		<id>https://fictionbase.org/mw/index.php?title=Short_Story:The_City_Born_Great_(N.K._Jemisin)&amp;diff=11869</id>
		<title>Short Story:The City Born Great (N.K. Jemisin)</title>
		<link rel="alternate" type="text/html" href="https://fictionbase.org/mw/index.php?title=Short_Story:The_City_Born_Great_(N.K._Jemisin)&amp;diff=11869"/>
		<updated>2026-03-08T05:28:17Z</updated>

		<summary type="html">&lt;p&gt;SuperHamster: Added Wikidata ID: Q76413954&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ShortStory&lt;br /&gt;
|title=The City Born Great&lt;br /&gt;
|author=N.K. Jemisin&lt;br /&gt;
|publication=Reactor&lt;br /&gt;
|year=2016&lt;br /&gt;
|words=6247&lt;br /&gt;
|read1_site=tor.com&lt;br /&gt;
|read1_url=https://www.tor.com/2016/09/28/the-city-born-great/&lt;br /&gt;
|read1_access=free&lt;br /&gt;
|genres=Gritty Urban Fantasy;Urban Fantasy;Fantasy&lt;br /&gt;
|tags=Fast Paced Plot;Art;Homelessness;Racial Conflict;Racism;New York City;Music;Singing;Upbeat Ending;Magical Realism;Policing;Contemporary&lt;br /&gt;
|notes=&lt;br /&gt;
|id_wikidata=Q76413954&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>SuperHamster</name></author>
	</entry>
</feed>