Star Trek

10619 readers
1 users here now

r/startrek: The Next Generation

Star Trek news and discussion. No slash fic...

Maybe a little slash fic.


New to Star Trek and wondering where to start?


Rules

1 Be constructiveAll posts/comments must be thoughtful and balanced.


2 Be welcomingIt is important that everyone from newbies to OG Trekkers feel welcome, no matter their gender, sexual orientation, religion or race.


3 Be truthfulAll posts/comments must be factually accurate and verifiable. We are not a place for gossip, rumors, or manipulative or misleading content.


4 Be niceIf a polite way cannot be found to phrase what it is you want to say, don't say anything at all. Insulting or disparaging remarks about any human being are expressly not allowed.


5 SpoilersUtilize the spoiler system for any and all spoilers relating to the most recently-aired episodes, as well as previews for upcoming episodes. There is no formal spoiler protection for episodes/films after they have been available for approximately one week.


6 Keep on-topicAll submissions must be directly about the Star Trek franchise (the shows, movies, books etc.). Off-topic discussions are welcome at c/quarks.


7 MetaQuestions and concerns about moderator actions should be brought forward via DM.


Upcoming Episodes

Date Episode Title
11-21 LD 5x06 "Of Gods and Angles"
11-28 LD 5x07 "Fully Dilated"
12-05 LD 5x08 "Upper Decks"
12-12 LD 5x09 "Fissue Quest"
12-19 LD 5x10 "The New Next Generation"

Episode Discussion Archive


In Production

Strange New Worlds (2025)

Section 31 (2025-01-24)

Starfleet Academy (TBA)

In Development

Untitled comedy series


Wondering where to stream a series? Check here.


Allied Discord Server


founded 1 year ago
MODERATORS
251
 
 

It would seem that I have far too much time on my hands. After the post about a Star Trek "test", I started wondering if there could be any data to back it up and... well here we go:

The Next Generation

Name Percentage of Lines
PICARD 20.16
RIKER 11.64
DATA 10.1
LAFORGE 6.93
WORF 6.14
TROI 5.4
CRUSHER 5.11
WESLEY 2.32

DS9

Name Percentage of Lines
SISKO 13.0
KIRA 8.23
BASHIR 7.79
O'BRIEN 7.31
ODO 7.26
QUARK 6.98
DAX 5.73
WORF 3.18
JAKE 2.31
GARAK 2.29
NOG 2.01
ROM 1.89
DUKAT 1.76
EZRI 1.53

Voyager

Name Percentage of Lines
JANEWAY 17.7
CHAKOTAY 8.76
EMH 8.34
PARIS 7.63
TUVOK 6.9
KIM 6.57
TORRES 6.45
SEVEN 6.1
NEELIX 4.99
KES 2.06

Enterprise

Name Percentage of Lines
ARCHER 24.52
T'POL 13.09
TUCKER 12.72
REED 7.34
PHLOX 5.71
HOSHI 4.63
TRAVIS 3.83
SHRAN 1.26

Discovery

Note: This is a limited dataset, as the source site only has transcripts for seasons 1, 2, and 4

Name Percentage of Lines
BURNHAM 22.92
SARU 8.2
BOOK 6.21
STAMETS 5.44
TILLY 5.17
LORCA 4.99
TARKA 3.32
TYLER 3.18
GEORGIOU 2.96
CULBER 2.83
RILLAK 2.17
DETMER 1.97
OWOSEKUN 1.79
ADIRA 1.63
COMPUTER 1.61
ZORA 1.6
VANCE 1.07
CORNWELL 1.07
SAREK 1.06
T'RINA 1.02

If anyone is interested, here's the (rather hurried) Python used:

#!/usr/bin/env python

#
# This script assumes that you've already downloaded all the episode lines from
# the fantastic chakoteya.net:
#
# wget --accept=html,htm --relative --wait=2 --include-directories=/STDisco17/ http://www.chakoteya.net/STDisco17/episodes.html -m
# wget --accept=html,htm --relative --wait=2 --include-directories=/Enterprise/ http://www.chakoteya.net/Enterprise/episodes.htm -m
# wget --accept=html,htm --relative --wait=2 --include-directories=/Voyager/ http://www.chakoteya.net/Voyager/episode_listing.htm -m
# wget --accept=html,htm --relative --wait=2 --include-directories=/DS9/ http://www.chakoteya.net/DS9/episodes.htm -m
# wget --accept=html,htm --relative --wait=2 --include-directories=/NextGen/ http://www.chakoteya.net/NextGen/episodes.htm -m
#
# Then you'll probably have to convert the following files to UTF-8 as they
# differ from the rest:
#
# * Voyager/709.htm
# * Voyager/515.htm
# * Voyager/416.htm
# * Enterprise/41.htm
#

import re
from collections import defaultdict
from pathlib import Path

