- Docker Machine
- Docker Gitlab
- Docker Gitlab-CI
- Docker Gitlab-CI Runner
- Gitlab CI con TOX y pytest
- Readthedocs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python Tips and Tricks | |
## Set union and intersection | |
```python | |
>>> set("abcd") & set("cdef") | |
set(['c', 'd']) | |
>>> set("abcd") | set("cdef") | |
set(['a', 'c', 'b', 'e', 'd', 'f']) | |
``` |
I had some troubles using Python 3.3 in Ubuntu running on x86_64 architecture. This gist is just a reminder of how I solved it.
- Get the source:
wget http://python.org/ftp/python/3.3.0/Python-3.3.0.tar.bz2
- Untar it:
tar jxf ./Python-3.3.0.tar.bz2
cd Python-3.3.0
NewerOlder