(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
--- strongswan-5.2.1/debian/rules 2014-10-27 14:36:53.659872404 +0300 | |
+++ strongswan-5.2.1/debian/rules 2014-10-27 15:10:07.003054721 +0300 | |
@@ -15,7 +15,7 @@ | |
--enable-ha \ | |
--enable-led --enable-gcrypt \ | |
--enable-test-vectors \ | |
- --enable-xauth-eap --enable-xauth-pam \ | |
+ --enable-xauth-eap --enable-xauth-pam --enable-xauth-noauth \ | |
--enable-cmd \ | |
--enable-certexpire \ |
# python ep2011_video.py | tee ep2011_video.txt | |
import httplib2 | |
import urlparse | |
from BeautifulSoup import BeautifulSoup | |
BASE_URL = 'http://ep2011.europython.eu/' | |
SCHEDULE_URL = 'http://ep2011.europython.eu/p3/schedule/ep2011/' | |
headers = { |
""" | |
This fabric file makes setting up and deploying a django application much | |
easier, but it does make a few assumptions. Namely that you're using Git, | |
Apache and mod_wsgi and your using Debian or Ubuntu. Also you should have | |
Django installed on your local machine and SSH installed on both the local | |
machine and any servers you want to deploy to. | |
_note that I've used the name project_name throughout this example. Replace | |
this with whatever your project is called._ |