Tyler Benster
Tyler Benster
> Try encrypting a small file to yourself with something simple like `echo "super secret test" | gpg -e -a > encryptedfile`. You can decrypt it using `gpg -a -d...
Solution is here: https://github.com/AGWA/git-crypt/issues/23#issuecomment-90617402 `git-crypt add-gpg-user --trusted [email protected]`
Same problem on Windows 10. This fixed it for me: `C:\>setx PYTHONPATH "C:\Python27\Lib;C:\Python27\DLLs;C:\Python27\Lib\lib-tk;C:\NatLink\NatLink\MacroSystem\core"` https://www.knowbrainer.com/forums/forum/messageview.cfm?catid=25&threadid=21796
I tried a workaround, but still am not getting nix-shell to cache: I have a [`release.nix`](https://github.com/tbenst/tylerbenster.com/blob/8e40c89c60a09d11effd4cc4a809d8ff47accf45/release.nix) file that builds both a shell and my package. `shell.nix` is now trivial: `(import...
try `pip3 install --upgrade brother_ql`
> ```julia > funprod(f::Function, g::Function) = (args...)->(f(args...), g(args...) > ``` I love this. I intuitively tried the tuple version, found it didn’t work, and found this thread. Here’s a more...
Pluto seems awesome. Most exciting development since Hydrogen / VScode Python Interactive. Some humble suggestions on keyboard shortcuts. ### keymaps that are out of spec > Ctrl+Enter to run cell...
thx for the comment. revised! I hope it's more helpful now
Oh I didn't realize that! I had thought that since there was no modal editing that shortcuts would always act the same way. Some visual accent might be nice (eg...
I'm looking for how to do the equivalent of a `facet_wrap` in ggplot2 or seaborn, and this thread seems like the closest match for Gadfly. I'm guessing the prefered solution...