Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":14354,"date":"2015-05-06T20:41:11","date_gmt":"2015-05-07T01:41:11","guid":{"rendered":"https:\/\/juancaglez.withknown.com\/2015\/mastery01-mastery01"},"modified":"2015-05-06T20:41:11","modified_gmt":"2015-05-07T01:41:11","slug":"mastery01-mastery01","status":"publish","type":"post","link":"https:\/\/kenscourses.com\/tc101winter2015\/2015\/mastery01-mastery01\/","title":{"rendered":"#Mastery01 #MASTERY01"},"content":{"rendered":"
\n

#Mastery<\/a>01 \u00a0#MASTERY<\/a>01<\/p>\n

I am doing this mastery again because i want to get the two points.<\/p>\n

Well in this one I want to teach how to create and run a c++ from command line.<\/p>\n

Im going to give you a couple of steps to make it easier to you to understand it:<\/p>\n

\u00a0 \u00a0 \u00a01.- Open your editor (notepad, notepad++, sublime, jeditor, etc..).<\/p>\n

\u00a0 \u00a0 \u00a02.- Save your program as a c++ file and in the end of the name add “.cpp” so the terminal will run it.<\/p>\n

\u00a0 \u00a0 \u00a03.- Start coding.\u00a0<\/p>\n

\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 3.1.- Include your libraries, ALWAYS include (#include , #include<\/a> ) the cstdlib is not always \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 necessary but add it anyway.<\/cstdlib><\/iostream><\/p>\n

\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 3.2.- Before everything put “usingnamespace std;” so you don\u00b4t have to put it all over your code.<\/p>\n

\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 3.3.- You will always have a “int main()” it doesn\u00b4t matter if you have functions or not.<\/p>\n

\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 3.4.- ALWAYS at the end of the “int main()” put ” return 0;” is not really necesary eaither but every programmer \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 will tell you to put it.<\/p>\n

\u00a0 \u00a0 \u00a04.- Open your ternimal (cygwin, mac, linux, etc..) wait until it recognize your computer and then put “cd” to change \u00a0 \u00a0 \u00a0 \u00a0directory then put “\/” to go were ever is your code you made in your editor.<\/p>\n

\u00a0 \u00a0 \u00a05.- Finally after it compiles you have to execute it with “.\/a.exe” in wondows, “.\/a.out” on Mac an Linux.<\/p>\n

\u00a0<\/p>\n

Hope you understand and learn from it.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

\n

#Mastery<\/a>01  #MASTERY<\/a>01<\/p>\n

I am doing this mastery again because i want to get the two points.<\/p>\n

Well in this one I want to teach how to create and run a c++ from command line.<\/p>\n

Im going to give you a couple of steps to make it easier to you to understand it:<\/p>\n

     1.- Open your editor (notepad, notepad++, sublime, jeditor, etc..).<\/p>\n

     2.- Save your program as a c++ file and in the end of the name add “.cpp” so the terminal will run it.<\/p>\n

     3.- Start coding. <\/p>\n

          3.1.- Include your libraries, ALWAYS include (#include , #include<\/a> ) the cstdlib is not always             necessary but add it anyway.<\/p>\n

          3.2.- Before everything put “usingnamespace std;” so you don´t have to put it all over your code.<\/p>\n

          3.3.- You will always have a “int main()” it doesn´t matter if you have functions or not.<\/p>\n

          3.4.- ALWAYS at the end of the “int main()” put ” return 0;” is not really necesary eaither but every programmer             will tell you to put it.<\/p>\n

     4.- Open your ternimal (cygwin, mac, linux, etc..) wait until it recognize your computer and then put “cd” to change        directory then put “\/” to go were ever is your code you made in your editor.<\/p>\n

     5.- Finally after it compiles you have to execute it with “.\/a.exe” in wondows, “.\/a.out” on Mac an Linux.<\/p>\n

 <\/p>\n

Hope you understand and learn from it.<\/p>\n<\/div>\n

Continue reading →<\/span><\/a><\/p>\n","protected":false},"author":87,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,3,26],"tags":[95,57,287],"_links":{"self":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts\/14354"}],"collection":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/users\/87"}],"replies":[{"embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/comments?post=14354"}],"version-history":[{"count":6,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts\/14354\/revisions"}],"predecessor-version":[{"id":19240,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/posts\/14354\/revisions\/19240"}],"wp:attachment":[{"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/media?parent=14354"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/categories?post=14354"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101winter2015\/wp-json\/wp\/v2\/tags?post=14354"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}