YesDrX

Results 5 comments of YesDrX

why would powershell need walk through /mnt anyway? in our corporate environment, there are many mounts. everytime when there is a hanging mounts, powershell just can't start. what's the point...

How to load customized languages (compiled to a .so file) now?

```nim import nimpy import nimpy/py_lib as lib # py_lib is the same symbol as pyLib in nim lib.pyLib. pyInitLibPath("abcd") ```

any idea on how to inject constant section from type pragma? ```nim type ABC {.genConstants.} = enum ABC1, ABC2 ``` -----> ```nim type ABC = enum ABC1, ABC2 const LegacyABC1...