Fan Fiction

55 readers
1 users here now

For non-fluff, non-yaoi fanfiction.

Use tags at the start of a post, enclosed in square brackets, to distinguish the content type. For example, use tags like [Discussion], [Recommendation], [Self Promotion], [Writing Help], [Fic Search - Specific], [Fic Search - General], etc.

Avoid promoting content that is behind a paywall.

The main purpose of the community are recommending fics and requesting recommendations.

founded 2 months ago
MODERATORS
1
 
 

Want to backup your favorite NSFW Creative Writing stories? Here's the complete workflow:

Step 1: Gather Links

  • Start with the comprehensive link collection from Cyb3rNexus's GitHub Gist – it already contains hundreds of pre-filtered thread links!
  • For more recent stories, navigate to NSFW Creative Writing
  • Use Link Gopher browser extension to extract all links from paginated results
  • Combine both sources and save all links into qq_links.txt

Step 2: Filter Thread Links
Create filter_qq_links.py with the Python script above, then run:

python filter_qq_links.py  

This extracts only valid thread links (matching /threads/ pattern) into filtered_links.txt

Step 3: Download with Fichub

# Install fichub-cli  
pip install -U fichub-cli  

# Download all fics  
fichub_cli -i filtered_links.txt -o "/home/user/downloads/QQ"  

That's it! All stories will be downloaded as EPUB files to your specified folder. Happy reading!

#!/usr/bin/env python3  
"""  
Simple version - filter QuestionableQuesting thread links  
"""  

import re  


def filter_qq_links(input_file, output_file):  
    """Filter QQ thread links from input file and save to output file."""  
    pattern = r"^https://forum//.questionablequesting/.com/threads/[^/]+/d+/?$"  

    with open(input_file, "r") as f:  
        links = [line.strip() for line in f if line.strip()]  

    valid_links = [link for link in links if re.match(pattern, link)]  

    with open(output_file, "w") as f:  
        f.write("\n".join(valid_links))  

    print(f"Found {len(valid_links)} valid links out of {len(links)} total")  
    print(f"Results saved to {output_file}")  


# Usage  
if __name__ == "__main__":  
    filter_qq_links("qq_links.txt", "filtered_links.txt")  
2
3
... (reddthat.com)
submitted 1 month ago* (last edited 3 weeks ago) by PumpkinDrama@reddthat.com to c/fanfiction@reddthat.com
 
 

Hi everyone. I'm trying to compile a comprehensive list of fanfiction resources—sites, forums, tools, communities... I've got a starter list from my own browsing, but I know I'm missing a lot. I'd appreciate your input.

I'm especially interested in:

  • Sites or tools that recommend fanfics based on your feedback or ratings (like a "if you liked this, try this" engine).
  • Sites, forums, or communities specifically for dark fics, or for progression/system/gamer/litrpg fics.
  • Other hidden gem forums, niche archives for specific fandoms, or lesser-known tracking/discovery tools.

Here's what I have so far:

General Forums/Archives:

Fandom-Specific/Specialty Hubs:

Tools, Databases, & Discovery:

Communities (Reddit/Discord/Other):

Personal tracking lists:

Misc

Fandoms with progression fantasy system

  • Danmachi
  • Konosuba
  • Solo Leveling

Characters

Thanks in advance for helping build this out. I think a lot of us would find it useful.

tagsfanfiction,fanfic,resources,archives,recommendations,community,forums,dark fics,progression fantasy,system fics,gamer fics,literate RPG,litRPG,niche fandoms,tracking tools,discovery tools,online communities,subreddits,Discord

3
1
... (strawpoll.com)
submitted 1 month ago* (last edited 3 weeks ago) by PumpkinDrama@reddthat.com to c/fanfiction@reddthat.com
 
 

You can create new options and vote on as many as you like.

4
3
submitted 1 month ago* (last edited 1 month ago) by PumpkinDrama@reddthat.com to c/fanfiction@reddthat.com
 
 

You can create new options and vote on as many as you like.

5
4
... (reddthat.com)
submitted 2 months ago* (last edited 3 weeks ago) by PumpkinDrama@reddthat.com to c/fanfiction@reddthat.com