Colin Woodbury
Colin Woodbury
Matrix multiplation would be cool too.
Cool! So striding can help us shrink an image by tossing out intermediate pixels. Do we have any access to the ignored pixels during the shrinking process that would allow...
Oh, duh, functional programming. Do one thing and then do the other thing, hahaha. In that case, I can add downsampling to `mapalgebra` right away.
I'm currently trying to get it working with `rayon`, we'll see if I'm successful.
The following prints nothing, not even the `DONE!` messages: ```rust pub(crate) fn bar_test() { let mb = Arc::new(MultiBar::new()); std::thread::spawn({ let mb = Arc::clone(&mb); move || { mb.listen(); } }); (0..30).into_par_iter().for_each(|n|...
If I add a second `mb.listen()` after the `for_each` loop, the DONEs all get printed in bulk after the entire thing exits. PR #92 mentions that bars can be created...
Workspaces as provided by https://github.com/Bad-ptr/persp-mode.el and configured by Doom Emacs https://github.com/hlissner/doom-emacs/blob/develop/modules/ui/workspaces/config.el
The change made in the linked commit above apparently has this effect: > Displaying buffers before they are initialized (rather than after) breaks custom `display-buffer-alist` rules that depend on buffer...
Adding this would be similar to [this commit](https://github.com/livioribeiro/cargo-readme/commit/82c256200451e011a575943b2e2b5db555aada19), yeah?
Upon running `dap-debug` I get: > Debug session process exited with status: killed After the UI briefly flashes with some cool colours and UI elements. This occurs regardless of if...