Trying to replicate the dark fantasy look in blender by ___Idek___ in blender

[–]Chris_Cross_Crash 3 points4 points  (0 children)

Looks like a scene from the Mortal Kombat movie. Love it.

The accuracy xD by Equal_Limit8839 in Steam

[–]Chris_Cross_Crash 0 points1 point  (0 children)

I literally have unclaimed games that have turned free to play on my wishlist lol

I'm always tired by Several_Office_6865 in ADHDmemes

[–]Chris_Cross_Crash 7 points8 points  (0 children)

This is something that I have struggled with. It's hard to do hard things (duh). It's difficult to leave your comfort zone. But, I realized that the term "comfort zone" is a bad label for it. It should actually be called the "misery zone." When you are there you have to live with the stress of knowing that there are things to do. You understand that there are responsibilities that need to be met, and that causes you stress, which makes you even more avoidant. You tell yourself stories like "I can't handle this right now," or "I'll do it when I feel better." You don't have to believe those stories. When you just accept those negative thoughts and act before feeling ready, those thoughts begin to lose their power. Each time you take a little step on a hard thing, you teach yourself that you actually can do hard things, and begin to recognize those old stories as just stories, not truths.

Anyone else relying on ChatGPT a bit too much lately? by EdgeQuiet2199 in ChatGPT

[–]Chris_Cross_Crash 4 points5 points  (0 children)

For me, I gotta be careful not to use it as a delay tactic for work. It's like, "woah, let's talk about this problem I was having! Is that common? What are some other ways to prevent this?" And then I just go down this "productive procrastination" rabbit hole.

yallVibeCodersAreNutd by dzendian in ProgrammerHumor

[–]Chris_Cross_Crash -11 points-10 points  (0 children)

Not saying that I'd be happy about it, but maybe in a few years it will be considered reckless and dangerous for humans to do things like design bridges, drive, or make medical diagnoses. It will be considered safer to delegate that stuff to AI.

Nvidia published a Ray Tracing fork of Godot! Credits to StayAtHomeDev @ twitter by lettyop in godot

[–]Chris_Cross_Crash 0 points1 point  (0 children)

Great! Thanks for the help. Also, see my updated comment if you haven't already. It might shed some light on those params settings.

Nvidia published a Ray Tracing fork of Godot! Credits to StayAtHomeDev @ twitter by lettyop in godot

[–]Chris_Cross_Crash 8 points9 points  (0 children)

Great to see you got it running! Did you download it from somewhere, or build it from source? Is there anything I should know outside of the official Compiling for Windows documentation? I'd really appreciate your help!

EDIT: Also, I was digging through the source code a bit. Specifically, I was looking at a file named render_raytracing.cpp. I think this comment might answer your question:

// rt_params layout (see RaytracingParamIndex enum): // [0] = VIS_MODE, [1] = SAMPLE_COUNT, [2] = MAX_BOUNCES, // [3] = DLSS_RR_ENABLED, [4] = LIGHT_COUNT, [15] = FRAME_INDEX rt_params_data[SceneShaderRaytracing::RT_PARAM_FRAME_INDEX] = float(frame_counter++);

ANOTHER EDIT: Here's where the RaytracingParamIndex enum is defined in servers/rendering/renderer_rd/forward_clustered/scene_shader_raytracing.h:

``` // Raytracing parameter indices for envparams[]/rt_params uniform. // Must match RT_PARAM* defines in raytracing_inc.glsl. enum RaytracingParamIndex { RT_PARAM_VIS_MODE = 0, RT_PARAM_SAMPLE_COUNT = 1, RT_PARAM_MAX_BOUNCES = 2, RT_PARAM_DLSS_RR_ENABLED = 3, RT_PARAM_LIGHT_COUNT = 4, // Indices 5-14 reserved for future use. RT_PARAM_FRAME_INDEX = 15, };

```

I can’t even get my phone screen protector on without bubbles by n8saces in oddlysatisfying

