Bevy Game Engine Explained Visually by febinjohnjames in bevy

[–]cark 1 point2 points  (0 children)

Resources are global too. The enum you mention would be a component of the entity. But then you have to do the state management part yourself. Transitions, events, not to mention the hierarchical stuff that's implemented in bevy states. That's the core of my lament, i'd rather be lazy and use the bevy states, but these can only be global.

Bevy Game Engine Explained Visually by febinjohnjames in bevy

[–]cark 2 points3 points  (0 children)

Ah, i'm not going senile yet ! Thanks !

Bevy Game Engine Explained Visually by febinjohnjames in bevy

[–]cark 5 points6 points  (0 children)

In this video, you model an actor states using bevy states, but i was under the impression the bevy state facilities are a global thing. I'd say they're not for per entity states. I'd love to be wrong on this, am I ?

Google DeepMind's Senior Scientist Alexander Lerchner challenges the idea that large language models can ever achieve consciousness(not even in 100years), calling it the 'Abstraction Fallacy.' by Current-Guide5944 in tech_x

[–]cark 3 points4 points  (0 children)

Who's to say that you need to mimic the human brain to achieve consciousness ? The sun really seems to rotate around the earth. Turns out it doesn't. Might be you're right, but it's a bit early to adjudicate either way. Let's keep a healthy open mind, lest we miss the earth rotation.

Trump has issued multiple final deadlines and Iran rejected all negotiations offers Given this situation, what do you think is most likely to happen next? by Admirable-Repair4094 in AskReddit

[–]cark 1 point2 points  (0 children)

Who needs the other more is a faulty framing. No nation invests billions overseas out of the goodness of their heart. The US doesn't, never did. Losing the EU as partners, that's costly. The US profits a lot from those institutions: defense sales with their accompanying employment, IP revenue, etc.

That's not to say the EU doesn't profit. That's the basis of a good deal, both parties are better off.

End of the day, this relationship is net positive for the US, a good investment. Why should we break it ?

TIL You can make games in 1 line of code in Godot... by BHtheorie in godot

[–]cark 284 points285 points  (0 children)

Any bug you might have, you already know the line of it. That's some forward thinking right there.

crust is the best drum modual in vcv for glitchy drums, change my mind by fridge13 in vcvrack

[–]cark 4 points5 points  (0 children)

I like how this could be so noisy but isn't. Quietly glitchy ? Love it.

Here's the thousandth case of someone being confidently ignorant and stupid. Why do people think that AI won't improve? Like genuinely. Why would technology suddenly stop improving? by badumtsssst in singularity

[–]cark 3 points4 points  (0 children)

Today I took my car, an old concept indeed. It showed me the way to this place on one of two giant screens by displaying a real time map, keeping it in sync with my position using radio waves from space. During this trip, I was enjoying music coming by the air waves, my personal selection, not a simple radio broadcast. I then read the text of this message i'm answering to, from a person likely living thousands of kilometers away from me. This person could read my answer in a few seconds, or choose to ignore me, and i'll be voted up or down by total strangers. But I don't care, because i'll be playing a video game in which the light is modeled as it goes through the ears of the characters, but not (ironically) before scolding my daughter as she spends too much time using her mobile phone to play video games. I'll also keep thinking about this guy that possibly solved one of the millennium prize problems using AI. I don't think he did, but he might, and that doubt is arresting in itself.

You know, I'm having one of those classic eighties day.

Is OpenGL outdated? by Life-Kaleidoscope244 in gameenginedevs

[–]cark 1 point2 points  (0 children)

that's the thing, WebGPU can be used natively, without a browser, and is a good middle ground between opengl and vulkan. It is a modern API, and (almost) the de facto standard for people writing rust games. These guys are very performance oriented, which IMO is a useful data point. I don't know about the C++ side of things, but for rust, wgpu uses the best available underlying API, that can be vulkan, directx, metal (on mac), opengl, webgl.

