Odin

Results 17 comments of Odin

> Instead of namespacing, would it suit you if the gem _stopped_ emitting these extensions altogether? I think we could add a setting to opt out. That would also be...

Looks like there is some related discussion here: https://github.com/asdf-vm/asdf/issues/968#issuecomment-991106501

> Curious what kind of performance impact you see using HashRedisStore? We haven't noticed any performance impact using HashRedisStore. Our deployment is not that big, so it probably won't be...

I ran into this when replacing some cURL-ing that had been done with the justification that it was easier to use cURL to maintain the session than using http.rb or...

Tried to reproduce on updated firefox, got a different bug: bug ![Screenshot_20220814_234747](https://user-images.githubusercontent.com/49036561/184556148-6c461a06-b14a-4a0d-9626-11a4603818d7.png) what it should look like ![Screenshot_20220814_234709](https://user-images.githubusercontent.com/49036561/184556151-633d820e-9644-4883-8881-baeb6d793361.png) Version: Firefox 103 on Ubuntu Linux ![Screenshot_20220814_234819](https://user-images.githubusercontent.com/49036561/184556155-e3d3988c-0f01-4b9f-8b75-b35b352c5a94.png)

I wanted to mention that configuring tsconfig as ```json "jsx": "react", "jsxFactory": "h", "jsxFragmentFactory": "h.Fragment", ``` allows me to use fragments with vhtml even though #33 is not merged. I...

@developit Hey I'm using vhtml and quite liking it but I happened to look at some of these open pull requests and issues, and it looks like development has stalled...

@johannesodland You are correct that this PR introduces more problems than it fixes. I forked this project [here](https://github.com/odinhb/stringjsx) in order to fix the outstanding issues with this project. It might...

I'm currently drowning in XML and realized that while webmock has a (perhaps appropriately poorly advertised) configuration flag `show_body_diff`, it only diffs JSON or hashes (depending on the `Hashdiff` gem)....

I created a [gem](https://rubygems.org/gems/specdiff) which monkey-patches WebMock to provide plaintext diffs (in addition to the json/hash/array diffs from hashdiff). Because my XML happens to be indented this was enough to...