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
PID = 'b04drklx' | |
for date in arrow.Arrow.range('day', arrow.now(), arrow.now().replace(weeks=1)): | |
soup = BeautifulSoup(get_contents('http://www.bbc.co.uk/cbeebies/programmes/schedules/%s' % date.format('YYYY/MM/DD'))) | |
for series in soup.findAll('span', resource=re.compile(PID)): | |
root = series.findParents(typeof="BroadcastEvent")[0] | |
season = root.find(typeof='TVSeason') | |
start_time = root.find(property='startDate')['content'] | |
title = season.nextSibling.string | |
series_num = season.find(property='name').string | |
episode_num = root.find('abbr').find(property='position').string |
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
import argparse | |
parser = argparse.ArgumentParser() | |
parser.add_argument('args', nargs='*') # from __init__.py execute() | |
parser.add_argument('args', nargs='+') # from base.py LabelCommand add_arguments | |
print parser.parse_args(['foo1', 'foo2', 'foo3', 'foo4']) | |
# Outputs Namespace(args=['foo4']) |
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
Hanukah | |
[...] | |
1902-12-24 | |
1905-12-22 | |
1908-12-18 | |
1910-12-25 | |
1913-12-23 | |
1916-12-19 | |
1921-12-25 | |
1924-12-21 |
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
#!/usr/bin/env python | |
""" | |
Microproxy | |
This code is based on http://pastebin.com/mdsAjhdQ based on code based on microproxy.py written by ubershmekel in 2006. | |
Microproxy is a very small HTTP proxy. It relays all bytes from the client to the server at a socket send and recv level. | |
It looks at the Host: header to recognise where to connect to. | |
""" |
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 2 | |
sudo apt-get install python-pip | |
pip install --user virtualenv | |
python ~/.local/bin/virtualenv venv2 | |
# Python 3, option 1 | |
sudo apt-get install python3-pip | |
pip3 install --user virtualenv | |
python3 ~/.local/bin/virtualenv venv3 | |
# Python 3, option 2 | |
sudo apt-get install python3.4-venv |
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
1,2c1 | |
< | |
< <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> | |
--- | |
> <!DOCTYPE html> | |
18a18,58 | |
> <meta name=viewport content="initial-scale=1"> | |
> <style> | |
> @media (max-width: 730px) { | |
> |
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
$ cpanm -L local Catalyst | |
$ cpanm -L local Catalyst::Devel | |
$ cpanm -L local Catalyst::View::TT | |
$ PERL5LIB=local/lib/perl5 local/bin/catalyst.pl MyApp | |
$ cd MyApp/ | |
$ PERL5LIB=../local/lib/perl5 script/myapp_create.pl view Web TT | |
$ vim lib/MyApp/Controller/Root.pm # Change index line to $c->stash->{template} = 'foo.html'; | |
$ PERL5LIB=../local/lib/perl5 script/myapp_server.pl | |
[info] *** Request 1 (0.200/s) [89599] [Thu Oct 8 17:44:14 2015] *** | |
[debug] Path is "/" |
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
from BaseHTTPServer import HTTPServer | |
from SimpleHTTPServer import SimpleHTTPRequestHandler | |
import ssl | |
# Use a higher port if you don't want to have to run as root | |
httpd = HTTPServer(('', 443), SimpleHTTPRequestHandler) | |
httpd.socket = ssl.wrap_socket(httpd.socket, certfile='server.pem', server_side=True) | |
httpd.serve_forever() |
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
> <meta name=viewport content="initial-scale=1.0"> | |
> <style> | |
> @media all and (max-width: 40em) { | |
> body { | |
> display: -webkit-flex; | |
> display: flex; | |
> -webkit-flex-direction: column; | |
> flex-direction: column; | |
> } | |
> body > header { |
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
#http://www.nhs.uk/NHSEngland/Healthcosts/Pages/Prescriptioncosts.aspx | |
Given a user is dispensed a prescription | |
When their age is >= 60 | |
Then the prescription cost should be 0 | |
Given a user is dispensed a prescription | |
And their age is < 16 | |
Then the prescription cost should be 0 |