473,395 Members | 1,987 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

C++ domains

hai folks,

I have just started to learn C++. my main focus is on getting a
job (i.e. why i did choose C++ instead of LISP). i am very passionate
about learning C++. i dont know C and i dont intend to. I have heard
many times that in order to get into a job, one needs to have a
specific domain-knowledge besides the language itself. domains i have
heard of are OS, Databases, Web-programming, Games, AI etc. which all
use different languages.

Is it really necessary to have domain-knowledge in addition to the
different languages for getting a job?

If *yes*, then i want to folllow the OS domain, then i see books like
Operating Systems: Design and Implementation 3/e by Andrew S.
Tanenbaum and Albert S. Woodhull" which uses MINIX as OS & C is the
prerequisite. if i choose OS domain then it means i *have to* learn C.
right?

I also see L4Ka: Pistachio microkernel written entirely in C++ but i
dont think developers there will recommend me doing that as i never did
any real-life programmming . i tried but GNU/HURD developers did not
recommend me doing work on HURD kernel.they say have some experience
with small projects first, HURD kernel will be very complex for me as a
beginner. i only did some LISP from www.gigamonkeys.com/book.

can you recommend some domains where C++ is used & how to get into a
job there? i dont want to learn C, it will put me 6 months behind.
other languages are not a problem.

any other suggestions.

thanks

-- arnuld

Jun 18 '06 #1
13 2189
"arnuld" write:
I have just started to learn C++. my main focus is on getting a
job (i.e. why i did choose C++ instead of LISP). i am very passionate
about learning C++. i dont know C and i dont intend to. I have heard
many times that in order to get into a job, one needs to have a
specific domain-knowledge besides the language itself. domains i have
heard of are OS, Databases, Web-programming, Games, AI etc. which all
use different languages.

Is it really necessary to have domain-knowledge in addition to the
different languages for getting a job?


Think of a person who can drive a car in the US. He claims he is a taxicab
driver. Now set him down in London. Do you see any problems? The taxi
driver needs an extreme amount of local knowledge, rather than a superficial
knowledge, but I think the basic idea holds up. The guy probably can't ever
pronounce Worcestershire; not to mention that the cars are driving on the
wrong side of the street.

The domain knowledge of a new hire is probably pretty shallow, but so is his
knowledge of programming. A banking guy shouldn't throw a fit if someone
at a meeting implies there are 360 days in a year or uses words like imputed
or fungible.
Jun 18 '06 #2
osmium wrote:
The domain knowledge of a new hire is probably pretty shallow, but so is his
knowledge of programming.


i got what you said, it really hurts. anyway, my main concern is
getting a job using C++. si i think that's good if i start contributing
to OpenSource softwares projects using C++.

i have some work to finish. hence, next month I will start learning
C++, with thati also want to learn about the domain i wil be working in
but i want to be *specific*. what domain-knowledge di i need in order
to:

1.) write application software in C++?

2.) if i do OS development/programming (like HURD/L4, L4Ka:Pistachio)?

thanks

--arnuld

Jun 18 '06 #3
"arnuld" writes:
osmium wrote:
The domain knowledge of a new hire is probably pretty shallow, but so is
his
knowledge of programming.


i got what you said, it really hurts.


I can't imagine why it would hurt, it is just a simple statement of fact.
In the US the government even gives licenses to practice to people who
barely know what they are doing. Doctors, attorneys.dentists, .... I have
even used the services of some of these people.

But some people have to demonstrate proficiency, engineers and pilots for
example.
Jun 18 '06 #4
osmium wrote:
I can't imagine why it would hurt, it is just a simple statement of fact.
In the US the government even gives licenses to practice to people who
barely know what they are doing. Doctors, attorneys.dentists, .... I have
even used the services of some of these people.

But some people have to demonstrate proficiency, engineers and pilots for
example.


i didnt mean that. i dont want to explain except one thing:
*proficiency* is what that makes one a *technically* better
professional, like Paul Graham.

i was expecting answer to the problem i explained.

thanks anyway.

-- arnuld

Jun 18 '06 #5
Hello Arnuld,

There are plenty of jobs for people that can program in C++. There
is a wide variety of uses for the language. As you've mentioned,
C++ is one of the tools you've chosen to learn to use. Since your
initial goal is to get a job, I'd suggest learning how best to
solve peoples problems and using your tools to create solutions
they need. C++ can be used almost alone in the embedded world.
Applications generally use other components, like databases and
GUI tools, to aid construction of a useful product. While you
may be able to write all of that, it isn't usually necessary.

