I’ve always loved programming IDEs that have good debugging capabilities. I like using PyCharm’s debugging capabilities when it comes to debugging or tracing my local variables in my Python functions. The problem I run into nowadays, is that I have a program that I want to run continuously, but I...
[Read More]
(SOLVED) - cant subtract offset-naive and offset-aware datetimes
How to solve datetime offset in python, and what good practice you should be doing when dealing with datetime in python.
Today I came across this issue:
[Read More]
How to use v-model in Vue 3 to pass values between child and parent components (BONUS - Example with Vuetify)
This is a guide on how Vue 3 v-model. Learn how to pass props and emit values effectively and efficiently in order to update data
It’s been a good three years since I last wrote something, but anyways here we are.
[Read More]
Ansible 2 - How to set the group dynamically in a playbook
Last Post we learnt about setting a selecting a single host dynamically via playbook.
In this post we will look at how ou can set groups dynamically (workaround that does the same job)
[Read More]
Ansible 2 - How to set the host dynamically in a playbook
A guide on how you can set your host dynamically so that you can re-use your playbook and avoid duplicate playbooks
Sometimes we might have a scenario where we want an ansible playbook’s host to be set dynamically.
We use the add_host module from ansible to do this: https://docs.ansible.com/ansible/latest/modules/add_host_module.html
[Read More]