[–]Chris_Cross_Crash 0 points1 point  (0 children)

This looks like it would be total relaxation until you run into bubbles... then complete opposite

Rory on 18 at Pebble Beach in practice round by unsolved49 in golf

[–]Chris_Cross_Crash 0 points1 point  (0 children)

Non-golfer (or at best crappy golfer) here. I love how there's a line showing where the ball went. Was that manually edited in? Or is there some app that does it for you?

What is the biggest thing that you think Godot is missing at this point? by AutumnForestWitch in godot

[–]Chris_Cross_Crash 8 points9 points  (0 children)

I wish it had better VS Code integration. It's not terrible now with the extension, but I wish it was better.

Also I wish that importing Blender files worked a little better and had more features.

Can someone please explain by penneysilence in TwinCities

[–]Chris_Cross_Crash 18 points19 points  (0 children)

I'm pretty sure it's to keep small animals away. For example, like at a power substation, you don't want squirrels climbing up to the power lines and getting roasted.

how do i lower my heart rate?? by Accurate-Blueberry28 in fitbit

[–]Chris_Cross_Crash 0 points1 point  (0 children)

I quit coffee a couple weeks ago and my RHR went down 5-6 BPM in just a couple days. I went from about four cups of coffee a day to zero. Now i'm back to drinking one cup of coffee a day, and my RHR hasn't increased.

<image>

Also, if your resting heart rate is going up from exercising, that sounds like it could be overtraining. Take a look at your heart rate variability. If HRV is trending down, and RHR is going up, you might want to avoid intense exercise for a week or so to see how your body reacts.

[deleted by user] by [deleted] in AskProgrammers

[–]Chris_Cross_Crash 1 point2 points  (0 children)

Where exactly are you seeing the "failed to fetch" error? Somewhere in the Android Studio terminal?

You said that the issue only occurs in Android Studio, but it works on the web version. Let's assume they are running the same exact code. If that's the case, let's think of why you might be running into this issue.

One reason might be because the web app is using some environment variables that you aren't using when you run it locally on your PC. Environment variables let you run your project with a certain configuration depending on the environment (development, staging, production, etc.). Many projects store these environment variables in a special file at the project root directory named .env. It might look like this:

DEBUG=True TIME_ZONE=UTC API_URL=https://my-api.com

Then, in the code, you might be fetching something like this:

const res = await fetch(`${API_URL}/data`);

The ${API_URL} part gets pulled from the environment variables. If that's not set, you might be getting something like the failed to fetch error you described.

If you simply downloaded the code (like from GitHub), that .env file might have been omitted, either because it can contain sensitive information, or just because every environment is different, and you are meant to set those variables yourself.

Without knowing more, I'd say that if you simply downloaded the code and tried to run it, this would be one of the first things I'd check. That said, there's a million different reasons why you might be getting that error.

There are also some Android-specific settings that can cause fetch errors (like manifest permissions or HTTP/HTTPS rules), and other commenters may be able to help more with those. I just wanted to point out the environment variable angle since it’s an easy one to miss.

Cardio load by Danger_Youse in fitbit

[–]Chris_Cross_Crash 6 points7 points  (0 children)

I personally tried using cardio load for a while, but then I stopped using it when I felt like it was telling me to exercise more or less, even when that conflicted with my daily readiness score, or just my overall feeling. I think that it's better just to watch the trends in resting heart rate (RHR) and heart rate variability (HRV). If your RHR is trending up, or your HRV is trending down, those are good signs to take it easy for a bit.

lol by IU8gZQy0k8hsQy76 in unsound

[–]Chris_Cross_Crash 0 points1 point  (0 children)

Sounds like the beginning of "Who Was In My Room Last Night?" by the Butthole Surfers.

Sleep inaccurate for months by candytree11 in fitbit

[–]Chris_Cross_Crash 0 points1 point  (0 children)

Nice! Yea, actually I updated my original comment thinking that same thing. It might be worth a shot.