I'll take an example from my workplace. We use C++ in many of
our products. There are a few other languages we use, but each
has a purpose. My products cover two areas: embedded systems
and control applications. Both are established areas, so any
new developer that joined my team would first need to work with
the code that has been developed. For instance, knowing how to
use a database is one area that is needed, but there are tools
that we have created. First you must understand what we have
and then perhaps suggest ways that the product or its component
can be improved. That is perhaps a better description of
domain-specific knowlege. While I constantly work in C++
it is not what I generally think about. My thoughts are
generally more about what problems managmenet and users need
me to solve and how I plan on taking all that I have and
solving the new problems. Some new features and components
always need to be written. A newcomer to the team may be
able to solve some of the problems, but rarely by knowing
what existing components can be put together. You're starting
out in C++, but soon you will carry around a whole bag of
code that will help you solve future problems. The first
interface to a new specific device might be difficult to
create. However, once the model has been created we are
adept at recognizing how to mold it to suit future needs.
As you come across similar problems you will add more
tools in your bag.

You could be an expert in C++ and still be of little use
to a new employer. Conversely, you could not yet know
C++ and know our particular problem set and be just as
useless. Combining the two, in any mixture, makes you
valuable. Management needs to decide what mix of
developers are needed. I've seen companies that had
a few terrific domain experts in image recognition that
couldn't program a simple application in C++ and make
it work for their product. Fortunately they knew to
hire a few C++ developers with experience in improving
other peoples products. Together, we combined to have
a useful product. Basically each job you have will
have some element of that story. There are elements you
bring into each new project, elements you contribute,
and elements you get to take with you. Ideally you
will be constantly improving and expanding your core
knowledge and ability to solve peoples problems.

Your first jobs may not seem like much, but experience
matters. Open source projects are a good place to
contribute. So are paying jobs that aren't quite where
you'd like to be for the long term. Each new position
can help shape your career into what you want it to be
and solve the problems you want to.

Good luck,

David
Jun 19 '06 #6
David wrote:
Hello Arnuld,

There are plenty of jobs for people that can program in C++. There
is a wide variety of uses for the language. As you've mentioned,
C++ is one of the tools you've chosen to learn to use. Since your
initial goal is to get a job, I'd suggest learning how best to
solve peoples problems and using your tools to create solutions
they need. C++ can be used almost alone in the embedded world.
Applications generally use other components, like databases and
GUI tools, to aid construction of a useful product. While you
may be able to write all of that, it isn't usually necessary.
................<snip>......................
Your first jobs may not seem like much, but experience
matters. Open source projects are a good place to
contribute. So are paying jobs that aren't quite where
you'd like to be for the long term. Each new position
can help shape your career into what you want it to be
and solve the problems you want to.

Good luck,

David


hello David,

thanks for your reply. it contains lots of practical learning, i mean
you have shed some light on how people build softwares. I read your
reply, took a print-out, read it again, thought over it for sometime
and concluded the following things or steps for me to take:

1.) 1st, learn C++ well. i mean the syntax and semantics.

2.) 2nd, eat some design ideas of C++ like

a.) why Stroustrup put generic programming the way it is in C++,
b.) learn to use the data-structures provides by STL rather than
creating your own at first place.

3.) learn paradigms of problem-solving like OOD, Generic programmming,
Functional programmming etc. problem solving paradigms are independent
of any language.

4.) Improve/Bug-Fix existing softwares. i am quite passionate about
softwares using GPL, BSD, etc. so i will do them. that is *experience*
part & matters more than the previous 3 steps.

(i will take step 3 together with step-1 or 2)

from now on, i will follow exactly this path. do you think it's right
conclusion?

hey, Can you add/remove/modify my PATH?
you really helped a lot. you dont know my friend, how much burden was
on my head regarding which path should i choose & why & how much that
path will help. you gave me a direction to go.

I am really very much thankful to you for you took time out of your
personal life for this poor fellow.
thanks
-- arnuld

Jun 19 '06 #7
osmium wrote:
"arnuld" writes:
osmium wrote:
The domain knowledge of a new hire is probably pretty shallow, but so is
his
knowledge of programming.


i got what you said, it really hurts.


I can't imagine why it would hurt, it is just a simple statement of fact.
In the US the government even gives licenses to practice to people who
barely know what they are doing. Doctors, attorneys.dentists, .... I
have even used the services of some of these people.

But some people have to demonstrate proficiency, engineers and pilots for
example.


Hmm, that sounds as if you think it's ok for a Doctor to have no clue of
what he's doing.

Jun 19 '06 #8
"Rolf Magnus" writes:
osmium wrote:
"arnuld" writes:
osmium wrote:

The domain knowledge of a new hire is probably pretty shallow, but so
is
his
knowledge of programming.

