From 926d51508d9c8041dd59ce15e8da2e29c73832a9 Mon Sep 17 00:00:00 2001 From: Matt McCarley Date: Wed, 3 Jun 2020 18:46:25 -0700 Subject: [PATCH 1/5] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f54d2b3343..a81baf7b26 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Intro to Python I +_Note: This project spans two modules (modules 1 and 2). You should roughly try to finish the first half of the problems during module 1 and the second half of the problems during module 2._ + It's time to learn a new language! Python! Python is a popular, easy-to-use programming language that has significant @@ -66,6 +68,8 @@ best for learning new languages. ## Instructions +_Note: This project spans two modules (modules 1 and 2). You should roughly try to finish the first half of the problems during module 1 and the second half of the problems during module 2._ + Each directory inside the `src/` directory presents exercises revolving around a particular concept in Python. Not all of these concepts are unique to Python (in fact, most probably aren't). This means that you can leverage knowledge you've From f50861bab1731c1174965dc579729fee7dd59dcb Mon Sep 17 00:00:00 2001 From: Sean Chen Date: Fri, 26 Jun 2020 11:07:53 -0700 Subject: [PATCH 2/5] Remove pip files --- Pipfile | 11 ----------- Pipfile.lock | 20 -------------------- 2 files changed, 31 deletions(-) delete mode 100644 Pipfile delete mode 100644 Pipfile.lock diff --git a/Pipfile b/Pipfile deleted file mode 100644 index 3e601a5316..0000000000 --- a/Pipfile +++ /dev/null @@ -1,11 +0,0 @@ -[[source]] -url = "https://pypi.org/simple" -verify_ssl = true -name = "pypi" - -[packages] - -[dev-packages] - -[requires] -python_version = "3" diff --git a/Pipfile.lock b/Pipfile.lock deleted file mode 100644 index a36a2c8975..0000000000 --- a/Pipfile.lock +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_meta": { - "hash": { - "sha256": "4e61a4ba9e6f02f50f68627253af5ababd9b1b4c1e10294e48158e1f42c0c5a6" - }, - "pipfile-spec": 6, - "requires": { - "python_version": "3" - }, - "sources": [ - { - "name": "pypi", - "url": "https://pypi.org/simple", - "verify_ssl": true - } - ] - }, - "default": {}, - "develop": {} -} From c022320d2b81ea40bbc182c5ca499ecb1c1436c4 Mon Sep 17 00:00:00 2001 From: Sean Chen Date: Fri, 26 Jun 2020 11:12:51 -0700 Subject: [PATCH 3/5] Fix broken link in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f54d2b3343..6ec293d3a3 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ best for learning new languages. ## Resources -* [Installing Python and pipenv](https://github.com/LambdaSchool/CS-Wiki/wiki/Installing-Python-3-and-pipenv) +* [Installing Python 3](https://github.com/LambdaSchool/CS-Wiki/wiki/Installing-Python-3) * [JavaScript<->Python cheatsheet](https://github.com/LambdaSchool/CS-Wiki/wiki/Javascript-Python-cheatsheet) * [How to read Specs and Code](https://github.com/LambdaSchool/CS-Wiki/wiki/How-to-Read-Specifications-and-Code) * [Python 3 standard library](https://docs.python.org/3.6/library/) From aeb295d53c80bbe596e68623d4c8024088729565 Mon Sep 17 00:00:00 2001 From: Sean Chen Date: Fri, 26 Jun 2020 11:17:20 -0700 Subject: [PATCH 4/5] Remove references to pipenv from README --- README.md | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/README.md b/README.md index 2205c9471d..87e67268ee 100644 --- a/README.md +++ b/README.md @@ -37,25 +37,7 @@ best for learning new languages. ## Getting started -1. Make sure you have Python 3 and pipenv installed. - -2. Go to the directory with the `Pipfile` and run - ``` - pipenv install - ``` - -3. After the install completes, run - ``` - pipenv shell - ``` - This will get you into the virtual environment. At this point, you should be - able to run Python 3 by just running `python`: - ``` - $ python --version - Python 3.6.5 - ``` - - You can exit the virtual environment by typing `exit`. +Make sure you have Python 3 installed. You can check this by running `python3 --version` in your terminal and ensuring that it returns a version string that is at least 3.6.5. ## Goals From e5970db41e0f110fd4b27aca92eec4275f8a2270 Mon Sep 17 00:00:00 2001 From: Bob Lauer Date: Tue, 16 Nov 2021 16:12:59 -0600 Subject: [PATCH 5/5] BloomTech --- FAQ.md | 16 ++++++++-------- README.md | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/FAQ.md b/FAQ.md index cbdac517b2..0f574d9673 100644 --- a/FAQ.md +++ b/FAQ.md @@ -70,14 +70,14 @@ What's the difference between inheritance and polymorphism? ### What are some things we can do to prepare for CS? -* [CS Wiki](https://github.com/LambdaSchool/CS-Wiki/wiki) -* [Polya's Problem Solving Techniques](https://github.com/LambdaSchool/CS-Wiki/wiki/Polya%27s-Problem-Solving-Techniques) -* [Solving Programming Problems](https://github.com/LambdaSchool/CS-Wiki/wiki/Solving-Programming-Problems) -* [CS Reading List](https://github.com/LambdaSchool/CS-Wiki/wiki/Computer-Science-Reading-List) -* [How to Google effectively](https://github.com/LambdaSchool/CS-Wiki/wiki/How-to-Google-Effectively) -* [How to read specs and code](https://github.com/LambdaSchool/CS-Wiki/wiki/How-to-Read-Specifications-and-Code) -* [Command line primer](https://github.com/LambdaSchool/CS-Wiki/wiki/Command-Line-Primer) -* [Coding style guidelines](https://github.com/LambdaSchool/CS-Wiki/wiki/CS-Coding-Style-Guidelines) +* [CS Wiki](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki) +* [Polya's Problem Solving Techniques](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Polya%27s-Problem-Solving-Techniques) +* [Solving Programming Problems](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Solving-Programming-Problems) +* [CS Reading List](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Computer-Science-Reading-List) +* [How to Google effectively](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/How-to-Google-Effectively) +* [How to read specs and code](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/How-to-Read-Specifications-and-Code) +* [Command line primer](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Command-Line-Primer) +* [Coding style guidelines](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/CS-Coding-Style-Guidelines) ------------------------------------------------------------------------ diff --git a/README.md b/README.md index 87e67268ee..d088a085da 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,9 @@ best for learning new languages. ## Resources -* [Installing Python 3](https://github.com/LambdaSchool/CS-Wiki/wiki/Installing-Python-3) -* [JavaScript<->Python cheatsheet](https://github.com/LambdaSchool/CS-Wiki/wiki/Javascript-Python-cheatsheet) -* [How to read Specs and Code](https://github.com/LambdaSchool/CS-Wiki/wiki/How-to-Read-Specifications-and-Code) +* [Installing Python 3](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Installing-Python-3) +* [JavaScript<->Python cheatsheet](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Javascript-Python-cheatsheet) +* [How to read Specs and Code](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/How-to-Read-Specifications-and-Code) * [Python 3 standard library](https://docs.python.org/3.6/library/) ## Getting started