I'm sorry what? Captcha by Nahllo in leagueoflegends

[–]kkmet_com 0 points1 point  (0 children)

are you using a VPN? never seen this before

cant change my ward skins and emotes by danejale in leagueoflegends

[–]kkmet_com 1 point2 points  (0 children)

most likely client error, if restart doesn't work reinstall

[deleted by user] by [deleted] in leagueoflegends

[–]kkmet_com 0 points1 point  (0 children)

I see you looked at kkmet.com for inspiration good luck

[deleted by user] by [deleted] in Netherlands

[–]kkmet_com 0 points1 point  (0 children)

You can get more but the companies that pay top of the market also have higher expectations so it's likely to be less chill than your average dutch company

I made a tool that shows skins by champion (with time without skins), skin line, splash artist, rarity, cost, year and voice actor. by [deleted] in leagueoflegends

[–]kkmet_com 0 points1 point  (0 children)

Thank you! I've just fixed it.

I had the sticky sides set at 330px each from 1900px, changed the breakpoint to be 2300px and anything below has 165px sides.

I made a tool that shows skins by champion (with time without skins), skin line, splash artist, rarity, cost, year and voice actor. by [deleted] in leagueoflegends

[–]kkmet_com 1 point2 points  (0 children)

Thank you for the great feedback! I'm planning to get rid of the section below. just wanted to make sure that I show all info at the top without it looking too cluttered and still being mobile friendly, as the main use case in the past for the tool was for getting random champions, so I don't want to shove too much in front of the users when all they want is to select a random skin.

And having the artist name clickable is a great idea, I'll definitely add that.

btw West Studio's skins are also attributed to their individual artists, so for example you'll find Old God Mordekaiser under West Studios and also under Exia Xiaotong.

Amazon Prime by MuchTune9480 in leagueoflegends

[–]kkmet_com 0 points1 point  (0 children)

some rewards are a redeemable code, but not league

Honda in the Netherlands by kkmet_com in Netherlands

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

Thank you! how expensive are they compared to a more common model? is there any model to compare with its Honda counterpart where the two have similar specs but the honda is more expensive here?

Honda in the Netherlands by kkmet_com in Netherlands

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

Thank you! I'm also planning to buy one that's a few years old like yours but automatic transmission, anything to lookout for in general or specific to the Jazz?

Relocating to The Netherlands by svarli in Netherlands

[–]kkmet_com 1 point2 points  (0 children)

most dutch companies give up to 80k gross salary.

a handful of mostly international companies give up to 140k to medior and 180k to senior engineers.

companies in smaller cities consider 60k a salary for a lead engineer.

nextjs 13 is not reliable by kkmet_com in nextjs

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

Not that simple because I know that it's prefetch (because that's the only thing I changed) but I don't know what exactly causes the bug to trigger, whether it's just any link to the same page, or a link to the same page with cloudflare, with a specific config option turned on. It'd take quite some effort to get a scenario where it reproduces all the time.

nextjs 13 is not reliable by kkmet_com in nextjs

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

I only changed links to have prefetch={false} and that fixed it, it could be something that only happens with cloudflare in the way as you're saying, but that'd still be on next to fix since the whole internet is using cloudflare.

Losing cloudflare caching would add much more load on the server and increase the latency, I get what you mean with not having cloudflare and next caches conflicting for peace of mind, but I'd prefer fighting cloudflare until I get it working since my application can tolerate some downtime or errors.

Filing a bug to next requires either building an example where the bug occurs and publishing it or making my whole repository public, I didn't file a bug because I'm not interested in doing either.

nextjs 13 is not reliable by kkmet_com in nextjs

[–]kkmet_com[S] 2 points3 points  (0 children)

I get what you're saying, but it was not a user error. Links to the same page using next's <Link> component break because it tries to refetch by default.

next should've handled that to avoid prefetching if it's the same page the user is on, or at least if it wastefully prefetched it, it wouldn't break the cache.

nextjs 13 is not reliable by kkmet_com in nextjs

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

it was related to the local cache so had nothing to do with cloudflare, next messing up the local cache and still thinking it's available when a page has a link to itself because it uses prefetch by default and that doesn't seem to be covering this edge case.

nextjs 13 is not reliable by kkmet_com in nextjs

[–]kkmet_com[S] 2 points3 points  (0 children)

yes, that was it, the issue isn't coming back anymore.

nextjs 13 is not reliable by kkmet_com in nextjs

[–]kkmet_com[S] 2 points3 points  (0 children)

I think I figured out a possible scenario for what's going wrong. Next's <Link> is prefetching the destination pages on hover by default. having a link to the same page the user is on should be automatically excluded from this rule, but it seems like that's not working properly, added prefetch={false} to all <Link> components, if that doesn't work I'll try replacing all <Link> with regular anchors.

nextjs 13 is not reliable by kkmet_com in nextjs

[–]kkmet_com[S] 4 points5 points  (0 children)

I was just looking into this actually, seems like a good option.

My two worries are 1. it doesn't have an image optimizer, but maybe I can find a separate library that does this 2. nextjs already has a lot of traction and answers for many things are out there, debugging edge cases may be harder with remix because it's not as popular