Published onMarch 27, 2022Understanding Shallow and Deep Copy in Python with the `copy` ModulePythonData-Structure`Shallow copy` copies only the outer shell, whereas `deep copy` copies everything.
Published onFebruary 22, 2022Understanding CSS Box Size and `box-sizing`CSS`box-sizing: border-box;` ensures that the width and height include both borders and padding.
Published onJanuary 6, 2022Understanding Flask's `@app.route` decoratorFlaskFlask's @app.route maps URLs to functions.