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

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/feed-rss2.php on line 8
‘#Mastery23’ Articles at TC101 Fall 2015 https://kenscourses.com/tc101fall2015 Introduction to Programming Python and C++ Thu, 26 Nov 2015 06:48:10 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #Masteries 23, 24 & 25 https://kenscourses.com/tc101fall2015/2015/masteries-23-24-25/ Thu, 26 Nov 2015 06:48:10 +0000 http://manuelgodm.wordpress.com/?p=205 ]]> And here my video: https://youtu.be/LNpxQAoDXpI

Here you can find more information about arrays: https://www.programarya.com/Cursos/C++/Estructuras-de-Datos/Arreglos-o-Vectores

You can find information about vectors here: http://www.cplusplus.com/reference/vector/vector/?kw=vector

You can find information about strings here: http://www.cplusplus.com/reference/string/string/?kw=string

(Tuve problemas para subir el video por que estaba muy muy lento el internet, por eso apenas lo postee, espero y pueda comprender ken)

]]>
https://creativecommons.org/licenses/by/4.0/
Masteries 23. and 26. https://kenscourses.com/tc101fall2015/2015/masteries-23-and-26/ Thu, 26 Nov 2015 05:55:05 +0000 http://alansprogramming.wordpress.com/?p=348 Continue reading Masteries 23. and 26. ]]> Mastery 26

Entering the matrix in this moment… and never leaving it. “Matrix Code” by David Asch. Link: https://www.flickr.com/photos/trinity-of-one/20562069/

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 trip.

Video link.

]]>
https://creativecommons.org/licenses/by/4.0/
Lists and Tuples Python 3 https://kenscourses.com/tc101fall2015/2015/lists-and-tuples-python-3/ Thu, 26 Nov 2015 00:05:37 +0000 http://asimplemaniseepythonipresslike.wordpress.com/?p=353 ]]> If you don’t know how to make a tuple or a list I recommend you to see my video to learn how to

Here’s my video 😀

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 23 y 24 https://kenscourses.com/tc101fall2015/2015/mastery-23-y-24/ Wed, 25 Nov 2015 22:51:54 +0000 http://estebanpg.wordpress.com/?p=86

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery #23 – Creation and use of lists in Python https://kenscourses.com/tc101fall2015/2015/mastery-23-creation-and-use-of-lists-in-python/ Wed, 25 Nov 2015 20:49:08 +0000 http://dragv.wordpress.com/?p=166 ]]> Here’s my video of me explaining mastery #23.

Enjoy.

]]>
https://creativecommons.org/licenses/by/4.0/
Creation and use of lists in Python https://kenscourses.com/tc101fall2015/2015/creation-and-use-of-lists-in-python/ Wed, 25 Nov 2015 19:24:35 +0000 http://juanmele.wordpress.com/?p=142 ]]> Here is the video to the Mastery 23, here is the link to https://www.youtube.com/watch?v=ipYjkQTG9_4

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 23 https://kenscourses.com/tc101fall2015/2015/mastery-23-11/ Wed, 25 Nov 2015 12:42:24 +0000 http://ivancortes96.wordpress.com/?p=149
  • Creation and use of vectors in C++
  • Here is the link for my video:

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Mastery 23 https://kenscourses.com/tc101fall2015/2015/mastery-23-10/ Wed, 25 Nov 2015 07:57:38 +0000 http://luisgarciadaniel01.wordpress.com/?p=191 Continue reading Mastery 23 ]]> Creation and use of vectors.

    First you need to call the vector library:

    Screen Shot 2015-11-25 at 01.47.22

    As usual this will allow us to form vectors and use their properties.

    In this example we will make use of vectors to create a list of integers and returns the sume of the squares of the elements in the list.

    We create our function specifying that we’ll be using a vector.Screen Shot 2015-11-25 at 01.53.06

    It’s important to define the name of the vector in this case “x” and the category of it, in this case “int” (Integers).

    Then, on our main function, we will add all the specifications for the vector in this case we will specify it’s length and the values assigned to every component of the list.

    Screen Shot 2015-11-25 at 01.55.36

    And that’s and easy example of how to use vectors in C++

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Masteries 23 & 25 https://kenscourses.com/tc101fall2015/2015/masteries-23-25/ Wed, 25 Nov 2015 06:27:20 +0000 http://carminaperezguerrero.wordpress.com/?p=158 Creation and use of lists in Python

    Creation and use of ranges in Python

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    #Mastery23 https://kenscourses.com/tc101fall2015/2015/mastery23-3/ Tue, 24 Nov 2015 04:00:03 +0000 http://jsphsalazar.wordpress.com/?p=141 ]]> Hey guys! Today I’m going to talk about list in Python.

    Like a string, a list is a sequence of values. In a string, the values are characters; in a list, they can be any type. The values in a list are called elements or sometimes items. There are several ways to create a new list; the simplest is to enclose the elements in square brackets ([something]):

    numbers = [10, 20, 30, 40]

    stuffs = [‘banana’, ‘candle’, ‘brownie’, ‘string’]

    For creating a list you need to establish the name of the list and then assign the value of the list.

    Next, for print a value of the list you need to type the command print() and between the parenthesis you type the name of the list followed by the number of the element desired. All the elements on a list are numbered from 0.

    If you want to know the number of the values inside the list you need to type the command len().

    xs

     

    ]]>
    https://creativecommons.org/licenses/by/4.0/