Lucian Wischik
Lucian Wischik
``` csharp int i = 15; Console.WriteLine("Hello {0}", i); ``` This code warns about the implicit boxing of `int i`. I've heard the recommended answer here is `Console.WriteLine("Hello {0}", i.ToString())`...
Centennial is a key consumer of this NuGet package. We should link to it from the readme... https://visualstudiogallery.msdn.microsoft.com/c71521f1-3c73-49e8-b1a4-70e958f179ba https://msdn.microsoft.com/windows/uwp/porting/desktop-to-uwp-deploy-and-debug https://msdn.microsoft.com/windows/uwp/porting/desktop-to-uwp-run-desktop-app-converter https://msdn.microsoft.com/en-us/windows/uwp/porting/desktop-to-uwp-manual-conversion https://github.com/Microsoft/DesktopBridgeToUWP-Samples
The markdown parser gets asterisk-inside-codeblock-inside-list wrong. For instance, try this markdown code `````` * Alpha ``` * Beta ``` Gamma `````` On both GitHub and CommonMark, it's rendered as a...
Given this markdown ``` 1. List item 1. Subone Paragraph 7. SubRestart 5. Another list item ``` then GitHub and commonmark [render it](http://spec.commonmark.org/dingus/?text=1.%20%20List%20item%0A%0A%20%20%20%201.%20Subone%0A%0A%20%20%20%20Paragraph%0A%0A%20%20%20%207.%20SubRestart%0A%0A5.%20%20Another%20list%20item) where the first item "List item" has...
### Preflight Checklist - [x] I have searched [existing issues](https://github.com/anthropics/claude-code/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug) and this hasn't been reported yet - [x] This is a single bug report (please file separate reports for different...
I was reading through the code for Hover and noticed three oddities... ## Missing newline ``` class Post: """Docstring-for-Post""" def foo(item: type[Post]) -> None: """Args: item: Docstring-for-item""" ... ``` Hover...