Recent Posts

Python - For / Else

less than 1 minute read

```python def solution(skill, skill_trees): answer = 0

Python - Class advanced with Super

1 minute read

When Create Child class, send the parent class as a parameter when creating the child class Child class will get __init__ and functions of Parent’s

Flask - Debug

less than 1 minute read

Turn on Debug mode (venv) (base) ➜ microblog git:(master) ✗ export FLASK_DEBUG=1 (venv) (base) ➜ microblog git:(master) ✗ flask run