I can count on one hand the number of mirror universe episodes I’ve enjoyed in trek. But I don’t even need that one hand to count the mirror episodes I liked in DS9…
- 1 Post
- 61 Comments
the_sisko@startrek.websiteto Star Trek@startrek.website•Where We Last Left Off with Star Trek: Lower DecksEnglish1·2 years agoAbsolutely loved the quote in the video near the end, where the dude said something along the lines of “this isn’t the 90’s with 26 episodes, ‘hey this one can be about a ghost in a lamp’”
So glad the franchise can “officially” acknowledge and make fun of its silliness.
the_sisko@startrek.websiteto Star Trek@startrek.website•Watched episodes 2&3 of DS9, thoughtsEnglish1·2 years agoIt literally changed me
the_sisko@startrek.websiteto Star Trek@startrek.website•Star Trek Day 2023 SpecialEnglish3·2 years agoIt was fine. A total of maybe 8 minutes of interesting content. I enjoyed the segment with Tawny Newsome and Eugene Cordero watching silly clips. And the interviews on the street were cute.
Jerry O’Connell did have a slight “blink twice if you need help” vibe going on, but I’m not sure how much of that is me projecting it onto him given that the strikes are going on (but I assume this content was prepared in advance?). And honestly, I couldn’t do half as well “hosting” a show with no guests in front of a green screen!
The segment about Discovery was a bit…
And I’m actually a discovery fan! But wow that Paramount Plus narrator was so proud of their achievements, lol
the_sisko@startrek.websiteto Programming@programming.dev•Bloom filters: real-world applicationsEnglish1·2 years agoUsually it’s a bunch of different string hashes of the text content. They could be different hashing algorithms, but it’s more common to take a single hash algorithm and simply create a bunch of hash functions that operate on different parts of the data.
If it’s not text data, there’s a whole bunch of other hashing strategies but I only ever saw bloom filters used with text.
the_sisko@startrek.websiteto Technology@beehaw.org•Google gets its way, bakes a user-tracking ad platform directly into ChromeEnglish42·2 years agoPeople aren’t misunderstanding the issue. Third party cookie support is being dropped by all browsers. Chrome is also dropping them, but replacing them with topics. Sure, topics is less invasive than third party cookies, but it is still more invasive than the obvious user friendly approach of not having an invasive tracker built into your browser. No other major browser vendor is considering supporting topics. So they’re doing an objectively user unfriendly thing here. This is the shit that happens when the world’s largest internet advertising company also controls the browser.
the_sisko@startrek.websiteto Programming@programming.dev•Bloom filters: real-world applicationsEnglish7·2 years agoA classic use for them is spam filtering.
Suppose you have a set of spam detection systems/rules which are somewhat expensive to execute, eg a ML model or keyword blocklist. Spam tends to come in waves, and frequently it can be as simple as reposting the same message dozens of times.
Once your systems determine a piece of content is spam (or you manually flag content), it’s a good idea to insert the content into a bloom filter. This means that future posts of the identical content will be flagged without needing to execute the expensive checks, especially if there’s a surge of content stressing your systems.
Since it’s probabilistic, you can’t use this unless you have some sort of manual reviewing queue or system, as it’s possible for false positives to be flagged. However, you can also run more intensive checks once you’ve flagged content, to detect false positives.
The false positives can also be a feature, not a bug: with careful choice of hash functions, your bloom filter can actually detect slightly modified content, since most of the hashes may still be the same.
I’ve worked at companies which use this strategy so it’s very real world.
the_sisko@startrek.websiteto Star Trek@startrek.website•Watched episodes 2&3 of DS9, thoughtsEnglish3·2 years agoOn my first rewatch now and I can say that season one Bashir threw me for a loop because of just how obnoxious he is!! His interactions with any female character, or O’Brien… I guess I forget that the writers had to lay the bedrock of an annoying character in order to cover his later transition into a character we were excited about 🤣
I once heard that argument in a different, yet equally rage inducing context: “outlawing same-sex marriage isn’t discrimination! Everybody has the right to marry someone of the other sex” 🙄🙄🙄
the_sisko@startrek.websiteto Linux@lemmy.ml•No web browser offers a good out of the box experience.English20·2 years agoIn other news, emacs still didn’t ship my
init.el
as part of the default configuration! Lol
the_sisko@startrek.websiteto Programming@programming.dev•Are there contemporary programming languages that do *NOT* have the ability to import functions or values or whatever from other files? Are there situations in which that would be a feature?English4·2 years agoI’d argue that’s not true. That’s what the extern keyword is for. If you do
, you don’t get the actual
printf
function defined by the preprocessor. You just get an extern declaration (though extern is optional for function signatures). The preprocessed source code that is fed tocc
is still not complete, and cannot be used until it is linked to an object file that definesprintf
. So really, the unnamed “C preprocessor output language” can access functions or values from elsewhere.
the_sisko@startrek.websiteto Programmer Humor@lemmy.ml•All other licenses are cuck licensesEnglish14·2 years agoI know this is a joke, but assuming you’re the author, then you’re under no obligation to follow the license. Only people to whom you transmitted the code are bound by its terms.
the_sisko@startrek.websiteto Star Trek@startrek.website•Armin Shimerman and Terry Farrell Join the "Delta Flyers" Podcast for "Star Trek: Deep Space Nine" RewatchEnglish3·2 years agoI know reviews are pretty mixed, but I enjoyed listening on and off as I watched Voyager! But I will say that their episodes were pretty long winded for my tastes. In particular, while I understand why they had a section describing all the guest actors, writer, and director, they spent a bit too much time on it for my taste. Especially the actors, where they covered each actor’s first role and usually had a bit of a IMDB review. I personally only really care for the stories about the production of each episode, and also their general reception/opinion of each episode is fun since they’re deeply a part of the trek world.
For me, a briefer version would have been a home run. As is, it’s worth a listen, but you should feel free to skip around.
the_sisko@startrek.websiteto Risa@startrek.website•AITA: A new Subspace CommunityEnglish46·2 years agoThe real assholes are the Bajorans, they never even erected a statue of Dukat!
the_sisko@startrek.websiteto Fuck Cars@lemmy.ml•85% Of Car Drivers Break 20mph Speed Limits, Reveals U.K.’s Department For TransportEnglish1·2 years agoI think the core issue here is that you believe that it should be common and accepted for individuals to decide whether traffic rules “make sense” and ignore them based on their own individual assessment. I think that’s absurd.
the_sisko@startrek.websiteto Fuck Cars@lemmy.ml•85% Of Car Drivers Break 20mph Speed Limits, Reveals U.K.’s Department For TransportEnglish2·2 years ago“Impeding traffic” is quite the euphemism for “forcing people to slow down and drive the speed limit.” Call it what it is, a mild inconvenience that you wouldn’t even experience if you were following the rules that you’re upset about people breaking!
And the people who are “speeding but still being safe” do impact others too. It makes it much more dangerous for drivers doing the limit to merge into the left lanes in case of stopped vehicles, slow trucks, and merging traffic.
the_sisko@startrek.websiteto Fuck Cars@lemmy.ml•85% Of Car Drivers Break 20mph Speed Limits, Reveals U.K.’s Department For TransportEnglish21·2 years agoHonestly I was thinking more like 100mph
I remember doing that for my first (and only) time on the empty highways outside Salt Lake City in the early morning. It was exciting to try but fully concerning. I couldn’t imagine doing that around other vehicles.
It’s my belief that the people that jump on the highway and get 3 lanes over and just squat there not passing anyone that cause most traffic issues.
I mean, I think it’s clear that those are the people who cause the most issues for people who want to break the speed limit. And I fundamentally don’t believe you have the right to speed on a highway, and shouldn’t complain about missing out on opportunities to speed.
Like, I’m not saying left lane squatters are driving correctly, they should be over in the rightmost lane. But also all the other drivers, including you, should be going the speed limit. Why does one arbitrary rule about lane positioning matter so much to people, while the arbitrary speed limit is fine to ignore? Real talk: they’re both arbitrary rules. If you’re breaking the speed limit: SHUT UP about the lane squatters.
the_sisko@startrek.websiteto Fuck Cars@lemmy.ml•85% Of Car Drivers Break 20mph Speed Limits, Reveals U.K.’s Department For TransportEnglish2·2 years agoOn the bright side, high speed rail is generally not done by city transit agencies, it’s done by larger regional groups who hopefully can manage the project better.
Probably more flavorful than Chakotay, but that’s not saying much :)
I do believe that’s a freezer.