Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152
‘Programming’ Articles at TC101 Fall 2015
Introduction to Programming Python and C++

Tag Archives: Programming

Final Project: FINAL

Redundant title is redundant. After much work, tears, sweat and a couple of sleep-deprivation sessions at the Biblioteca, we did it. Messily, and with two codes worth of work, but we did it. Montse had a lot of trouble simply getting the Magick++ library to cooperate with us and it just did not work in … Continue reading Final Project: FINAL

Masteries 23. and 26.

Description: Creation and use of vectors and matrixes in C++. The very last one. We are going into the matrix of codes (or the code of matrixes, rather). It’s a bit odd that these masteries find themselves separated by a gap between two other masteries, but that’s just nitpicking. Let’s go ahead and finish this … Continue reading Masteries 23. and 26.

Nesting of conditional IF statements.

In C++ the braces of and if or an else clause can contain another if statement. There are known as nested if statements. In simple terms a nested if is when you write an IF inside another IF braces. This… Continue Reading →

Masteries 24. and 25.

Description: Creation and use of arrays and strings in C++. Wait, I didn’t know strings were arrays! Just kidding, we have to know all about arrays and strings if we want to make more complicated code, and it’s always useful to know that you can do one thing in more than one way. That said, … Continue reading Masteries 24. and 25.

Final Project!

We did it! My buddy and I finally acomplish our project for our TC101 class. Well, basically, our program had to do the following: “You will create a command-line program that uses two-dimensional arrays or matrices to process images. You… Continue Reading →

Mastery 10.

Description: Basic output (printing) and input (text based) in C++. Learning to print text in a code and let the user input some more of their own. We understand the andvantages of output and input in this mastery. Link to video here.

WSQ14

After having done the #Quiz11, this WSQ was one of the easier ones, even if it took a lot of digging in StackOverflow and cplusplus.com, looking at details of semi-finished code from beginners (like me, obviously) with the same problems as myself. e’s an awesome number, check the GitHub code link for the WSQ.

WSQ13

GitHub code link

Creation and use of Strings in C++

In this mastery I will talk to you about a really simple topic, “Strings”. Well, first of all strings are a one-dimensional array of characters which is terminated by a null character ‘’. Thus a null-terminated string contains the characters that comprise the… Continue Reading →

WSQ12

GitHub code link

What should you work on?

Week #12 and more partial exams for you.

For this week's readings:
C++ (TC1017) should either be looking at support for your project, ImageMagick C++ libraries are a good start.
Python (TC1014) should be finishing chapter 11 (Dictionaries).