wazua Mon, Nov 25, 2024
Welcome Guest Search | Active Topics | Log In | Register

Learning C++
alma
#1 Posted : Friday, July 13, 2012 10:38:34 AM
Rank: Elder


Joined: 7/20/2007
Posts: 4,432
Where can one learn C++ and regex expressions? Either online or offline? Doesn't really matter.

Even better, do you have time to teach it to a group of slow guys and gals?
Jose: If I make it through this thug life, I'll see you one day. The Lord is the only way to stop the hurt.
quicksand
#2 Posted : Friday, July 13, 2012 11:35:51 AM
Rank: Veteran


Joined: 7/5/2010
Posts: 2,061
Location: Nairobi
alma wrote:
Where can one learn C++ and regex expressions? Either online or offline? Doesn't really matter.

Even better, do you have time to teach it to a group of slow guys and gals?


@alma some info:
http://www.cplusplus.com/files/tutorial.pdf
The compiler can be found here:
http://www.microsoft.com...ions/visual-cpp-express

C++ is the hardest OOP+procedural programming language out there, it is not for starters and certainly not dunces. Your charges will tell you this when they reach namespaces, pointers, STL and ATL topics - assuming they manage this far without cracking.
For theory and good practice, point them to good old Pascal.
Jump-steady
#3 Posted : Friday, July 13, 2012 11:54:25 AM
Rank: Veteran


Joined: 12/1/2008
Posts: 1,098
quicksand wrote:
alma wrote:
Where can one learn C++ and regex expressions? Either online or offline? Doesn't really matter.

Even better, do you have time to teach it to a group of slow guys and gals?


@alma some info:
http://www.cplusplus.com/files/tutorial.pdf
The compiler can be found here:
http://www.microsoft.com...ions/visual-cpp-express

C++ is the hardest OOP+procedural programming language out there, it is not for starters and certainly not dunces. Your charges will tell you this when they reach namespaces, pointers, STL and ATL topics - assuming they manage this far without cracking.
For theory and good practice, point them to good old Pascal.


Yup! Pascal is one hard nut to crack or is it to learn. @Alma should try VB.Net easy to learn and use.
alma
#4 Posted : Friday, July 13, 2012 12:22:46 PM
Rank: Elder


Joined: 7/20/2007
Posts: 4,432
Thanks mates. But we need C++ specifically and regex for what we wish. Its an issue of functional training not an easy thing to learn or get a certificate kind of learning.

Need them to learn C++ even if they don't become gurus.

Thanks a lot for the links. If you have more links, I'd be very happy with them.

Still open for someone who wouldn't mind getting rewarded for training them too.
Jose: If I make it through this thug life, I'll see you one day. The Lord is the only way to stop the hurt.
quicksand
#5 Posted : Friday, July 13, 2012 12:43:09 PM
Rank: Veteran


Joined: 7/5/2010
Posts: 2,061
Location: Nairobi
Regular expressions cut across the entire programming landscape. The concepts are the same in most implementations. Wikipedia itself has a good topic on it.
http://en.wikipedia.org/wiki/Regular_expression
The thing with C++ is that Regex is not a core part of the language. You have to look for a library which implements it, then you need to link it up with the new source (See? things are already getting complicated). In your approach, it is important to first grasp the theoretical concepts of pattern matching to make actual programming easier.
Examine the language Perl, which supports regex by default, at least to drill in the regex concepts.
alma
#6 Posted : Friday, July 13, 2012 12:48:54 PM
Rank: Elder


Joined: 7/20/2007
Posts: 4,432
Interesting.

So lead me through this. The end goal is C++ there is no other goal for this project. There may be better programming thingis out there.I'm not interested in them. The goal is and will remain C++

can you guide me on where they should start so that they end up with good knowledge of C++? eg for you to do KCPE you need to go to standard 1, 2, 8 etc.

Jose: If I make it through this thug life, I'll see you one day. The Lord is the only way to stop the hurt.
quicksand
#7 Posted : Friday, July 13, 2012 2:11:58 PM
Rank: Veteran


Joined: 7/5/2010
Posts: 2,061
Location: Nairobi
Alright. No more digressing smile just C++.
Lets assume that the code is targeted at Windows operating system. This is relevant in the choice of compiler (different OSes different compilers) . In the case of Windows download this:
http://www.microsoft.com...ons/visual-cpp-express. There are others but you could investigate them later.
Once installed, the new user should read the Help file of the compiler, very important step, to know what to put where and what all the tools and floating panels do.
Once this is finished, start on the tutorial link I provided. Tutorials usually follow methodical steps where ideas are introduced gradually from the simple to more complex concepts one chapter at a time.

As for regex, there are web pages where you can test/evaluate them before programming them in. Here is one such - no need for Perl etc etc:
http://www.regular-expre.../javascriptexample.html

Good luck with the education. I can't find time to tutor but if you get a very hairy problem, you can email me man.transparent@hotmail.com (I know, silly address smile ), and I will see what I can do, no charge.
nakujua
#8 Posted : Friday, July 13, 2012 8:42:24 PM
Rank: Elder


Joined: 12/17/2009
Posts: 3,583
Location: Kenya
alma wrote:
Where can one learn C++ and regex expressions? Either online or offline? Doesn't really matter.

Even better, do you have time to teach it to a group of slow guys and gals?


can teach them offline ama online jioni - if they are up to it.
what are their exposure levels so far to comps ?
essyk
#9 Posted : Saturday, July 14, 2012 1:02:39 AM
Rank: Elder


Joined: 11/15/2011
Posts: 4,518
eti slow boys and gals? lmao!
"The true measure of a man is how he treats someone who can do him absolutely no good.
deadpoet
#10 Posted : Wednesday, July 18, 2012 12:08:56 PM
Rank: Member


Joined: 9/27/2006
Posts: 503
Some free tuturials available at: www.thenewboston.org
MaichBlack
#11 Posted : Thursday, July 19, 2012 3:13:05 PM
Rank: Elder


Joined: 7/22/2009
Posts: 7,452
alma wrote:
Where can one learn C++ and regex expressions? Either online or offline? Doesn't really matter.

Even better, do you have time to teach it to a group of slow guys and gals?

What times? rate? period.

Drop me a line: maichblack07 at yahoo dot com
Never count on making a good sale. Have the purchase price be so attractive that even a mediocre sale gives good returns.
alma
#12 Posted : Sunday, August 05, 2012 11:38:04 AM
Rank: Elder


Joined: 7/20/2007
Posts: 4,432
maich your email doesn't work. We were very serious.
Jose: If I make it through this thug life, I'll see you one day. The Lord is the only way to stop the hurt.
Users browsing this topic
Guest (4)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Copyright © 2024 Wazua.co.ke. All Rights Reserved.