A little bit of neuroscience and a little bit of computing

  • 65 Posts
  • 1.45K Comments
Joined 1 年前
cake
Cake day: 2023年1月19日

help-circle
  • Quoting from Sotomayer’s dissent (pp 29-30, paragraphing my own):

    This new official-acts immunity now “lies about like a loaded weapon” for any President that wishes to place his own interests, his own political survival, or his own financial gain, above the interests of the Nation. Kore- matsu v. United States, 323 U. S. 214, 246 (1944) (Jackson, J., dissenting).

    The President of the United States is the most powerful person in the country, and possibly the world.

    When he uses his official powers in any way, under the majority’s reasoning, he now will be insulated from criminal prosecution.

    Orders the Navy’s Seal Team 6 to as- sassinate a political rival? Immune.

    Organizes a military coup to hold onto power? Immune.

    Takes a bribe in ex- change for a pardon?

    Immune. Immune, immune, immune.


    They go on with an incisive critique of the majority’s reasoning:

    Let the President violate the law, let him exploit the trap- pings of his office for personal gain, let him use his official power for evil ends. Because if he knew that he may one day face liability for breaking the law, he might not be as bold and fearless as we would like him to be. That is the majority’s message today.





  • Yea anything big and mainstream just seems super shallow.

    I’m not on top of things to compare accurately, but it was always kinda like that (and is like that here sometimes too). But whenever I’ve gone back, I’ve definitely felt like it has gotten somewhat worse. Some of that could easily be a shifting standard from spending more time on other less “mainstream” platforms though.





  • they drive away potential allies because the concept of harm reduction is anathema to their binary thinking. If you’re not ALL in, you’re the enemy.

    I can resonate with that. But I come back to … “it’s totally ok for people to create their own spaces, especially on federated social media and especially for minority groups/ideas”.

    There are likely plenty of other spaces for “potential allies” to engage and talk about veganism if they want to, or plenty they, or you, could make on their own.

    Tacitly admitting that vegans are usually antisocial zealots. “It’s right in the name!”

    Well, they’re running their own social media platform, so I’m not sure how anti-social they are.





  • I suspect the basilisk reveals more about how the human mind is inclined to think up of heaven and hell scenarios.

    Some combination of consciousness leading to more imagination than we know what to do with and more awareness than we’re ready to grapple with. And so there are these meme “attractors” where imagination, idealism, dread and motivation all converge to make some basic vibe of a thought irresistible.

    Otherwise, just because I’m not on top of this … the whole thing is premised on the idea that we’re likely to be consciousnesses in a simulation? And then there’s the fear that our consciousnesses, now, will be extracted in the future somehow?

    1. That’s a massive stretch on the point about our consciousness being extracted into the future somehow. Sounds like pure metaphysical fantasy wrapped in singularity tech-bro.
    2. If there are simulated consciousnesses, it is all fair game TBH. There’d be plenty of awful stuff happening. The basilisk seems like just a way to encapsulate the fact in something catchy.

    At this point, doesn’t the whole collapse completely into a scary fairy tale you’d tell tech-bro children? Seriously, I don’t get it?



  • Every browser released since 2020 supports this

    It’s a little paranoid of me, but I like the idea that a basic web app I make can be thrown onto any old out of date machine, where ~2015 or younger seems about right for me ATM.

    You mean the Html template Element? I’ve never really got that to work, but I also never seriously tried.

    Yea. From memory, it’s just an unrendered chunk of HTML that you can select and clone with a bit of JS. I always figured there’d be a pattern that isn’t too much of a cludge and gets you some useful amount of the way to components for basic “vanilla-js” pages, just never gave it a shot either.


  • Yea, I’m unclear on how you can take web components and still have widespread browser support (not knowing enough about their ins and outs).

    Plain template elements are widely supported and have been for ~10 years (which ideologically matters to me along the same lines as the top post’s article) … perhaps a little bit of hacking together can get you close with just that?



  • Youre right about lemmy-ui, unfortunately it doesnt have enough contributors. I dont know why that is, you’d think a project written in a popular language like Typescript would easily find contributors.

    Random thoughts:

    • Is it obvious enough that one can contribute to the UI separately from the backend and that it’s a Typescript SPA style UI?
      • If not, maybe a bit of a “dev recruitment campaign” could help … let people people know and what sorts of issues could really do with new contributors lending a hand? Maybe even a bit of a “Inferno isn’t that different from all of the other SPA frameworks/libraries spiel?”
    • Is the use of Inferno as oppose to one of the big 3 React/Vue/Svelte a repellent? (perhaps a downside to the “diversity” of frontend frameworks?)
    • Are would-be UI contributors more inclined to make their own front-end or app than contribute to the default webUI?

    More generally:

    • Would a server side rendered webUI be welcome?
      • Then the contributions would mainly be on templates and their “simpler” logic, which might be more attractive or easier to get started on?
      • Plus, it might be more efficient? The current UI feels to me like it would suit server side rendering well.
      • Is this where the new leptos UI is heading … more server side rendering (I don’t know much about leptos)
    • Do you have a sense of usage numbers for the different apps and frontends? Obviously you only run lemmy.ml, but do you have a sense of how much the front-end gets hit versus the API directly?
      • I ask, because If the default WebUI is really the main interface, then it makes sense to try to organise some more contributors (It’s certainly my main, nearly exclusive interface, as much as I’ve like some of the alt front ends or apps)

  • Absolutely!

    The bit I’m conceptually stuck on (not know much at all about how a good plugin architecture would work) is how a plugin can surface or affect the UI, especially in an ecosystem with multiple UIs/Apps/Frontends, and, a federated ecosystem at that.

    Given the apps, I figure it’s not possible without a convention of plugins providing APIs which apps can then implement against when available, which adds a good amount of complexity but should be viable for popular/useful plugins. Though, tangentially, this does affirm for me that the whole native mobile app expectation is a bit of a trap for a social system like the fedi (as webUIs are naturally more universal and maleable).

    So, for immediate results, I can see only two options:

    1. a plugin operates on the backend directly manipulating or creating content not unlike a bot
    2. a plugin provides its own webUI which is made available through a simple and dedicated location in the UI

    Is there something I’m missing about how a plugin system could work?