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.
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....
Create Continuous Integration (CI) Pipeline in Gitlab Agenda What is Continuous Integration (CI)? What it is the application? How does a CI Pipeline work? What do I need for a CI Pipeline? What steps are necessary? Small Project in Python Server Configuration Python Project Gitlab CI Yaml File stages: - test python_test: stage: test image: python:3.9 script: - pip3 install pipenv - pipenv install - pipenv run python3 -m pytest Server Configuration Server Update # SSH Login ~ ssh root@IP-Adresse # Update Server root@server:~$ apt-get update && apt-get upgrade Create new user # Create new user root@server:~$ useradd -m -s /bin/bash youtube # Change Password root@server:~$ passwd youtube # Add user to sudo Group root@server:~$ usermod -aG sudo youtube Disable root access per ssh # Edit SSH Config youtube@server:~$ sudo vim /etc/ssh/sshd_config # inside vim /PermitRootLogin yes mit no ersetzen # on your keyboard :wq # Restart ssh service root@server:~$ sudo systemctl restart ssh Password-less login + Installation of Docker # on your Laptop / PC ~ ssh-copy-id youtube@server-IP # Login mit youtube ohne Passwort # Installation of Docker youtube@server:~$ sudo apt-get install -y docker....