F2 Navigation   |  Options  |  Login  |  Register  |  Status  |  FAQ  |  Upload Pics  |  Work-Safe Bookmark and Share


Back to Index | Reply to Topic

Page: 1 2 3  | Previous  Next | First  Last

  CMU removed OOP from its CS curriculum because it's "unsuitable for a modern CS curriculum."
.
Unregistered

. said:I disagree, polymorphism and so forth is very convenient. C# is probably the best language in existence today.



I wrote the long thing on C# and C++ and you are correct.

C# is the best programming language in existence today.

Anyone who bitches about it has either never programmed in it or has never programmed in all the other languages.
.
Unregistered

. said:Geewhiz, sam, I sure hope this airplane doesn't crash when my autopilot is "garbage collecting" at 200ft agl...



You can write programs that don't garbage collect in C# and Java, nitwit.

Just have a main loop where you don't create NEW objects.

Don't use the extra features of the language if you don't want the side effects.

Complaining about garbage collection is like complaining that you can get in a car accident if you crank the steering wheel left.
.
Unregistered

. said:I don't disagree that there may be something special about brains - something in the physical makeup - which allows it to support consciousness which silicon-based computers lack. However, as of now, nobody knows what that is - or even if it exists at all.



There is nothing fucking special about the brain.

It is a massively parallel computer. So massive that you can't even imagine it.

There are 20 to 100 billion neurons in the human brain.

That's the number of discrete computers in the human brain.

Each of them has an average of 7000 synapses.

Total storage is 700 trillion indivial pieces of information.

And that isn't bits because a synapse can hold more than a bit.

We can't make a human brain yet because the computation power is not there. We are dealing wiff 100 core computers now, not 100 billion cores.

It will get there eventually. It is a reasonable argument to say that is the whole purpose of humankind, to organize to create the next form of life.

Just like how the human body is comprised of indivdual cells thats work together to make the whole being.
.
Unregistered

. said:
. said:I don't disagree that there may be something special about brains - something in the physical makeup - which allows it to support consciousness which silicon-based computers lack. However, as of now, nobody knows what that is - or even if it exists at all.



There is nothing fucking special about the brain.

It is a massively parallel computer. So massive that you can't even imagine it.

There are 20 to 100 billion neurons in the human brain.

That's the number of discrete computers in the human brain.

Each of them has an average of 7000 synapses.

Total storage is 700 trillion indivial pieces of information.

And that isn't bits because a synapse can hold more than a bit.

We can't make a human brain yet because the computation power is not there. We are dealing wiff 100 core computers now, not 100 billion cores.



Well, that's exactly the open question.

Say we replicate the complexity and computation power of the human brain in another medium - say, silicon chips.

Will this functional equivalence result in the kind of CONSCIOUSNESS that human being enjoy? Or does consciousness require a particular physical substrate - e.g., the "wet" carbon-based one we enjoy?

One response is that it is impossible in principle to even answer the question, as there is no way to "switch minds" with the machine or otherwise verify that they are experiencing things subjectively. We can simply decide to treat anything that behaves like a conscious person as a conscious person. Or, alternately, insist that they must be made of the same stuff as us. It's not a easy question.
Asok
+++++

13975 posts

. said:The "real world" is subject to change. Education is not about training you in the details of the real world as it exists today. It's about enabling you to play a role in shaping the future - i.e., what today's real world will evolve into.

Today's real world is: a bunch of spreadsheets hacked together with VB6 at some small business; a massive COBOL-based internal application at some big bank; etc etc. Today's real world is the way it is not because that's the best way to do things. Eventually everything will change - some things more quickly than others.

Computer science is not just about programming languages and paradigms. These students will have build systems, and develop algorithms as part of their studies, and even before getting to the "real world" they will find that the functional stuff is inadequate.

Which is why even CMU is limiting this lunacy to first year courses.
.
Unregistered

Asok said:
. said:The "real world" is subject to change. Education is not about training you in the details of the real world as it exists today. It's about enabling you to play a role in shaping the future - i.e., what today's real world will evolve into.

Today's real world is: a bunch of spreadsheets hacked together with VB6 at some small business; a massive COBOL-based internal application at some big bank; etc etc. Today's real world is the way it is not because that's the best way to do things. Eventually everything will change - some things more quickly than others.

