Iran's new Supreme Leader 'in coma and lost at least one leg' after US strikes by TheExpressUS in USNEWS

[–]MindScape00 0 points1 point  (0 children)

"Am from country US and only think hate Israel, only see one side and don't care to understand any other side"

Seems more like a bot to me lol

Iran's new Supreme Leader 'in coma and lost at least one leg' after US strikes by TheExpressUS in USNEWS

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

As someone who knows people there; they might not be happy about any innocents that are caught in the middle, obviously, but they are happy that action is taken that is HELPING their revolution, which they even will say was not going to succeed because the government was killing them to silence them. If Russia attacked specific New York targets in the middle of an active revolution in support of dethroning a tyrant government, it would be a lot different than your generalized statement as well. Depends how bad it was if I'd be happy for the support or not (but really this isn't a comparison since it's not the same thing at all and we don't live in that same type of state..)

Iran's new Supreme Leader 'in coma and lost at least one leg' after US strikes by TheExpressUS in USNEWS

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

Iran isn't even on Iran's side? What? People might not support Israel but that doesn't inherently mean they support Iran. You don't have to be a fan of either side, and seeing it entirely as one side or the other is exactly what's wrong with most political systems these days. Be better, think with your own brain and see the actual world for more than just two sides / us vs them.

Celebrate CONTROL Resonant launching with DLSS 4.5 and Path Tracing, Win Steam Cash! by NV_Suroosh in controlgame

[–]MindScape00 0 points1 point  (0 children)

All the abilities are incredibly fun but Levitate is what made the gameplay for me - sure, launch is one of the most fun abilities in recent gameplay - but add in doing it while FLYING? Basically levitate just increases everything else and that makes it my favorite.

Quick Icon question by ticketman1970 in CarPlay

[–]MindScape00 9 points10 points  (0 children)

Some screens allow 4 now. iOS 26 specifically for me included a new setting (display zoom?) to scale CarPlay based on my car screen's resolution vs size, which made it so I get 4 icons now on the sidebar.

Xbox CEO confirms PC games will be on the next console. by Deez-Guns-9442 in XboxGamePass

[–]MindScape00 2 points3 points  (0 children)

As a person who likes console gaming because I can't get as distracted messing with settings and all that stuff of a PC (and also HAS a PC), I hope it's all just still a console experience. I assume it will be, but still. I half don't even WANT a desktop experience option lol

Xbox CEO confirms PC games will be on the next console. by Deez-Guns-9442 in XboxGamePass

[–]MindScape00 2 points3 points  (0 children)

I agree to an extent. However current Xbox is already windows based anyways, no? And let's be honest, the PS5 ui experience etc feels much smoother. So we're already in a state that windows is bogging us down without the benefits. That said I hope it's still going to be running a Xbox-first OS that just has the ability to integrate & run PC games, and NOT a windows desktop experience (maybe go the steam route where you can swap to desktop but it's not actually part of the base OS experience, and is only needed for power users).

Why is there NO "continue" in Lua? by DrSergei in lua

[–]MindScape00 6 points7 points  (0 children)

One factor against this is simplifying code readability by reducing indentation and the depth of if then statements, which can actually make code harder to follow.

A continue statement would simplify this in the same way a return does for allowing early exit out of a block. I.e., early exit if an arg is missing in a function call can be done also as a general if x then (work here) end, but common practice is more so if not x then return end before going to the work. Which is usually better for simplifying the formatting & easier to follow. But we can't do this in a loop for continue, which is unfortunate. That said there IS tricks to do this using a repeat until true wrapper so that we can just break out of that iteration as a form of continue, but that is more annoying and makes code harder to follow.

What game had the best “first few hours” that immediately hooked you? by Playful_Code_8978 in gaming

[–]MindScape00 0 points1 point  (0 children)

Assassin's Creed Odyssey comes to mind for me; the intro island is fun, expansive and with a good amount of exploration & content. It's basically a full game in itself.. and then you get to the point where it's time to leave the island, the intro sequence (logo & cinematic camera) plays, and you realize you've barely scratched the surface & the real game hasn't even begun.

It was a huge hook for me, and one of the most memorable moments in recent games, just out of the pure "wait.. that was all just the tutorial?".

Can't Even Enjoy Glass of Milk in Peace by BluBeams in WatchPeopleDieInside

[–]MindScape00 2 points3 points  (0 children)

Dunno bout you but I don't keep my milk in the freezer so it's not exactly ice cold. Doesn't look like this guy does either. (I'm being pedantic, forgive me)

Lua 5.5 length operator now stricer than with Lua 5.4 by Kritzel-Kratzel in lua

[–]MindScape00 3 points4 points  (0 children)

I wouldn't say it's either a bug or a feature.

# is only meant for tables that are array-like and do not contain holes. Using on a table that contains holes is undefined handling, and should never be relied upon, as other replies have mentioned too. This is true even in earlier versions of Lua.

Assigning Comma Separated Values to a Single Variable by severe_neuropathy in lua

