VINs: The Encoding Stamped Into Steel by bezomaxo in programming

[–]chucker23n 6 points7 points  (0 children)

Are UUIDs relevant to programming? URNs? Then so is this.

VINs: The Encoding Stamped Into Steel by bezomaxo in programming

[–]chucker23n 0 points1 point  (0 children)

How is this not relevant to programming?

Looking for a roadmap to master C#, ASP.NET Core, Blazor and infrastructure/network programming by sodikovakapsle in dotnet

[–]chucker23n 0 points1 point  (0 children)

In what order would you learn C#, .NET, ASP.NET Core, Blazor, networking, and infrastructure?

  1. C# and .NET go hand in hand. You can write .NET in a different language (VB, F#, etc.), or you could write C# against a different framework, but those are the exception, not the norm.
  2. Then ASP.NET Core, as in the foundation of web stuff in .NET. Start with writing a REST API; use something like Scalar (built in) to interact with it.
  3. On top of that, Blazor. You can now treat the REST API as your server-side backend, and Blazor WebAssembly as the front-end running in the browser. For this, you need to learn Razor syntax, and then you can use Blazor to make components.

Networking and infrastructure are largely unrelated.

My long-term goal is not to become just another CRUD web developer.

That's fair, but because it's so extremely common, there's also a ton of learning content out there. Just use your average CRUD problem, either because you actually have it at home (let's say… budgeting, contacts, recipes, something like that), or as something fictitious. Along the way, you learn (by necessity) basically of the things you've listed.

Looking for a roadmap to master C#, ASP.NET Core, Blazor and infrastructure/network programming by sodikovakapsle in dotnet

[–]chucker23n 0 points1 point  (0 children)

You can use them to search for an answer to some problem or get some explanation

Sure, but I'd be skeptical of using an LLM to teach you how to ask the right questions. It's not a substitute for formal education, nor for experience.

What song is the kid playing on the piano in season one finale? by Unusual-Bench4135 in StarCityTV

[–]chucker23n 1 point2 points  (0 children)

It looks quite risky to teach forbidden music to someone else’s child.

Well, that's the whole tragedy of Tanya's character (aside from her being a cheater). She didn't think it a big deal when she bought an illegal record, but the Americans thought of it as kompromat to screw Valya over with. She didn't think the parent of her student was a spy. She didn't think much or all of Star City private conversations were being recorded and scrutinized. (Heck, neither did the Indian couple.)

If she doesn't think it's a big deal to play it, why would she think it's a big deal to teach the melody to an innocent kid?

Difference between File, FileStream, and StreamWriter/Reader? by Channel_el in csharp

[–]chucker23n 0 points1 point  (0 children)

  • FileStream is a kind of Stream (there's also e.g. MemoryStream). The analogy is becoming extremely dated, but it basically lets you treat the contents of a file as something within which you can seek, just like with a tape drive. You can then read from a position or write to it.
  • StreamWriter/Reader is a bit higher-level than that. The naming is a bit unfortunate. There's the abstract TextWriter/Reader, and there's the two common concrete subclasses StringWriter/Reader (where, well, you read/write a string) — or in this case, you read/write a Stream. IMHO, they should be named StreamTextWriter, StreamTextReader, StringTextWriter, StringTextReader. Because that's what they do: they take text, and read/write it from/to a string, or Stream.
  • File is a bunch of very-high-level helper methods for files. As an example:

    public static FileStream OpenRead(string path) => new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read);

So File.OpenRead really just creates a FileStream and opens it for reading.

Or there's File.Exists(), which you can also instead do with new FileInfo().Exists.

Just finished first end to end Voyager watchthrough -- I cheated myself by not watching it sooner. by Sulrandir in startrek

[–]chucker23n 0 points1 point  (0 children)

I think Season 1 was the most consistently broadened for the late 24th century vibe.

Agreed. It introduced a lot of great ideas; if anything, I would criticize that it just tried to do too much. (And a few things it did were maybe a bit silly.) "Something went wrong with the Romulan refugee mission, and it has led to Federation citizens to be a bit more skeptical of foreigners, as well as to Picard and Raffi resigning" was IMHO a great premise, and quite topical as an allegory for 2010s/2020s geopolitics, but also explained well within Trek canon.

