Josh Bode

Results 32 comments of Josh Bode

as a workaround I'm doing this to over-escape the input: ``` $ echo '{"x": "\\w"}' | sed -e 's^\\^\\\\\\\\^g' | jpp ```

Have you tried `direnv reload`? ``` $ direnv --help ... reload: triggers an env reload ... ``` However, I believe this only reloads the `.envrc` file, not the shell hook....

do you have any examples of what you're trying that you can share?

As a solution to the original problem, given most people are not using this project as a library, I suggest installing via `pipx` rather than `pip`. `pipx` creates dedicated, isolated...

oh, I see you've already suggested `pipx` @koxudaxi :) I'm OK with splitting the package into parser and CLI, but I'm not sure that solves the problem greatly, given there...

> oh, for nodejs/julia-style packages I'm just grumbling - I only meant that in other languages this is a solved problem :) In Julia, for example, different packages (say `a`...

I'm not sure what your particular setup is, but I use the following method on a shared JupyterHub instance (based on https://zero-to-jupyterhub.readthedocs.io/) that I manage where I install `jupyterlab-vim` into...

My hack solution: Install the extension, disable it for all users and then in my own startup directory place the file `~/.ipython/profile_default/startup/00-defaults.py`: ``` import subprocess subprocess.call(['jupyter', 'labextension', 'enable', 'jupyterlab_vim']) del...

This is what I'm using in `~/.config/nixpkgs/overlays/neovim-nightly.nix`: ``` let neovim-nightly-overlay = import (builtins.fetchTarball { url = https://github.com/nix-community/neovim-nightly-overlay/archive/master.tar.gz; }); in self: super: { inherit (neovim-nightly-overlay self super) neovim-nightly; } ``` then...

I'm actually not using `nix-env` any more, having migrated to `nix profile` (be warned - this is a "one-way" trip, and you'll probably want to migrate all of your existing...