Intro to Code: Or, a Newbie's Guide to Things You'll See in Just about Every Piece of Code
A very, very introductory course in programming. No specific language is taught, instead, the ideas that you can take with you to almost any programming language, and that you’ll see in just about any piece of code, are introduced.
The very rough outline of what will be covered:
- variables, and possibly types in a generic sense (ints, floats,
strings, arrays)
- blocks, and to a minor extent, scope in terms of blocks
- flow control (if, while, do-while)
- boolean logic (without getting too complicated, related to previous topic)
- loops (for, foreach, link back into while & do-while)
- functions
We leave more advanced topics, including objects/classes, for the Learn Python session, and hopefully this session will be complimentary.
Links:
http://en.wikipedia.org/wiki/Pseudocode
Please edit or add your suggestions, ideas, etc!









Sounds good
It sounds good. You saw my last comments on the google groups thread.
Are you going to cover (very, very basic) hardware architecture? Would doing so help? I don’t know, so I’m asking you.