• 0 Posts
  • 27 Comments
Joined 2 years ago
cake
Cake day: June 20th, 2023

help-circle







  • JS has little to do with accessibility. Most web accessibility comes from the Dom and aria attributes as well as semantic tags. You can do all of that with wasm too.

    Are you asking about how it will work with wgpu based applications? This will work the same as it does on desktop applications. The program calls out to libraries that support talking to screen readers. I know rust the language with the best support for and ecosystem around wasm libraries like this already exist and ui frameworks like egui already have some support built in.



  • Hate to break it to you bud. The world isn’t ending. It’s going to still be here. Humanity is going to still be here. We’re going to survive the worst of it and continue going. It’ll get real hard but at no point are we looking at the end of the world or of humanity. The stuff that’ll be really bad won’t be any time soon. Probably not in your lifetime. You can go ahead and live your life and have fun.








  • AnarchoYeasty@beehaw.orgtoMemes@lemmy.mlLenin
    link
    fedilink
    arrow-up
    6
    ·
    1 year ago

    That’s a whack article whose author is pretty confused. Antihierarchical action is inherently not authoritarian unless you are creating new hierarchy. Also isn’t it convenient that our system of liberalism is good and just and normal people believe it but only crazy dangerous psychopaths believe in a ideology founded on liberation from the forces that oppress us.

    There are plenty of articles discussing how capitalists are fucking psychopaths too.


  • AnarchoYeasty@beehaw.orgtoMemes@lemmy.mlLenin
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    3
    ·
    1 year ago

    Kropotkin literally created Anarchist Communism and is absolutely most definitely a communist which is why when he died the USSR threw a massive funeral for him. Your little analogy there makes absolutely no sense whatsoever



  • From their repo (https://github.com/rui314/mold#how-to-use)

    Create .cargo/config.toml in your project directory with the following:

    [target.x86_64-unknown-linux-gnu] linker = “clang” rustflags = [“-C”, “link-arg=-fuse-ld=/path/to/mold”] where /path/to/mold is an absolute path to the mold executable. In the example above, we use clang as a linker driver since it always accepts the -fuse-ld option. If your GCC is recent enough to recognize the option, you may be able to remove the linker = “clang” line.

    [target.x86_64-unknown-linux-gnu] rustflags = [“-C”, “link-arg=-fuse-ld=/path/to/mold”] If you want to use mold for all projects, add the above snippet to ~/.cargo/config.toml