Sheldan@programming.dev to Programming@programming.dev · 9 months agoAutogenerated descriptions gone wronggithub.comexternal-linkmessage-square21fedilinkarrow-up1102arrow-down10file-text
arrow-up1102arrow-down1external-linkAutogenerated descriptions gone wronggithub.comSheldan@programming.dev to Programming@programming.dev · 9 months agomessage-square21fedilinkfile-text
minus-squareChubakPDP11+TakeWithGrainOfSalt@programming.devlinkfedilinkarrow-up2·9 months agoI give it half-baked code and ask it to complete it. Like say a few days ago, I wanted to implement NFA and Thompson Consturction. So I wrote this: struct Transition { // implement this Transition *next; }; struct NFA { // implement this }; // and so on and so forth This is how you get good results from it. Do half the work.
I give it half-baked code and ask it to complete it. Like say a few days ago, I wanted to implement NFA and Thompson Consturction. So I wrote this:
struct Transition { // implement this Transition *next; }; struct NFA { // implement this }; // and so on and so forth
This is how you get good results from it. Do half the work.