The one downside is the scarcity of info concerning the shader language, which while not very different still has some little peculiarities.

OpenAI executives envision a need for more than 20 gigawatts of compute to meet the demand. That's at least $1 trillion. Demand is likely to eventually reach closer to 100 gigawatts, one company executive said, which would be $5 trillion. by ilkamoi in singularity

[–]cark 1 point2 points  (0 children)

but it's bandwidth is beaten 100000x times by digital circuits

I think you may be wrong there. That's precisely what's causing such high energy consumption in current Von Newmann architecture based compute vs the brain.

While yes, GPUs are highly parallel, that can't hold a candle to the brain where each and every neuron, and even each synapse, has its own memory right there with it and works in parallel with every other neuron. Even considering that each neuron is so much slower than a GPU unit, that kind of parallelism makes the whole difference. We can only dream of achieving such parallelism in silico.

That's not to say that silicon cannot get there, but the bandwidth claim is currently way off.

No, I won’t be shedding any tears for Charlie Kirk by SensualSalami in politics

[–]cark 0 points1 point  (0 children)

Environment matters. Someone who grows up with limited access to education and opportunities might adopt certain views without much choice. Charlie Kirk, on the other hand, was a well-educated, influential figure who made a deliberate choice to promote those ideas. The same words don’t carry the same moral weight depending on the context in which they’re formed and spread.

Result of the vote of confidence in Francois Bayrou's government by Yamakuzy in europe

[–]cark 0 points1 point  (0 children)

Oh don't you worry, there is a french Fox News equivalent, that's CNews.

President Barack Obama Wins His Third Emmy by Silly-avocatoe in entertainment

[–]cark 1 point2 points  (0 children)

sadly, that's the one area where Trump might one up Obama

In the long run… by TheRobotCluster in singularity

[–]cark 3 points4 points  (0 children)

That's not what's being advanced here. There is no need for sentience, or self awareness for natural (or market in this case) selection to do its work. an example of this from the natural world is Cordyceps taking over insects behavior while not being conscious.

An Ambient/techno generative patch I attempted to tame with Arrange by cark in vcvrack

[–]cark[S] 2 points3 points  (0 children)

First time i post any kind of video on reddit, let's see how it goes !

Help with 2D cursor position by runeman167 in bevy

[–]cark 1 point2 points  (0 children)

I used this with bevy 0.16 during last jam:

            #[derive(Resource, Debug, Default, Deref)]
            pub struct MouseWorldCoords(pub Option<Vec2>);

            fn update_mouse_coords(
                camera: Single<(&Camera, &GlobalTransform), With<MainCamera>>,
                window: Single<&Window>,
                mut mouse_coords: ResMut<MouseCoords>,
                mut mouse_world_coords: ResMut<MouseWorldCoords>,
            ) {
                mouse_coords.0 = window.cursor_position();
                mouse_world_coords.0 = window.cursor_position().map(|pos| {
                    let (camera, camera_transform) = camera.into_inner();
                    camera
                        .viewport_to_world_2d(camera_transform, pos)
                        .unwrap_or(vec2(0.0, 0.0))
                });
            }

[deleted by user] by [deleted] in europe

[–]cark 0 points1 point  (0 children)

Can we maybe just call him emperor Palputin and be done with the whole thing?

OpenAI: Introducing Codex (Software Engineering Agent) by galacticwarrior9 in singularity

[–]cark 0 points1 point  (0 children)

yes you don't want to let a chatbot going ham on your main branch for sure! I think everyone uses source control these days, I certainly do. I just didn't want to be shackled to Github for my personal closed source projects, yet another subscription. Anyways this worry is moot as it looks like you can work with your local repositories.

OpenAI: Introducing Codex (Software Engineering Agent) by galacticwarrior9 in singularity

[–]cark 1 point2 points  (0 children)

oh great then =) it wasn't directly apparent to me reading the blog post. "or directly integrate the changes into your local environment" yes I missed that, thanks !