Menu
Sign In Search Podcasts Charts People & Topics Add Podcast API Blog Pricing

Bryan Hyland

๐Ÿ‘ค Speaker
202 total appearances

Appearances Over Time

Podcast Appearances

Coder Radio
644: Bryan Hyland on Open-Source

I don't know if you can do like a straight install or anything like that.

Coder Radio
644: Bryan Hyland on Open-Source

But I actually, at work, I actually run the Cosmic Terminal through WSL.

Coder Radio
644: Bryan Hyland on Open-Source

Nice.

Coder Radio
644: Bryan Hyland on Open-Source

Because it's much better than the Windows.

Coder Radio
644: Bryan Hyland on Open-Source

I hate everything about Windows and I'm forced to use it at work, so.

Coder Radio
644: Bryan Hyland on Open-Source

Yeah.

Coder Radio
644: Bryan Hyland on Open-Source

So that's, uh, you can recompile it and it does run on windows.

Coder Radio
644: Bryan Hyland on Open-Source

You may be missing an icon or two, but I actually was writing something for windows in lib cosmic, uh, and actually put a bug, a bug fix in for compiling for windows because of, uh, something I was having to create for windows.

Coder Radio
644: Bryan Hyland on Open-Source

I like the MVC concept.

Coder Radio
644: Bryan Hyland on Open-Source

It's very structured.

Coder Radio
644: Bryan Hyland on Open-Source

And that structure, again, because of my ADHD, helps me understand the whole concept.

Coder Radio
644: Bryan Hyland on Open-Source

code base and keep it in context because I know that the view lives here and the and this you know this pages state lives you know in this part of the code base at all times the main application state lives here I know where the updates are going to happen because I have a clear separation of

Coder Radio
644: Bryan Hyland on Open-Source

where that boundary is.

Coder Radio
644: Bryan Hyland on Open-Source

So I do it easier to, to work with.

Coder Radio
644: Bryan Hyland on Open-Source

Yeah, so it actually, you kind of have to follow the MVC.

Coder Radio
644: Bryan Hyland on Open-Source

It's very strict.

Coder Radio
644: Bryan Hyland on Open-Source

There is no way that you can get around it because everything happens in that update function.

Coder Radio
644: Bryan Hyland on Open-Source

You have to make sure that you're passing that state, you're updating that state directly in there.

Coder Radio
644: Bryan Hyland on Open-Source

That's the only place that the state can be...

Coder Radio
644: Bryan Hyland on Open-Source

modified.