├── .github └── ISSUE_TEMPLATE │ └── talk.md ├── LICENSE.md ├── README.md ├── archive.md └── talk-materials ├── 2022-03-01--functional-programming-in-python ├── README.md ├── functional-python ├── github-issue.md ├── images │ └── 18fascii.png ├── iterm_scripting.py ├── outline.txt └── pres43x13.vim ├── algorithms-running-time └── Algorithms Lecture.pdf ├── analytics-cubes-rollups ├── README.md ├── analytics_cubes_and_rollups.ipynb └── setup.sql ├── debug-better └── README.md ├── etl ├── etl-lessons-learned.ipynb ├── images │ ├── alas.jpg │ ├── api_masking.jpg │ ├── data_act_flow.jpg │ ├── masking_views.jpg │ └── original_plan.jpg ├── install_extensions.sh └── requirements.txt ├── git-flag-p ├── README.md └── slides.pdf ├── jupyter-notebook ├── .gitignore ├── EXTRA.md ├── INSTALL.md ├── README.md ├── assets │ └── img │ │ ├── anaconda-launcher.png │ │ ├── architecture2.png │ │ └── jupyter-r.png ├── examples │ ├── Background and Use Cases.ipynb │ ├── College Scorecard - Simple Widgets.ipynb │ ├── Exploring Graphs.ipynb │ ├── R-EITI.ipynb │ ├── _render_html.ipynb │ ├── css │ │ └── presentation.css │ ├── dc.png │ ├── delivery.ipynb │ ├── mass.png │ ├── ohio.png │ └── tour.ipynb ├── requirements.txt └── start_local_server.sh ├── login-dot-gov-encryption └── 20170227-Login.gov-Privacy-Tech-Talk.pdf ├── pandas-munging ├── README.md ├── data │ ├── budget_functions.csv │ ├── hist10z1.xls │ ├── outlays.csv │ ├── outlays_done.csv │ └── pandas_data_munging.db ├── environment.yml ├── img │ ├── panda.png │ └── pandas-ecosystem.png └── pandas_data_munging.ipynb ├── pytest └── talk.html └── vuln-scanning ├── README.md ├── VulnScanPolicy.policy ├── juiceshop-vulnerabilities.html └── vuln-scanning.pdf /.github/ISSUE_TEMPLATE/talk.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Submit a talk 3 | about: Submit a talk idea that you will present 4 | title: 'Tech Talk: [Your Title Here]' 5 | labels: 'tech talk' 6 | assignees: '@geekygirlsarah,@julialeague' 7 | 8 | --- 9 | 10 | # Tech Talk Submission 11 | 12 | Thanks for offering to give a talk at a Tech Talks meeting! We just need a bit of information from you. 13 | 14 | ## Your Name 15 | 16 | 17 | 18 | ## What's your talk title? 19 | 20 | 21 | 22 | ## What's your talk about? 23 | 24 | 25 | 26 | ## How long is your talk? 27 | 28 | - [ ] Lightning talk (5-10 minutes) 29 | - [ ] Short tech talk (20-25 minutes) 30 | - [ ] Long tech talk (40-50 minutes) 31 | 32 | ## Do you have any preferred dates for it? 33 | 34 |