Tech Rumors
3 subscribers
235K photos
239K links
Download Telegram
dev.to

1. JS game engine update, Kaboom 3000 beta released
The Kaboom game engine received an update and has reached it's third major version Kaboom 3000.

object scene graph / children objects
rotated / polygon areas
load .ttf, .otf, .woff fonts
up to 50x graphics performance
custom loading screen
post visual effects
tweening!!!!
gamepads
pathfinding

That's a pretty hefty and ambitious feature set for a relatively small project like this. On the one hand, it's not Unity... but on the other hand, good.

The docs are great and the Discord is active. I…
#javascript #kaboom #gameengine #gamedev

2. Typescript para desarrolladores de Angular
Hace ya dos años que empecé a trabajar con Angular y, no voy a mentir, al principio Typescript se me hizo rarísimo. Nunca había tocado ninguna de las dos tecnologías antes, así que los archivos .ts se me hicieron un poco cuesta arriba, con lo diferente que se me hacía este framework desarrollado por Google. Por este motivo, aquí voy a dejar una serie de pinceladas para aquellos que se inician en typescript.

¿Qué es?
Typescript es un superset de Javascript, es decir, puede ejecutar código tanto …

3. Scalable Websocket Server Implemented by ChatGPT
Cover photo by possessedphotography

In the previous post Why Websockets are Hard to Scale we've talked about the problems with scaling websockets and some of the existing solutions as well. The post mentioned using a load balancing technique called consistent hashing, which is a very elegant solution to this problem. I promised you for a post about how to implement scalable websocket server with consistent hashing.

Well, the day has come, take your coffee and follow along. Special thanks to Ch…
#chatgpt #websocket #scalable #node