EPISODE_REGEX = re.compile(r"^\d+\.html?$")
LINE_REGEX = re.compile(r"^(?P<name>[A-Z']+): ")

EPISODES = Path("www.chakoteya.net")
DISCO = EPISODES / "STDisco17"
ENT = EPISODES / "Enterprise"
TNG = EPISODES / "NextGen"
DS9 = EPISODES / "DS9"
VOY = EPISODES / "Voyager"


class CharacterLines:
    def __init__(self, path: Path) -> None:
        self.path = path
        self.line_count = defaultdict(int)

    def collect(self) -> None:
        for episode in self.path.glob("*.htm*"):
            if EPISODE_REGEX.match(episode.name):
                for line in episode.read_text().split("\n"):
                    if m := LINE_REGEX.match(line):
                        self.line_count[m.group("name")] += 1

    @property
    def as_percentages(self) -> dict[str, float]:
        total = sum(self.line_count.values())
        r = {}
        for k, v in self.line_count.items():
            percentage = round(v * 100 / total, 2)
            if percentage > 1:
                r[k] = percentage
        return {k: v for k, v in reversed(sorted(r.items(), key=lambda _: _[1]))}

    def render(self) -> None:
        print(self.path.name)
        print("| Name             | Percentage of Lines |")
        print("| ---------------- | ------------------- |")
        for character, pct in self.as_percentages.items():
            print(f"| {character:16} | {pct} |")


if __name__ == "__main__":
    for series in (TNG, DS9, VOY, ENT, DISCO):
        counter = CharacterLines(series)
        counter.collect()
        counter.render()
252
253
 
 

Just why send bridge crew. Those crew are important and mean to stay on the ship. Unless the mission required someone on the top like first-mate, you should send your boarding team or land team on mission.

Most of the eps, I see a dangerous mission with 2-5 bridge crew member. Sometime it is include both captain and first mate.

Sometime, it is fighting sorties, a first mate said: I need volunteer who is trained in close combat. And multiple bridge crew go with him. The next scene is the crews start shoting handgun in some dangerous place, maybe they also teleport inside enermy ship (boarding action), and sometime is fighting kungfu.

Why not send a sergeant and handful of soldiers ? The ship is quite big but there are no spare personel to send ?

254
255
29
submitted 5 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]
 
 

You've heard of the "Bechdel-Wallace test" and its potential value to some people in measuring various media in a given context.

I propose a measure we'll call the "Captain and Crew Test"....

I was enduring -- yes, that's the word I'll choose -- an episode of a certain Trek show and found myself thinking that I seem to enjoy Star Trek shows where the captain isn't the center of attention for the continued story, rather the crew as a whole (including the captain as professionally and relatively required) works together on the story of the day or is portrayed in multiple dimensions without the commanding officer present.

So, here's my attempt at codifying this "Captain and Crew Test":

  • The episode/show has to have at least two crew members (i.e. not the captain) essential to the story,
  • who interact with each other without the captain,
  • about the story without specific direction from the captain

I think these "rules" could use some adjustment and addition, but I think you get what I'm proposing/suggesting/inciting.

UPDATE 2024-07-04 04:35:34 UTC: Check out the quick and amazing work by @[email protected] to compile a subset of the percentage of lines for each character in a few Star Trek shows.

256
257
258
259
 
 

I wanted some ambience for an upcoming Star Trek Adventures game, so I whipped up this simple web app.

260
17
submitted 5 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]
261
 
 

This is the c/startrek discussion thread for "Ouroboros" - join the conversation in the replies!

LoglinesPart I: A desperate Asencia launches an all-out attack on the Federation that will destroy subspace, while Wesley and the cadets try to correct the timeline.

Part II: The cadets fight Asencia in a battle for control of Solum and the future – but a sudden invasion by a destructive species complicates their end-game.


Part I written by: Kevin Hageman & Dan Hageman & Aaron J. Waltke

Part I directed by: Sean Bishop

Part II written by: Kevin Hageman & Dan Hageman & Aaron J. Waltke

Part II directed by: Ruolin Li

262
 
 

This is the c/startrek discussion thread for "Touch of Grey" - join the conversation in the replies!

LoglineAdmiral Janeway devises a clever plan to liberate her crew from Asencia's prison, where they're trapped with an angry captive from the Loom.


Written by: Jennifer Muro

Directed by: Sung Shin

263
10
submitted 5 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]
 
 

This is the c/startrek discussion thread for "Brink" - join the conversation in the replies!

LoglineAs war looms between the Federation and Solum, Gwyn proposes to lead the cadets on an undercover mission to gather intelligence and rescue Ilthuran.


Written by: Diandra Pendleton-Thompson

Directed by: Ruolin Li

264
 
 

This is the c/startrek discussion thread for "Ascension" - join the conversation in the replies!

