Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror

Comment Re:Hmmm (Score 1) 405

I completely agree. I work as an educational consultant, and go into many schools - I see the tiny desks (often with integral chairs) that are hard to rearrange into clusters for students to work cooperatively and collaboratively. Instead, the very furniture invites teachers to stand and lecture their students, while the students vegetate in their little cages.

Comment Reductio ad absurdam (Score 4, Insightful) 1131

From watching the episode, the entire point of it seemed to be to show the absurdity of a prohibition on any depiction of someone. By making a depiction of Muhammed (PBUH) that involved no image that was recognizably of him, they showed that the prohibition was ridiculous, because it is then a blanket prohibition on any image. I could say that the category icon for this story was a depiction of the Prophet disguised as a white man in glasses with a black rectangle over his mouth - suddenly that would be a prohibited image.
CAVEAT: This line of argument also means that prohibitions on depictions of things that _we_ think shouldn't be allowed are also absurd.
Finally, this is not to say that I think that any image is acceptable, but it must have to do with the objective content (or at least consensus agreement of what the objective content is), rather than what the artist intended it to depict, or what it may have been interpreted as depicting.

Comment PowerPoint doesn't bore people, people bore people (Score 2, Interesting) 467

While it is important that there are opportunities for use of different learning styles, (such as the blogger wanting to be able to take notes during a talk) there will also be others that learn differently.
The blogger may find it best to take notes on everything that the professor is saying - there are others for whom it will be most productive to sit and listen intently and not take any notes at all.
The problem seems to be then, not the PowerPoint itself, but the pacing that the professors use. If they are to do problems on PowerPoint, they should have the steps appear gradually as they are working through the problem, and use the appropriate pacing, to ensure that students have the opportunity to follow the problem.
As for not having handouts of the PowerPoint slide, or their availability being in some way a disadvantage - I would say it's time to grow up. Adults are responsible for their own learning. If someone knows that they learn best by taking notes, then take notes anyway. The availability of the notes after the class will be something very positive for many others, and to request that the notes not be available for their sake is to fail to recognize the learning needs of others.

Comment Re:I don't know why this dominates the first page. (Score 1) 690

std::copy vs.

        int n;
        while (cin >> n)
                v.push_back (n);

Once you put in some braces to limit the lifetime and scope of n (your temporary), and when you factor in the implicit boolean conversion in the while clause, and the fact the code that calls 'copy' to perform a copying operation, I don't think you have much of a readability case. You have 5 lines (including enclosing braces) where std::copy needs 1.

On auto_ptr, perhaps you're forgetting that the intended use is to convert dynamic lifetime into scoped lifetime, like the built-ins. Eg. having member auto_ptrs instead of member pointers (and therefore the dtor doesn't have to call delete). Yes, I agree it is stupid to write Java style C++ new-ing every object instance, where a stack instance would work, giving you immediate, simple lifetime control (by tieing it to scope).

Comment Re:Grammar checking, too? Please?? (Score 1) 407

Well, I hope you improved the articles that you are moaning about. YOU are an editor. That is how Wikipedia works. If everyone sat around moaning about WP instead of helping improve it, there wouldn't even be a Wikipedia.

Anyway, WP has little to gain by being "taken seriously by a more mainstream audience". People can use it if they find it useful or they can not use it if they don't. There are now enough people that do care about WP to pay the bills.

It will never be like Encylopedia Britannica - but it has the potential to be so much more. It just takes people like you to improve it.

Comment Re:Are there any adults in the house? (Score 5, Informative) 662

You're completely right. I was at Oxford when this incident occurred, and I'm appalled that the Guardian and BBC News have bought into this flagrant piece of self-promotion. From what I know of the story there was no attempt made to liaise with the University Computer Services to rectify this problem before they published the information in the paper. Unfortunately people involved in student journalism, particularly at Oxford in my experience, are only interested in bolstering their CV so that they can land a job at a British national newspaper. This means that they will do anything to promote themselves without any real thought for the consequences.
Slashdot.org

Journal Journal: -1: Un-funny 2

There should be a moderation -1: Unfunny. It's oh-so-common on Slashdot. Yet another formulaic 'Profit!', 'Soviet Russia' joke. Nearly all of them are terrible. 'Overrated' is close, but Unfunny is more appropriate.

Slashdot.org

Journal Journal: Karma

110010001000 in his journal makes a very good point: that in order to get modded highly the most important thing is to post quickly. Wait more that an hour and you will never reach +5 - but post in the first 30 comments or so, be inoffensive, and you are almost guaranteed +5. See this comment of mine - not exactly groundbreaking but still +5. (I'd say that it dese
Slashdot.org

Journal Journal: finally

Finally got an account after years of AC posting. Oooh, feel the rush of the +1 bonus! My comments are not, by default, invisible to other readers! And I'll be able to find my old comments easily and see if people reply to them/ mod them.... alex

Slashdot Top Deals

A computer without COBOL and Fortran is like a piece of chocolate cake without ketchup and mustard.

Working...