i got what you said, it really hurts.


I can't imagine why it would hurt, it is just a simple statement of fact.
In the US the government even gives licenses to practice to people who
barely know what they are doing. Doctors, attorneys.dentists, .... I
have even used the services of some of these people.

But some people have to demonstrate proficiency, engineers and pilots for
example.


Hmm, that sounds as if you think it's ok for a Doctor to have no clue of
what he's doing.


I would hope that most people reading what I said would come to the exact
opposite conclusion.

I see that I forgot to include teachers in the list that are given licenses
without demonstrating skill.
Jun 19 '06 #9
On 2006-06-19 11:45, arnuld wrote:
David wrote:
Hello Arnuld,

There are plenty of jobs for people that can program in C++. There
is a wide variety of uses for the language. As you've mentioned,
C++ is one of the tools you've chosen to learn to use. Since your
initial goal is to get a job, I'd suggest learning how best to
solve peoples problems and using your tools to create solutions
they need. C++ can be used almost alone in the embedded world.
Applications generally use other components, like databases and
GUI tools, to aid construction of a useful product. While you
may be able to write all of that, it isn't usually necessary.


...............<snip>......................
Your first jobs may not seem like much, but experience
matters. Open source projects are a good place to
contribute. So are paying jobs that aren't quite where
you'd like to be for the long term. Each new position
can help shape your career into what you want it to be
and solve the problems you want to.

Good luck,

David


hello David,

thanks for your reply. it contains lots of practical learning, i mean
you have shed some light on how people build softwares. I read your
reply, took a print-out, read it again, thought over it for sometime
and concluded the following things or steps for me to take:

1.) 1st, learn C++ well. i mean the syntax and semantics.

2.) 2nd, eat some design ideas of C++ like

a.) why Stroustrup put generic programming the way it is in C++,
b.) learn to use the data-structures provides by STL rather than
creating your own at first place.

3.) learn paradigms of problem-solving like OOD, Generic programmming,
Functional programmming etc. problem solving paradigms are independent
of any language.

4.) Improve/Bug-Fix existing softwares. i am quite passionate about
softwares using GPL, BSD, etc. so i will do them. that is *experience*
part & matters more than the previous 3 steps.

(i will take step 3 together with step-1 or 2)


