• 3 Posts
  • 58 Comments
Joined 1 year ago
cake
Cake day: July 8th, 2023

help-circle






  • "Yeah we could make single defacto config, one that requires no additional dependencies, and one that entirely skips the mess of cli-args-via-env-vars ... OR 😏 We could make users pick one of several competing options, all of which do effectively the same thing but are mostly incompatible with each other and allow for a new tabs-vs-spaces-kind-of debate while also not letting you understand other peoples code bases unless you learn all of them. And, not only does it require everyone to install a separate binary, but also they need to somewhat coordinate on which version--versions that are independent from the gcc version but must be kinda-sorta-coordinated with the gcc version."

    Sorry, I'm not convinced





  • jeffhykin@lemm.eetoProgramming@programming.devDoes this language exist?
    ·
    edit-2
    7 months ago

    does this compiler exist

    TLDR; 65% of what you want exists as the Rust compiler, which is probably as close as you're going to get at the moment (edit: I was wrong see the comment about racket for a less practical but more flexible system). Take a look at macros like view! on this page. Rust doesnt support html-like syntax, but it does within that view! because someone made a macro that supports it. Rustc doesn't directly have a config file AFAIK but it also doesn't need any build tools (no make, cmake, autoconf, etc) because everything can be done with rust itself (because it's macro system is Turing complete with full file access).

    Full Response:

    I agree with the general idea, but I think there are lots of misconceptions. Gcc does allow doing things before the preprocess step, after the preprocess step, before the linking step, etc. It's possible, but not easy, to run your own programs inbetween those kinds of steps. As for why there's no config file, it's probably cause gcc is really old, but I'll have to let someone else comment on that.

    However, syntax support is effectively a completely different feature request. For example the "adding brackets to indentation" couldn't really/correctly come before the preprocessing step. I mean a really hacky solution like my indent experiment from a long time ago can, but it will never be even slightly reliable because of the preprocessor, multi-line strings, comments and other edgecases. Let me explain.

    • The syntax cannot be parsed without running the preprocessor. Things like un-matched brackets are completely allowed before the preprocessing step. It would be literally impossible for the parser to run before preprocessing.
    • So let's talk preprocessing. The preprocessor is so stupid it won't even notice the difference between C, Haskell, or Ada. It's just looking for strings, comments, ints, and preprocessor directives. That's it. It has no idea about scopes or brackets or anything like that.
    • So for the "adding brackets to indentation" to work, it would need to run its own preprocessor step, then do some parsing of its own, and then run the indent-to-bracket conversion.

    But note, preprocessor strings just coincidentally parse the same as C strings. There's already a limitation of the preprocessor failing on, lets say, python where python has triple-quote strings.

    That said, preprocessing is actually highly unusual in the sense that it can be done as a separate step. Usually parsing needs to be done as a unified operation. Not to say it can't be modular, but rather the module must be given to a central controller that knows about everything rather than just having a code-transformaiton step.

    With those misconceptions out of the way, now I want to talk about the parts I agree with.

    IMO the perfect language is the one that has an "engine" that is completely separate from the syntax. And then the language/compiler should allow for different syntax. LLVM IR could be argued as being "an engine", but man is it a messy edgecase-y engine with no unified front-end.

    The closest current thing to what you're talking about is almost certainly Rust macros. Unlike the preprocessor, Rust macros fully understand rust and are a part of the parsing process. They are decently close to what you're saying, instead of compiler flags it's just imports within Rust. You can write HMTL, SQL, and other code just right in the middle of a rust program (and it's not a string either, it's actual syntax support). Not only is it possible, but I have been eagerly awaiting for someone to create a garbage-collected syntax within a Rust macro. People have already created garbage collectors, it's just a matter of making a nice wrapper and inter-op.

    That said, and even though Rust macros are head-and-sholders above basically every other language, I personally still think rust macros don't go far enough. Indent-based code isn't really possible within rust macros, rust macros can't have imbalanced braces, and there can be escaping issues that prevent things like YAML syntax from ever being possible. They also can't allow for extensions like units, e.g. 10gallons without wrapping it with some kind of delimiter (which defeats the point)

    AFAIK currently there is no compiler that supports a composable syntax like that. I've worked on designing such a system, and while I don't think it's impossible, it is extremely hard. There's a lot of complications, like parsing precedence, lookaheads, operator precedence. Two syntax modules that don't know about each other can easily break each other. Like I said, I don't think it's impossible, but it is difficult.




  • jeffhykin@lemm.eetoMemes@lemmy.mlWhy? Are we not doing enough?
    ·
    edit-2
    7 months ago

    Yeah I could've been more clear. I mean the All feed not Local. I went and updated my comment. And to be fully clear, I've got no complaints about lemm.ee. It's exactly what I want, e.g. show me everything and I'll decide what to block. That said, I know I'm not the norm.

    Saying you blocked a fair amount is exactly what I'm talking about, so have I. A little bit of effort can really make the feed more palletable. We need to have a place where that is done by default. Maybe even an open source AI or even just an algorithm that tailors it to the user. I'm already glad Lemmy.world is much more moderate than lemm.ee, and we just need a place that goes all the way; NSFW blocked by default, several communities blocked-by-default (not defederated), and somehow prevents All from being flooded by niche memes. I love Linux and the memes (even if they get a bit repetitive) but we shouldn't have 3 of the top 10 posts be linux memes.

    I tried to get my lab mate, a PhD in computer science and Linux Mint user, to get a Lemmy. He took one look at the all page, laughed, pointed out the circle jerk stuff and asked how some junk posts even made it to the all page and then said "yeah, no thanks" and has never touched Lemmy since. He was already 4 times more likely than the average person, but even he was instantly turned off.


  • jeffhykin@lemm.eetoMemes@lemmy.mlWhy? Are we not doing enough?
    ·
    edit-2
    7 months ago

    Yeah I completely disagree. Imagine if a city/local gov wanted to use Lemmy in order to be self hosted (similar to EU govs switching to Mastodon) but the public just wonders why their local gov put their stuff on a weird circle jerk website that's flooded with niche memes. "Why didn't they use the normal thing (i.e. reddit)?"

    We should be welcoming enough that, when someone wants to make a new subreddit, they make Lemmy community instead. And I don't think thats the case right now.


  • jeffhykin@lemm.eetoMemes@lemmy.mlWhy? Are we not doing enough?
    ·
    edit-2
    7 months ago

    Yeah the "All" in particular is pretty bad for the average person. They're not going to enjoy a Star Trek meme, followed by a Arch meme, a Self-hosted post, a grad-student Science meme, followed by a privacy post.

    I'm also convinced Lemmy's "hot" algorithm is broken; I can easily find posts with ONE UPVOTE on the all feed. Hot is supposed to be a balance between acceleration and total vote count, but it seems like it just only acceleration. Go look at the front page of reddit. The difference is night and day.

    We need a normie.world that has an "all" feed that doesn't contain 70% niche communities. We have c/humor, c/news, etc but they're completely diluted by overpowered niche posts.


  • I think it would be more weird if they didn't. Silbilings, in my experience, usually insult each other and latch on to whatever worst/tasteless thing they can find; "fatty", "crippled", etc. I've seen plenty of silbilings regularly say "I hate you" and "go die".

    Most* of those same silbilings grow up to be good friends later in life because there's a difference between actual hate and just saying it all the time. That said, if the insults are actual spiteful hate, and not purely because of rivalry, then I'd say that's rare and an actual problem. And I don't think there's a way to tell the difference over internet comments.

    You can test it a little bit by saying something like "[Terrible Asian person] isn't black". If your silbiling thinks it'll annoy you they'll say "yeah they're not"; which will at least tell you it's not racism. However, if they think the opposite will annoy you then, yeah, they're going to say "yeah they are" and it'll still be unclear.