5 ms·
This is how I made a better version of the nhl.com site [1] that has a better UI (you can see scores/schedules much more easily), is mobile first, has no ads, a
by stoplight 2y ago
This is how I made a better version of the nhl.com site [1] that has a better UI (you can see scores/schedules much more easily), is mobile first, has no ads, and responsiveness built in. I did the same for the AHL [2], and the PWHL [3].
[1] https://nhl-remix.vercel.app/ https://nhl-remix.vercel.app/
[2] https://ahl-remix.vercel.app/ https://ahl-remix.vercel.app/
[3] https://pwhl-remix.vercel.app/ https://pwhl-remix.vercel.app/
- bluetidepro 2y agoMake one for the NFL, please! I can’t stand how hard it is to get scores on their website. Haha
- TechDebtDevin 2y agoThere's like a gazzillion alternative scoring sites. Googling the team name also works while they're playing, Google usually has a good feed.
- Hackbraten 2y agoFunny you would mention that. A few weeks ago, I wrote a Python-based client library [0] for the website kicker.de [1]. It supports the NFL, too: import asyncio from kickerde_api_client import Api from kickerde_api_client.model import LeagueId api = Api() query = {'league': LeagueId.NFL, 'season': '2024/25'} season = asyncio.run(api.league_season(**query)) print(season['longName']) # 'National Football League' print(season['country']['longName']) # 'USA' print([ team['shortName'] for team in season['teams'].values() if team['shortName'].startswith('B') ]) # ['Buffalo', 'Baltimore'] day = season['gamedays'][18] print(str(day['dateFrom'].date())) # '2025-01-05' [0]: https://kickerde-api-client.readthedocs.io/en/stable/autoapi/kickerde_api_client/index.html https://kickerde-api-client.readthedocs.io/en/stable/autoapi... [1]: https://www.kicker.de/ https://www.kicker.de/
- kmoser 2y agoFor a minute I thought PWHL was short for "pwn-NHL".
- 12345hn6789 2y agoPoked around a bit. It's responsive and looks great on mobile. Kudos
- shepherdjerred 2y agoI did a similar thing (improving a site I'm unaffiliated with) with Skill Capped which has videos to improve at League of Legends. My version has a search bar which they still haven't added in 4.5 years. Original: https://www.skill-capped.com/lol/browse/course https://www.skill-capped.com/lol/browse/course Mine: https://better-skill-capped.com/ https://better-skill-capped.com/