Jan Klimo

Results 19 issues of Jan Klimo

Given the following example URL: ```ruby url = "https://i.guim.co.uk/img/media/97b07b907a75e7f1b4aecb092f8181ca63d0ad44/2_254_1183_709/master/1183.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=4c9af90b3d91c2269bad342e6b78d577" addressable_uri = Addressable::URI.parse(url) addressable_uri.normalize.to_s => "https://i.guim.co.uk/img/media/97b07b907a75e7f1b4aecb092f8181ca63d0ad44/2_254_1183_709/master/1183.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom,left&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=4c9af90b3d91c2269bad342e6b78d577" ``` normalization changes `overlay-align=bottom%2Cleft` to `overlay-align=bottom,left`. Looks harmless but this change results in getting a...

Accepted

Given the following index (Postgres): ```ruby add_index :properties_images, [:property_id, :position], unique: true ``` sequential updates will not be used (and reordering always fail) unless explicitly specified: ```ruby acts_as_list scope: :property,...

Is there a way to currently (or in the future) make the contract aware of the functions it supports? Example: Thanks to [`TypeChain`](https://github.com/ethereum-ts/TypeChain) we have a generated contract type which...

We're migrating away from `react-google-maps` and hit the roadblock of not having the [`MarkerWithLabel`](https://tomchentw.github.io/react-google-maps/#markerwithlabel) support. Is this on the roadmap? Didn't see it mentioned in #18 Thanks!

[`esbuild`](https://esbuild.github.io/) is at least 100x faster than webpack. If viable, it allows us to bundle faster and keep the config simpler. It's also a step towards Rails 7 where it...

After upgrading to 4.0.2, my app fails to authenticate and load as an embedded app (using ngrok). After a series of redirects it fails: This was working normally under v3.2.0...

Hi Stephen, I was wondering if you'd expect sound to work on iOS 15.6. I tried [your translator](https://morsecode.world/international/translator.html) with Chrome, Safari, and FF but no luck.

#### Problem The default error message of `validate_mime_type_inclusion` can be confusing to the end user. To give a specific recent example, we validate mime type to be `text/csv`. When a...

### Describe the feature Report upload errors that trigger multipart upload abort. In this code, the original errors get lost if the exception is raised while aborting the upload. https://github.com/aws/aws-sdk-ruby/blob/0c9cf8177e0476a415e28aa7140d3bc91a75bb6e/gems/aws-sdk-s3/lib/aws-sdk-s3/multipart_stream_uploader.rb#L98-L111...

feature-request
needs-triage

This would be a quick win since the package is written in TS. Something like this could do the trick: ```json { "scripts": { "build": "tsup ./src/index.ts --format esm,cjs --dts...