this post was submitted on 12 Mar 2025
3 points (80.0% liked)

AI powered programming

38 readers
1 users here now

founded 1 month ago
MODERATORS
 

I created this space to discuss coding and esp AI in coding

top 4 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 1 month ago

Nice! I thought it has already existed, but I only found [email protected] that has 7 subscribers, so cool that it exists now

[–] [email protected] 2 points 1 month ago

You can also post it on [email protected] - might gain some traction quicker

[–] [email protected] 2 points 1 month ago

New communities take time to propagate. Give it a day or so

[–] [email protected] 1 points 2 weeks ago

I prefer a niche* language and a while ago I tried AI (that could run on my weak hardware) and it could only hallucinate basic-search-result Python/JS snippets.

If that weren't an issue, it might be nice to answer questions. For instance, I'm trying to make a minesweeper thing and am not sure the best way to handle arrays** as a defined type (to allow creating multiple) in a way that could allow different map sizes.

Then again, even if there is a potentially OK model I could run I'd be skeptical of the effectiveness particularly for the download size and compute needed. Especially now that it's getting warmer.

*Nim-lang

** perhaps I am overthinking it. I have thought I could do a larger-than-needed array and just cut it down to what's selected (or just not use the space) or perhaps use something else instead like sequences (which don't have a fixed length).