[-] hosaka@programming.dev 2 points 3 days ago

If only it wasn't paywalled

[-] hosaka@programming.dev 2 points 1 week ago

HTMX is great by I don't think it's what OP needs since the input and desired output is not hypermedia in the first place.

[-] hosaka@programming.dev 3 points 1 week ago

Honestly not sure about Swagger, I've only ever used swagger-ui to show the API docs on a webpage. OpenAPI as a standard and openapi-generator are not abandoned and quite active. I'll give you an example of how I use it.

I have a FastAPI server in python that defines some endpoints and data models that it can work with, it exports an openapi.json definition. I also have a common schemas library defined with pydantic that also exports an openapi.json (python was chosen to make it easier for other team members to make quick changes). This schemas library is also imported in the FastAPI app, basically only the data models are shared.

I use the FastAPI/openapi.json to generate C++ code in one application (the end user app) using the openapi-generator-cli, serialize/deserialize is handled by the generated code, since the pydantic schema is a dependency of the FastAPI server, both the endpoints and data models get generated. The pydantic/openapi.json is also used by our frontend written in typescript to generate data models only since the frontend doesn't need to call FastAPI directly but it has an option to in the future by generating from FastAPI/openapi.json instead.

This ensures that we're using the same schema across all codebases. When I make changes to the schema, the code gets re-generated and included in the new c++/web app builds. There's multiple ways to go about versioning, but for data only schema I'd just keep it backwards compatible forever (by adding new props as optional field rather than required and slowly deprecating/removing props that are no longer used).

I found this to be more convoluted than just using something like gRPC/Protobuf (which can also be serialized from JSON), I've used it before and it was great. But for other devs that need to change a few lines of python and not having to deal with protobuf compiler, it's a more frictionless solution at the cost of more moving parts and some CICD setup on my side.

[-] hosaka@programming.dev 6 points 1 week ago

Use Open API schema. You can define data models and endpoints or just the models, I do this at work. Then generate your code using openapi-generator.

[-] hosaka@programming.dev 7 points 2 months ago* (last edited 2 months ago)

I think it's is not aimed to protect against potential attacks, this is aimed at a developer using/writing modules of code. This is not a security guard

[-] hosaka@programming.dev 1 points 2 months ago

Also allows you to use hardware acceleration for inference. Quite a comprehensive set of tools actually, also the new revamped UI is on the horizon with version 0.14

[-] hosaka@programming.dev 2 points 7 months ago

Yeah it's a ci/cd runner, using a tool called "act". I self-host forgejo and the runner is a docker-in-docker container, but one could set it up with the public forgejo as well. It's pretty neat!

[-] hosaka@programming.dev 3 points 7 months ago

Did exactly this recently and it's been quite good. Forgejo-runner was a bit tricky to setup but overall a great experience.

[-] hosaka@programming.dev 17 points 9 months ago

It's a reader assistance, some paid for tool that highlights parts of a word, can't recall what it's called...

[-] hosaka@programming.dev 5 points 11 months ago

Can't you just install the extension (vsix is the file extension I think) package manually in vscodium?

[-] hosaka@programming.dev 1 points 1 year ago

Yeah you're totally right. Nonetheless the use case has it's place. People buy and use hobbyist hardware, and this is a market on its own.

[-] hosaka@programming.dev 2 points 1 year ago

Take a look at micropython, some drivers are writing in pure python, I've written a display driver previously

view more: next ›

hosaka

joined 1 year ago