Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:target foot acquired! (Score 3, Informative) 345

Way to shoot yourself in the foot, AMD. I don't want or need a new architecture. I want x86 (and x64) for my PC and laptop, the end.

Another reason to avoid the unqualified term "architecture" when speaking either of instruction sets or chip designs; person A may read "architecture" as "instruction set architecture" and person B may read it as "microarchitecture". I suspect they're talking about a new microarchitecture, implementing the x86-64 instruction set architecture, here.

Comment Re:Just like Bulldozer? (Score 1) 345

Not the architecture, that belongs to Intel, AMD extended it to support 64 bits.

What are you on about? amd64 is not an architecture, nor is x86. They are instruction sets. The underlying architecture may be informed by the instruction set, but it's also only loosely coupled in modern CPUs.

This is why the term "microarchitecture" is useful. In addition to the term "instruction set", the term "instruction set architecture" is also used, so "architecture" is used for both.

Comment Re:Mystery lead (Score 1) 204

uranium 233 has been created, and 96 kilograms of the stuff (enough to fuel 12 nuclear weapons) is now missing from the US national inventory

In addition, they have about 96 kilograms of lead that they don't remember ordering. And the situation gets worse every day!

If they started with 192kg of U-233, there'd be a lot more than 96kg of U-233 and a lot less than 96 kg of Pb around at this point.

Comment Re:Computer science? (Score 2) 125

If you look at the original post, the AC was disparaging the article for focusing on coding over the 'rest' of computer science

My intent was to point out that coding involves a set of skills that have a wider general application than just focusing on computer science, which could be likened to training a person for a trade

I thought that I was being clear

One thing you said was "Teaching people to rack servers and install operating systems becomes for focused and resembles learning a trade." "Teaching people to rack servers and install operating systems" is, of course, not part of computer science at all; it's also not part of coding, so its relevance to a discussion of coding and/or computer science is, at best, unclear.

(Presumably you're not saying something completely insane, such as likening teaching computer science to teaching people to rack servers and install operating systems. Anybody who "gets" that is completely delusional or completely ignorant of computer science.)

Comment Re:Computer science? (Score 1) 125

That's what he said.

What he said was "There are elements of coding that require planning, logic and completeness that have impacts far beyond computer science. Teaching people to rack servers and install operating systems becomes for focused and resembles learning a trade."

This says nothing about the latter two items not being elements of coding, so, no, that's not what he said.

He doesn't explicitly say they are elements of coding, but he mentions them in a sentence immediately following a sentence that mentions elements of coding, and does so in a comment to an article discussing coding, so, if he thinks they're not elements of coding, it's not clear why he bothered to mention at all.

Comment Re:Computer science? (Score 1) 125

There are elements of coding that require planning, logic and completeness that have impacts far beyond computer science. Teaching people to rack servers and install operating systems

Neither racking servers nor installing operating systems are elements of coding. They may be useful skills, but they have nothing to do with coding.

Comment Re:launchd (Score 3, Informative) 533

systemd is just an inferior version of launchd.

.c and .h files in top-of-trunk systemd as of a "git pull" done a minute or so ago:

$ find . -name '*.[ch]' -print | xargs wc -l | tail -1
252223 total

.c and .h files in launchd-842.90.1, which opensource.apple.com claims is what's in OS X 10.9.2 (did they just release 10.9.2?):

$ find . -name '*.[ch]' -print | xargs wc -l | tail -1
26790 total

Yes, that's almost a factor of 10.

Comment Re:Git can be seen as his more important contribut (Score 2) 141

No shit. An operating system that changed the world,

...by being the first widely-available, free-as-in-beer-and-speech (and not under legal threat from AT&T) Unix-compatible OS.

vs. a versioned source control system that makes certain administrative tasks easier.

...and that was most definitely not the first widely-available, free-as-in-beer-and-speech version control system capable of over-the-network access (and not, as far as I know, even the first widely-available, free-as-in-beer-and-speech distributed version control system).

(And it makes some things harder if you're "holding it wrong", but I digress.)

Comment Re:Git can be seen as his more important contribut (Score 4, Insightful) 141

We should not diminish the importance of Linux. But it's clear that Git is much more important today. Linux is wonderful, but its a commodity for most people. It doesn't matter that Android is based on Linux. It's awesome but most people don't care. It's just a technicality.

It's "just a technicality" in the sense that Android might not exist if Linux hadn't existed; saying that it's less relevant because people don't know it's there is like saying that ARM isn't all that important because most people don't know they have ARM processors in their smartphones. Git is even less directly relevant to most people, as they're not developers.

What Linus did by creating GitHub is of tremendously much more importance if you look at how well it brings open source developers together.

Presumably you meant "by creating Git"; as far as I know, he no more created GitHub than he created Android, even if GitHub uses Git and Android uses Linux.

Comment Re:Git? (Score 2) 141

I would say Git is virtually indispensable in development, or at least some form of version control, at this point.

Given that many projects don't use Git, I would not even come close to saying that Git is virtually indispensable in development (unless "virtually" means "not" or otherwise renders the adjective to which it refers meaningless).

I would say that some form of version control is important, but there were plenty of free-software version control systems, supporting over-the-Internet access, available before Git came along, so you can't give credit to Git for that.

I'd love to know the reasons that lead some to believe that "In some ways Git can be seen as his more important contribution".

Slashdot Top Deals

Credit ... is the only enduring testimonial to man's confidence in man. -- James Blish

Working...