Hidde-Jan Jongsma
Hidde-Jan Jongsma
Android studio on 3.6.3 installs command line tools in `$USER/Library/Android/sdk/cmdline-tools/latest/bin` instead of `$USER/Library/Android/sdk/tools/bin`. This means it can't find `sdkmanager` if the `ANDROID_HOME` variable is set.
In the README, a `CountLoader` example is named, but it's not particularly detailed: ```ruby CountLoader.for(Shop, :smart_collections).load(context.shop_id), CountLoader.for(Shop, :custom_collections).load(context.shop_id), ``` A clear example that demonstrates "You can also batch other stuff,...
### Description The documentation for [custom HTTP routes](https://slack.dev/bolt-js/concepts#custom-routes) does not mention on which port the route will become available. It will be on the `installerOptions.port` (which defaults to 3000), but...
### Describe the bug When using vitest-suggested testing libraries, I can't successfully mock `useRoute` and `useRouter` from the `vue-router` package. I'm using: - jsdom - @testing-library/vue Any time I run...
### Environment Ruby: 3.1.2 Rails: 7.0.3.1 Semantic Logger: 4.11.0 Rails Semantic Logger: 4.10.0 ### Expected Behavior Using the default behavior, SemanticLogger will add a File Appender and an IO appender....
**Describe the bug** Currently, there is (some) support for monorepos, but how to actually get extension working for monorepos is unclear. The monorepo examples in `/samples` don't work out of...
This is a WIP branch where I'm refactoring a bit. We currently perform all http requests sequential, which takes a lot of time per submission and limits our ability to...
`$.format` formats `Infinity` in a very peculiar way. I haven't checked it in other cultures, but I suspect `$.format(Infinity, 'n0', 'en-GB')` would yield `"In.fin.ity"`. Although I don't think a lot...
### Actual Behavior When trying to pull an image with an SBOM layer (for instance [rekor-server](https://github.com/sigstore/rekor/pkgs/container/rekor%2Frekor-server/174358318?tag=sha256-b3d4c3b930f29a2fafd7274041e13414d68856a070f7d5380ea2a9f083037da3.sbom)), the pull command results in an error ### Steps to Reproduce Run the Following...
Hi, When trying to install django-native-tags using pip, the line `long_description=open('README.rst').read()` in `setup.py` raises an IOError (on Mac OS X). Changing it to `long_description=open('./README.rst').read()` solved the problem for me. I'm...