This repository contains some small projects I want to take a note about or practice. It is just like a traveler to take a snap shot of everything everywhere. Python is my favorite programming language and it has lots of amazing merits and something shock.
Recently, I add some helper tool for my job to solve some tired mission.
In order to learning python, I think some projects to implement and try hard to complete them. Bascially, there are some librarys or frameworks I want to be familiar with
Recently, I will put some practice about python standard lib, programming concepts or notes about some blogs or posts.
Once I complete some projects, I will make every project structured like..
ex.
proj/
some src files or folder..
requirement.txt
readme.md
Everything you need just pip install or docker-compose if provided docker-compose.yml
In the future, I consider to use docker to encapsulate the env.
we can run a gui application in docker and forward x11 in mac to display gui.
ex.
install XQuartz
IP=$(ifconfig en0 | grep inet | awk '$1=="inet" {print $2}')
xhost + $IP
docker run -d --name firefox -e DISPLAY=$IP:0 -v /tmp/.X11-unix:/tmp/.X11-unix jess/firefox
then you will see the magic..