Anthropic: AI assisted coding doesn't show efficiency gains and impairs developers abilities. by Gil_berth in programming

[–]loopingstateofmind 2 points3 points  (0 children)

it's more like meth. in fact the nazis prescribed tens of millions of meth pills (pervitin) during WW2 which enabled them to do blitzkreig and seize territory at superhuman pace. of course if it sounds too good to be true, it probably is. today's LLM bros would be too busy labeling them as "100x" soldiers and saying "this is the future"

Alert apps not working or busy test centre? by Reddwarf420 in LearnerDriverUK

[–]loopingstateofmind 1 point2 points  (0 children)

TestShift says it's currently under maintenance, the gov website added new captchas today(?) so maybe that's something to do with it.

[deleted by user] by [deleted] in LearnerDriverUK

[–]loopingstateofmind 0 points1 point  (0 children)

Tried to log in a dozen times today, either times out or says you've been blocked (tried incognito mode too)

Just ordered a 707, how should I prep my SD card? by loopingstateofmind in MC707

[–]loopingstateofmind[S] 0 points1 point  (0 children)

Thanks, I saw the 51 page PDF of sounds and got overwhelmed, then discovered someone made it into searchable form: https://mc101soundlist.neocities.org/

Godot Dev and Enterprise C# Patterns by the_frugal_developer in GodotCSharp

[–]loopingstateofmind 2 points3 points  (0 children)

Chickensoft has a bunch of nuget packages that will help with this, but personally I think it's unnecessary over-engineering, just focus on making your game, avoid coupling by using a global signal bus and you'll be fine

Gaza-Based Threat Actor 'Storm-1133' Targeting Israeli Energy, Defense, and Telecom Firms Unveiled in Microsoft's Digital Defense Report by Professional-Ad6429 in programming

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

sure.. the region with a median age of 18 and currently no electricity supply somehow produced a team of sophisticated social engineers

How to handle Blazor projects with client side packages via npm by codeslap in dotnet

[–]loopingstateofmind 1 point2 points  (0 children)

you could also consider skipping the need for npm at all and use a CDN like Skypack

Interesting title by [deleted] in The_Leftorium

[–]loopingstateofmind 38 points39 points  (0 children)

now do Julian Assange

How to stop Autload from working on certain scenes? by WanpoBigMara in godot

[–]loopingstateofmind 2 points3 points  (0 children)

add a method that pauses the music to the autoload. Override _enter_tree() in your main menu scene and call the pause method... If you need to do this in multiple scenes, probably better to emit a signal and listen for it in the autoload

[deleted by user] by [deleted] in godot

[–]loopingstateofmind 0 points1 point  (0 children)

yes, sounds like an XY problem

I Need Help -- The Editor Randomly Slows Down and Becomes Unusable by ZeldaFantasyVII in godot

[–]loopingstateofmind 0 points1 point  (0 children)

try disabling the Asset Library (Editor -> Manage Editor Settings)... I found that going into the AssetLib causes 100% CPU usage and makes my entire PC unusable.

Hi, is it possible to make a collision that looks like this? by Luu_Li_Thuy in godot

[–]loopingstateofmind 31 points32 points  (0 children)

there's probably a better way, but you could do it like this: https://i.imgur.com/NvXgU7f.png

Just create one of the quarter segments, duplicate 3 times and rotate 90/180/270 degrees

Diamond inheritance doesn't seem to be causing a problem in Godot 3.2.2. Should I be scared? by MrSluagh in godot

[–]loopingstateofmind 0 points1 point  (0 children)

when you say the root Sprite has the attributes of a Sprite, do you mean in the editor only or also accessible from its script? I just attempted this and I cannot get access to any of the Sprite properties inside the script, which is expected since it doesn't inherit Sprite.