I would say that you should take step 4 along with 1, 2 and 3. The best
way to learn is to do. If you want to learn how to program in C++ you'll
have to program in C++. In the beginning you can do the exercise in the
books you are reading. Later on you can write small programs solving
some problem you have (while it might not be as good as what you can
download, you'll learn a lot). When you feel that you might know what
you are doing find some larger project (like an open-source) and start
contributing.

As for domain-knowledge it's harder, either you have it or you don't,
some jobs requires less (since the task is kind of generic or because
there is some domain-expert) others requires lots. Some employers will
hire your without it and let you learn along the way others will require
you to have it beforehand.

The big question is what kind of domain-knowledge you want to posses,
you might want to specialize in one area or know a little about a lot,
both kinds of people have their place.
--
Erik Wikström
Jun 19 '06 #10

Erik Wikström wrote:
I would say that you should take step 4 along with 1, 2 and 3. The best
way to learn is to do. If you want to learn how to program in C++ you'll
have to program in C++. In the beginning you can do the exercise in the
books you are reading. Later on you can write small programs solving
some problem you have (while it might not be as good as what you can
download, you'll learn a lot). When you feel that you might know what
you are doing find some larger project (like an open-source) and start
contributing.
this is exactly what i have decided.
As for domain-knowledge it's harder, either you have it or you don't,
pretty right. because when i thought i should learn about OSs. i found
2 good books, 1st, "Operating Systems: design & Implementation" 3/e by
Andrew Tanenbaum in which he uses MINIX, where you need C. 2nd is "UNIX
programming environment". then i also came to know that i should know
Assembly too if i want to tackle OSs. so my kind of guy will take
around 10-12 months, at least. I felt i am 1 year behind my goal of
C++.

If web-programming, then i need to know PHP, Ruby/Python, MySQL &
PostrgreSQL, CSS, XHTML, AJAX. again i was thrown nearly 1 year behind.

that is why i dropped the idea & came here instead.
some jobs requires less (since the task is kind of generic or because
there is some domain-expert) others requires lots. Some employers will
hire your without it and let you learn along the way others will require
you to have it beforehand. The big question is what kind of domain-knowledge you want to posses,
you might want to specialize in one area or know a little about a lot,
both kinds of people have their place.


ok you say 2 choices, i like "specialising in one" but as i have shown
you, that sucks too much of time. 2nd one feels ok or so so.

Is there a better way for "specialising in one domain" ? (i mean except
of what i told you)

thanks for your time.
--arnuld

Jun 19 '06 #11
On 2006-06-19 19:33, arnuld wrote:
Erik Wikström wrote:
I would say that you should take step 4 along with 1, 2 and 3. The best
way to learn is to do. If you want to learn how to program in C++ you'll
have to program in C++. In the beginning you can do the exercise in the
books you are reading. Later on you can write small programs solving
some problem you have (while it might not be as good as what you can
download, you'll learn a lot). When you feel that you might know what
you are doing find some larger project (like an open-source) and start
contributing.


this is exactly what i have decided.
As for domain-knowledge it's harder, either you have it or you don't,


pretty right. because when i thought i should learn about OSs. i found
2 good books, 1st, "Operating Systems: design & Implementation" 3/e by
Andrew Tanenbaum in which he uses MINIX, where you need C. 2nd is "UNIX
programming environment". then i also came to know that i should know
Assembly too if i want to tackle OSs. so my kind of guy will take
around 10-12 months, at least. I felt i am 1 year behind my goal of
C++.


The book The Design and Implementation of the FreeBSD 5.2 Operating
System is quite good too.
The big question is what kind of domain-knowledge you want to posses,
you might want to specialize in one area or know a little about a lot,
both kinds of people have their place.


ok you say 2 choices, i like "specialising in one" but as i have shown
you, that sucks too much of time. 2nd one feels ok or so so.

Is there a better way for "specialising in one domain" ? (i mean except
of what i told you)


Be interested, read articles on the net, follow discussions on usenet/
forums, ask questions. But I'd say that the most important is the first,
being interested in the subject.

--
Erik Wikström
Jun 19 '06 #12
On Mon, 19 Jun 2006 09:45:32 UTC, "arnuld" <ar*****@gmail.com> wrote:
David wrote:
Hello Arnuld,

There are plenty of jobs for people that can program in C++. There
is a wide variety of uses for the language. As you've mentioned,
C++ is one of the tools you've chosen to learn to use. Since your
initial goal is to get a job, I'd suggest learning how best to
solve peoples problems and using your tools to create solutions
they need. C++ can be used almost alone in the embedded world.
Applications generally use other components, like databases and
GUI tools, to aid construction of a useful product. While you
may be able to write all of that, it isn't usually necessary.


...............<snip>......................
Your first jobs may not seem like much, but experience
matters. Open source projects are a good place to
contribute. So are paying jobs that aren't quite where
you'd like to be for the long term. Each new position
can help shape your career into what you want it to be
and solve the problems you want to.

Good luck,

David


hello David,

thanks for your reply. it contains lots of practical learning, i mean
you have shed some light on how people build softwares. I read your
reply, took a print-out, read it again, thought over it for sometime
and concluded the following things or steps for me to take:

1.) 1st, learn C++ well. i mean the syntax and semantics.

2.) 2nd, eat some design ideas of C++ like

a.) why Stroustrup put generic programming the way it is in C++,
b.) learn to use the data-structures provides by STL rather than
creating your own at first place.

3.) learn paradigms of problem-solving like OOD, Generic programmming,
Functional programmming etc. problem solving paradigms are independent
of any language.

4.) Improve/Bug-Fix existing softwares. i am quite passionate about
softwares using GPL, BSD, etc. so i will do them. that is *experience*
part & matters more than the previous 3 steps.

(i will take step 3 together with step-1 or 2)

from now on, i will follow exactly this path. do you think it's right
conclusion?

hey, Can you add/remove/modify my PATH?
you really helped a lot. you dont know my friend, how much burden was
on my head regarding which path should i choose & why & how much that
path will help. you gave me a direction to go.

I am really very much thankful to you for you took time out of your
personal life for this poor fellow.
thanks
-- arnuld


Hi Arnuld,

Since you are early in your learning process, I'd suggest all of the
above. Read and understand what books and articles you can. Decide
what is relevant for you now. Don't worry much about the hype that
one technology might be better for some particular purpose. There
are so many ways and tools that can be used for nearly every problem.

This is one of the places that are good for learning C++. Read what
posts you can. Understand what you don't and perhaps contribute
when you know the answer.

Don't restrict yourself to just one language. Learn a couple or
at least don't be afraid to take a look at them. For instance,
LISP is advertised by some to be better than C++ for some problems.
There is nothing wrong with that. You might want to know the
difference. No in regards to that specific statement -- there is
nearly nothing that can't be done with C++. It may take more or
less work, but it can be done. Many of us use C++ for web sites
and other problems that people say there are other tools for.

