This is very exciting. Here is the APK I downloaded. And the associated discussion.

It even already seems to support stylus input which is very exciting seeing as there has been talk of porting RNote to Android.

  • k0e3@lemmy.ca
    link
    fedilink
    arrow-up
    30
    arrow-down
    4
    ·
    edit-2
    1 day ago

    I can’t read the discussion because some damn Canadian neko waifu thinks I’m a bot.

      • PumaStoleMyBluff@lemmy.world
        link
        fedilink
        arrow-up
        5
        ·
        15 hours ago

        It actually doesn’t do that for all clients, according to the docs

        It’ll let you straight through if your user agent doesn’t contain “Mozilla”

      • You just need to wait for the proof of work to complete

        I will never find the irony in this anything other than pathetic.

        The one legitimate grievance against Bitcoin and other POW cryptocurrencies - the wasteful burning of energy to do throw-away calculations simply to prove the work has been done… the environmental cost of distributed scale meaningless CPU cycle waste purely for the purpose of wasting CPU cycles, has been so eagerly grasped by people who are largely doing it to foil another energy wasteful infotech invention.

        It really is astonishing.

        • Possibly linux@lemmy.zip
          link
          fedilink
          English
          arrow-up
          4
          ·
          8 hours ago

          Do you have a better way? It is way more private than anything else I’ve seen.

          From a energy usage perspective it also isn’t bad. Spiking the CPU for a few seconds is minor especially compared to other tasks.

        • Cethin@lemmy.zip
          link
          fedilink
          English
          arrow-up
          3
          ·
          13 hours ago

          The point is to make it too expensive for them, so they leave you alone (or, ideally, totally die but that’s a long way off). They’re making a choice to harvest data on your site. Make them choose not to. It saves energy in the long run.

        • Jumuta@sh.itjust.works
          link
          fedilink
          arrow-up
          12
          arrow-down
          2
          ·
          edit-2
          1 day ago

          either you have the service with anubis or you have no service at all

          unlike pyramid coins, anubis serves a purpose

        • fmstrat@lemmy.nowsci.com
          link
          fedilink
          English
          arrow-up
          3
          arrow-down
          7
          ·
          edit-2
          24 hours ago

          I willl never find the irony in how tech literate people still make assumptions about technology without reading up on it.

          Proof of work does not equal mass power usage. The proof of work here is fingerprinting.

          It really is astonishing.

          • 𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.social
            link
            fedilink
            arrow-up
            3
            arrow-down
            3
            ·
            22 hours ago

            Do you understand how Proof-of-Work works? Perhaps you can give me an ELI5 that shows that it does not use the client’s CPU to perform calculations for only the purpose of proving that the client’s CPU performed the calculations?

            • fmstrat@lemmy.nowsci.com
              link
              fedilink
              English
              arrow-up
              4
              ·
              17 hours ago

              I do, yes, you are just too crypto-focused. Anubis uses the result of the PoW to fingerprint, I.E. to do a job greater than just the calculation. It’s also an extremely efficient alg. I won’t read the docs for you, but feel free to read them first if you would like to discuss it further.

              • 𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.social
                link
                fedilink
                arrow-up
                1
                arrow-down
                1
                ·
                12 hours ago

                It’s also an extremely efficient alg.

                Not if it’s an effective proof-of-work anti-scraping mechanism. The point of these are to make it prohibitively expensive for scrapers to harvest data.

                A mire energy efficient way to do this is with lags and tar pits, which do not cause CPU cycles to be wasted.

                Any mechanism - any - that uses proof-of-work is by definition wasting CPU cycles. If there’s a useful waste product, like boinc, where the work that’s proved to be done is science, then the POW isn’t pure waste energy. There are certainly more efficient ways of generating fingerprints than PoW; Google and Facebook are peerless at fingerprinting without any PoW at all. The value of these fingerprint coins tokens is entirely incidental to the real purpose: to cost the scraper CPU cycles, cost them energy, and make scraping less profitable.

                Anubis is all of the execution cost of cryptocurrency, without the financial flavoring.

      • _cryptagion [he/him]@quokk.au
        link
        fedilink
        English
        arrow-up
        1
        ·
        23 hours ago

        For touchscreens, Gnome is great, I dunno how well it would work, but I wouldn’t be sad to see someone try to make an actual fully featured Android UI replacement out of it.

  • ExLisper@lemmy.curiana.net
    link
    fedilink
    arrow-up
    7
    arrow-down
    4
    ·
    1 day ago

    I tried using GTK with C, JavaScript and Rust and the experience was always terrible. The tools, the documentation… C is just sooooo old and GTK doesn’t translate well to Rust. For me GTK is great for Window Manger level tools that need to be small, super fast and are fairly static (you don’t add new features do settings app or clock widget that often). I definitely wouldn’t do cross platform apps in it.

    • illucidmind@programming.dev
      link
      fedilink
      arrow-up
      10
      arrow-down
      1
      ·
      1 day ago

      First, what do you mean by “C is just so old”? That seems like a language problem, not a GTK problem. Tbh, when it comes to documentation, you’re likely better off with C as the official GTK docs targets the C API (https://docs.gtk.org/gtk4/).

      Also, what do you mean by “it doesn’t translate well to Rust”? Because, Rust, like other supported langs like Python, have bindings that are equally well-documented to an extent. I haven’t used the Rust binding but I’ve used the Python binding extensively and there are references to all the APIs (https://lazka.github.io/pgi-docs/)—same with Rust (https://gtk-rs.org/gtk4-rs/).

      Lastly, I can understand not using GTK for cross-platform apps, but not for the reasons you mentioned. While GTK’s primary target is Linux, you can technically still make it cross-platform.

      • ExLisper@lemmy.curiana.net
        link
        fedilink
        arrow-up
        4
        arrow-down
        2
        ·
        24 hours ago

        By “C is so old” I mean it lacks a lot of features modern languages have. Proper linting, code formatting, dependency management, version management, virtual environments, modules. Yes, you can solve some of it with docker but it’s terrible compared with Rust for example.

        By “it doesn’t translate well to Rust” I mean that GObject doesn’t translate well to Rust structs so you end up with weird structures split into multiple modules and terrible code overhead. Compared with modern UI frameworks it’s just not ergonomic to work with.

        Yes, I know GTK supports multiple platforms but if I want to develop for desktop and mobile I had way better experience using Tauri+Leptos. It’s not just about having some bindings and some docs for it. It’s about how much effort does it take to set it up and figure out how to implement specific functionality. Good docs, good tools good compiler and readable code for the framework help a lot.

        • illucidmind@programming.dev
          link
          fedilink
          arrow-up
          7
          arrow-down
          1
          ·
          edit-2
          16 hours ago

          Your statement about C is still mostly wrong. First, linting isn’t typically a built-in feature for many languages; you mostly depend on external tools or IDEs (for C/C++, CLion and VSCode with specific extensions solve this). A similar occurrence is seen in formatting, where, except for a few languages like Rust and Go (with officially maintained formatters), you still have to depend on external tools or IDEs. For dependency management, it is well-known that C/C++ lacks an official package manager, but there are well-tested third-party package managers such as conan (https://conan.io/) and vcpkg (https://vcpkg.io/). Another benefit is the project-local support in both package managers (although it is more robust in Conan), which effectively addresses both the version management and virtual environment issues you raised. You don’t always need virtual environments anyway (Rust doesn’t use one either).

          I haven’t used the Rust binding, so I don’t have direct experience with this and may not fully understand the pain points. However, a glance at the docs shows the Rust binding and trait-based pattern still does the job effectively. I don’t understand what you mean by “weird structures split into multiple modules”, as you’re just reusing built-in structs like you would use a class in the Python binding, for instance. So I don’t see the problem.

          Well, mobile support for GTK is currently experimental, so there’s that.

          • ExLisper@lemmy.curiana.net
            link
            fedilink
            arrow-up
            2
            ·
            edit-2
            2 hours ago

            Of course linting and formatting is not part of the language. Of course you can install extensions in some IDE that will handle it. Conan looks great but I never saw a project using it and when I was asking C devs about dependency management no one mentioned it. I checked dozens of GTK projects looking for some decent template to copy and didn’t find anything remotely “modern”. All projects I see simply use meson/ninja, install deps on system level, don’t provide any code formatting or linting guidelines. Most don’t bother with any modules and just dump all source code into 100 files in src. And I’m talking about actively developed tools for Gnome, not some long forgotten ones. For me the big difference between languages like C and Rust is that every Rust project uses the same formatting, linting tools, uses modules and proper dependency management while most C projects don’t. Because it’s old. Because a lot of C devs learned programming when it wasn’t a thing. Because a lot of C project started when those tools didn’t exist. You can probably start a new C project in ‘modern’ way but when I was trying to do it there were no examples, no documentation and when I asked C devs I was told that “you just do it like always”. In modern languages the default way is the “modern” way.

            This is how you declare a new component in gtk-rs:

            glib::wrapper! {
                pub struct MainMenu(ObjectSubclass<imp::MainMenu>)
                    @extends gtk::PopoverMenu, gtk::Popover, gtk::Window, gtk::Widget,
                    @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget, gtk::Native, gtk::ShortcutManager;
            }
            
            impl MainMenu {
                pub fn new() -> Self {
                    Object::new(&[]).expect("Failed to create `MainMenu`.")
                }
            }
            
            
            #[glib::object_subclass]
            impl ObjectSubclass for MainMenu {
                const NAME: &'static str = "MainMenu";
                type Type = super::MainMenu;
                type ParentType = gtk::PopoverMenu;
            
                fn class_init(klass: &mut Self::Class) {
                    klass.bind_template();
                }
            
                fn instance_init(obj: &glib::subclass::InitializingObject<Self>) {
                    obj.init_template();
                }
            }
            

            This is how you declare a new component in Leptos:

            #[component]
            fn App() -> impl IntoView {
            
                view! {
               <div>test</div>
                }
            }
            

            That’s what I mean by “it’s not ergonomic”.

    • subarctictundra@lemmy.worldOP
      link
      fedilink
      arrow-up
      5
      arrow-down
      1
      ·
      edit-2
      1 day ago

      I definitely recommend using Vala for Gtk as it was tailor made for it. It’s built on top of the object system that Gtk uses so the API fits in to the language flawlessly, unlike Rust. It even has its own website for browsing the Gnome APIs https://valadoc.org/

      • ExLisper@lemmy.curiana.net
        link
        fedilink
        arrow-up
        3
        arrow-down
        2
        ·
        1 day ago

        I read about Vala but a language that compiles to C seemed icky to me. I don’t know, maybe it solves all the issues that C has. Maybe I will give it a try one day.

        • subarctictundra@lemmy.worldOP
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          14 hours ago

          I think the saving grace is that you never actually see the C (it’s piped straight in to GCC), so it might as well not exist. C GObject code has a lot of boilerplate and I like to think that Vala is the programming language that GTK programmers are actually thinking in when they write their C. Vala is essentially a compression of the C code with less room for errors.

          • ExLisper@lemmy.curiana.net
            link
            fedilink
            arrow-up
            1
            ·
            5 hours ago

            Interesting, I didn’t realize Vala was designed specifically to help with GTK. It could be a skill issue but I found the entire ecosystem really hard to understand. It’s like all documentation is written assuming you already know half of it. “Vala uses the GObject system”. Yeah but I’m just deciding which language to use to learn GTK, I don’t know what GObject is… Now that I understand it all better I would probably just use Vala and stick to GTK. Instead I switched to Tauri+Leptos+Thaw and it was a joy in comparison. Documentation was clear and I was just able to link my app to local framework code and debug whatever part I wanted. I was able to fix bugs in Tauri in first weeks of learning and I contributed quite a lot along the way.