Image created by AI through stable diffusion

Symbolic link in Linux and Windows

Dual Booting Windows and Linux: Sharing AI Models I’ve been using both Windows and Linux for a long time, with a dual boot system that includes Windows 10 and Ubuntu 22.04. I use ComfyUI to generate AI images for my blog posts. Each AI model used by ComfyUI contains around 6 GB of data. To avoid having multiple copies of the same model in both operating systems, I’ve decided to create a shared partition and use symbolic links to point to the model in both OS....

May 11, 2024 · 1 min · Vanilas, GitHub Copilot
Image created by AI through stable diffusion

Using the set() Function on Class Objects in Python

Our team needs to design an application that retrieves data from a database using an ID provided in a request. The goal is to compare the data from the request with the results from the database, and identify any data that is not found in the database. This missing data should then be sent back in response to the request. In our discussions about potential solutions, we determined that we could use the set() function to compare the data from the request with the data from the database....

May 9, 2024 · 4 min · Vanilas, GitHub Copilot