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
‘#8cbf99’ Articles at TC101 Fall 2015 https://kenscourses.com/tc101fall2015 Introduction to Programming Python and C++ Sat, 14 Nov 2015 16:06:31 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #Project Advance 2 https://kenscourses.com/tc101fall2015/2015/project-advance-2-2/ Sat, 14 Nov 2015 16:06:31 +0000 https://marcobackyard.withknown.com/2015/project-advance-2

Hi everyone this is the "report" of the project.

This time we are using Imagemagick, Magick++; we can half size the image yeah, but we can't change the color, ooooooooo u.u, so with this problem we are in a hurry, but we can do it and we feel positive with it because we are in the half of the way to complete this task :)

I feel like I´m not doing my best with this project, but here I am trying.

Some links that we found, (more Ever) and  this can help:

http://www.imagemagick.org/Magick++/Color.html#ColorGray

http://www.imagemagick.org/script/perl-magick.php

 

The code:

 

using namespace std;
using namespace Magick;

void newline(){
  coutendl;
}

int main(int argc,char **argv)
{
  InitializeMagick(*argv);
  try{
  int x;
  cout"Hi, Im a manipulator of images "endl;
  newline();
  cout"What do you want to do? (press the number in your keyboard) "endl;
  newline();
  cout"1. Rezise the image to one half of its original size"endl;
  cout"2. Switch to black and white"endl;
  newline();
  cin>>x;
 
  if(x==1){
     newline();
     cout"Alright, now introduce the name of the file with its extension; example: new.jpg"endl; 
     newline();
     Image image;
     string img;
     cin>>img;
     image.read(img);
     image.minify();
     image.write("resized.jpg");
 }
  if(x==2){
     newline();
     cout"Alright, now introduce the name of the file with its extension; example: new.jpg"endl; 
     newline();
     Image image;
     string img2;
     cin>>img2;
     image.read(img2);
     image.quantize(colorspace.gray);
     image.write("blackandwhite.jpg");
 }      
 }
  catch( Exception &error_ )
    {
      cout "Caught exception: " error_.what() endl;
      return 1;
    }
  return 0;
}

 

 

]]>

Hi everyone this is the “report” of the project.

This time we are using Imagemagick, Magick++; we can half size the image yeah, but we can’t change the color, ooooooooo u.u, so with this problem we are in a hurry, but we can do it and we feel positive with it because we are in the half of the way to complete this task 🙂

I feel like I´m not doing my best with this project, but here I am trying.

Some links that we found, (more Ever) and  this can help:

http://www.imagemagick.org/Magick++/Color.html#ColorGray

http://www.imagemagick.org/script/perl-magick.php

 

The code:

 

using namespace std;
using namespace Magick;

void newline(){
  coutendl;
}

int main(int argc,char **argv)
{
  InitializeMagick(*argv);
  try{
  int x;
  cout"Hi, Im a manipulator of images "endl;
  newline();
  cout"What do you want to do? (press the number in your keyboard) "endl;
  newline();
  cout"1. Rezise the image to one half of its original size"endl;
  cout"2. Switch to black and white"endl;
  newline();
  cin>>x;
 
  if(x==1){
     newline();
     cout"Alright, now introduce the name of the file with its extension; example: new.jpg"endl; 
     newline();
     Image image;
     string img;
     cin>>img;
     image.read(img);
     image.minify();
     image.write("resized.jpg");
 }
  if(x==2){
     newline();
     cout"Alright, now introduce the name of the file with its extension; example: new.jpg"endl; 
     newline();
     Image image;
     string img2;
     cin>>img2;
     image.read(img2);
     image.quantize(colorspace.gray);
     image.write("blackandwhite.jpg");
 }      
 }
  catch( Exception &error_ )
    {
      cout "Caught exception: " error_.what() endl;
      return 1;
    }
  return 0;
}

 

 

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 10! https://kenscourses.com/tc101fall2015/2015/mastery-10-5/ Fri, 18 Sep 2015 21:29:04 +0000 https://vanessabaeza.withknown.com/2015/mastery-10

Here is video of mastery 10 :D

Hope it helps.

It's about:

  1. Basic output (printing) and input (text based) in C++

 

]]>

Here is video of mastery 10 😀

Hope it helps.

It’s about:

  1. Basic output (printing) and input (text based) in C++

 

]]>
https://creativecommons.org/licenses/by/4.0/
Masteries 3 and 4! https://kenscourses.com/tc101fall2015/2015/masteries-3-and-4/ Fri, 18 Sep 2015 00:44:13 +0000 https://vanessabaeza.withknown.com/2015/masteries-3-and-4

Here is my third video about the masteries. 

Hope it helps.

It's about:

  1. Create accounts: Blog, Twitter, GitHub
  2. Submit work via Blog RSS and GitHub

 

]]>

Here is my third video about the masteries. 

Hope it helps.

It’s about:

  1. Create accounts: Blog, Twitter, GitHub
  2. Submit work via Blog RSS and GitHub

 

3 4 

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