Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:The challenge of common sense... (Score 1) 144

...would dictate we look to other methods of input rather than re-engineering the wheel to fit inside a thimble.

I agree completely. And why does it even need to be QWERTY??

Graffiti, which was suggested by the submitter, doesn't satisfy the QWERTY condition. And for good reasons, all the design constraints that were there when the QWERTY keyboard was created, are no longer there when changing to that much smaller form factor.

Comment Re:Learning new mindsets (Score 1) 267

For example, if you know C# you won't learn that much by working with Java; they're too similar. By contrast, if you try learning a language like Haskell or Go instead you'll get introduced to new ways of thinking.

"A language that doesn't affect the way you think about programming is not worth knowing." — Alan Perlis

Comment Re:Yes if you can afford the time (Score 3, Insightful) 267

I don't think you understood the GPs point. He is talking about choosing a language to learn, not choosing a language for a particular task. Certainly, the language you choose for a task is important.

The reality is (and the GPs point) learning a new language shouldn't take you very much time. If you have to ask whether a language is worth learning, the answer is 'YES' because at that point you need more experience learning languages.

Comment Fairy tale (Score 4, Insightful) 164

Over most of history spying has saved lives more than taken them.
I find it so odd that people on Slashdot sing the praises of the "Codebreakers" of WWII but are shocked and freaked out that they are still around today. BTW the US and Britian both spied and used code breaking before the war started so... Yes they were spying in peacetime!!!!! Shocking.

No, spying has not saved more lives than it's cost. Spying is what caused countless Russians to be sent to Gulags, countless Jews to be sent to concentration camps, countless people from the DPRK to be killed because they disagreed with the "dear leader". In fact go back further in history and see how many lives spying cost throughout history.

The first problem is that you are attempting to claim foreign and domestic spying are the same. They are not the same, have never been the same. Domestic spying _always_ has nefarious purposes. We could argue similarly with foreign spying as well. How many people in DPRK has China spying caught? How many people in East Germany were caught by Russians?

JFK's famous line "the very word secrecy in a free and open society is repugnant" is spot on. It's not really hard to understand "why" if you look at the big picture.

Comment Re:I am a Republican voting Conservative. (Score 1) 347

The one arena that is is not contentious in is in the climatology community. Yes, there are a very small number of skeptics, but then again there are a small number of skeptics in the biology community who insist on some variant of Creationism (or Intelligent Design, as they like to market it these days). But all in all, the contention among scientists is over degree, and not over whether or not human-caused CO2 emissions are radically altering global climate.

Comment Re:No one wants this (Score 1) 425

That is the skill of time management (or self-project management). These are the rules:

1) If you make the estimate yourself, then work hard to meet it. If someone else sets the estimate for you, then you have no obligation to meet it.
2) If someone asks you to do other work, then tell the owner of the original work that it will be late (or decline the other work).

Part of being professional is learning when to tell people 'no.' The solution to the problem is never "write bad code." If that is your answer, then you're wrong.

Comment Re:Lives be damned (Score 2) 328

Well great. I wager I can produce really cheap toys by manufacturing out of substandard materials. Sure, the materials might be toxic, might even be highly flammable, but hey, all that fucking counts is profits! We should just let companies fuck everything and everyone up because MONEY!!!! We should let them lie and distort and attack anyone who questions because MONEY!!!! Fuck every single human being on earth, because MONEY!!!!

Comment Re:Measurements (Score 1) 425

Are there any examples of other skills where the distribution is bi-modal?

Good question. Maybe something where you have to get into a guild to be really good, and if you don't get in, you're going to be one of the lesser group.

Something like accountants.....there are the guys who make it to CPA; anyone can do it, but it's a lot of effort, and getting half-way there doesn't count for much. So there is one group of CPAs who are really good, and all the non-CPAs are just expendable or something.

Comment Re:The Curve on Academic Courses (Score 1) 425

It's critical, too. When you learn the low-level stuff, you develop a more intuitive sense of algorithms. Or you understand why "equality" becomes a contextual problem when dealing with reference objects. And dealing with character buffers and malloc calls in C gives you a better insight into why strings are immutable in Java, Python, .NET, others.

But when you've never had to think about how the code is represented at a lower level, well that's when you get the somebody writing horror shows like:

public static class Logger
{
        string log;

        public void AddToLog(string newEntry)
        {
                log = log + newEntry;
        }
}

Slashdot Top Deals

"Show business is just like high school, except you get paid." - Martin Mull

Working...