bohendo

Results 30 comments of bohendo

I just encountered this same problem after adding source maps to a library that I'm developing & importing into my create-react-app. I added `GENERATE_SOURCEMAP=false` to the `.env` in my create-react-app...

I'm seeing this problem too & it has rendered the account tracking page nearly useless bc the odds of this "lottery of blank white pages" do not appear to be...

Just out of curiosity, which browser are you using? I saw this error too but only when I was using firefox: https://github.com/Uniswap/uniswap-info/issues/319#issuecomment-748747191

I'm unfamiliar with CLA. If I need to clobber the contributions by offlinemark, perks, rocky, and lojikil and rewrite those commits to be authored by myself, lmk & I can...

> Overall I am not sure we should import the git history and the whole repo. Not so smart contract hasnt been updated in years, and as a result it's...

Update: I've given this whole thing a thorough editing pass. All solidity examples have been linted & reformatted & upgraded to the latest solidity version in which the issue is...

I'm hitting this same issue. Agreed, I don't care for ancient bash support but how do I install a different bash with nix-darwin and make it my default? Or maybe...

Looks like the version of bash installed via homebrew is newer & does support `-v` ``` darwin:etc bohendo$ /opt/homebrew/bin/bash bash-5.2$ if [[ ! -v BASH_COMPLETION_VERSINFO ]]; then echo "yay"; else...

Weird thing is, bash 5.1 supports the `-v` operator on linux, so something's off with bash built for `aarch64-apple-darwin22.1.0` ``` [bohendo@linux:~/code]$ bash --version GNU bash, version 5.1.16(1)-release (x86_64-pc-linux-gnu) Copyright (C)...

Ok, found a workaround that is mostly adequate: ```nix { programs = { bash = { enable = true; # turn off the automated completion injection enableCompletion = false; #...