-
Notifications
You must be signed in to change notification settings - Fork 0
May 2017 coffee and code #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -310,3 +310,4 @@ GitHub.sublime-settings | |
|
|
||
| ### pythonkc.github.io-src ### | ||
| output | ||
| pelican-sober/ | ||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| Title: PythonKC May 2017 Coffee & Code | ||
| Date: 2017-05-13 00:00 | ||
| Category: Meeting Notes | ||
| Tags: pythonkc, coffee & code | ||
| Summary: Meeting notes for May 2017 PythonKC Coffee & Code | ||
|
|
||
| ```python | ||
| #!/usr/bin/env python3 | ||
| # -*- coding: utf-8 -*- | ||
|
|
||
| from datetime import date | ||
| today = date(2017, 5, 13) | ||
|
|
||
| def greetings(): | ||
| print("Welcome to PythonKC Coffee & Code.") | ||
| print("Today is {}".format(today.strftime("%A, %B %d, %Y"))) | ||
| print("Thanks to the Johnson County Library system for hosting.") | ||
|
|
||
| if __name__ == '__main__': | ||
| greetings() | ||
| ``` | ||
|
|
||
| ## PythonKC Coffee & Code | ||
|
|
||
| * [May 13th 2017](https://www.meetup.com/pythonkc/events/239247016/) | ||
| * [JoCo Library, Cedar Roe](https://www.jocolibrary.org/locations/cedarroe) | ||
|
|
||
| ## Upcoming Events | ||
|
|
||
| * [June TechTalk : KCWiT X Python KC Joint Meetup](https://www.eventbrite.com/e/june-techtalk-kcwit-x-python-kc-joint-meetup-tickets-32515143670?aff=website) | ||
| * [Django Girls workshop](https://djangogirls.org/kansascity/) | ||
| * [International Association for Social Science Information Services & Technology (IASSIST) Annual Conference](https://kupce.ku.edu/iassist-conference) | ||
| * [DevOpsDays KC 2017 CFP](https://www.papercall.io/devopsdayskc) | ||
|
|
||
| ## Python News and Resources | ||
|
|
||
| * [Py-backwards (Python to python compiler)](https://github.com/nvbn/py-backwards#py-backwards-) | ||
| * [Write Fast Apps Using Async Python 3.6 and Redis](https://eng.paxos.com/write-fast-apps-using-async-python-3.6-and-redis) | ||
| * [Asynchronous Programming in Python | Asyncio](http://djangostars.com/blog/asynchronous-programming-in-python-asyncio/) | ||
| * [Queues in Python](https://dbader.org/blog/queues-in-python#) | ||
| * [Generating Fake Data for Python Unit Tests with Faker](https://semaphoreci.com/community/tutorials/generating-fake-data-for-python-unit-tests-with-faker) | ||
| * [Same Stats, Different Graphs](https://www.autodeskresearch.com/publications/samestats) | ||
| * [ Beginner’s Guide to Neural Networks in Python](https://www.springboard.com/blog/beginners-guide-neural-network-in-python-scikit-learn-0-18/) | ||
| * [osh (Object Shell)](https://github.com/geophile/osh) | ||
| * [Statistical Data Analysis in Python (SciPy 2013)](https://github.com/fonnesbeck/statistical-analysis-python-tutorial) | ||
|
|
||
| ## Command Line Workshop Resources | ||
|
|
||
| * [Udacity Linux Command Line Basics](https://www.udacity.com/course/linux-command-line-basics--ud595) - A free course teaching the Linux command line. | ||
| * [Argparse Tutorial](https://docs.python.org/3.6/howto/argparse.html) - How to use Python's built-in `argparser` module to build command line applications. | ||
| * [Cloud9 IDE](https://c9.io/) - An easy, free way to get to a Linux command line if you don't have a Linux machine/VPS or feel like fighting with Virtual Machines. | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add a section for links related to the command line stuff? Something like:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
95396dd