Live data from Hacker News

printf("goodbye, Dennis");

economist.com

11–20 of 109 posts

Re: printf("goodbye, Dennis");

#11

> Babbage used his first Sun Unix workstation at university in the 1980s It says so in the article. Which Babbage are they talking about?

Babbage is the name of the blog: http://www.economist.com/blogs/babbage

From the description: "The blog takes its name from Charles Babbage"

So I presume it refers to the author.

Re: printf("goodbye, Dennis");

#12

> Babbage used his first Sun Unix workstation at university in the 1980s It says so in the article. Which Babbage are they talking about?

The blogger. It is customary at The Economist to assign to a columnist as a pseudonym the name of a foundational figure in whatever the column purports to be about ("Lexington" for their USA coverage, "Schumpeter" for the coverage of business, &c.). One person will write the column for a period, and then move on.

Re: printf("goodbye, Dennis");

#13
post #3

Its a bit sad but the obituary is often the best article in the economist. In this case it was a very fitting tribute to a tech hero.

I disagree, but that doesn't mean that I don't turn to the obituary page immediately on receipt of each week's issue.

jfb: bringing down the median subscriber income of The Economist for 20 years.

Re: printf("goodbye, Dennis");

#14

> Babbage used his first Sun Unix workstation at university in the 1980s It says so in the article. Which Babbage are they talking about?

Probably the author - though why they stated it like that I haven't a clue.

"About Babbage In this blog, our correspondents report on the intersections between science, technology, culture and policy. The blog takes its name from Charles Babbage, a Victorian mathematician and engineer who designed a mechanical computer"

Re: printf("goodbye, Dennis");

#15
post #12

> Babbage used his first Sun Unix workstation at university in the 1980s It says so in the article. Which Babbage are they talking about?

The blogger. It is customary at The Economist to assign to a columnist as a pseudonym the name of a foundational figure in whatever the column purports to be about ("Lexington" for their USA coverage, "Schumpeter" for the coverage of business, &c.). One person will write the column for a period, and then move on.

Ahh.. I see

Re: printf("goodbye, Dennis");

#18
post #5

I am slightly bothered by the lack of a '\n'.

Why?

The code

    printf("goodbye, Dennis");
would give

    $ ./goodbye
    goodbye, Dennis$ 
What you want is to add a newline ('\n') at the end:

    printf("goodbye, Dennis\n");
Now you get

    $ ./goodbye
    goodbye, Dennis
    $
That's why the canonical "hello, world" program contains the line

    printf("hello, world\n");

Re: printf("goodbye, Dennis");

#20

It would be pure class if wasn't for the late Mr. Jobs mention. Surely, one can think of hundreds of more concrete examples that C enabled other than iOS, like, i don't know, the Internet?

The Economist ran an obit of Mr Jobs recently, hence it made sense to refer to it to help regular readers understand the context and relationship between the two figures.
Post reply on HN