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
‘MASTERY2’ Articles at TC101 Fall 2015 https://kenscourses.com/tc101fall2015 Introduction to Programming Python and C++ Thu, 26 Nov 2015 05:05:22 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ Mastery1 & Mastery2 https://kenscourses.com/tc101fall2015/2015/mastery1-mastery2/ Thu, 26 Nov 2015 05:05:22 +0000 http://finntec.wordpress.com/?p=67 Those are the masteries about

 

  • Ability to create Python file and run from command line
  • Ability to create Python project in IDE and run inside the ID

You can find my video here:

 

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 2 https://kenscourses.com/tc101fall2015/2015/mastery-2-9/ Thu, 26 Nov 2015 04:53:02 +0000 https://vanessabaeza.withknown.com/2015/mastery-2

Here is a video to Mastery 2

 

 

Hope it helps you:

 

]]>

Here is a video to Mastery 2

 

 

Hope it helps you:

 

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 2: Ability to create C++ project in IDE and run inside the IDE https://kenscourses.com/tc101fall2015/2015/mastery-2-ability-to-create-c-project-in-ide-and-run-inside-the-ide-2/ Wed, 25 Nov 2015 22:30:54 +0000 http://samanthariverac.wordpress.com/?p=299 ]]> OK … this is the last round of masteries… end of the semester here we go.

Here is the video: https://youtu.be/DE3kafpn4rU

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

]]>
https://creativecommons.org/licenses/by/4.0/
Ability to create Python project in IDE and run inside the IDE https://kenscourses.com/tc101fall2015/2015/ability-to-create-python-project-in-ide-and-run-inside-the-ide/ Wed, 25 Nov 2015 17:43:14 +0000 http://juanmele.wordpress.com/?p=108 ]]> Here is the video to youtube to see the mastery https://www.youtube.com/watch?v=BL8qWWRrKJ0

]]>
https://creativecommons.org/licenses/by/4.0/
Matery 1 and 2 https://kenscourses.com/tc101fall2015/2015/matery-1-and-2/ Wed, 25 Nov 2015 08:59:40 +0000 http://ivancortes96.wordpress.com/?p=87
  • Ability to create C++ file and run from command line
  • Ability to create C++ project in IDE and run inside the IDE
  • Here is the link to my video:

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Mastery 2 https://kenscourses.com/tc101fall2015/2015/mastery-2-6/ Wed, 25 Nov 2015 04:37:12 +0000 http://opezaimd.tumblr.com/post/133908220850 On this mastery I’ll show you how to program in an online compiler and how to run your program in the same online tool.

    There’s an online compiler and debugging tool called Ideone, which allows us to code online and then test it right there. So, go ahead and open ideone.com

    Once you opened the webpage, something similar to this will appear on your screen. On the centre of the webpage is where our programs are written, On the bottom left , we have the language of the source code (which can be changed) and on the bottom right we have the run button.

    Let’s create a “Hello World” program and run it:

    As you can observe, our program was successful and it did output the desired outcome. 

    Now, just to have fun, let’s see what happens if our program has a mistake:

    This online tool is great, and now you know how to use it. Congrats!

    ]]>
    On this mastery I’ll show you how to program in an online compiler and how to run your program in the same online tool.

    There’s an online compiler and debugging tool called Ideone, which allows us to code online and then test it right there. So, go ahead and open ideone.com

    Once you opened the webpage, something similar to this will appear on your screen. On the centre of the webpage is where our programs are written, On the bottom left , we have the language of the source code (which can be changed) and on the bottom right we have the run button.

    Let’s create a “Hello World” program and run it:

    As you can observe, our program was successful and it did output the desired outcome. 

    Now, just to have fun, let’s see what happens if our program has a mistake:

    This online tool is great, and now you know how to use it. Congrats!

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Create a Python Project (Inside IDLE) / Use of comments in Python 3! https://kenscourses.com/tc101fall2015/2015/create-a-python-project-inside-idle-use-of-comments-in-python-3/ Wed, 04 Nov 2015 00:53:08 +0000 http://asimplemaniseepythonipresslike.wordpress.com/?p=108 Continue reading ]]> Hi everyone to create a Python Project you first have install and configure Python 3 use the following link if you haven’t do it yet, CONFIGURE PYTHON 3

    The first step is look for IDLE in windows search.

    Mastery#2-Image01

    Open IDLE, as soon as it opens you are going to see the interactive shell of Python but this isn’t what we looking for; To begin click in FILE>NEW FILE or you can also use Ctrl + N now you have a blank space to work on it.

    Mastery#2-Image02

    Over here you can write again Hello World with print() function but this time we’ll add a comment

    In Python 3 comments are put after a  #, so for example if you want to write a comment that says “this will print hello world!” you must type something like the following:

    #This will print hello world!

    So remember always use before any comment you want to use.

    Here’s an example.

    Mastery#2-Image03

    Finally to run our mini Python 3 project we just have to press F5 and then automatically the Python IDLE will run the code in the interactive shell, when you type a comment it never appears in the program, they are just for human references.

    After press F5

    Mastery#2-Image04

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Mastery 2 – Ability to create Python project in IDE and run inside the IDE https://kenscourses.com/tc101fall2015/2015/mastery-2-ability-to-create-python-project-in-ide-and-run-inside-the-ide-2/ Fri, 30 Oct 2015 22:23:40 +0000 http://ilkapython.wordpress.com/?p=115

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Mastery 2 https://kenscourses.com/tc101fall2015/2015/mastery-2-3/ Wed, 28 Oct 2015 18:35:16 +0000 https://alansprogramming.wordpress.com/?p=94 ]]> Description: Ability to create C++ project in IDE and run inside the IDE.

    A great way to set up the perfect work space is an IDE, and in this mastery we will do just that.

    Mastey 2

    IDE

    This would be a nice programming environment. “Space Marines Game Environment” by Nick Royer. Link: https://www.flickr.com/photos/hjmediastudios/7539649984/

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