Game developer and artist.

Spoken languages: Hu, En, some Jp

Programming languages: C, C++, D, C#, Java

Mastodon: @ZILtoid1991

Github: https://github.com/ZILtoid1991

  • 2 Posts
  • 15 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle


  • Since I’m using D for most of my coding projects, Copilot is mostly useless. I can do boilerplate stuff with metaprograming way easier and at a way more consistent pace, not to mention it’s easier to modify. And at least ChatGPT, does not know what to do with D attributes, and just randomly puts them everywhere for functions, since it’s way less of an AI than how tech people try to sell it (statistical probability based on Markov chains and some small context windows rather than actually understanding what it does).











  • I’m a D developer, and D is so far the best language I’ve tried. It has very powerful meta programming capabilities, looks much nicer than Rust, and supports multiple paradigms. My main gripe is the lack of libraries, but it’s pretty easy to either write your own, or a binding to a C or C++ one. I wrote a couple of my own libraries, and I’m currently writing my own replacement for SDL, called iota, and I aim it to be a smaller version of it (e.g. not including things into it that already exist in the Runtime and Phobos).

    I really like multi paradigm programming, as most programming paradigms are good at a select few things, while over-complicate others.