Java Threads (Java the Definitive Guide)
This post was migrated from Tistory. You can find the original here. Notes from reading Java the Definitive Guide (Nam-gung Seong). Thread On a single core, running a single task with multiple ...
This post was migrated from Tistory. You can find the original here. Notes from reading Java the Definitive Guide (Nam-gung Seong). Thread On a single core, running a single task with multiple ...
This post was migrated from Tistory. You can find the original here. Relaying between a client and a WebSocket server = acting as both a WebSocket server and a client at the same time. I spent a...
This post was migrated from Tistory. You can find the original here. CLIP (Contrastive Language-Image Pre-Training) https://github.com/openai/CLIP CLIP (Contrastive Language-Image Pre-Training)...
This post was migrated from Tistory. You can find the original here. * Blue items are things to study later Stable Diffusion forward diffusion - Gaussian noise is gradually added to an image un...
This post was migrated from Tistory. You can find the original here. Python Garbage Collector Basically, objects get freed via reference counting, and on top of that, Generational Garbage Collec...
This post was migrated from Tistory. You can find the original here. mapstruct mapstruct is a package that generates code for converting between dto and entity. //build.gradle dependencies { .....
This post was migrated from Tistory. You can find the original here. Generated code for SuperBuilder @SuperBuilder @ToString public class BuilderTestDto { private String one; private Str...
This post was migrated from Tistory. You can find the original here. Connecting to MongoDB // application.properties spring.data.mongodb.host= ~~ spring.data.mongodb.port=27017 spring.data.mong...
This post was migrated from Tistory. You can find the original here. Looking at it in terms of layers: JDBC (Java Database Connectivity): The API (interface) Java provides for accessing a datab...
This post was migrated from Tistory. You can find the original here. Deadlock Conditions for occurrence Mutual exclusion - A resource can only be used by one process at a time. Hold and ...