Story Details

  • I made a show shuffler that shuffles shows in order

    Posted: 2025-03-30 23:30:13

    This project introduces "sortashuffle," a tool designed to shuffle a list of TV shows (or other media) while maintaining the intended viewing order within each show. It accomplishes this by treating each show as a group, shuffling the order of the shows themselves, but keeping the episodes within each show in their original sequence. This allows for a randomized viewing experience while still preserving the narrative flow of individual series. The implementation uses Python and provides command-line options for customizing the shuffling process.

    Summary of Comments ( 2 )
    https://news.ycombinator.com/item?id=43528867

    Hacker News users discuss the practicality and limitations of the "sortashuffle" tool, which shuffles items while preserving original order within groups. Some highlight its usefulness for playlists or photo albums where related items should stay together. Others point out that true randomness isn't achieved, with the algorithm simply rearranging pre-defined chunks. Several suggest alternative approaches for achieving similar results, such as shuffling album lists and then tracks within each album, or using a weighted shuffle based on metadata. The discussion also touches on the definition of "shuffle" and the user experience implications of different shuffling methods. A few users delve into the specific algorithm, suggesting improvements or noting edge cases.