Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Unity is a strange project (Score 3, Insightful) 26

There's this perception that Unity is great as a "first game engine" but that you want something like Unreal once you're serious. They have enough of the market they should be trying to actively mend that perception to avoid bleeding customers.

I can't help but feel they saw every other company out there enacting the "because fuck you, who else are you going to use?" price increases and other money grabs and decided to do their own, but failed to realize it only works if there isn't a good answer to that question.

Comment Follow the lead of old iD Software (Score 2) 64

Release your dedicated server files. Open Source it too. You've decided to abandon the game, so you shouldn't be worried about it siphoning profits from DLC at this point.

I think it'd need a small bit of work considering the integration things tend to have with online services, but if you organize your code right, just don't release those files and let people code their own matchmaking/achievement/etc. service or whatever.

Comment Only supports AAC and SBC over A2DP (Score 5, Interesting) 75

Sad to see a new bluetooth device coming out that doesn't support LE Audio, the new audio standard introduced in Bluetooth 5.2.

Also no support for the various high-quality proprietary A2DP codecs you tend to see on Android like AptX Adaptive, AptX Voice, LDAC, etc.

Only supports AAC and SBC.

If you're on iPhone you probably have Apple's buds. If you're on Android you have high-quality, feature-rich options from actual audio companies for about the same price.

It's cool to have replaceable batteries but the device is already outdated technology-wise. You're going to really have to want to vote with your wallet for this to make sense.

Comment Re:New code vs old code (Score 1) 121

That's exactly the behavior of enum classes in C++ (since C++11).

It is absolutely not the behavior of enum classes, switch, or the combination of the two in C++, though compilers may generate warnings. See example for the problem pattern matching solves.

I agree that in general the Rust community has a tendency to argue from a place of tribalism rather than experience. I don't view this as a problem specific to Rust, but moreso newbies succumbing to confirmation bias or choice-supportive bias and parroting opinions they heard from experts without understanding any of the nuance.

Comment Re:New code vs old code (Score 1) 121

It's probably less specifically about enums and more about pattern matching.

In C++ your enum has 5 possible values. Somewhere in your code you have a "switch" and need to check all possible values. Add a new enum value and you won't get a compile error.

In Rust you use "match", which will cause a compile error if there are any possible values that you aren't handling. Add a new enum value, and on next compile you'll get a nice list of places that need to be updated.

Comment Re:Cope (Score 1) 255

She's not wrong about propaganda being more technically advanced and dangerous than ever. I wasn't commenting on that.

I do think she should just stay away from politics near election times. There is always going to be someone more appropriate to say this, who won't add an agenda trying to blame her embarrasing loss on it.

Comment Cope (Score 5, Insightful) 255

Look, I voted for her.

Her campaign was full of meaningless "it's her time" messaging. The DNC literally conspired to help her win the primary, with Debbie Wasserman Schultz resigning after evidence was leaked and then immediately joining Hillary's campaign. As a progressive, I really disliked Hillary.

When she finally faced off against Trump, half the time she just didn't seem to know how to react, and the rest of the time she'd just smile and act "above it all" rather than tackle him head-on. What have we learned since that election about how conservatives react to being looked down on?

Yes, there's been a ridiculous amount of shit flung at her. Biden's been getting the same treatment. But it's not why she lost. That she still comes up for air every now and then just to repeat this dilusion is insane. She was a bad candidate.

Comment Re:Drive up the cost (Score 1) 19

In a single player game, I think it's fine. Kids (and adults) will always try to break the rules, and this is probably the safest form to allow them some rule breaking to learn from. Multiplayer is where you need to watch out. I can imagine an MMO being hot garbage with people screwing with bots.

Slashdot Top Deals

Were there fewer fools, knaves would starve. - Anonymous

Working...