K. N.

Results 384 comments of K. N.

Yep, that's something that would make the lifecycle of [kube-hetzner](https://github.com/kube-hetzner/terraform-hcloud-kube-hetzner) clusters easier to manage too. As right now we have to pre-compute the IPs for subnets (one for each nodepool)....

Flutter would definitely be ideal. The client needs to be a wrapper to the python one, but it's completely doable, something like this would help: https://github.com/IVLIVS-III/dart_python_ffi

@tyfiero @KillianLucas @MikeBirdTech IMHO, @Bratzmeister is right, react native is not the right call. You will get way more sway from Flutter. And tools like [FlutterFlow](https://flutterflow.io) can do most of...

Nothing comes even close to targetting so many platforms with one codebase. And that's just the official support, community packages supports all the rest like watches OS, Raspberry, etc. Flutter...

@nonsensetwice You just need to give it exec permissions with `chmod +x cusor-xxx.AppImage`, then you can execute either via terminal, or by double clicking. I ended up creating an alias...

> Does the AppImage version autoupdate ? Sadly no, it's not managed by a package manager.

> this is trivial just do something like this. > > ```shell > #!/bin/bash > VER=0.10.4 > ./cursor-${ver}.AppImage --appimage-extract > mv squashfs-root cursor-${ver} > mkdir -p cursor-${ver}/usr/local/cursor cursor-${ver}/usr/local/bin > mv...

> This is totally fair. We're a small eng team and are trying to balance new features/bug fixes with supporting more platforms. Agree deb/rpm is better and hope to have...

> > > this is trivial just do something like this. > > > ```shell > > > #!/bin/bash > > > VER=0.10.4 > > > ./cursor-${ver}.AppImage --appimage-extract > >...

I tried with a modified version of the above: ```bash #!/bin/bash # Define version VER=0.10.4 # Clean up any previous extraction or build attempts rm -rf squashfs-root cursor-${VER} rm -rf...