Ivan Mar (sOkam!)

Results 35 comments of Ivan Mar (sOkam!)

I heard things in nim's disc server, and also noticed some stuff here. 1. Someone was having a lot of issues with compiling on windows for multi-thread, and moved away...

Fixed by doing two things ```c cd ./lib/cglm git checkout 2a4748d # As mentioned in https://github.com/recp/cglm/issues/240 cd ../../ make libs ``` Editing file `src/util/ivec2s.h` and disabling the union type ```c...

The aforementioned solution would only solve the problem for storing entire folders. The point of `addFile` is also being able to manually add individual files into an archive. Otherwise, the...

Actually, I just tried this approach again, and it did work this time :man_shrugging: ```nim proc zip *(list :seq[Path]; trg :Path; rel :Path= Path".") :void= ## @descr Zips the {@arg...

Seems like the culprit is around this section: https://github.com/nim-lang/Nim/blob/20d79c9fb0cd2e72473f5fb08134cf72d0fdd9e7/compiler/docgen.nim#L1549-L1556

Any updates or expected ETA on this? I'm currently locked out of using xonsh bc of this issue, so wondering if I should try to revert back arch-linux's python version...

![image](https://github.com/nim-lang/atlas/assets/7308253/20e1298c-d94b-4e14-9f2a-b345cee91423) To showcase the issue a bit more, this is the result of `atlas use https://github.com/heysokam/ngpu` in that same `triangle` test package. All of the dependencies marked with arrows are...

Sorry for the noise. I think I figured it out by trial/error and experimenting with different options. ![image](https://github.com/nim-lang/atlas/assets/7308253/b67921d7-96a6-4d6a-81f3-874f959bd3b0) This is the step by step, would be useful to have it...

Started learning nimsl yesterday, but lack of this feature is probably enough for me to stop using nimsl entirely. How could one implement this feature, to be able to send...

As a person who loves to have my code formatted in a clean and consistent way, and a big fan of how clangd does its formatting with `clang-format`, I find...