TPT
Total:
$0.00
BrainStemSchool Banner

BrainStemSchool

Rated 4.76 out of 5, based on 38 reviews
123 Followers
New Jersey, United States
About the store
I have over 18 years of classroom teaching experience having taught English literature and all levels of computer science including the following languages and concepts: C, C++, Java, Python, HTML, JavaScript, and Arduino. I am currently Computer Science department chair and teacher at Christian Brothers Academy in Lincroft, NJ, an exclusive college preparatory high school with USDOE National Blue Ribbon status, as well as the Website Director. I also operate www.BrainStemSchool.com and the the BrainStemSchool YouTube channel.
Read more
Back

Code

Preview of Java Coding Quickstart eBook

Java Coding Quickstart eBook

Created by
BrainStemSchool
Java Coding Quickstart eBookThe perfect follow-up to the wildly successful Free Python Coding Quickstart eBook Covering a complete introduction to Computer Science in the world's most popular programming language. Appropriate for beginning programmers AND experienced coders wanting to learn a new language. Chapter 1: Get a Programming Environment 10Online Java Interpreter 10Repl.it 10Your Very First Program 11A Word About File Name, Class Name, And The main() Method 12Saving and Recovering Sourc
Preview of Intro to Python Slides Bundle: 15 Topics

Intro to Python Slides Bundle: 15 Topics

Created by
BrainStemSchool
Intro to Python Slides Bundle15 Topics edited and updated in .PPTx format:IntroSimple OutputTypes, Literals, Variables, and MathInputIf's - Selection StructuresIterationFunctionsCollections, Lists, and TuplesLibrary FunctionsOOP - Object Oriented ProgrammingAdvanced OOPFile I/OUsing a main() functionGUI - Graphical User InterfaceSupplementary: Turtle GraphicsBoolean Expression Diagram288 Instructional Slides in total
Preview of Python Exercises: 24 Problems, 8 Chapters

Python Exercises: 24 Problems, 8 Chapters

Created by
BrainStemSchool
24 problems in 8 chapters Corresponding to Python Lessons from other BrainStemSchool lessons. CHAPTER 1: PYTHON SIMPLE OUTPUT CHAPTER 2: TYPES, LITERALS, VARIABLES, AND MATH CHAPTER 3: INPUT CHAPTER 4: IF’S AND SELECTION STRUCTURES CHAPTER 5: ITERATION CHAPTER 6: FUNCTIONS CHAPTER 7: LISTS AND TUPLES CHAPTER 8: FUNCTIONS
Preview of Create a Web-Based Game Complete Lesson and Walk-Through

Create a Web-Based Game Complete Lesson and Walk-Through

Created by
BrainStemSchool
Complete Web-Based Game Lesson and Walk-Through These slides take the student from beginning to end - starting with a template using the Phaser3 web framework - working with the Repl.it platform - creating a web-based game where the user runs from an attacker (the kitty cat in this example). This lesson was successfully used in our school's STEM day lesson to 9th graders.
Preview of Programming Operators Full-Color Poster Infographic

Programming Operators Full-Color Poster Infographic

Created by
BrainStemSchool
High Resolution pdf format PROGRAMMING OPERATORS Mathematical OperatorsOperator Meaning Example + Addition x=4+4 # x is 8 - Subtraction y=4-4 # y is 0 * Multiplication z=4*4 # z is 16 / Division a=4/4 # a is 1 * Multiplication b=4*4 # b is 16 ^ or ** Exponentiaton (language dependent) c=4**4 # c is 256 & or + String Concatenation d="4"+"4
Preview of Python Code 10: File I/O Part 1
29:23

Python Code 10: File I/O Part 1

Created by
BrainStemSchool
Coding in Python - File Input and Output Reading and writing to text files and using code to manipulate the data
Preview of Python Code 09.5: Advanced OOP

Python Code 09.5: Advanced OOP

Created by
BrainStemSchool
Instance Variables / Attributes Class Variables Inheritance
Preview of Python Code 07: Collections; Lists and Tuples
28:32

Python Code 07: Collections; Lists and Tuples

Created by
BrainStemSchool
Video Companion - lesson and demonstration with code examples to accompany the slides for Collections, Lists, and Tuples Check out More Awesome Videos by BrainStemSchool
Preview of Python Code 02 (part 2/2): Variables and Math
19:37

