Tamas

Results 26 comments of Tamas

Hi, I started an extension under the quarkiverse umbrella to add native image support using quarkus: https://github.com/quarkiverse/quarkus-jdbi One part of the extension would be an integration test which would try...

Thank you for the clarification. Did you reached POC/kind of usable state? I'm thinking of the same ideas plotted here, with additional ECDH/RSA key exchange between the nodes. Probably a...

I also think supporting percentages based on input and remainder would be useful. I'm not using sankey for budgets, but for information flow. It is a hurdle to rewrite the...

As @nowthis is kind of absent from his homepage, twitter I think it is fair to assume that this project is not maintained. Let's see what happens, if we can...

In case of OUTPUT, then the progress marker is shown while exporting. But in case of importing all I see is "COPY 10000" No way of knowing whether i can...

Sure:-) I'm using these exports as reference also. Others could install it for their machines. Anyhow just an idea.

Would you accept pull request for this?

I'm using this script to generate all the types into one file: ```javascript import { compileFromFile } from 'json-schema-to-typescript' const directoryTree = require('directory-tree'); const fs = require("fs"); fs.writeFileSync('src/types.d.ts', "/* tslint:disable...

The closest I found so far was: "elements": { "type": "array", "items": { "$ref": "Element.json", "tsType": "Element" } }, Additionally my .js script puts everything into one definition file at...

{ "type": "object", "properties": { "id": { "type": "string", "example": "3445344367kj" }, "ReservationKind": { "enum": ["DateOnly", "Exact"], "tsEnumNames": ["DateOnly", "Exact"] }, "name": { "type": "string" } }, "required": ["ReservationKind", "name"]...