LoglinesPart I: Just as the Protostar and Voyager crews bring their mission to a close, a former enemy suddenly resurfaces with surprising new powers.

Part II: Overwhelmed by Asencia's mysteriously advanced weaponry, the Protostar and Voyager crews take a series of calculated risks that endanger the cadets.


Part I written by: Erin McNamara & Jennifer Muro & Diandra Pendleton-Thompson & Keith Sweet II & Aaron J. Waltke

Part I directed by: Sung Shin

Part II written by: Alex Hanson

Part II directed by: Sean Bishop

265
 
 

This is the c/startrek discussion thread for "Cracked Mirror" - join the conversation in the replies!

LoglineThe Protostar's reunion with Voyager has unexpected side effects, bouncing the crew between alternate realities – including the mirror universe.


Written by: Erin McNamara

Directed by: Ruolin Li

266
 
 

This is the c/startrek discussion thread for "A Tribble Called Quest" - join the conversation in the replies!

LoglineWhile harvesting bosonite on a barren world, the crew encounters aggressive, genetically-modified tribbles – and the Klingon scientist who created them.


Written by: Keith Sweet II

Directed by: Sean Bishop

267
 
 

This is the c/startrek discussion thread for "Last Flight of the Protostar" - join the conversation in the replies!

LoglinesPart I: Thanks to Wesley Crusher's timely intervention, the cadets find the Protostar – but the ship's marooned guardian isn't eager for their assistance.

Part II: Chakotay and the cadets devise a bold but perilous plan to relaunch the Protostar. Before the ship can fly, however, it will first have to sail.


Part I written by: Diandra Pendleton-Thompson

Part I directed by: Ruolin Li and Andrew L. Schmidt

Part II written by: Alex Hanson & Aaron J. Waltke

Part II directed by: Sung Shin

268
 
 

This is the c/startrek discussion thread for "The Devourer of All Things" - join the conversation in the replies!

LoglinesPart I: Finally arriving at the coordinates, the Infinity crew discovers a hidden planet – and the long-awaited identity of their mysterious messenger.

Part II: On the run from their time-erasing pursuers, the Infinity crew and their new ally search for an escape. The Voyager embarks on a rescue mission.


Part I written by: Jennifer Muro

Part I directed by: Sung Shin

Part II written by: Aaron J. Waltke

Part II directed by: Sean Bishop

269
 
 

This is the c/startrek discussion thread for "Is There in Beauty No Truth?" - join the conversation in the replies!

LoglineThe crew detours to a colony of non-corporeal entities, who offer Zero an opportunity to obtain a physical body. Janeway discovers Dal's real intentions.


Written by: Keith Sweet II

Directed by: Ruolin Li and Andrew L. Schmidt

270
 
 

This is the c/startrek discussion thread for "The Fast and the Curious" - join the conversation in the replies!

LoglineAfter using a Borg conduit to travel through time faster, Dal and his friends find themselves at the mercy of a demanding Kazon.


Written by: Erin McNamara

Directed by: Sean Bishop and Sung Shin

271
 
 

This is the c/startrek discussion thread for "Imposter Syndrome" - join the conversation in the replies!

LoglineHoping to hijack the Infinity before its scheduled destruction, Dal and the crew create hologram doubles to cover for their absence.


Written by: Diandra Pendleton-Thompson

Directed by: Sung Shin

272
 
 

This is the c/startrek discussion thread for "Observer's Paradox" - join the conversation in the replies!

LoglineReunited on Voyager and under strict supervision, the gang must decode a secret message their mysterious benefactor left with Murf.


Written by: Jennifer Muro

Directed by: Ruolin Li and Andrew L. Schmidt

273
 
 

This is the c/startrek discussion thread for "Temporal Mechanics 101" - join the conversation in the replies!

LoglineAlthough separated by decades, the Infinity and the Voyager crews band together to save Gwyn's life. A mysterious messenger reaches out to Gwyn.


Written by: Keith Sweet II

Directed by: Ben Hibon

274
 
 

This is the c/startrek discussion thread for "Who Saves the Saviors" - join the conversation in the replies!

LoglineTraveling through the time rift, Dal and the crew search for Chakotay on Solum. With the support of her father, Gwyn challenges Ascencia.


Written by: Erin McNamara

Directed by: Sung Shin

275
 
 

This is the c/startrek discussion thread for "Into the Breach" - join the conversation in the replies!

LoglinesPart I: Dal and his friends board Janeway's starship to investigate the wormhole created by the Protostar. Tired of his training, Dal longs for some action.

Part II: Gwyn runs into a familiar foe on the planet Solum. Janeway reveals the true stakes of their mission to Dal and his friends.


Part I written by: Kevin Hageman & Dan Hageman

Part I directed by: Ben Hibon

Part II written by: Aaron J. Waltke

Part II directed by: Patrick Krebs and Andrew L. Schmidt

view more: ‹ prev next ›