• 0 Posts
  • 12 Comments
Joined 2 years ago
cake
Cake day: November 1st, 2023

help-circle

  • Tibi@discuss.tchncs.detoScience Memes@mander.xyzDunning-Kruger
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    3 months ago

    I think it’s sus that a Math Lecturer decides to post an article about philosophy and then doesn’t describe any of the steps he took. The article basically just says i did a thing, but doesnt explain what he did/how to reproduce the result… On the other hand, philosophy is a field with many wrong conclusions and the like, so it is believable. But again in my eyes it’s not proven, since it’s just ‘one guy’ saying something and not replicated nor reproduced.

    Edit after replied comment edit: The second article you linked (actually the first in the post) changes my believe about the dunning-kruger effect. Thank you for sharing!





  • Well you’re writing a Compiler with extra features to tell you where compilation failed but without actually executing the code. If the language you are trying to implement has defined a BNF for its language its quite doable and depending on the features you want to implement almost easy. There are BNF interpreters and chumsky e.g. is close to reading like a BNF. But if you’re building a language where you gotta find out the rules yourself it can take a while and finding all the edgecases can be a problem… But the project is big enough that most probably don’t finish theirs


  • I am currently writing an LSP for the shaderscript used in Godot. Its close to glsl but some differences make me not wanting to just copy paste a glsl one. I am currently trying to wrap my head around chumsky. I am coming from a lot of c code and my head doesnt work like chumsky does, so it has its ups and downs, but lexer for glsl and lexer, parser and like half oft the evaluator for the preprocessor are done and working😊