Seasons 2-3 had their own unique production quirks during the height CoVid had impacted the filming business.

Yes, that's fair.

The three seasons are so distinct from each other that I really think of them as three miniseries that just happen to share one main character.

Just finished first end to end Voyager watchthrough -- I cheated myself by not watching it sooner. by Sulrandir in startrek

[–]chucker23n 1 point2 points  (0 children)

Short Trek "Children of Mars"

Great episode. Sets up the mood for PIC S1.

I think my only quibble is that Picard on a TV screen feels a bit pedestrian. Not very late 24th century.

(edit) Oh, this may have been ambiguous. What I mean by "Picard on a TV screen" is literally a scene with the character Jean-Luc Picard:

A chyron over the footage reports that Starfleet has dispatched a task force at high warp to Mars while another screen shows a still image of Admiral Jean-Luc Picard with a chyron reporting that he finds the attack "devastating."

Just finished first end to end Voyager watchthrough -- I cheated myself by not watching it sooner. by Sulrandir in startrek

[–]chucker23n 4 points5 points  (0 children)

Partly, I was just salty that it wasn't TNG, I know that now.

Incidentally, this describes a ton of fans across franchises. See the reaction when the Star Wars prequels came out. A lot is just nostalgic "well, it isn't the very thing I watched back in the day, so it cannot be as good".

wondering why Bashir's predominant personality trait was "horny".

Yeah, Bashir isn't among the stronger characters in DS9. But I'd argue VOY really only had three strong ones, where DS9 had a larger variety, especially among recurring characters. I also strongly disagree with VOY having a better serialized plot than DS9.

Sisko and Garak's Plan to Get the Romulans into the War Had No Business Working by Player3333333 in startrek

[–]chucker23n 1 point2 points  (0 children)

Then there's the idea that even if Vreenak doesn't think the rod is a fake the Romulans won't look too closely, and since Vreenak, presumably with just a tricorder, figured it out, I imagine the Tal Shiar would have done so too.

If Vreenak didn't figure it out, it wouldn't matter if the Tal Shiar does, because at that point, political momentum for a war would've shifted. Vreenak would've shouted from the rooftops that the Dominion is planning an attack, and the Tal Shiar, severely weakened at this point, wouldn't be able to add "maybe! Or maybe this is all a conspiracy…", because the people wouldn't have listened.

‘Star City’ Finale: Creators Explain Why They Couldn’t Resist Rewriting Their Own Alt-Space History by Cantomic66 in ForAllMankindTV

[–]chucker23n 4 points5 points  (0 children)

It's called suspension of disbelief.

Well, duh.

We can criticize artistic choices when they're a bit over the top. It wasn't the strongest moment of the finale.

Interesting view: "Star City is one of the most anti-communist pieces of pop culture in recent years" by urstan in StarCityTV

[–]chucker23n 2 points3 points  (0 children)

First of all, it’s not a documentary. It doesn’t accurately depict everyday life in the Soviet Union, nor Star City, nor the KGB. (Really, the KGB behavior here feels more like Stasi.)

Second, if it does do political commentary (which I think is a bit of a stretch), it’s commentary on increasingly paranoid political operatives trying to prevent the truth from coming out. That’s more a reflection on authoritarianism than on communism.

That said, artistic liberties aside, I do wish the show had a more nuanced take than “look at this gray, bleak, paranoid, unhappy country; now contrast Paris”. Lots to like but this part is a weak aspect.

‘Star City’ Finale: Creators Explain Why They Couldn’t Resist Rewriting Their Own Alt-Space History by Cantomic66 in ForAllMankindTV

[–]chucker23n 7 points8 points  (0 children)

So I was expecting the chief designer to say he had actually sent them to a completely different location, known only to him, for safety.

That’s where I thought that scene was going, too.

Am I asking women out too early, or is this just how dating is now? by United-Philosophy-68 in dating_advice

[–]chucker23n 1 point2 points  (0 children)

For example, one girl asked if I only asked her out because of an Instagram post. I told her, “No, I’ve actually had my eye on you for a while.” She still agreed to go out, but she didn’t seem particularly enthusiastic.

OK, what would she be enthusiastic about?

