arkanoid87
arkanoid87
This project is a milestone for applying functional programming patterns in nim, it deserves some love! For example, this blocking issue has been upgraded: https://github.com/nim-lang/Nim/issues/4104 also {.noSideEffect.} and {.raises: [].}...
According to https://restic.readthedocs.io/en/latest/040_backup.html#excluding-files this line ``` AppData\Local\Microsoft ``` should already exclude these ``` AppData\Local\Microsoft\Windows\Explorer AppData\Local\Microsoft\Windows\INetCache AppData\Local\Microsoft\Windows\WebCache AppData\Local\Microsoft\Windows Store ``` am I wrong?
I see this warning `use `char` or `uint8` instead; cuchar is deprecated [Deprecated]` in my Futhark based projects, so I went down the rabbit hole. https://github.com/PMunch/futhark/blob/875a7f5cf727483bc4c4d394f7d3c23699002aa8/src/opir.nim#L43 from IRC #llvm: ```...
https://github.com/PMunch/futhark/blob/875a7f5cf727483bc4c4d394f7d3c23699002aa8/src/futhark.nim#L456 `querySetting(nimcacheDir)` seems to hold different values: - if it is queried by nimble at compile time: `/home/jack/.cache/nim/nimmap_d` - if it is queried by nimsuggest: `/home/jack/.cache/nim/nimmap_check` As a result futhark...
Thanks to Futhark wrapping is easy and I've successfully produced another (full toy) wrapping with working example. I'll link it here just to prove it, but the question really is...
- [X] browser cache cleared - [X] ipywidgets works - [x] pythreejs works - [X] jupyter lab build completed after "jupyter labextension update --all" - [X] ipyvolume extension enabled browser...
I have Wiko Power U10 and `Phone Assistant` does not have any `Advanced` or `battery` settings, also dialing`*#*#86569726#*#*` doesn't do anything (just clears the dialing screen confirming that the action...
appsrc and appsink are the two gstreamer elements designated to move buffered data in and out gstreamer pipeline into the wrapping app. I was trying to connect "new-sample" signal from...
`get_dimensionality("dimensionless")` returns `KeyError: ''` but works with `get_dimensionality("")`
like title says ```python ureg.get_dimensionality("dimensionless") ``` fails
I'm trying to run `dragdrop.nim` example on ubuntu 20.04 x86_64 as PE32+ config.nims ```nim when defined(crosswin): switch("cc", "gcc") const arch = if buildCPU == "amd64": "x86_64" else: "i686" const mingwExe...