Results 25 issues of Jan

## We want to ensure high quality of the packages. Make sure that you've checked the boxes below before sending a pull request. - [x] I have read the [Contribution...

The following example won't work: ``` var contents, _ = os.ReadFile("myfile.txt") ``` Reported first time in #130 by @ChengYen-Tang

bug

Would it make sense to add support for enum aliases ? Example: ```go type MyType int const ( A MyType = iota B ) const ( AlsoA = A BInSpanish...

### Proposal Details Similar in spirit to proposal #20803 (for the go compiler), and related to #63689, #14972, and #20148. I recently lost time on a subtle bug where I...

Proposal

Per discussion started in https://github.com/dotnet/interactive/issues/3511#issuecomment-2619440199 Documentation links: * https://github.com/dotnet/interactive/blob/main/docs/adding-jupyter-kernels.md * https://github.com/dotnet/interactive/blob/main/docs/variable-sharing.md

enhancement

In the go.mod file you have the line: ``` replace go.lsp.dev/pkg => ../pkg ``` It can be dangerous for someone using your code next to a `pkg` directory that holds...

hi all, I'm using the library for the first time (*) and I got a [parquet file form a HuggingFace dataset](https://huggingface.co/datasets/HuggingFaceFW/fineweb/tree/main/sample/10BT), with the following schema: ``` $ parquet-tools -cmd schema...

First, congrats and thanks for the well written tool 😃 I often I find myself iterating over enum values ...

### Description I'm writing an installation program that have some suggested installation locations (/usr/lib, /usr/local/lib, etc), but I would also want to allow the user to enter an arbitrary path....