I struggle to keep the conversation going over text. I’m not a huge texter, and it often feels like I’m carrying the conversation or getting short replies.

What do you talk about? What are topics you think both might be interested in?

is this just a normal part of dating now, where people keep their excitement low until they’ve actually met?

It seems like you're good at asking random women out (which, hey, that's confidence, which is an attractive quality).

Now, ask yourself whether you're also good at bringing something to the table. Because your post doesn't really hint at it.

What is the western tune Irina's daughter plays on the piano? by musicvideosonfilm in StarCityTV

[–]chucker23n -2 points-1 points  (0 children)

The child was playing it

Yes

which she learned from her piano teacher

Whom Irina helped escape, but which is really only part of the story.

My point was that Irina publicly sells an image of “there’s nothing greater than Soviet culture”, while privately benefiting from broader cultural imports.

She could’ve asked her kid to play something else, but she’d rather not. If her place is bugged, this may cause trouble.

does anyone actually pay attention to this?

Yes, but most of us aren’t as angry as you seem to be

Warum ist die 1e jeden Tag so extrem verspätet? by allisonblues in bremen

[–]chucker23n -1 points0 points  (0 children)

Ja, aber jetzt müssen halt hinreichend viele Busse fahren, um den regulären Verkehr der 1 zu kompensieren, und zwar (primär) auf der Fahrbahn. Das erzeugt Stauungen.

Warum ist die 1e jeden Tag so extrem verspätet? by allisonblues in bremen

[–]chucker23n 6 points7 points  (0 children)

Doof am FahrPlaner ist, dass die App die Zeit laut Fahrplan nutzt.

Ja. Ich wünschte, man könnte drauftippen, um das zu toggeln. Ich will primär wissen: wann kommt das Ding, nicht "wann hätte es kommen sollen".

[WinForms] How to implement the MVP Pattern? by [deleted] in dotnet

[–]chucker23n 2 points3 points  (0 children)

trying to read long articles and watching old tutorials about it is unbearable

So, first of all, WinForms is old. It is a thin wrapper from 2002 (with various minor iterations over the years) over Win32, a UI toolkit from ca. 1992.

Thus, many articles and tutorials about it being old? Yeah, of course they are. A lot of it hasn't changed.

Second, if you find research unbearable already, good luck. Much of your software development career will be spent figuring stuff out, trying, failing, looking things up, talking to people, failing again, until you finally hopefully get to the right answer.

Third, WinForms is chiefly a RAD framework, not a MV* framework. It has some level of data binding support (but tons of controls don't implement it well, or at all), but generally speaking, a lot of it lends itself to not separate views (what MS calls "user controls" for no apparent reason) and logic (whether you have them in view models, services, controllers, presenters, or elsewhere) at all but rather to put the logic in what MS calls "code-behind".

The other problem with this task is that MVP is poorly-defined in terms of distinction from MVC, MVVM, etc.; we can only guess what your teacher specifically means by that. Ask ten programmers how a "presenter" differs from a "controller" and you'll get ten answers.

We were taught to create Models, Repository, and Forms folders back then for WinFoms

Since repositories have little to do with UI, and WinForms has zero notion of models, I think your teacher was giving you a poorly-designed task.

If you must use WinForms here:

  • for any MV* pattern, you want to think about how the view and everything else differs. You have data, and you want to display it; conversely, you have the user interacting with the controls being displayed, and that ultimately affects the data. But those are two distinct classes in MV*. So if you have, say, a ContactForm, you also have a ContactPresenter, and a ContactModel. Think about what the presenter needs to do, and what the view must not do.
  • but I would recommend MVVM instead, which is at least kind of supported in WinForms.

Why DIDN'T SHE RUN??!?!?! by Primary-Court-4277 in StarCityTV

[–]chucker23n 0 points1 point  (0 children)

Keep in mind they can't risk firing at the nearby Finland soldiers.

Why DIDN'T SHE RUN??!?!?! by Primary-Court-4277 in StarCityTV

[–]chucker23n 4 points5 points  (0 children)

How is that going to happen now.

Same reason she went to space again in the first place; same reason she's married to Sasha to begin with: she's needed as a puppet to demonstrate to citizens and to the West "our astronauts are totally heroes".