Mikael Dúi Bolinder
Mikael Dúi Bolinder
Expanding on the first-pass version, what about `lcu.ChampSelect.SubscribeAsync(() => lcu.ChampSelect.GetSession(), (e) => something)` or `lcu.ChampSelect.SubscribeAsync(nameof(lcu.ChampSelect.GetSession), (e) => something)` if the mapping can be easily figured out? Using [`Func`](https://stackoverflow.com/a/59008564/1275774) it could...
> if the mapping can be easily figured out? The mapping seems to be `"OnJsonApiEvent_lol-champ-select_v1_session".Replace("OnJsonApiEvent", "").Replace("_", "/")` which gives us `/lol-champ-select/v1/session`. `help.json` is way less cryptic when sorted 😂. *I've...
What's the difference between `softprops/turnstyle` and [`concurrency`](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency)?
From https://semver.org: > Precedence for two pre-release versions with the same major, minor, and patch version MUST be determined by comparing each dot separated identifier from left to right until...
> Something like: `Camille.ConstantDragon`, `Camile.DataDragon` and `Camille` (or `Camille.RiotApi`) There are at least two different data dragons nowadays, [one for League of Legends](https://developer.riotgames.com/docs/lol#data-dragon) and [one for Legends of Runeterra](https://developer.riotgames.com/docs/lor#data-dragon). So......
I'm currently using some rough dark blue CSS (using `prefers-color-scheme` and [Stylus](https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne)).  ``` @media (prefers-color-scheme: dark) { body, #navbar, .well { background: rgb(0,0,20); color: white; } th, td, table.well,...
@ngosang I'd be willing to reverse engineer the bot and then add IPv6 compatibility. (work started at https://github.com/mikaeldui/TrackerListBot)
> I see this bug is also impacting their own client. (29-11-2021)  What's wrong with **Sniper Taric**?
Spectator is back! [`/lol/spectator/v4/active-games/by-summoner/{encryptedSummonerId}`](https://developer.riotgames.com/apis#spectator-v4/GET_getCurrentGameInfoBySummoner) is working as well as [`/lol/spectator/v4/featured-games`](https://developer.riotgames.com/apis#spectator-v4/GET_getFeaturedGames): ```json { "gameList": [ { "gameId": 5722328751, "mapId": 11, "gameMode": "CLASSIC", "gameType": "MATCHED_GAME", "gameQueueConfigId": 420, "participants": [ { "teamId": 100,...
> How would you find the gameId of an active game without first requesting the game by summonerId? Featured Games doesn't return the Summoner IDs, only Summoner Names.