Unix Technical Forum

[OT]: What the F$ck is C++!!?!?! *Rant*

This is a discussion on [OT]: What the F$ck is C++!!?!?! *Rant* within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> Guy Macon <http://www.guymacon.com> wrote: > > Joost Kremers <joostkremers@yahoo.com> says... >> >>Guy Macon wrote: >> >>> I advise checking ...


Go Back   Unix Technical Forum > Unix Operating Systems > Slackware Linux Support

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #41 (permalink)  
Old 02-19-2008, 02:36 PM
Rich Grise
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*

Guy Macon <http://www.guymacon.com> wrote:

>
> Joost Kremers <joostkremers@yahoo.com> says...
>>
>>Guy Macon wrote:
>>
>>> I advise checking Mr. Davidson's posting record in all groups on
>>> Google before engaging him in a conversation about "Eskimos"
>>> Oil drilling, or anything else related to Alaska. You will find
>>> that he spends most of his time engaging in nasty flame wars about
>>> subjects that are of no interest to 99.9% of the world's population.

>>
>>i know floyd from this ng, and while he has strong opinions on many topics
>>and enjoys expressing them at length, he always seems quite well-informed
>>about them, and nothing i've seen him post here would constitute a flame
>>war by my definition.
>>
>>so while you are perfectly free to put floyd in your kill file, forgive me
>>for not doing the same.

>
> I did not advocate putting Mr. Davidson in a killfile. I merely
> suggested checking his posting record in all groups before engaging
> him in a conversation about certain non-slackware-related subjects
> which he seems to have strong feelings about.


Is it time for my net-nanny crack yet?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #42 (permalink)  
Old 02-19-2008, 02:36 PM
Rich Grise
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*

Joost Kremers wrote:

> name wrote:


>> With regard computers, it would seem reasonable to assume that one either
>> talks to computers in a language the computer would understand, or one
>> should train the computer to understand a language humans would
>> understand. Probably the former makes more sense, as humans are more
>> adaptable than computers.

>
> i should point out that i do not think lisp is easier for humans to
> understand than C. probably they're just about equal. it's just that lisp
> is closer to how you would want to program a computer, not because it is
> easier to understand for humans, but because it allows you to do
> complicated things in an easy, sensible way.


I "came up" from a hardware background, and my first programming class
was something very much like machine code, which made sense to me at the
time since I could relate signal/no signal to 1/0, and from there you kind
of build up to the higher-level languages.

Don't get me wrong - high level languages are great - I've already
fallen in love with QT designer, for example.

But I wonder what it's like to grasp a high-level language without
knowing assembly language. I guess conceptually it's kinda like using
a pocket calculator, or doing algebra on paper. But then, for me,
that implies FORTRAN. But then again, back in those days, FORTRAN _was_
a high-level language! :-)

I guess I'm just old.

Cheers!
Rich

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #43 (permalink)  
Old 02-19-2008, 02:36 PM
Floyd L. Davidson
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*

+Alan Hicks+ <alan@lizella.netWORK> wrote:
>In alt.os.linux.slackware, Floyd L. Davidson dared to utter,
>> Translation: Unlike Guy Macon, I post articles with facts,
>> supported by credible references, on subjects that I know
>> something about.

>
>You should check Guy's posting history before making that accusation. I
>haven't known Guy to post about anything he didn't know a lot about.


You are not very discerning.

--
FloydL. Davidson <http://web.newsguy.com/floyd_davidson>
Ukpeagvik (Barrow, Alaska) floyd@barrow.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #44 (permalink)  
Old 02-19-2008, 02:36 PM
Realto Margarino
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*

Floyd L. Davidson <floyd@barrow.com> wrote:
> +Alan Hicks+ <alan@lizella.netWORK> wrote:
> >In alt.os.linux.slackware, Floyd L. Davidson dared to utter,
> >> Translation: Unlike Guy Macon, I post articles with facts,
> >> supported by credible references, on subjects that I know
> >> something about.

> >
> >You should check Guy's posting history before making that accusation. I
> >haven't known Guy to post about anything he didn't know a lot about.


> You are not very discerning.


Guy Macon _constantly_ shoots off his mouth while not knowing what
he is talking about that. Aside from that he is a grossly fat pig
and should be ignored for that fact alone.

cordially, as always,

rm
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #45 (permalink)  
Old 02-19-2008, 02:36 PM
Guy Macon
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*


Rich Grise <null@example.net> says...

>Is it time for my net-nanny crack yet?


Naah.. You and I are too much alike to have public disagreements.
Even when I am wrong. Which I often am.

