• 1 Post
  • 14 Comments
Joined 11 months ago
cake
Cake day: November 1st, 2023

help-circle

  • That its producer has gone bancrupt they have absolutely lived the enshittyfication while doing the settings in their custom Android and I am currently on the last supported android version (12) which will probably go unsupported soon-ish and the company I got the phone from has sold so few that the definitely better alternatives (Lineage, etc) don’t have any reports of people who have done it with my device or even a tutorial. And reading into flashing it on an unsupported device is a rabbithole I currently don’t want to spend time with. And if I fuck up I can’t even write the company to fix it for me or smth like that…


  • 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😊