Sheldan@programming.dev to Programming@programming.dev · 2 years agoAutogenerated descriptions gone wronggithub.comexternal-linkmessage-square21linkfedilinkarrow-up1102arrow-down10file-textcross-posted to: techtakes@awful.systems
arrow-up1102arrow-down1external-linkAutogenerated descriptions gone wronggithub.comSheldan@programming.dev to Programming@programming.dev · 2 years agomessage-square21linkfedilinkfile-textcross-posted to: techtakes@awful.systems
minus-squareChubakPDP11+TakeWithGrainOfSalt@programming.devlinkfedilinkarrow-up2·2 years 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 forthThis is how you get good results from it. Do half the work.