Journal of my recent activities

Creating snapshots in kvm.

$ virsh
virsh: snapshot-create-as --domain f20 --name 'f20-spice'
virsh: snapshot-list f20
virsh: snapshot-revert f20 --snapshotname f20-spice

spice-guest-tools

Markdown bibliography and referencing [bib]

Inline [bib]
[bib]: https://v4.chriskrycho.com/2015/academic-markdown-and-citations.html

In the footnote [^bib]
[^bib]: https://v4.chriskrycho.com/2015/academic-markdown-and-citations.html

I developed the quantum program in Qiskit SDK, solving the famous Maximum Cut Problem for three nodes, using the Full Adder for counting edges for the oracle.

#qc

Implementing Grover's algorithm for two qubits - with and without ancilla qubit.

#qc

Creating a unified data source for the ERP Production module for comparing normed materials and estimated times versus real usage and worker time.

#erp

Quantum Full Adder completed.

Started the training DNA: Droga Nowoczesnego Architekta

Handling error pages in Flask, not causing the error avalanche.

https://stackoverflow.com/questions/58010436/how-to-render-errors-pages-in-flask-not-causing-errors-loop-from-requested-bluep

#soft #flask

Reverse string in python

txt = "Hello World"[::-1]

#soft #python