Gpt and AI Discussions
Moderator: ScreamingEagle
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
PitViper Wrote:
One thing on codex I've noticed.. and I could be wrong.. but sometimes it just seems to use a lower model without telling you. Its very obvious when it happens because the replies it gives and the code it creates are pure garbage.
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
Mysticdrew Wrote:
I've been using codex high. It does great for small stuff, but kinda goes really crazy with large tasks. I wanted to add some new api hooks for other devs and it created like 20 classes lol. Claude did it in 3
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
PitViper Wrote:
They ALL suffer from code bloat. If I ask it to update a single function it wants to create 2 helper functions to do it.
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
Mysticdrew Wrote:
Yea, it's really annoying
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
PitViper Wrote:
Lol its like they get paid by the function.. it wants to spam them like crazy.
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
Mysticdrew Wrote:
Days when devs were judged on how much work the got done by the lines of code they added
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
PitViper Wrote:
I've started to tell it give a minimal diff to do xyz. Then it starts to limit extra function creation.
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
Mysticdrew Wrote:
I always have it do a cleanup pass to reduce code and that usually helps.
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
PitViper Wrote:
For me its speed. I'm a big speed optimization guy. I cant stand code that is not tuned to be highly optimized. And it gets very frustrating having to go and clean up various things. Its crazy but its one of my OCD things I just cannot help. Started in colledge with a parallel processing class, you got extra points for who's ever code ran the fastest.
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
PitViper Wrote:
I've probably said this before but I will spend hours tuning a single function to get just a few ms shaved off of it.
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
PitViper Wrote:
When you are dealing with a GOM that has 50k objects in it and you are are operating OOP, you cant just say hey lets loop through the entire GOM to grab this item, or whatever.
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
Mysticdrew Wrote:
Oh that's, neat.
The stuff I'm working on is rendering so it has to be fast.
The stuff I'm working on is rendering so it has to be fast.
-
ViperDiscord
- Posts: 0
- Joined: Sun Mar 15, 2026 4:03 am
PitViper Wrote:
So you understand dealing with rendering. Every ms you can shave off is that much more fps.