As for what is best in C++, just learn and use what you need.
Programming is best learned by doing. Try example problems that
your books have. Discover problems that you'd like to solve.
As you learn more, you will be able to solve larger problems.
There can be great power in the programming process when you
sit back and look at your problem.

For instance, I observed a friend learning to program and
he was making some kind of program to play chess. He didn't
yet know about loops (in BASIC) and was using many if statements
to get the same affect. He wasn't detered by what he didn't
know. He could build using what he did know. Later on he
discovered other features of languages and solved some problems
quicker. Don't be afraid of doing what you can and then finding
answers to the problems you do have. Talk with people (such as
here) about what you need help with.

Don't just read about C++ and expect to get it all at once.
You may not even use all of the language features. Learn
by doing, since reading isn't normally the best way of
preparing to do.

Have fun,

David
Jun 20 '06 #13
"arnuld" <ar*****@gmail.com> wrote:
I have just started to learn C++. my main focus is on getting a
job (i.e. why i did choose C++ instead of LISP). i am very passionate
about learning C++. i dont know C and i dont intend to.
That's fine, to start out. As time goes by, you will certainly want to
learn other languages.
I have heard many times that in order to get into a job, one needs to
have a specific domain-knowledge besides the language itself. domains i
have heard of are OS, Databases, Web-programming, Games, AI etc. which
all use different languages.
Is it necessary? No, but it sure helps. The domain I work in is network
management. If two resumes come in, with roughly the same programming
experience, but one says they've worked in the finance world, and the other
has a background in networking, guess which one we're going to call first?

Our primary goal is to find good C++ programmers, but any additional skills
somebody has can be a big help. Ultimately, we're looking to build a
productive development team, and that means a mix of coding and
domain-specific knowledge. If you can't code your way out of a paper bag,
you won't make the first cut, but to get the job, you've got to show us
something more than just coding skills. It's like building a ball team.
Home-run hitters are great to have, but a switch-hitting utility infielder
with good speed on the base paths and a strong arm is useful too.
If i choose OS domain then it means i *have to* learn C. right?
Today, C is pretty much king in the operating system world. So, if that's
your goal, then yes, I'd say learning C would be a good thing.
can you recommend some domains where C++ is used & how to get into a
job there? i dont want to learn C, it will put me 6 months behind.


I realize that right now, 6 months may seem line an eternity to you, but
trust me, eventually it'll seem like a blink of an eye. I can also
guarantee that whatever languages and tools you learn now will need to get
replaced by new languages and tools (and operating systems) in a few years.
This is a fast-moving field. Expect to keep learning new stuff. Either
that, or become a dinosaur in less time than it takes to say, "Everybody
wants to hire me because I know XXX".
Jun 20 '06 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: d.schulz81 | last post by:
Hi all, We have about 10 different domains that are linked very closely and we want to identify and keep track of every single user that surfs our websites by the use of sessions. The problem...
7
by: | last post by:
I think I may have a problem with the user of cookies in my centralized logon and registration system that I hoped could be consumed by all the sub-domains on my remote host IP. I built the...
1
by: Silver Arrow | last post by:
Iframe ReturnValue returns undefined if domains are not the same I am using a modal window and an iFrame to try and pull a return value back. IMPORTANT : I am doing this across domains. Main...
6
by: onetitfemme | last post by:
Domain are very cheap now adays. What would be the pros and cons of using different hosts served from the same server, say: www.blogyourbrainoff.com and www.yourbusiness.com
1
by: barbaraJacob | last post by:
Hi everyone! Must deliver my project tomorrow....It's nearly finished. I've set up a website to be published in 3 different domains. - same webserver (I mean physically the same machine) -...
1
by: Paul Fi | last post by:
I have some confusions about the two, is it possible to create threads inside a particular domain and have other threads created in another domain or do we create threads that will manipulate app...
3
by: Marc Eggenberger | last post by:
Hi there. I have the following environment: Active Directory running on Windows 2000. There is a root domain called ad.sys and within this root domain there are the following subdomains: ...
8
by: Bern McCarty | last post by:
Is it at all possible to leverage mixed-mode assemblies from AppDomains other than the default AppDomain? Is there any means at all of doing this? Mixed-mode is incredibly convenient, but if I...
6
by: Ludvig | last post by:
I have various domains using the same application/assembly They differ in contents and design, based on a "site id", and get its information from an SQL server. Now I have to deploy the...
7
by: Doug | last post by:
An ASP.NET session cookie set on "www.mydomain.com" can not be accessed on "search.mydomain.com"; hence, a new session and cookie are being created on every sub-domain. This is occuring because...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.