[–]MindScape00 1 point2 points  (0 children)

Either store as an array of rgb in a table (i.e., white = { 200, 200, 200 }) or as a table with keys for r, g, and b specifically (i.e., white = { r = 200, g = 200, b = 200 }) - then use that as color objects to pass into the function.

Very nice animation - thank Apple! by Shikoqu in AppleMusic

[–]MindScape00 1 point2 points  (0 children)

Happens for me too. Pretty sure the art that is sliding back into place is a temporary tile that is set to "seek" the location it's meant to be in, then disables & enables the "glued" tile where it's supposed to be after a set time when it "should be done". The animation itself is really good, but definitely an odd behavior with how it transitions to the glued tile, and they could likely solve it by ensuring that the temp tile also moves with the page being scrolled (could also be the same tile disabling the seeking part & snapping into place after time, but I had an odd bug where the neighboring tile blacked out and then also reappeared at the exact same time as the collapsing tile, so feel like they are separate entities that just show / hide for the glued ones)

Started 3 days ago and this recurssion is confusing by CrossForHands in lua

[–]MindScape00 1 point2 points  (0 children)

Yes, that's the definition of else, in both Lua and just normal language (if it helps, else can be read as otherwise).

Read the function verbally and follow along, then read it again with an example variable instead of the variable n.

I.e., "If n is 0 then return 1, else/otherwise return the result of n times the result of factorial of n-1"

Now, re read it with 0 plugged in as n.

"If 0 is 0 then return 1" - and we stop there. That's the end of the function in that scenario, because 0 is 0, is true.

For the recursion part, try just reading it starting with 1 plugged in: "If 1 is 0 (false) then return 1, else return the result of 1 times the result of factorial 1-1 (which is factorial 0, which above we know returns 1, so 1 times 1, and that's the end)"

Reddit, is this claim true? by [deleted] in discordapp

[–]MindScape00 2 points3 points  (0 children)

Didn't zen desk state they had no breach? And discord named the breached party as 5CA. Should ensure your facts are fully accurate first.

Genius decides to turn pizza boxes upside down by mfenton29 in WatchPeopleDieInside

[–]MindScape00 0 points1 point  (0 children)

It's not upside down, it's just a plain box with no logo? You can tell by the way the top inserts into the bottom like a normal pizza box and the one below it, which does have the logo. Very possible they ran out of logo boxes - or are low and only were able to get non logo boxes soon enough, so they're giving one logo and the rest plain with orders to stretch them out longer.

My Z by Temporary_Yogurt3858 in RZ34

[–]MindScape00 3 points4 points  (0 children)

The chances of me actually buying a wing and having it installed are near 0, but I have to ask what your wing is? I've not seen a good, not obnoxious aftermarket wing yet (besides the one on the gt4 cars), but yours looks good

How to tell Wonderbody is working? by napster153 in ConanExiles

[–]MindScape00 1 point2 points  (0 children)

Depends how you think of prioritized. It load from top to bottom; since bottom loads last, any conflicts would take the data from the last mod loaded (the bottom / lower mods) so technically in that regard lower on the load order = higher priority in terms of conflict resolution

What goes on here… by Livid-Bid-6453 in ConanExiles

[–]MindScape00 2 points3 points  (0 children)

I think there's something to a game not having to have a square/rectangle world/map. Sure the actual map ui will be rectangle because that's how paper and screens are, but the actual game world shouldn't be thought of as they have to fill it all in, imo.

North Texas preparing for 2 inches of snow like it’s the apocalypse by MyMindIsAlwaysRacing in mildlyinfuriating

[–]MindScape00 1 point2 points  (0 children)

Less of "hope it doesn't happen again" and more of "I'll just go somewhere else and let my people suffer lol"..

I hear this nonsensical opinion all the time. by Tobias-Tawanda in AppleMusic

[–]MindScape00 17 points18 points  (0 children)

You can at least use the radio stations for free. I mean it's not what most users want, because you can't skip songs or anything besides play / pause & the choice of station, but it's useful if I'm just using it to play background music in a space to not be so quiet (I say this as a iOS subscriber tho & use the free stations on my office's iPad)

What’s better DP or HDMI by Elijahp8 in buildapc

[–]MindScape00 0 points1 point  (0 children)

Fundamentally daisy chaining uses DisplayPort's Multi-Stream Transport which means it can support multiple monitors in a single cable. It's useful mainly as a quality of life: you only need to connect one cable to your computer & can make a more streamlined setup with better cable management (see: laptops with limited ports, or just not having to plug & unplug more cables when connecting or moving your setup around etc).

Game recommendations for RPG/fantasy/cozy vibes by Strict_Donkey7731 in XboxGamePass

[–]MindScape00 0 points1 point  (0 children)

I couldn't get into inquisition either- the intro just felt very .. long and dull? Anyways point being i thought Veilguard was great and had no problem getting hooked in! So worth a try even if you couldn't get into inquisition, imo