al4s

joined 2 years ago
[–] [email protected] 1 points 10 months ago

Real men use non-lethal glide bombs.

[–] [email protected] 2 points 10 months ago (1 children)

Mind you, I'm not saying vision pro is not promising or useful. I'm saying, that in a corporate environment, it's very hard to find a business case where you'll be able to justify the >3500€ price tag to your manager.

The best business case I can think of right now, would be for development teams that want to get started developing VR apps. Likely that's also what all of these companies bought one for.

But you state a lot of things as fact, so I should ask, have you used one at all?

Unfortunately I have not. It hasn't been released where I live yet. The closest I have gotten is my Quest 3.

You dismiss "editing videos" as if that's not an incredibly useful to be able to do that.

It is really useful. But if you're already editing videos professionally, it needs to be an upgrade over what you're using right now. An upgrade big enough that it makes back the cost of adjusting your workflow and the 4000€ investment.

[–] [email protected] 2 points 10 months ago (3 children)

Classical VR use cases like simulators and 3D design are better served by competitors. Most of the software runs on Windows or Linux, and you'll likely want the most ludicrously powerful graphics card(s) you can fit into a computer, which an M3(?) chip is notably not. Also proper controllers are generally useful for professional VR applications.

But at least it's good for productivity, right? Wrong. For productivity purposes, it's effectively an iPad Pro with an infinitely large screen, awful battery life, that is somewhat bulky to transport and costs at least 4000$ by the time you have a keyboard and a reasonable amount of storage. And all of that for a device on which you, as of now, can effectively only write emails and edit videos on.

[–] [email protected] 4 points 10 months ago (2 children)

Supposedly Nvidia has become a lot better on Linux lately. They finally dropped their weird framebuffer API or whatever (the one that was the reason for horrible Wayland compatibility and also caused a heated Linus Torvalds moment), and I think they even made their linux drivers open source.

[–] [email protected] 11 points 11 months ago

It better be Greenland or I'll be disappointed

[–] [email protected] 6 points 11 months ago

For most of the code, I don't think anything special is used.

Compiling the code already obfuscates it enough. Most function, type and variable names are removed, the compiler does some optimizations and what you end up with is already pretty indecipherable code soup.

There are obfuscators that make the resulting binaries even harder to read/decompile, but further obfuscation also makes your code run slower.

[–] [email protected] 6 points 1 year ago

Wanting to own the place you live in is just not realistic. You might think it's unreasonable that a single room costs half a million, but actually you have just money dysmorphia. Now go pay your rent.

[–] [email protected] 29 points 1 year ago

Yes they are.

Here's a TED talk on YouTube from "Hide the pain Herold" a guy who was in a stock photo that became a meme: https://youtu.be/FScfGU7rQaM?si=MFVrgwlJQ8DSOfVB

[–] [email protected] 5 points 1 year ago (1 children)

Make the second letter an 'a'

[–] [email protected] 8 points 1 year ago

Rookie numbers, it takes me a solid 30mins

[–] [email protected] 8 points 1 year ago (18 children)

I don't think money is the real issue here. It's already budgeted for the military anyways - if it's used to help other countries that's a good thing in my book. Well unless it's "helping" by funding the bombing of civilians, but what do I know.

[–] [email protected] 7 points 1 year ago (2 children)

I think it makes more sense if you think about backend applications: If you write a Webserver with ExpressJS in typescript, you need typescript only to compile it (dev dependency) but once compiled, you only need ExpressJS in your node_modules for the app to be able to run ("regular" dependency).

Frontend development is a bit strange in that respect, because often everything gets bundled into your dist/ directory, so technically there are no runtime dependencies? In that case it's more of a hint to let you know "this goes into the bundle" vs. "this is part of the compiler toolchain"

view more: ‹ prev next ›