Trayambak Rai

Results 57 comments of Trayambak Rai

Fusion no longer compiles. Weird. I'll investigate that tomorrow and fix it.

![image](https://github.com/nim-lang/Nim/assets/59499552/5773d0bd-2768-4f98-b127-0f9e3da35562) Why does this fail to compile? Fusion doesn't use this proc, obviously, and there shouldn't be any other reason for it to fail. I'll look a bit deeper.

As a matter of fact, [that file](https://github.com/nim-lang/fusion/blob/master/src/fusion/btreetables.nim#L189) doesn't even import options or use them!

Should work now, in theory :sweat_smile:

Nope, broken *yet* again. I'll just remove `?=`, seems counterintuitive anyways.

@Araq Is there anything else left now?

What about moving it into `std/sugar` instead? `unpack` does the job but it's not the best looking way to do it. ```nim let x = some "woops" var y: string...

I think it's that you're turning the value `"v"` into ` JsonNode`. It's a strange bug. This works fine. ```nim import std/[json, jsonutils, tables] echo ${ 1: "v" }.to_table.to_json ```...

The parser is working as expected. You can't just expect the user to eventually specify the scheme if it's necessary for the HTTP client to work, you have to ensure...