Computer science is not just about programming languages and paradigms. These students will have build systems, and develop algorithms as part of their studies, and even before getting to the "real world" they will find that the functional stuff is inadequate.

Which is why even CMU is limiting this lunacy to first year courses.


"functional stuff" is not inadequate.
.
Unregistered

. said:In other words, meaning is relational. Which of course it is. The same sequence of sounds can mean different things in different languages, for example. But just because humans assign certain meanings to a computer's output does not entail that the computer itself is incapable of interpretation. The point you are making is really orthogonal to the issue of whether machines can think, as it applies equally to any situation in which the mind interprets an aspect of its environment - whether that aspect is man or machine.



I don't know what "the computer itself is incapable of interpretation" means here. Obviously a silicon chip can be described physically but that it carries out a computation is a matter of definition, just as ink on a page can be described physically but that it stands for a word in a human language is a matter of definition. If you accept that this is true then everything I have said follows. The brain and a computer chip performing a calculation can both be described as physical systems and even if there were striking similarities it would still be meaningless to ascribe computation to the brain.

Note that what I'm arguing is that the brain is not a computer and that computation is not the basis of intelligence. I notice I did use the word "machine" in my original post but I'm actually not opposed to the idea of an artificial brain. Such a thing might be possible, but it wouldn't be performing computations.
.
Unregistered

Asok said:Computer science is not just about programming languages and paradigms. These students will have build systems, and develop algorithms as part of their studies, and even before getting to the "real world" they will find that the functional stuff is inadequate.

Which is why even CMU is limiting this lunacy to first year courses.



What exactly can't they do in a functional language?

Regardless, there's still a mandatory first year course on imperative programming, it's just OOP that's elective.
.
Unregistered

. said:You can write programs that don't garbage collect in C# and Java, nitwit.

Just have a main loop where you don't create NEW objects.

Don't use the extra features of the language if you don't want the side effects.

Complaining about garbage collection is like complaining that you can get in a car accident if you crank the steering wheel left.



No you can't. Garbage collection is a "feature" of object oriented programming. After you create these "objects", something has to come along and reuse the memory space.
.
Unregistered

. said:
. said:You can write programs that don't garbage collect in C# and Java, nitwit.

Just have a main loop where you don't create NEW objects.

Don't use the extra features of the language if you don't want the side effects.

Complaining about garbage collection is like complaining that you can get in a car accident if you crank the steering wheel left.



No you can't. Garbage collection is a "feature" of object oriented programming. After you create these "objects", something has to come along and reuse the memory space.


Memory must be managed somehow - regardless of language or paradigm.
.
Unregistered

. said:You can write programs that don't garbage collect in C# and Java, nitwit.

Just have a main loop where you don't create NEW objects.

Don't use the extra features of the language if you don't want the side effects.

Complaining about garbage collection is like complaining that you can get in a car accident if you crank the steering wheel left.




DON'T EVER ALLOCATE MEMORY, PROBLEM SOLVED
\
:winner:

.
Unregistered

. said:You can write programs that don't garbage collect in C# and Java, nitwit.

Just have a main loop where you don't create NEW objects.

Don't use the extra features of the language if you don't want the side effects.

Complaining about garbage collection is like complaining that you can get in a car accident if you crank the steering wheel left.



If you worked for me, I would fire you on the spot for being so stupid.
.
Unregistered

Asok said:Computer science is not just about programming languages and paradigms. These students will have build systems, and develop algorithms as part of their studies, and even before getting to the "real world" they will find that the functional stuff is inadequate.

Which is why even CMU is limiting this lunacy to first year courses.




Why do you find it inadequate?
.
Unregistered

The theory of OOP was great. Objects were supposed to be resilient and easy to use. Instead, they're brittle, the parameters you pass to them have to be exactly right, and every java upgrade breaks some programs. And every java object works differently, there's a learning curve there, and even a simple program takes hundreds of classes with many hundreds of methods.
.
Unregistered

. said:The theory of OOP was great. Objects were supposed to be resilient and easy to use. Instead, they're brittle, the parameters you pass to them have to be exactly right, and every java upgrade breaks some programs. And every java object works differently, there's a learning curve there, and even a simple program takes hundreds of classes with many hundreds of methods.




I like how you make the java assumption, retard.

Page: 1 2 3  | Previous  Next | First  Last

Back to Index | Reply to Topic

 
Quick Reply
Moniker:
Message: