Pawel Bojkowski

Results 18 comments of Pawel Bojkowski

Everywhere for sure not. But for this reason we can: dotnet_diagnostic.RCSxxxxxx.severity=none :)

@JosefPihrt : Real use cases: [stackoverflow](https://stackoverflow.com/questions/11300645/forcing-named-arguments-in-c-sharp) [require-named-args-fs](https://github.com/mykolav/require-named-args-fs) exists already but you need to add an attribute to the method... dotnet_diagnostic.RCSxxxxxx.severity=none is better :)

Another version of GetClient(): ```csharp private static async Task GetClient() { var clientIsOk = client != null; var installationTokenIsOk = installationToken != null; var tokenIsNotExpired = installationToken != null &&...

@nul800sebastiaan in the current version you need one more "null" in issues: ```csharp var query = new Query() .Repository("octokit", "octokit.net") .Select(r => new { r.Name, r.Description, Issues = r.Issues(100, null,...

Or get all issues with one call without paging: ```csharp var query = new Query() .Repository("octokit", "octokit.net") .Issues() .AllPages() // Auto-pages Issues .Select(issue => new { issue.Title, issue.Id }).Compile(); ```

@duncanawoods @nul800sebastiaan -> [🚀🚀🚀 TransferAllIssues -> parallel foreach async -> MAGIC :) 🚀🚀🚀 #252](https://github.com/octokit/octokit.graphql.net/issues/252)

@tbarre good question! BUT check this: https://gearupwindows.com/how-to-display-weather-info-in-windows-11-taskbar/ https://www.intowindows.com/show-weather-info-on-windows-11-taskbar/ I have no idea how this is possible! @manifestinteractive ???

Any news on this issue?