One of the most important things that you can learn from JumpStart is learning how to learn. In our lifetime as developers, we have no choice but to learn new languages, new frameworks (it's what makes our job so exciting!)
So, this week - your mission is to learn a new programming language. On Friday, you will give your classmates a crash course on your (pair/team/group's) programming language of choice.
Some recommended languages:
- Python
- Java
- basic syntax (i.e. "how do i create...")
- variables
- primitives (e.g. strings, integers, floats)
- conditional statements
- for loops
- functions
- classes
- code organisation
- how do i import/export variables between files?
- how do i install project dependencies (i.e. what's the equivalent of npm, package.json and node_modules?)
- how do i execute 1 file/program?
- IDE setup
- what's a good IDE?
- how do i configure the IDE to work well?
- what are some useful plugins (e.g. keyboard shortcuts, linting, etc)
- do 2-3 simple katas in this language
- www.codewars.com offer katas in many languages
- build a simple program with the language. some suggestions:
- build a 'hello world' web api
- redo an assignment in this language (e.g. mars rover)
- unit testing
- what unit test runner can i use?
- how do i write 1 unit test?
- programming paradigms
- how do you practise OOP in the language?
- how do you practise functional programming in the language?
- any other cool stuff you learned/built
- don't blindly copy and paste
- focus on building something very simple. your goal is to learn a new language (through building something). your goal is not to build something
- don't spend too much time meta-reading (i.e. reading about what you should read). google for a good 'getting started' guide and just start by the end of Monday. for each getting started guide, there are 10-100s of other guides/listicles/books. at the introductory level, they probably cover the same contents. just pick a good one and start coding!
- if you get stuck on the setup/configuration of programs/languages, you can use an online editor (e.g. repl.it) temporarily to try out code snippets
- pair / share. ask questions. share understanding.
This week, there will be no hand-holding, no answers from us. Have fun!
- Python 101
- Installing Python Mac and Windows
- Python 3 docs
- VS Code IDE configuration for Python
- Listicle of learning resources for Python
- Dependency management
- Unit testing with
unittest