Jonathan Merritt
Jonathan Merritt
All the files in the `Examples` folder with `.hs` extensions are Haskell examples that you can execute to produce either STL (3D) or SVG (2D) files. For example: https://github.com/colah/ImplicitCAD/blob/master/Examples/example13.hs I...
Someone has already ventured a `nord-light` theme for `doom-emacs`: - https://www.reddit.com/r/emacs/comments/8a0joj/share_my_first_light_theme_doomnordlighttheme/ - https://github.com/hlissner/emacs-doom-themes/blob/master/themes/doom-nord-light-theme.el (I'm adding it to the comments here because I really love both the light and dark Nord...
With MacOS (ROCm is Linux-only), I've been having problems getting `amdgcn` to work at all. If I compile an OpenCL kernel with Apple's own `openclc`, like this: ``` /System/Library/Frameworks/OpenCL.framework/Libraries/openclc -c...
I think matrix inverse can sometimes be useful for didactic purposes, but it would be amazing to have practical linear solvers in pure Haskell. Is there any way we can...
This might need a minor version bump. I'm never completely sure about how the PVP applies in situations like this.
I can get `dash-haskell` to compile with [stack](https://www.haskellstack.org/) by doing: ``` # first checkout dash-haskell from GitHub; cd into directory; then... stack init # ... stack futzed around for a...
I'll give that a go.
## Workaround In case anyone encounters this... I found that I could get this to pass by mocking out `std::intrinsics::write_bytes`: ```rust fn mock_write_bytes(dst: *mut T, val: u8, count: usize) {}...