The Daiquiris are on me!
www.numbeo.com/cost-of-livi...
The Daiquiris are on me!
www.numbeo.com/cost-of-livi...
Ah - good spot - thanks for clarifying :-)
Starter Kit: Racing for @godotengine.org is now available! π Easy to understand code, fully open-source & 3D models included! It's a little rough around the edges, but feel free to do pull requests if you can improve on it!
github.com/KenneyNL/Sta...
#gamedev #gameassets
30+ years as a senior dev tells me otherwise.
The author of the Quicksort algorythm (amongst many other CS fundamentals) has passed away :-(
RIP Tony Hoare.
blog.computationalcomplexity.org/2026/03/tony...
WTF! When did *this* start happening!?
Wikipedia is supposed to be a factual, reference resource!
We are poisoning the water supply! This will get scraped by other LLMs, and the enshitification will spiral.
Can we stop calling it "Vibe Coding" and call it what it really is?
"Technical Debt Development"
Using a non-deterministic guessing engine for critical infrastructure process?
What could go wrong?!
If you want solar panels to be widely adopted in the UK and stop the NIMBY's from complaining - make them look like Union Jacks instead of black.
They are less efficient, but it would top 80%* of complaints immediately.
* Stat made up on the spot because this is the internet
Being offended by the Bafter 'N' word outburst is like being offended because you dropped a bunch of scrabble tiles and it spelled out a naughty word.
Private Eye is a National Treasure - possibly the last truly independent investigative journalism in the UK.
Highly recommended if you want to know what's *really* going on in UK politics.
Going over some hikes I've done in the past as I plan hikes for this year. Here's the view from Haystacks in the Lake District:
maps.app.goo.gl/rC5GPBHnz5hj...
It was right here I found out I had developed Acrophobia after an ear infection and was the last high trail I did.
"I'm not racist but...." vibes :-/
Dammit! - I have the Bagpuss tune earworm now!
"We will find it, we will bind it,
We will stick it with glue, glue, glue
We will stickle it
Every little bit of it
We will fix it like new, new, new."
"Heave! Heave!"
www.reddit.com/r/ClaudeAI/c...
Can't they just type "Claud, fix this please" ?
I mean that's how it's supposed to work right?
Because we don't need coders anymore.
Thanks for replying. I love seeing these 'simple' systems giving way to complex behaviours :-)
This brings me joy :-)
Can I suggest making the red circles that do damage look spikey - I assumed they were pickups :-(
^ love this
That's too dark and twisted for me!
I'm going to re-read In The Mountains Of Madness and calm down.
I've had two coding discussions this morning with people who turned out to be vibe coders.
One didn't know the crucial difference between repeat-until and a while loop.
The other wanted me to phrase his prompt for him because he lacked the technical skill.
I am getting SO tired of this
I'm just hearing that Rob Grant has passed away.
This is heartbreaking. He and Doug Naylor's work was absolutely formative for me.
Not felt like this since Terry Pratchett passed away.
GNU Rob Grant <3
So - wanna add mirrors to your Godot 3D game? Check out this tutorial! π₯
π youtu.be/psq76bEEr84
#gamedev #game #godot #GodotEngine #godot4 #madewithgodot #csharp #gdscript #programming #tutorial #mirror
Thanks for the info. :-)
I don't know why - but whenever I try to follow links from your website, I end up in a perpetual loop of this:
Pressing proceed to ignore it takes you right back this page.
It's to make you search the rest of the store to make sure they get more adverts / products in front of your eyes.
The whole supermarket shopping experience is designed by psychopaths. From carpets to slow you down, to expensive products at eye level, to baking smells wafting out the door.
Valheim is the only "recent" game that has given me that feeling.
The other drawback is you have to parse the whole line instead of:
if condition:
# the code I'm interested in
else:
# the code I'm not interested in and can be ignored.
I dislike ternaries in general other than for trivial applications (one line if-then-else).
That's a particularly egregious example you posted - it violates the established left to right parsing.
I much prefer PHP's format:
$result = $condition ? 'foo' : 'bar';