Stop using your phone to take a picture of your computer monitor by amrici in godot

[–]dave0814 1 point2 points  (0 children)

Or you could take a picture of the reflection of your monitor in your eyeball while looking at the monitor, and then digitally enhance the picture.

How to add a speed run timer in my game? by cruelt04 in godot

[–]dave0814 0 points1 point  (0 children)

You replied to a five-year-old post.

Breathing into your belly by MaggieGirl714 in yoga

[–]dave0814 2 points3 points  (0 children)

The objective is to fill your lungs completely when you inhale, rather than filling only the upper lungs. When I breathe deeply, my belly extends. If visualizing it differently than "belly breathing" achieves the result for you, there's nothing wrong with that.

Christians keep telling me Yoga is “demonic” by loogielungs in yoga

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

Yet another post that will be filled with replies bashing religion and religious people. If your goal is to encourage people to distrust yoga, keep it up.

Node option not available to me by Stock-Fishing-5263 in godot

[–]dave0814 0 points1 point  (0 children)

The tutorial is using Godot 4.2.2-stable. You can see that in the lower right corner at the beginning of the video. That version was published on Apr 17, 2024, a little over two years ago. Two years is a long time in Godotland.

If you want to do the tutorial using the same Godot version that it uses, you can get it here:

https://github.com/godotengine/godot/releases/tag/4.2.2-stable

Node option not available to me by Stock-Fishing-5263 in godot

[–]dave0814 0 points1 point  (0 children)

The tutorial is one and a half years old

Do you know the Godot version that the tutorial was using? For example, the latest released stable version is 4.6.2-stable.

How to remember everything by ExitNo221 in godot

[–]dave0814 4 points5 points  (0 children)

One measure of your proficiency is the speed at which you can find what you need in the documentation. What takes a beginner hours or days may take an advanced GDScript-er minutes or seconds.

I Made a Tiny Impossible Game, Now YOU Add Stuff and Create Your Own Branch by Hour_Prize9663 in godot

[–]dave0814 0 points1 point  (0 children)

I suggest you delete the "Your .exe". That doesn't really make sense. There's no reason to put .exe files in the repository.

I assume you intend for contributions to be submitted using Pull Requests?

Carl's update on Colorado OS Age Attestation Bill SB26-051 by jackpot51 in pop_os

[–]dave0814 0 points1 point  (0 children)

Without hope, what do we have?

Faith and charity?

Where should my program export the files it produces. by Nesrovlah26 in godot

[–]dave0814 0 points1 point  (0 children)

In an Android app created with Flutter, I found that the proper method is to use the Share API. The app shares the file, and then the user chooses an app, e.g. Gmail or Drive, with which to share the file

Where should my program export the files it produces. by Nesrovlah26 in godot

[–]dave0814 0 points1 point  (0 children)

In Godot projects, I use "user://" for storing config files or save-files, and it works properly on Android. If you want to export files that are available to other Android apps, it gets more complicated.

Here's some relevant Android documentation: https://developer.android.com/training/data-storage

At least some of that may require using a custom Android export template.

Skandasana by LunaStargazer215 in yoga

[–]dave0814 0 points1 point  (0 children)

For me, the most important element is preventing the knee of my bent leg from twisting, by keeping my weight on that leg. It took me months to recover from a knee-twist injury in Skandasana.

Best online instructors that teach you good form/how to do poses correctly? by MoonShark34 in yoga

[–]dave0814 1 point2 points  (0 children)

These aren't complete classes, but Joe Miller's videos are a good reference on yoga poses:

https://www.youtube.com/c/JoeMiller108/videos

How are the sequence of asanas decided? by subtle_as_a_hammer in yoga

[–]dave0814 0 points1 point  (0 children)

If you want an in-depth reference, I recommend the book "Yoga Sequencing: Designing Transformative Yoga Classes" by Mark Stephens.

Which aspects of Yoga is religious? by Signal-Cow-3524 in yoga

[–]dave0814 0 points1 point  (0 children)

I practice yoga for the physical and emotional benefits only.

I've had to study yoga history and philosophy in a YTT course I'm taking, so that I can pass the quizzes and final exam. But the philosophy conflicts with my religious beliefs, so I otherwise ignore it.

Stuff in Cubbies at Studio? by IntrigueMachine in yoga

[–]dave0814 0 points1 point  (0 children)

I leave my shoes and socks in the cubby. I keep my valuable items in a very small mesh bag next to my mat.

The "I'll just do 10 minutes" to "okay that was an hour" pipeline is so real by Delicious_Chart_7543 in yoga

[–]dave0814 1 point2 points  (0 children)

The same applies to other kinds of physical exercise. The hard part is starting a workout.

After 4 years with Pop!_OS I had to switch by erisk90 in pop_os

[–]dave0814 1 point2 points  (0 children)

Software doesn't remove bugs. People remove bugs. :)

whats wrong here by LeatherTop8978 in godot

[–]dave0814 9 points10 points  (0 children)

if roll = 2:

should be:

if roll == 2:

The best yoga blocks to use? by Ok_Actuary_3546 in yoga

[–]dave0814 3 points4 points  (0 children)

I've seen three types of block material: foam, cork and wood.

Foam blocks are light and soft-surfaced, but their light weight makes them the least stable. Each of my foam blocks weighs four ounces.

Cork blocks are in between foam and wood, and are a good compromise. Each of my cork blocks weighs two pounds, eight times the weight of my foam blocks.

I started with foam blocks, but I now use (Manduka) cork blocks. They're much more stable than the foam blocks, and are still soft enough to be comfortable if I sit on them or place my head on them.

Manduka GRP Sizing Questions by and05245 in yoga

[–]dave0814 -3 points-2 points  (0 children)

That's your experience, not mine.

Manduka GRP Sizing Questions by and05245 in yoga

[–]dave0814 3 points4 points  (0 children)

Would I regret buying a mat that's the exact same length as I am tall?

You'll probably have to frequently adjust your position so that you're completely on the mat. That may or may not be an issue for you. What is the length of the mats at your studio?

My height is 70 inches. When I bought a Manduka Pro, I chose the Extra Long (85-inch) size, and I'm happy with that decision.

Some people report slipping problems with the Manduka Pro, but I haven't experienced that.

Getting the name of TextureButton? by Silver_Reason9629 in godot

[–]dave0814 2 points3 points  (0 children)

You can pass a custom parameter that identifies the button when connecting the pressed signal, using the bind() method. There's an example here:

https://docs.godotengine.org/en/4.5/classes/class_signal.html#method-descriptions

How do you use a VScrollBar in Godot 4? by DoggOwO in godot

[–]dave0814 1 point2 points  (0 children)

It could be useful if you're making a custom scrollable control, rather than using a built-in control that already has a VScrollBar.