dwitter.net

+ New dweet
function u(t) {
} //
122/140


Please log in (or register) to post a dweet (copy-paste the code somewhere safe to save it meanwhile)


u(t) is called 60 times per second. t: Elapsed time in seconds. S: Shorthand for Math.sin. C: Shorthand for Math.cos. T: Shorthand for Math.tan. R: Function that generates rgba-strings, usage ex.: R(255, 255, 255, 0.5) c: A 1920x1080 canvas. x: A 2D context for that canvas.
show FPS hide FPS share fullscreen

function u(t) {

}//
139/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

  • This code was 100% created by OpenAi's GPT-3. My input prompt was the #default (New dweet) code followed by a comment line: "// Improve the code above". I only removed the comments generated by the AI and the resulting code fits in 139 chars. The generated comment was "// Draw a circle that moves around the screen" and "// clear the canvas" in the first line.
  • u/rodrigo.siqueira
    You can test the AI code generation for free (for now):"The Codex models are currently in limited beta. Usage is free during this period."
  • u/rodrigo.siqueira
    This is the link where I could generate code using AI: https://beta.openai.com/playground?lang=node…
  • u/rodrigo.siqueira
    It's interesting that the original code has "S(t)" and the AI generated code has both S(t) and C(t). The AI guessed correctly that C was cosine.
  • u/Xen
    i did have the idea of feeding GPT-3 every single dweet to see what it came up with, but i never got round to it.

Please log in (or register) to comment.

u(t) is called 60 times per second. t: elapsed time in seconds. c: A 1920x1080 canvas. x: A 2D context for that canvas. S: Math.sin C: Math.cos T: Math.tan R: Generates rgba-strings, ex.: R(255, 255, 255, 0.5)