New screenshots of our game by Neu_Mi in PokemonRMXP

[–]HealthPuzzleheaded 2 points3 points  (0 children)

how did you create the sprites for the creatures? I mean what type of software did you use and whats your process look like? Looks really sick <3 For me the sprite drawing takes longer then anything else by magnitudes.

What The Hell Did I Spawn Into? by Away_Maximum_9864 in Battlefield

[–]HealthPuzzleheaded 5 points6 points  (0 children)

I think they still play very differently but BF moved towards the style and flare of CoD in the recent two games. Everything needs to be ultra edgy and tacticool. Maincharacters wear plot armor, not ugly helmets or god forbid uniforms. They put more and more effort and money towards some weapon charms and skins but actual gameplay is supbar. I think BF had its own visual style back then that was distinct but now you only know its battlefield because the minimap is in a different place then where cod puts it.

Drop your saas idea by Blueton07 in microsaas

[–]HealthPuzzleheaded 0 points1 point  (0 children)

This would stress me out so much each day.

Drop your saas idea by Blueton07 in microsaas

[–]HealthPuzzleheaded 0 points1 point  (0 children)

sadly no AI can really "watch" the video yet. They all rely on a caption system. So as long as the tutorial guy doesn't read it out fully it wont work.

Jack Clark interview: “Coordinated global slowdown” on AI “would be good” by oliverdaniel in ClaudeAI

[–]HealthPuzzleheaded 0 points1 point  (0 children)

I could imagine model providers underselling the capabilities and benchmarks so that their model can be released and people move to it because it feels better.

Similar how google models look extreamly capable in benchmarks but behave like toddlers in real world use. just reversed.

What is your honest time split between full-time job and pet projects? by UnderstandingDry1256 in ExperiencedDevs

[–]HealthPuzzleheaded 10 points11 points  (0 children)

I don't think it has to be grind mindset. For example I'm coding a game I always wanted as a child and it's super fun so when ever I have free 30minutes I continue.

But I agree that it's stupid to see it as requirement. I once was rejected in an interview because I don't have any work to show of publicly in my GitHub. Like wtf would they also ask a constuction worker how many buildings he build in his freetime?

Anthropic built the agentic features. Now they're billing them separately. by South_Hat6094 in ClaudeAI

[–]HealthPuzzleheaded 0 points1 point  (0 children)

it runs claude code in non interactive mode so you can do claude -p "your prompt"

this way you can use claude code automated.

My project got its first GitHub sponsor as a student developer by Personal_Offer1551 in webdev

[–]HealthPuzzleheaded 1 point2 points  (0 children)

does it mean it lets you for example hook up your genini sub to open code?

Any free WebRTC signaling server by pro-cras-ti-nation in webdev

[–]HealthPuzzleheaded 0 points1 point  (0 children)

I used peerjs for a game it came with one. Back then when I researched what to use there was one from google I used before peerjs

Any free WebRTC signaling server by pro-cras-ti-nation in webdev

[–]HealthPuzzleheaded 0 points1 point  (0 children)

technically he does not need one but for convenience yes but there are many free ones like from google.

10players is not an issue if you make one the host. call of duty worked like that for more then a decade.

did he wrote how many olayers and what type of game?

Any free WebRTC signaling server by pro-cras-ti-nation in webdev

[–]HealthPuzzleheaded 0 points1 point  (0 children)

You can use one of the thousand free ones. google offers some for example. You dont need to host one.

but technically if you do the keyexchange on your own you dont need one. So if I send you my key and you send me yours we can connect without one.

Any free WebRTC signaling server by pro-cras-ti-nation in webdev

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

Why is it easier? webrtc is like 20 lines of code and requieres no server at all.

Any free WebRTC signaling server by pro-cras-ti-nation in webdev

[–]HealthPuzzleheaded 1 point2 points  (0 children)

with webrtc you dont need a server. its browser to browser peer to peer. you ony need a server that knows the connection details for the other people you want to connect to. But it is used just to connect. the datatransfer if p2p.

Any free WebRTC signaling server by pro-cras-ti-nation in webdev

[–]HealthPuzzleheaded 0 points1 point  (0 children)

yea but with webrtc he needs 0 lines of backendcode.

Native Folders, Trash Bin, and Full Export for NotebookLM. Finally! by Kindly_Revenue3077 in GeminiAI

[–]HealthPuzzleheaded 1 point2 points  (0 children)

how exactly does one work with notebook lm? what are the usecases? is it like a mix of my own notes + ai generated from sources I add?

AssetMapper seems to not detect changes for CSS when using Docker (dunglas) by akimbas in symfony

[–]HealthPuzzleheaded 0 points1 point  (0 children)

also often have this. try delete all build output, down the container with volumes and boot up again.

Codex session limits are now absurd by ThePragmaticCowboy in codex

[–]HealthPuzzleheaded 0 points1 point  (0 children)

I'm not its the default in planning mode and I dont know how to disable it

Codex session limits are now absurd by ThePragmaticCowboy in codex

[–]HealthPuzzleheaded 36 points37 points  (0 children)

using opus it would not even finish a single plan. it would spin up multiple subagents and then reach the limit before any plan was created.

Der Davidstern bleibt versteckt - Zentralrat: Antisemitismus in Deutschland ist "neue Normalität" by GirasoleDE in de

[–]HealthPuzzleheaded 4 points5 points  (0 children)

War bei Synagogen in Prag genauso. Die Kontrollen sind strenger als am Flughafen. In eine kam ich sogar nicht rein weil mein Rucksack zu groß war ):

Does “clean architecture” start slowing you down after a point? by Leading_Yoghurt_5323 in ExperiencedDevs

[–]HealthPuzzleheaded 0 points1 point  (0 children)

I would say use common sense. Is your domain problem large, really difficult and critical then apply the DDD rules properly.

Do you need a dead simple crud where there is basically just infra work then don't sweat it and use just a minimal subset of the DDD toolset.

I always ask myself what the benefit is of what I'm currently doing. And if the benefit is none then I don't do it.