Python Code 02 (part 2/2): Variables and Math

Created by
BrainStemSchool
Types and Literals explained in Python Code This video to accompany the slides on Python Types, Literals, Variables and Math Related Video: Python Code 1 (part 1/2): Types and Literals Check out More Awesome Videos by BrainStemSchool
Preview of Python Code 10: File I/O Part 2
20:36

Python Code 10: File I/O Part 2

Created by
BrainStemSchool
Video for the second half of File I/O slides for lesson 10. Using Python Code to access comma separated value files to use documents like database or spreadsheets. Reading, writing, and manipulating data.
Preview of Python Code 11: Main Lesson

Python Code 11: Main Lesson

Created by
BrainStemSchool
This lesson is about the "main" section of code - it's a good programming practice to designate the main section of code - where your code starts and stops. This is not necessary in Python but it mirrors the functionality of many languages and is considered good programming practice.
Preview of Python Code 07: Collections; Lists and Tuples

Python Code 07: Collections; Lists and Tuples

Created by
BrainStemSchool
Collections -Simple Lists -creating -accessing elements -indexes -length -resetting values -methods that help lists -slicing -tuples -list comprehenders Watch the video of this collections lesson with examples Also check out the rest of the video collection by BrainStemSchool
Preview of Python Code 06: Functions

Python Code 06: Functions

Created by
BrainStemSchool
Functions / Methods Named Procedure Function body Return Value Like math in some ways Black Box Arguments Scope Mutable vs. Immutable types Built-in functions
Preview of Python Code 02 (part 1/2): Types and Literals
18:08

Python Code 02 (part 1/2): Types and Literals

Created by
BrainStemSchool
Types and Literals explained in Python Code This video to accompany the slides on Python Types, Literals, Variables and Math Related Video: Python Code 2 (part 2/2): Variables and Math Check out More Awesome Videos by BrainStemSchool
Preview of Python Code: Turtle Graphics Supplementary

Python Code: Turtle Graphics Supplementary

Created by
BrainStemSchool
Slides and Coding Exercises to accompany the free Turtle Graphics Code Tutorial Video
Preview of Python Code: OOP- Object Oriented Programming Part 3: Inheritance
14:57

Python Code: OOP- Object Oriented Programming Part 3: Inheritance

Created by
BrainStemSchool
Accompanies the slides on writing OOP - Object Oriented Programming code Video Lesson
Preview of Python Code: OOP- Object Oriented Programming Part 2
19:43

Python Code: OOP- Object Oriented Programming Part 2

Created by
BrainStemSchool
Part 2 of the 3 Part Series of Video Lessons teaching Python Code and Obejct Oriented Programming Accompanies the OOP Python Code slides.
Preview of Python Code: OOP- Object Oriented Programming Part 1
8:12

Python Code: OOP- Object Oriented Programming Part 1

Created by
BrainStemSchool
Part 1 of the 3 Part Series of Video Lessons teaching Python Code and Object Oriented Programming Accompanies the OOP slides.
Preview of Python Code 09: OOP Object Oriented Programming

Python Code 09: OOP Object Oriented Programming

Created by
BrainStemSchool
Object Oriented Programming in Python -Objects -UML -built-in objects -classes -self -syntax
Preview of Python Code 03: Input

Python Code 03: Input

Created by
BrainStemSchool
Python Keyboard Input -Input>Processing>Output -Simple keyboard input -Prompts -Input of non-string data -casting
Showing 1-20 of 34 results

About the store

Experience

I have over 18 years of classroom teaching experience having taught English literature and all levels of computer science including the following languages and concepts: C, C++, Java, Python, HTML, JavaScript, and Arduino. I am currently Computer Science department chair and teacher at Christian Brothers Academy in Lincroft, NJ, an exclusive college preparatory high school with USDOE National Blue Ribbon status, as well as the Website Director. I also operate www.BrainStemSchool.com and the the BrainStemSchool YouTube channel.

Teaching style

I believe in the power of discovery. A good teacher is a guide but the real learning happens in the mind of the student.

My own education history

Undergraduate: 2000 B.A. University of Maryland, College Park English Language Writing and Rhetoric Graduate: 2005 M.S. Monmouth University Computer Science: Intelligent Information Systems

Additional biographical information

Husband, Father, Wrestling Coach, BJJ Instructor, Oceanfront Lifeguard Supervisor, and all-around great guy.