Andréas Lundgren

Results 30 comments of Andréas Lundgren

I can confirm the N+1 on the first page load for a new visitor. If I disable cookies it loads 14 queries every request. ![2019-10-26_14-33-46](https://user-images.githubusercontent.com/1066486/67619586-c24b1d80-f7fd-11e9-9327-e57821012387.png) ![2019-10-26_14-34-33](https://user-images.githubusercontent.com/1066486/67619587-c24b1d80-f7fd-11e9-97fe-044f6a633e59.png)

@kiru Thank you! Yes, of course! I'll push an update later today! EDIT: Thinking more about it, the format should still work! Just copy the values into your `theme` key...

@barryvdh If you do have a minute over, could you explain the differences between the packages? Maybe an idea to have a section about it in the readme?

I would also like to see this feature built into Scout, if it is possible. I currently have the setup mentioned earlier (Sublime Text 2 + LiveReload Package + Chrome...

WordPress implemented this back in 2019: [wordpress.org/introducing-handling-of-big-images-in-wordpress-5-3](https://make.wordpress.org/core/2019/10/09/introducing-handling-of-big-images-in-wordpress-5-3/) They create a scaled down version when an uploaded image is larger than 2560x2560px, and then uses that as the "original". It still...

The regular expression can be rewritten to get rid of the extra unused capturing groups. ```diff - /^(st(a|)g|mod(e|)l|pre|demo)/ + /^(sta?g|mode?l|pre|demo)/ ``` Also makes it more readable, in my opinion.

> This does raise the question as to whether we should have "all" as a default option. > > Some tables will have thousands of records and so "all" is...

You mean [setting global pagination settings like this](https://filamentphp.com/docs/3.x/tables/advanced#global-settings)?

Now the latest release is up to 3.44.2 (released on 2023-11-24). [Source](https://www.sqlite.org/chronology.html)