Shaw pfp
Shaw
@shawmakesmagic
Some days I regret not building in Python All the RL stuff is there But I've found it's pretty easy to vibe code an adapter between the two with IPC, UDP or TCP so it's fine Anyways, the robot can see and talk, it just can't walk yet. Butter passing soon.
4 replies
0 recast
16 reactions

Daniel - Bountycaster pfp
Daniel - Bountycaster
@pirosb3
I miss writing Python so much 😂 JS/TS is such a pain and such an inferior language
1 reply
0 recast
0 reaction

Shaw pfp
Shaw
@shawmakesmagic
Let us agree to disagree I wrote my original agent project in Python and it was pretty good for agents except async and global lock were so bad but 3.13 has greatly improved matters
1 reply
0 recast
1 reaction

Daniel - Bountycaster pfp
Daniel - Bountycaster
@pirosb3
Yeah, the GIL is still around 😂 I thought there were plans to remove it. Just curious, what kind of operations made you feel the impact of the GIL? Aren’t you mostly doing API calls or Tensor operations, which shouldn’t really be affected since they’re usually handled in C and don’t hit GIL?
1 reply
0 recast
0 reaction

Shaw pfp
Shaw
@shawmakesmagic
GIL is optional as of 3.13 I don't remember what I was specifically working on, but I was doing async data streams and lots of parallel processing and and found the lack of proper threads and having to very carefully manage async context pretty counterintuitive coming from like a decade of JS and C#
0 reply
0 recast
1 reaction