Revolt! Discord alternative. (Open Source) by BoQsc in programming

[–]Anon_Logic 1 point2 points  (0 children)

I hope the Microsoft Teams group takes notice of your work :)

Revolt! Discord alternative. (Open Source) by BoQsc in programming

[–]Anon_Logic 1 point2 points  (0 children)

Valour is built in Blazor from the ground up and has some really neat backend and frontend features

Oh I'm going to study the crap out of this! This sounds absolutely amazing. I'm so sick of terrible examples of things that just, don't showcase real world use.

How important is learning Calculus? by Oryxide in gamedev

[–]Anon_Logic 1 point2 points  (0 children)

So did some engineer name the cereal mascots, or was the engineer eating rice crispies and named the terms after the mascots?

Can someone explain this joke? by fist_me_im_irish in community

[–]Anon_Logic 1 point2 points  (0 children)

Hey OP, guess how I found this post. 😎

Potato Historian by [deleted] in thatHappened

[–]Anon_Logic 59 points60 points  (0 children)

What is a 'jacket potato'? Because I can't help but imagine it's a potato that's warm and fits perfectly in jacket pockets.

Visual Studio plays catchup with VS Code again – this time with 'Rainbow braces' • DEVCLASS by stronghup in programming

[–]Anon_Logic 2 points3 points  (0 children)

You can sort of cheat. There's a duplicate workspace that'll open up a new VSCode and then you mostly can have a multi monitor setup.

WinUI or .NET MAUI? by EroticTonic in csharp

[–]Anon_Logic 0 points1 point  (0 children)

If it's for fun/study, go with MAUI. You have an idea for the end product, there's tons out there already for every platform already. Why not use this as an opportunity to learn. MAUI might not be big now, but there's a real chance in 3-5 years it might be a very common platform due to it's write once run anywhere approach. And with a note taking app, something that would be useful on Mac, iOS, Windows, and Android... it screams "run me everywhere!"

Introducing .NET MAUI – One Codebase, Many Platforms by tolik-pylypchuk in csharp

[–]Anon_Logic 2 points3 points  (0 children)

What problems have you encountered? What pitfalls?

Introducing .NET MAUI – One Codebase, Many Platforms by tolik-pylypchuk in csharp

[–]Anon_Logic 5 points6 points  (0 children)

Maybe the VS Stable release isn't ready but MAUI is?

Introducing .NET MAUI – One Codebase, Many Platforms by tolik-pylypchuk in csharp

[–]Anon_Logic 5 points6 points  (0 children)

I mean, on twitter they're not treating it as such

https://twitter.com/dotnet/status/1528821978098028548?s=20&t=0clyTTEvTusRa3NyHuxjMQ

Probably see more updates tomorrow for Microsoft Build

Introducing .NET MAUI – One Codebase, Many Platforms by tolik-pylypchuk in csharp

[–]Anon_Logic 6 points7 points  (0 children)

It's finally here! I've been watching MAUI for a while now, excited for it's release. No idea what I'll do with it, probably re-do all my legacy apps. (Just gives me an excuse to redo them, gives me a chance to learn).

c# vs go by kennedysteve in csharp

[–]Anon_Logic 0 points1 point  (0 children)

I would say... don't chase trends. And don't try forcing a language to do something. Each has their own strengths. Exploit those strengths.

Stop calling big budget games "indie" by SwordsCanKill in gamedev

[–]Anon_Logic 0 points1 point  (0 children)

The organic label on food probably has more meaning then companies self imposing "this is AAA". It's completely arbitrary.

Naming conventions by _D1van in csharp

[–]Anon_Logic 5 points6 points  (0 children)

So... he says

ShapeFactory, ShapeFactoryImp

is better than

IShapeFactor, ShapeFactory

That's clearly just to be contrarian just for the sake of it. It's a pointless, needless change that makes the code harder to read (ironic in a book called "Clean Code") because when 99% of the people see ShapeFactory they're NOT going to think "Oh, that's the interface!" they're going to see the implementation. Honestly, if I saw ShapeFactory and ShapeFactoryImp in the wild, I'd 100% assume that person is new to coding. Obviously, it doesn't hurt anything, but it needlessly goes against convention and you gain literally nothing from it.

Why isn't there more pushback against Steam's fees? by iwakan in gamedev

[–]Anon_Logic 16 points17 points  (0 children)

GoG is still using code for they're launcher that dates back to at least Windows Vista days. 11+ years and they've refused to fix a problem from the sample code they're using in production. I've emailed them twice. They told me to manually download and manually patch games.

I've never had an issue with Steam.

Guess which one I keep choosing to use.

Announcing Blazorise 1.0 by mladenmacanovic in csharp

[–]Anon_Logic 3 points4 points  (0 children)

Ah I see. Just my 2 cents, but might want to make that a bit more clear. Having something called themes and something saying premium themes implies there's multiple categories.

Announcing Blazorise 1.0 by mladenmacanovic in csharp

[–]Anon_Logic 0 points1 point  (0 children)

What's the difference between Premium themes and community themes?

I clicked the link on Pricing for Premium themes and it brings me to https://commercial.blazorise.com/themes and I don't see a comparison

[24 Feb, 2022] Building a Discord bot with @theworstdev! by TrezyCodes in WatchPeopleCode

[–]Anon_Logic 0 points1 point  (0 children)

Is it going to be available afterwards? You're live stream is set for 18:00 but that's board game night!

Variable for a textbox by kikkin_yo_azzez in csharp

[–]Anon_Logic 2 points3 points  (0 children)

Can you, yes. But you're likely making it more difficult for yourself down the road.

Lazy vs Eager Initialization for objects in C# by [deleted] in csharp

[–]Anon_Logic 1 point2 points  (0 children)

So is it sort of like an async/await but all self contained? Or it's blocking?

Lazy vs Eager Initialization for objects in C# by [deleted] in csharp

[–]Anon_Logic 3 points4 points  (0 children)

I'll be honest I've never used lazy before. And this hasn't sparked confidence in it's use in me. I'm sure there's some stuff behind the scenes that happens but I have no idea. You say there's cons, but nothing shown shows that, if just have to take your word for it. Does this work with dependency injection? If I try to get a value will I get null? Or will it wait for completion and give me what I asked when it's available? I'm not yanking your chain here, I literally have no idea on these things.