A better plan: next time you are in LA I buy you a beer.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #46 (permalink)  
Old 02-19-2008, 02:36 PM
beliavsky@aol.com
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*

Rich Grise <null@example.net> wrote in message news:<_X7Sc.755$EQ5.570@nwrddc03.gnilink.net>...

> But I wonder what it's like to grasp a high-level language without
> knowing assembly language. I guess conceptually it's kinda like using
> a pocket calculator, or doing algebra on paper. But then, for me,
> that implies FORTRAN. But then again, back in those days, FORTRAN _was_
> a high-level language! :-)


Arguably, Fortran is *still* the highest-level compiled language for
numerical work. Fortran 90 and 95 handle multidimensional arrays at a
higher level than C or C++, where you typically use pointers to
pointers -- very low-level. Operations such as adding or subtracting
matrices or taking the exponential of every element can be done in one
line of code, without explicit loops.

G95, a free Fortran 95 compiler for Linux and Unix, is available from
www.g95.org.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #47 (permalink)  
Old 02-19-2008, 02:36 PM
Wolfgang Mederle
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*

Joost Kremers wrote:

> it's true, AFAIK even lisp systems have a C core. (most of any lisp
> system is written in lisp, but at the core there is C code to "get
> things going", so to speak.)


Depends. CMU Common Lisp (<URL:http://cons.org/cmucl/>) and SBCL
(<URL:http://sbcl.sourceforge.net/>) need a host Lisp for bootstrapping.
The only C code in the sources is for interfacing with the host OS.
clisp has a C core, AFAIK, and gcl (GNU Common Lisp) compiles Lisp code
to C. Both clisp and gcl are included with Slackware 9.1 and above.

> but lisp compiles to machine code just as well as C does, (some claim
> even better...) so with tools like that it would be possible to build
> lisp out of lisp completely.


You *can* write C code that will be faster than Common Lisp code that
solves the same problem. But you'll spend an awful lot of time doing
this. Meanwhile, the Lisp code is long in production use, and the Lisp
programmer went on to something else.

--
Wolfgang Mederle

unset ALL_MY_PROBLEMS
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #48 (permalink)  
Old 02-19-2008, 02:37 PM
Rich Grise
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*

Guy Macon <http://www.guymacon.com> wrote:

>
> Rich Grise <null@example.net> says...
>
>>Is it time for my net-nanny crack yet?

>
> Naah.. You and I are too much alike to have public disagreements.
> Even when I am wrong. Which I often am.
>
> A better plan: next time you are in LA I buy you a beer.


Maybe you and me and Watson should go to the ACP swap meet sometime. :-)
Anybody else in the LA/OC area? Let's have a picnic!

Cheers!
Rich

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #49 (permalink)  
Old 02-19-2008, 02:37 PM
Rich Grise
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*

beliavsky@aol.com wrote:

> Rich Grise <null@example.net> wrote in message
> news:<_X7Sc.755$EQ5.570@nwrddc03.gnilink.net>...
>
>> But I wonder what it's like to grasp a high-level language without
>> knowing assembly language. I guess conceptually it's kinda like using
>> a pocket calculator, or doing algebra on paper. But then, for me,
>> that implies FORTRAN. But then again, back in those days, FORTRAN _was_
>> a high-level language! :-)

>
> Arguably, Fortran is *still* the highest-level compiled language for
> numerical work. Fortran 90 and 95 handle multidimensional arrays at a
> higher level than C or C++, where you typically use pointers to
> pointers -- very low-level. Operations such as adding or subtracting
> matrices or taking the exponential of every element can be done in one
> line of code, without explicit loops.


A whole line? In APL, you can do that in one _symbol_! :-)

Cheers!
Rich

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #50 (permalink)  
Old 02-19-2008, 02:37 PM
Guy Macon
 
Posts: n/a
Default Re: [OT]: What the F$ck is C++!!?!?! *Rant*


Rich Grise <null@example.net> says...
>
>Guy Macon <http://www.guymacon.com> wrote:
>
>> Rich Grise <null@example.net> says...
>>
>>>Is it time for my net-nanny crack yet?

>>
>> Naah.. You and I are too much alike to have public disagreements.
>> Even when I am wrong. Which I often am.
>>
>> A better plan: next time you are in LA I buy you a beer.

>
>Maybe you and me and Watson should go to the ACP swap meet sometime. :-)
>Anybody else in the LA/OC area? Let's have a picnic!


Or perhaps lunch or dinner The Olde Ship British Pub and Restaurant
in Fullerton? After the almighty Bob turns down the heat, of course.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 10:39 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com