-
6 |
7 | {{for student in sponsored_students}}
8 |
- {{html_quote(student['name']) | html}}, 9 | {{html_quote(student['org']) | html}}, 10 | {{html_quote(student['location']) | html}} 11 | 12 | {{endfor}} 13 | 14 |
├── .gitignore ├── publisher ├── mail │ ├── mail_authors_example.txt │ ├── mail_authors.py │ ├── templates │ │ ├── author-revision.txt.tmpl │ │ └── reviewer-invite.txt.tmpl │ ├── email.json │ ├── mail_reviewers.py │ └── _mailer.py ├── _static │ ├── status.sty │ ├── google_analytics.js │ ├── scipy-proc.css │ ├── proc_links.js │ ├── scipy.sty │ ├── common.css │ └── screen.css ├── _templates │ ├── proceedings.bib.tmpl │ ├── students.html.tmpl │ ├── organization.html.tmpl │ ├── article.bib.tmpl │ ├── students.tex.tmpl │ ├── organization.tex.tmpl │ ├── toc.tex.tmpl │ ├── copyright.tex.tmpl │ ├── title.tex.tmpl │ ├── index.html.tmpl │ ├── proceedings.tex.tmpl │ ├── article.html.tmpl │ ├── header.html.tmpl │ └── cover.svg ├── writer │ ├── sphinx_highlight.py │ ├── code_block.py │ ├── rstmath.py │ └── __init__.py ├── options.py ├── tempita │ ├── compat3.py │ └── _looper.py ├── conf.py ├── Makefile ├── build_html.py ├── build_papers.py ├── build_template.py └── build_paper.py ├── adam_hughes ├── ss.png ├── fiber.gif ├── sensor.png ├── setup.png ├── system.png ├── varplot.png ├── antibody.png ├── comp_nps.png ├── glyc_area.png ├── interface.png ├── sem_dual.png ├── biotin_area.png ├── double_fib.png └── interface_complex.png ├── simon_lund ├── cphvb.pdf ├── knn_speedup.pdf ├── stencil_exp.pdf ├── stencil_speedup.pdf ├── swater_speedup.pdf ├── ufunc_broadcast.pdf └── jacobi_fixed_speedup.pdf ├── jacob_frelinger ├── bem.png ├── comp.png ├── flow.jpg ├── hist.png ├── heatmap.png ├── mixturemodel.png ├── transform_hist.png └── jacob_frelinger.rst ├── matthew_rocklin ├── dag.pdf ├── stack.pdf ├── impact.pdf ├── stack_full.pdf ├── uncertain-dag.pdf ├── data-assimilation.pdf ├── joint-distribution.pdf ├── cannon-deterministic.pdf ├── velocity-distribution.pdf ├── cannon.dot ├── cannon-uncertain.dot └── matthew_rocklin.rst ├── tom_bertalan ├── cycle.png ├── n-up.png ├── testing.png ├── restriction.png ├── uss-1728-multiple_cycles.png ├── uss-8000-multiple_cycles.png └── mg_scipy_demo.py ├── geoffrey_poore └── myplot.pdf ├── iqbal_mohomed ├── robot1.jpg ├── robot2.jpg ├── robot4.png ├── robot5.png ├── robot6.png └── iqbal_mohomed.rst ├── jacob_barhak ├── Figure1.png └── Figure2.png ├── alejandro_weinstein ├── army.pdf ├── gleick.pdf ├── RL_scheme.pdf ├── isomap_lsa.pdf ├── three_rooms_eigvec.pdf └── three_rooms_graph.pdf ├── cyrus_harrison ├── overview.pdf ├── climate-skin-gcrm-1.png ├── climate-skin-gcrm-2.png ├── streamline_example.png ├── embedded-example-uvcdat.png ├── dup_word_check.py ├── listing_6_invoke_cell_average_example.py ├── listing_2_import_example.py ├── listing_4_qtdesigner_example.py ├── custom_widget.ui ├── listing_1_streamline_example.py ├── listing_5_cell_average.vpq └── listing_3_pyside_example.py ├── robert_johansson ├── figure1.pdf ├── figure2.pdf ├── figure3.pdf ├── figure4.pdf └── figure5.pdf ├── aakash_prasad ├── code_sample.png └── strong_scaling_revised.png ├── anthony_scopatz_flmake ├── reproduce_flowchart.dia └── reproduce_flowchart.png ├── make_paper.sh ├── reviews ├── README ├── submission-template.rst ├── invite-abstract-reviews.rst ├── invite-paper-reviews.rst └── review-template.rst ├── LICENSE.txt ├── README.md └── scipy_proc.json /.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | _build 3 | *.pyc 4 | *~ 5 | -------------------------------------------------------------------------------- /publisher/mail/mail_authors_example.txt: -------------------------------------------------------------------------------- 1 | ./mail_authors.py --template author-revision.txt 2 | -------------------------------------------------------------------------------- /adam_hughes/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/ss.png -------------------------------------------------------------------------------- /publisher/_static/status.sty: -------------------------------------------------------------------------------- 1 | % DRAFT ?? 2 | \usepackage{draftwatermark} 3 | \SetWatermarkLightness{0.95} 4 | -------------------------------------------------------------------------------- /simon_lund/cphvb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/simon_lund/cphvb.pdf -------------------------------------------------------------------------------- /adam_hughes/fiber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/fiber.gif -------------------------------------------------------------------------------- /adam_hughes/sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/sensor.png -------------------------------------------------------------------------------- /adam_hughes/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/setup.png -------------------------------------------------------------------------------- /adam_hughes/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/system.png -------------------------------------------------------------------------------- /adam_hughes/varplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/varplot.png -------------------------------------------------------------------------------- /jacob_frelinger/bem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/jacob_frelinger/bem.png -------------------------------------------------------------------------------- /matthew_rocklin/dag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/matthew_rocklin/dag.pdf -------------------------------------------------------------------------------- /tom_bertalan/cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/tom_bertalan/cycle.png -------------------------------------------------------------------------------- /tom_bertalan/n-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/tom_bertalan/n-up.png -------------------------------------------------------------------------------- /adam_hughes/antibody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/antibody.png -------------------------------------------------------------------------------- /adam_hughes/comp_nps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/comp_nps.png -------------------------------------------------------------------------------- /adam_hughes/glyc_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/glyc_area.png -------------------------------------------------------------------------------- /adam_hughes/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/interface.png -------------------------------------------------------------------------------- /adam_hughes/sem_dual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/sem_dual.png -------------------------------------------------------------------------------- /geoffrey_poore/myplot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/geoffrey_poore/myplot.pdf -------------------------------------------------------------------------------- /iqbal_mohomed/robot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/iqbal_mohomed/robot1.jpg -------------------------------------------------------------------------------- /iqbal_mohomed/robot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/iqbal_mohomed/robot2.jpg -------------------------------------------------------------------------------- /iqbal_mohomed/robot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/iqbal_mohomed/robot4.png -------------------------------------------------------------------------------- /iqbal_mohomed/robot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/iqbal_mohomed/robot5.png -------------------------------------------------------------------------------- /iqbal_mohomed/robot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/iqbal_mohomed/robot6.png -------------------------------------------------------------------------------- /jacob_barhak/Figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/jacob_barhak/Figure1.png -------------------------------------------------------------------------------- /jacob_barhak/Figure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/jacob_barhak/Figure2.png -------------------------------------------------------------------------------- /jacob_frelinger/comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/jacob_frelinger/comp.png -------------------------------------------------------------------------------- /jacob_frelinger/flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/jacob_frelinger/flow.jpg -------------------------------------------------------------------------------- /jacob_frelinger/hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/jacob_frelinger/hist.png -------------------------------------------------------------------------------- /matthew_rocklin/stack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/matthew_rocklin/stack.pdf -------------------------------------------------------------------------------- /tom_bertalan/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/tom_bertalan/testing.png -------------------------------------------------------------------------------- /adam_hughes/biotin_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/biotin_area.png -------------------------------------------------------------------------------- /adam_hughes/double_fib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/double_fib.png -------------------------------------------------------------------------------- /alejandro_weinstein/army.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/alejandro_weinstein/army.pdf -------------------------------------------------------------------------------- /cyrus_harrison/overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/cyrus_harrison/overview.pdf -------------------------------------------------------------------------------- /jacob_frelinger/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/jacob_frelinger/heatmap.png -------------------------------------------------------------------------------- /matthew_rocklin/impact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/matthew_rocklin/impact.pdf -------------------------------------------------------------------------------- /robert_johansson/figure1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/robert_johansson/figure1.pdf -------------------------------------------------------------------------------- /robert_johansson/figure2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/robert_johansson/figure2.pdf -------------------------------------------------------------------------------- /robert_johansson/figure3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/robert_johansson/figure3.pdf -------------------------------------------------------------------------------- /robert_johansson/figure4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/robert_johansson/figure4.pdf -------------------------------------------------------------------------------- /robert_johansson/figure5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/robert_johansson/figure5.pdf -------------------------------------------------------------------------------- /simon_lund/knn_speedup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/simon_lund/knn_speedup.pdf -------------------------------------------------------------------------------- /simon_lund/stencil_exp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/simon_lund/stencil_exp.pdf -------------------------------------------------------------------------------- /tom_bertalan/restriction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/tom_bertalan/restriction.png -------------------------------------------------------------------------------- /aakash_prasad/code_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/aakash_prasad/code_sample.png -------------------------------------------------------------------------------- /alejandro_weinstein/gleick.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/alejandro_weinstein/gleick.pdf -------------------------------------------------------------------------------- /matthew_rocklin/stack_full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/matthew_rocklin/stack_full.pdf -------------------------------------------------------------------------------- /simon_lund/stencil_speedup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/simon_lund/stencil_speedup.pdf -------------------------------------------------------------------------------- /simon_lund/swater_speedup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/simon_lund/swater_speedup.pdf -------------------------------------------------------------------------------- /simon_lund/ufunc_broadcast.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/simon_lund/ufunc_broadcast.pdf -------------------------------------------------------------------------------- /adam_hughes/interface_complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/adam_hughes/interface_complex.png -------------------------------------------------------------------------------- /alejandro_weinstein/RL_scheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/alejandro_weinstein/RL_scheme.pdf -------------------------------------------------------------------------------- /jacob_frelinger/mixturemodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/jacob_frelinger/mixturemodel.png -------------------------------------------------------------------------------- /matthew_rocklin/uncertain-dag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/matthew_rocklin/uncertain-dag.pdf -------------------------------------------------------------------------------- /alejandro_weinstein/isomap_lsa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/alejandro_weinstein/isomap_lsa.pdf -------------------------------------------------------------------------------- /jacob_frelinger/transform_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/jacob_frelinger/transform_hist.png -------------------------------------------------------------------------------- /simon_lund/jacobi_fixed_speedup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/simon_lund/jacobi_fixed_speedup.pdf -------------------------------------------------------------------------------- /cyrus_harrison/climate-skin-gcrm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/cyrus_harrison/climate-skin-gcrm-1.png -------------------------------------------------------------------------------- /cyrus_harrison/climate-skin-gcrm-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/cyrus_harrison/climate-skin-gcrm-2.png -------------------------------------------------------------------------------- /cyrus_harrison/streamline_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/cyrus_harrison/streamline_example.png -------------------------------------------------------------------------------- /matthew_rocklin/data-assimilation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/matthew_rocklin/data-assimilation.pdf -------------------------------------------------------------------------------- /matthew_rocklin/joint-distribution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/matthew_rocklin/joint-distribution.pdf -------------------------------------------------------------------------------- /aakash_prasad/strong_scaling_revised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/aakash_prasad/strong_scaling_revised.png -------------------------------------------------------------------------------- /matthew_rocklin/cannon-deterministic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/matthew_rocklin/cannon-deterministic.pdf -------------------------------------------------------------------------------- /alejandro_weinstein/three_rooms_eigvec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/alejandro_weinstein/three_rooms_eigvec.pdf -------------------------------------------------------------------------------- /alejandro_weinstein/three_rooms_graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/alejandro_weinstein/three_rooms_graph.pdf -------------------------------------------------------------------------------- /cyrus_harrison/embedded-example-uvcdat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/cyrus_harrison/embedded-example-uvcdat.png -------------------------------------------------------------------------------- /matthew_rocklin/velocity-distribution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/matthew_rocklin/velocity-distribution.pdf -------------------------------------------------------------------------------- /tom_bertalan/uss-1728-multiple_cycles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/tom_bertalan/uss-1728-multiple_cycles.png -------------------------------------------------------------------------------- /tom_bertalan/uss-8000-multiple_cycles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/tom_bertalan/uss-8000-multiple_cycles.png -------------------------------------------------------------------------------- /anthony_scopatz_flmake/reproduce_flowchart.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/anthony_scopatz_flmake/reproduce_flowchart.dia -------------------------------------------------------------------------------- /anthony_scopatz_flmake/reproduce_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrjohansson/scipy_proceedings_2012/master/anthony_scopatz_flmake/reproduce_flowchart.png -------------------------------------------------------------------------------- /cyrus_harrison/dup_word_check.py: -------------------------------------------------------------------------------- 1 | import glob 2 | fs = glob.glob("*.rst") 3 | for f in fs: 4 | toks = open(f).read().split() 5 | ntoks = len(toks)-1 6 | for i in range(ntoks): 7 | if toks[i] == toks[i+1]: 8 | print toks[i], toks[i+1] 9 | -------------------------------------------------------------------------------- /publisher/_templates/proceedings.bib.tmpl: -------------------------------------------------------------------------------- 1 | @Proceedings{ {{proceedings['citation_key']}}, 2 | title = { {{proceedings['title']['full']}} }, 3 | booktitle = { {{proceedings['title']['full']}} }, 4 | year = { {{proceedings['year']}} }, 5 | editor = { {{' and '.join(proceedings['editor'])}} }, 6 | isbn = { {{proceedings['isbn']}} } 7 | } 8 | -------------------------------------------------------------------------------- /publisher/mail/mail_authors.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import _mailer as mailer 4 | 5 | args = mailer.parse_args() 6 | config = mailer.load_config('email.json') 7 | 8 | for author in config['authors']: 9 | to = mailer.email_addr_from(author) 10 | mailer.send_template(config['sender'], to, args.template, config) 11 | 12 | print "Mail for %d authors." % len(config['authors']) 13 | -------------------------------------------------------------------------------- /make_paper.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | DIR=$1 4 | 5 | if [[ ! -d $DIR ]]; then 6 | echo "Usage: make_paper.sh source_dir" 7 | exit -1 8 | fi 9 | 10 | python publisher/build_paper.py $DIR 11 | if [ "$?" -ne "0" ]; then 12 | echo "Error building paper $DIR. Aborting." 13 | exit 1 14 | fi 15 | 16 | #cd $OUTDIR 17 | #$TEX2PDF > /dev/null && $TEX2PDF | (python $WD/publisher/page_count.py) 18 | -------------------------------------------------------------------------------- /publisher/_templates/students.html.tmpl: -------------------------------------------------------------------------------- 1 |