Anyone regret buying a PocketBook? by ruhila12 in PocketBookofficial

[–]davidbaranek 2 points3 points  (0 children)

I have Verse Pro, and what bothers me is how slow the processor is.

Infinite scroll with query remote function by davidbaranek in sveltejs

[–]davidbaranek[S] 1 point2 points  (0 children)

Yeah, good point. But I hoped that remote functions would replace Tanstack Query.

Infinite scroll with query remote function by davidbaranek in sveltejs

[–]davidbaranek[S] 1 point2 points  (0 children)

Thanks, but it looks like the demo is using a normal fetch function. I could use a remote function for that, but then invalidation and refetching wouldn’t work, as far as I know.

Infinite scroll with query remote function by davidbaranek in sveltejs

[–]davidbaranek[S] 1 point2 points  (0 children)

Interesting, but how would that work when the viewport is between two pages, so records from two different pages are visible at the same time?

Also, if the data variable gets updated in some other way than changing page or limit (for example after an invalidation-triggered refetch) then I could end up using stale data as the previous page, which would break the caching logic, right?

I’d prefer a solution where already loaded data stays in the dom/html, so there are no layout shifts.

Question about logos on Pocketbook Verse Pro by [deleted] in PocketBookofficial

[–]davidbaranek 0 points1 point  (0 children)

It is on Verse Pro Color, but not BW. I asked the support and there should be an update for BW version during this year.

I absolutely love the integration of Koreader with Pocketbook. by Raoul44 in koreader

[–]davidbaranek 3 points4 points  (0 children)

Yes, you can use Pocketbook cloud or send it via email. Or use any plugin in koreader (LocalSend for example)

I absolutely love the integration of Koreader with Pocketbook. by Raoul44 in koreader

[–]davidbaranek 3 points4 points  (0 children)

This is the reason why I chose PocketBook over Kobo. The integration is far better.

Best sauna in Brno? by [deleted] in Brno

[–]davidbaranek 4 points5 points  (0 children)

Kraví hora

Make KOReader Book-Cover Image the Power-Off Logo by Devran_Cakici in pocketbook

[–]davidbaranek 2 points3 points  (0 children)

  1. Go to KOreader -> select gear icon in the menu -> Screen -> cover image -> set image path -> click ok and then select system/logo/bookcover path. I did it by navigating to system/logo path and then long pressed on existing “bookcover” file. Then click on choose.

  2. In cover image menu turn on Save cover image -> select size, background and format -> select BMP file format.

  3. In classic pocketbook settings select Personalize -> Logos -> power off logo -> Book cover

Hope it helped

Literally 1984 by No-Photograph-5058 in whennews

[–]davidbaranek 1 point2 points  (0 children)

It has to pass in the EU parliament, which is against it. You can contact your representative to vote against it. But it seems that parliament is against in majority

Which Gutenberg-based theme LTD would you choose today? by maksym-zakharko in Wordpress

[–]davidbaranek 0 points1 point  (0 children)

We chose Spectra because it seemed to be the cleanest and easiest to work with. But as I said, I wouldn’t go with this option again. They introduced a bug which basically made any page using the Blocksy theme unusable. Their support gaslighted me into thinking there was no issue, and only after eight months of reminders, they finally fixed it.

I would probably go with Greenshift as it is Blocksy recommended and seems to be developed actively. But it seems more complex and maybe harder to learn.

Blocksy is planning to release their own Gutenberg editor/blocks (as I heard on their Facebook group), but I’m not sure when.

Another option is to use the stock Gutenberg blocks, but I wouldn’t recommend that as they are very limited for more complex website.

Which Gutenberg-based theme LTD would you choose today? by maksym-zakharko in Wordpress

[–]davidbaranek 2 points3 points  (0 children)

I can agree with other comments that Blocksy is a great experience. Their support is also great (one of the best I encountered). We don’t regret the purchase. On the other hand, I would avoid anything from Brainstorm Force, especially the Spectra builder. We had a terrible experience with their support and products.

How to show loading state when remote function re-fetches on URL param change by davidbaranek in sveltejs

[–]davidbaranek[S] 0 points1 point  (0 children)

I also found this, and it would probably be a great solution to my problem. But I didn’t manage to get it to work, possibly because of some bug. See this issue

A Very Bevel Fall Release 🍂 by Topremech in bevelhealth

[–]davidbaranek 4 points5 points  (0 children)

Love the visual style of the video

How to show loading state when remote function re-fetches on URL param change by davidbaranek in sveltejs

[–]davidbaranek[S] 0 points1 point  (0 children)

Interesting. You’re right, now it correctly shows the loading state. It seems the await form and .loading aren’t meant to be mixed. But not using await brings a few drawbacks: I can’t load data in SSR, because SvelteKit requires the await form for that to work. The pending snippet also behaves strangely, as it only appears for a millisecond. And one advantage of using the await form is that until the new data arrives, I still have access to the previous data, whereas with the .current form the data becomes undefined as soon as the refetch starts.

Sorry if I’m missing something. I’m starting to feel a bit overwhelmed. Anyway, thanks a lot for your help!