Made my day. :grimacing:
# random
s
Made my day. 😬
😂 6
😬 1
f
To be honest; Github Co-pilot writes a lot of my code; But that’s because a lot of times it’s suggesting exactly what I was planning on writing anyway. Soo… It’s a glorified code-completion. haha
p
May be AI are the first letters of name and family name of some person...
😂 2
😄 3
h
I guess "AI" here stands for "abused interns" 😄
☝️ 2
s
Same code quality.
p
Sharing my "AI" code generator for someone interested (Apache licensed):
Copy code
fun generateCode(amountOfCodeToGenerate: Int) : String = buildString {
  append("fun main() {\n")
  repeat(amountOfCodeToGenerate) {
    append("  println(\"generated\")\n"
  }
  append("}")
}
Increasing value of 'amountOfCode' argument it is possible to achive even better percetage of AI generated code then Microsoft does and write about it in some blog.
😬 1