Aggelos Bellos
Aggelos Bellos
PR that adds the examples in the `learn.openapis.org`: https://github.com/OAI/learn.openapis.org/pull/102 I haven't opened a PR yet that cleans-up this repo.
Unfortunately, this seems not to be so easy. Our `js/respec-oai.js` file loads this css file `https://www.w3.org/StyleSheets/TR/2016/base.css` which overrides most styles. There is a `https://www.w3.org.org/StyleSheets/TR/2026/dark.css` but even if we add it,...
Hi @pavelkornev, I used some of your CSS in this [PR](https://github.com/OAI/OpenAPI-Specification/pull/4268) to continue on this work. If you have already a PR that I missed then I can close mine...
> > Hi [@pavelkornev](https://github.com/pavelkornev), I used some of your CSS in this [PR](https://github.com/OAI/OpenAPI-Specification/pull/4268) to continue on this work. If you have already a PR that I missed then I can...
I think this is a duplicate of this one https://github.com/phpstan/phpstan/issues/3770
I managed to make some progress on this but I am not sure if this is the correct way. `PHPParser` stores the original name in the attributes, so it is...
I have created a custom rule that does this https://github.com/Bellangelo/phpstan-require-file-exists except that it handles `include`s the same way as `require` ( which might be wrong ). I will try to...
@norberttech I think we should investigate if we should offload to the sqlite only the necessary fields that are used for sorting instead of inserting the whole row. Then, based...
The main reason why I was trying not to store a serialized row in the database is that serialization is also a really expensive operation. But, your arguments seem valid...
Do we want the datasets to be mainly a static file that we manipulate or maybe we could utilize libraries such as https://fakerphp.org/ so we can add some controllable randomness...