Advertisement · 728 × 90

Posts by Dan Miller

Black ink abstract drawing with rectangles and lines

Black ink abstract drawing with rectangles and lines

Black ink abstract drawing with rectangles and lines

Black ink abstract drawing with rectangles and lines

Black ink abstract drawing with rectangles and lines

Black ink abstract drawing with rectangles and lines

Black ink abstract drawing with rectangles and lines

Black ink abstract drawing with rectangles and lines

Abstracts 6 & 7 8 9

1 month ago 44 8 1 0
Thomas Lam's Website

I may as well share with you the big boy version of this that all the math Ph.D students spread around a couple years ago
cims.nyu.edu/~tjl8195/sur...

1 month ago 8 2 5 0
2 months ago 20787 5583 145 61

No Kings includes Draft Kings

2 months ago 26046 6085 183 109
Log in or sign up to view See posts, photos and more on Facebook.

Found it here on "alderman alex brower" FB Page m.facebook.com/profile.php?...

2 months ago 1 0 1 0

Were excited for the stream to start!

2 months ago 0 0 1 0
Video

You'll be able to customize your squad between missions by swapping out active soldiers.

It's not easy to show, but this is also now preserved across play sessions in saved data.

#godot #indiedev #gamedev

2 months ago 10 3 0 0

bacpac

3 months ago 0 0 0 0

some good climate/energy news:

* 96% of new US power capacity was carbon-free in 2024 (56 gigawatts!)

* 2025 included the first month ever when 51% of power on the U.S. grid was carbon-free

* The golbal trend is overwhelming: The world is now investing more $ in clean energy than fossil fuels

3 months ago 1151 424 13 14

the loop between "holy shit, AI can do <X> now, that's amazing, how did it even do that" and "I never want to see another <X> as long as I live" is just very tight

4 months ago 236 27 2 1
Advertisement
Video

Writing code on a bumpy train and tried stabilizing the display image to my head -- it does (surprisingly) make things a bit easier to read but overall feels too weird to actually use.

4 months ago 24 5 1 0

There's a project hail Mary movie happening!?!? Extremely Excite

5 months ago 4 0 1 0

I bet it reflects a reality of the hardware! A lot of optimization nowadays is around memory access patterns. Random memory access is more expensive than compute in a lot of cases. See things like ECS

5 months ago 6 0 0 0
Video

I made a joke in my main Discord server about DOOM E1M1 being in a major key and @abigbagofkeys.sickonedude.com actually made it. Jesus fucking Christ listen to this hahahaha

5 months ago 5583 2221 279 364

Oh!

5 months ago 255 32 1 0

What was the benefit of using 3 different types of VS Code, over opening three instances of the same editor?

5 months ago 2 0 1 0

I feel this hard. I'm finding that most companies I've interacted with show diminishing returns on technical skills, instead incentivising people problem solving. Like it's actually hard to find a problem where deep technical skill is truly necessary and aligns with $$$

5 months ago 2 0 0 0
Advertisement
A Snickers bar broken in half with sprites for Dwarf Fortress of catapults and a ballista.

A Snickers bar broken in half with sprites for Dwarf Fortress of catapults and a ballista.

PARENTS, please check your kids Halloween candy. I just found dwarven siege weaponry, some STILL under construction. No words.

5 months ago 129 27 1 0

I've seen that typically up to 90-99% of states are soft lock states

5 months ago 1 0 1 0

I mean exploring every -winnable- state! Right now I do that by exploring every state and then trimming out the soft locked ones at the end. Next optimization step would be to use some sort of A* to find the win state and work backwards, I think. When/if solving becomes the bottleneck

5 months ago 1 0 1 0

🤩 Does this mean I can achieve my dream of validating my build and deployment pipeline locally? No more branches full of 100 tweak commits?!

5 months ago 0 0 1 0

Hey look that's me! (If you look closely)

5 months ago 2 1 0 0

Dang, so close to getting into that contributer list!

5 months ago 1 0 0 0
Post image

I found an issue and would contribute a fix, is the website open source?

5 months ago 1 0 1 0
Video

📢Introducing ArkRegex📢

a drop in replacement for new RegExp() with types ⬇️

5 months ago 178 28 3 14

I may be wrong but I hope that in the general case (for other types of games) solving the graph is O(n) where n is the number of possible game states. At its core it is graph traversal, and both depth-first-search and breadth-first-search are linear time IIRC

5 months ago 1 0 1 0

Every node repels every other node, that's the hard part :'). I could walk all the neighbors to apply spring forces in O(e), but for the repellent force it's O(n^2) to brute force. The Octree brings it down to O(n log(n)) in theory

5 months ago 1 0 1 0
Advertisement
Video

Was doing a test of the penguin stepping code by applying a moving circular bias, and accidentally made tapdancing lololol look at 'em go!
#GodotEngine #gamedev #indiedev

5 months ago 220 29 9 0

And it turns out that visualization is the most compute intensive part! There are many games I can solve in a couple seconds that take minutes to render out

5 months ago 1 0 1 0

Thanks! The secret is that this is just a visualization, meaning the graph is fully solved already. So I can adjust the speed of reveal very easily without worrying about process time.

5 months ago 1 0 1 0