site banner

Bugs, Suggestions, Small Comments, And Site News

Have you found a problem in the site? Do you want to make a suggestion on improvement? Do you just want to say "hi everyone"? Post it here!

If you'd like to help with development, check out the Github and the dev Discord. We have a practically infinite list of small things that need to be fixed or changed.

24
Jump in the discussion.

No email address required.

The image on the login screen seems quite large -- I have a decent connection normally, but spent 20+s seeing it incrementally load.

Usually you can shrink images signficantly without much quality loss just be encoding differently, e.g. lower quality. I used imagemagick's convert with the following parameters quite successfully (to make 1920px wide image)

convert -quality 65 -resize 1920x> -strip -interlace Plane -sampling-factor 4:2:0

Ironically I've known about this for like a week, and finally had time to fix it, and set up the site update to run and took a look at this page while doing so . . .

. . . and that's when I saw this post. I think you may be the first person to actually say something about it.

Anyway, it is now fixed :)

Nice! And ha, that sounds like a weird variant of rubber-duck-debugging.

At least you know at least one user appreciates it!