Welcome to the Blog!
Here you find a broad range of different tutorials and solutions which deal with programming and software engineering. Maybe a suitable solution helps you :) Have fun reading it! You can also checkout the german version.
Here you find a broad range of different tutorials and solutions which deal with programming and software engineering. Maybe a suitable solution helps you :) Have fun reading it! You can also checkout the german version.
While importing some old images to immich via the cli like immich upload -r some_path. I faced the issue that the thumbnails of the images were broken due to a timezone issue. You could also have seen this in the logs. I was able to resolve this issue by adding the TZ Variable to the .env file for the docker-compose config.
If you are developing multiple components in Vue, you might be facing the situation that you have the following folder structure: . โโโ src/ โโโ components/ โโโ utils/ โ โโโ some_cool_functions.js โโโ component_a.vue โโโ component_b.vue $ cat some_cool_functions.js export function function_b(id) { console.log("Do some stuff in function a " + id) } export function function_b(id) { console.log("Do some stuff in function b " + id) } <template> <div> .... <v-btn @click="function_a(item....
Make sure you have an AMI where the SSM Agent is installed. If this is not the case update the user-data to install the agent VPC: Instance is running in a private subnet -> Ensure you have a NAT Gateway Instance is running in a public subnet -> Internet Access must be given / Ensure you have a Internet Gateway In both cases you need to allow HTTPS outgoing traffic (this means 443 with 0....
With the Software PDFScanner you can automatically straighten PDFs which you have scanned. Just enable the Deskew after scan option.
Update one to many field with Graphql in GraphCMS Currently I am working on a migration from a Django based website to a replace it with GraphCMS. As we have lots of entries in our database a manuel migration is not a feasible option and would lead to errors during the migration process. Therefore, I want to transfer the data between the two systems with standardized graphql / api calls....