What are the best stories on DailyScienceFiction.com?
April 19, 2018 9:57 PM   Subscribe

There are some wonderful stories on the site, but I'd like to find more of them. My favorites include: "Miriam and I after the End"."
posted by storybored to Writing & Language (4 answers total) 18 users marked this as a favorite
 
(The link to the story above is incomplete. The correct one is here)

I think this Daily Science Fiction story, "It's Good to See You", is pretty good, but then, I wrote it.
posted by ShooBoo at 10:45 PM on April 19, 2018 [2 favorites]


Best answer: I think all but one of these have been posted in FPPs before, but the ones in my Bookmarks are ...

Sophie Wereley, "Unconventional Advice for the Discerning Reader"
Barry Charman, "Upgrades"
Tanya Breshears, "Cyclical"
Kelly M. Sandoval, "A Heart, An Egg, A Lock of Hair"
Joy Kennedy-O'Neill, "The Moon in Her Doorway"
Marissa Lingen, "The Psittaculturist's Lesson"

Incidentally, I once wrote a script to screenscrape six months of scores on the site. If I wasn't overlooking some easier way to sort them by rating (I hope I wasn't just oblivious), this may help you find more good options. I'd recommend waiting to try until the site is way more responsive than it is tonight though.
#!/usr/bin/env perl

use strict;
use warnings;
use 5.012;
use LWP::Simple;

my @months = qw(01 02 03 04 05 06);
my %title;
my %rating;

foreach my $month (@months) {
        my $url = 'http://dailysciencefiction.com/month/stories/2017.' . $month;
        my @stories = grep /" class="storyListTitle/, split /\n/, get $url;
        foreach my $story (@stories) {
                $story =~ /href="(.*?)" class="storyListTitle">(.*?)<\/a>/;
                $title{$1} = $2;
        }
}

say '<html><head><base href="http://dailysciencefiction.com"></head><body><pre>';
foreach my $url (keys %title) {
        my $story = get 'http://dailysciencefiction.com' . $url;
        $story =~ /<b>(\S+) Rocket Dragons Average/;
        say "$1\t<a href='$url'>$title{$url}</a><br>";
        sleep 1;
}

posted by Wobbuffet at 11:59 PM on April 19, 2018 [1 favorite]


Here's one that that I really liked:
Metal and Flesh by Marie Vibbert

And one that I wrote.
posted by maurice at 7:19 AM on April 20, 2018 [1 favorite]


Charles Payseur reads lots of short fiction online and recommends some in Quick Sip Reviews
posted by Jesse the K at 11:25 AM on April 20, 2018


« Older Should I quit my job to travel?   |   Le Fooding in Paris: Where should I eat? What's... Newer »
This thread is closed to new comments.