bruce965

joined 2 years ago
[โ€“] bruce965@lemmy.ml 4 points 1 week ago (1 children)

1099$, seriously? ๐Ÿ˜…

[โ€“] bruce965@lemmy.ml 2 points 1 week ago* (last edited 1 week ago) (1 children)

Do you happen to own one? If yes, how do you feel about it?

For example, in the PineTime there is a heart rate monitor, but it's too slow and imprecise. Notifications work great, and the battery lasts 20 days or more. How about the Bangle.js 2?

[โ€“] bruce965@lemmy.ml 9 points 1 week ago (4 children)

https://pine64.org/devices/pinetime/

Be warned though, the hearth rate monitor doesn't work particularly well. And there is no sleep tracking afaik.

If you'd prefer something more reliable (but less open), GadgetBridge is an Android app to interface with commercial smart watches through reverse-engineered protocols.

https://gadgetbridge.org/

[โ€“] bruce965@lemmy.ml 4 points 2 weeks ago (1 children)

For reference, this is what the "Checking for Updates" page on the Pop!_OS store looks like for me. This icon feels out of place, that's why I assumed this is a placeholder that replaced the correct icon that went missing due to some kind of minor problem with my installation.

[โ€“] bruce965@lemmy.ml 37 points 2 weeks ago (2 children)

I assumed that's the "no icon" placeholder for Gnome. I saw it around as well.

[โ€“] bruce965@lemmy.ml 1 points 1 month ago

I'm definitely no expert so I might not be the best person to try and help, but if you want to try having a 1 on 1 chat to fix it, feel free to send me a PM.

[โ€“] bruce965@lemmy.ml 3 points 1 month ago (2 children)

Can you see at least GRUB, or nothing at all?

If you can see GRUB I would try booting with the "nosplash" kernel option, which causes video drivers to be loaded later.

This is a temporary fix, as it might cause other issues, but if it makes the screen work it will be a step in the right direction.

[โ€“] bruce965@lemmy.ml 1 points 1 month ago

I am not sure... in the case I'm referring to, they were lagging also when scrolling. But it was React, so native browser rendering. And they were actually very large tables, so we had to do some funny things like viewport culling (see react-window).

For what it's worth I've never had any similar performance issues with tables in Flutter (web with the canvas-based render engine, not Android) when applying the same culling technique, they just ran fine at any resolution. Different hardware, though, so it's not an apple to apple comparison.

In any case just to be safe I would personally assume less pixels = less work = less power = more battery life. My opinion is very unscientific though.

[โ€“] bruce965@lemmy.ml 1 points 1 month ago* (last edited 1 month ago) (1 children)

Isn't rescaling usually done by the display driver? I am fairly certain this is the case for external displays. Are laptop displays any different?

Edit: with "display driver" I mean the hardware chip behind the display panel, dedicated to converting a video signal to the electrical signals necessary to turn on the individual pixels.

[โ€“] bruce965@lemmy.ml 2 points 1 month ago (2 children)

As a web developer, I noticed that some elements such as very big tables struggle to render on 4K but are absolutely fine at 1080p. I would assume that means the CPU and/or GPU are more taxed to draw at higher resolution, and therefore I assume they would draw more power. I might be mistaken. Do you speak by experience?

[โ€“] bruce965@lemmy.ml 1 points 2 months ago

Good separation between business logic and UI without effort, cross-platform UI in any language, possibility to turn it into a web-accessible service in the future, great choice of UI frameworks and battle-tested components if you decide to go for a web framework and language.

As an example of a successful software that followed this approach: Synchthing. All versions run a local web service in the background. The Desktop version just opens a browser on the index page. The Android version is a native app that calls the exposed REST API on localhost, bypassing the web UI.

As an example of a much more complex software, albeit not FOSS: EasyEDA. It's a web software, but it also comes as a desktop app (which I never tried) which I assume is not much more than a frame for the web view.

My recommendation: write the UI with React on Vite in TypeScript, and write the business logic in your general purpose language of choice (mine would usually be C#).

[โ€“] bruce965@lemmy.ml 1 points 2 months ago (2 children)

If it makes sense for your software, please consider giving it a web interface and turning it into a localhost-only web-service.

view more: next โ€บ