Skip to content

Instantly share code, notes, and snippets.

View fespino's full-sized avatar
🤓

Francisco Espino fespino

🤓
View GitHub Profile
@fespino
fespino / Python CI Docker Gitlab.md
Last active October 25, 2017 23:22
Python CI with Gitlab
# 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'])
```
@fespino
fespino / README.md
Last active August 29, 2015 14:03 — forked from jsuwo/BankAccount.java

Continuous Integration with Jenkins on Amazon EC2

Videos

Initial Setup

Fixing Locales in Ubuntu 13.04 on Amazon EC2

@fespino
fespino / py3.3_ubu12.04_x86_64.md
Last active December 17, 2015 20:09
Python 3.3 installation in Ubuntu 12.04 x86_64

Python 3.3 install in Ubuntu 12.04 x86_64

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.

Getting the source

  1. Get the source: wget http://python.org/ftp/python/3.3.0/Python-3.3.0.tar.bz2
  2. Untar it: tar jxf ./Python-3.3.0.tar.bz2
  3. cd Python-3.3.0