Ragnar Rova

Results 24 issues of Ragnar Rova

The resize method in bimg gives moiré patterns when resizing from 1920x1080 to 480x270 with the following original image: ![moire](https://user-images.githubusercontent.com/887132/56143294-8e668400-5fa0-11e9-9470-042d3950bcda.jpg) When resizing to 480x270 there are moiré patterns: ![moire-480](https://user-images.githubusercontent.com/887132/56143354-af2ed980-5fa0-11e9-937f-931774fc226d.jpeg) When...

Apparently it is valid SDL to use `&` separator between interfaces when implementing multiple interfaces instead of comma. This is currently not supported: `type Book implements Content & Node ...`...

Some fields might yield columns which are reserved words in SQL, like `cast`. Maybe quote these column names or prefix them with something.

By mistake we often launch multiple copies of the app just because we want to change mob settings. It would be great if the app detected that an instance is...

Is there any migration tool that will help me go from yaml to kotlin dsl?

I want to customize the app icon adding `--icon src/main/resources/java.icns` to the jpackage image options using ```kotlin jlink { jpackage { imageOptions = listOf("--icon", "src/main/resources/java.icns") } } ``` But I...

Autodetect and deserialize messages in smile format https://github.com/FasterXML/smile-format-specification

Views are dumped by pg_dump as one long line, impossible to read. See discussion here (patch in discussion never seemed to make it to postgresql tree): http://thread.gmane.org/gmane.comp.db.postgresql.devel.general/198523 Can pg_extract pretty-print?

feature request
looking for contributor development

Failure to run prepare_helm_release.sh on darwin arm64 ### Motivation Tried to run ```bash ./scripts/pulsar/prepare_helm_release.sh -n mynamespace -k pulsar ``` Fails because scripts gets a 404 when downloading a pulsarctl release...

Currently it is not possible to add custom field visibility according to https://www.graphql-java.com/documentation/v15/fieldvisibility/ graphql.kickstart.tools.SchemaParserBuilder does not expose a setting for custom field visibility, nor does it expose the internals (GraphQLCodeRegistry.Builder)...