[Awesome Rust] jsonapi : Serialize, deserialize and work with JSON-API data
jsonapi
jsonapi
is the Rust library for serialization, deserialization and working with JSON-API data
This is an implementation of the JSON-API v1 specification at jsonapi.org - http://jsonapi.org/.
[Rust SeaORM FAQs] SeaORM integrate Rocket support
sea-orm-rocket
sea-orm-rocket
is the crate for SeaORM integrate Rocket support.
SeaORM is a relational ORM to help you build light weight and concurrent web services in Rust
Rocket is a web framework for Rust. If you’d like, you can think of Rocket as being a more flexible, friendly medley of Rails - https://rubyonrails.org/, Flask - https://palletsprojects.com/p/flask/, Bottle - https://bottlepy.org/docs/dev/index.html, and Yesod - https://www.yesodweb.com/. We prefer to think of Rocket as something new. Rocket aims to be fast, easy, and flexible while offering guaranteed safety and security where it can. Importantly, Rocket also aims to be fun, and it accomplishes this by ensuring that you write as little code as needed to accomplish your task.
[Java - Spring Boot] Spring Boot FAQs
Spring Boot FAQs
[Ruby on Rails (RoR)] asdf install Ruby 3.x and Rails 7.0 on macOS
asdf, Ruby 3.x and Rails 7.0
Rails 7.0 has been years in the conceptual making. It’s the fulfillment of a vision to present a truly full-stack approach to web development that tackles both the front- and back-end challenges with equal vigor. An omakase menu that includes everything from the aperitif to the dessert.
[Java - Lombok] Lombok plugs into your editor and build tools to spicing up your java automatically
lombok
Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.
Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more.
lombok facilitates many tedious tasks and reduces Java source code verbosity by annotation processing through APT.
[Container - Podman] Basic Setup and Use of Podman in a Rootless environment
Podman Rootless
Prior to allowing users without root privileges to run Podman, the administrator must install or build Podman and complete the following configurations.
[Container - Podman] Getting Started with Podman
Podman
Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux System. Containers can either be run as root or in rootless mode.
Simply put: alias docker=podman
.
More details here - https://podman.io/whatis.html.
[Container - Podman] Podman Compose - An implementation of Compose Spec with Podman backend
Podman Compose
Podman Compose is an implementation of Compose Spec with Podman backend. This project focus on:
-
Rootless
-
Daemonless process model, we directly execute
podman
, no running daemon.
[Rust - Docker] Docker build and run Java Spring Boot Web app with multi-stage builds
Java Spring Boot Docker with multiple-stage builds
Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”.
Multistage builds are useful to anyone who has struggled to optimize Dockerfiles while keeping them easy to read and maintain. See Use multi-stage builds | Docker Documentation - https://docs.docker.com/develop/develop-images/multistage-build/ to learn more.