Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Ambiguous (Score 1) 489

The use of the words "Internet trolls" and "venom" leave a lot to the imagine. If we're talking about people who make death or rape threats, then I can see their point. But when I read "Internet troll" and "venom" I think of teasing, mockery, and people saying "you suck!" None of which should trigger a criminal investigation. I hope the law isn't as ambiguous as all that.

Comment Re:Hardly surprising (Score 1) 249

The only advertisements that I find useful are billboards on the highway, when I'm doing a long drive and don't want to bother fiddling with the GPS. "Oh good, there's a restaurant in about 20 miles." (And if there's one restaurant at the exit there's probably more.)

Comment Re:why does the CRTC need this list? (Score 1) 324

And Netflix provides *different* content in Canada than it does in the US (or other countries, presumably). They might have a better argument if they provided an identical product to anyone in the world who signed up for it, but in this case their product is specifically for the Canadian market.

Comment Tcl (Score 1) 729

Tcl is strange in a number of ways. One is that you don't assign variables by saying "x=5", you write "set x 5" instead. Nor can you do any calculations outside of the expr command (in most cases), so instead of writing "x=5*y+3", you would write "set x [expr 5*$y+3]"

I'm still fond of Tcl/Tk, in spite of that. :) What other language can give you a text editor in one line? "pack [text .t]"

Comment Objective-C (Score 1) 729

No one's mentioned Objective-C's bracket notation for calling methods. Instead of obj->method(argument) or obj.method(argument), it's [obj method:argument]. Perfectly logical I'm sure, but the few times I've tried to write Objective-C code I've always had a hard time wrapping my brain around it.

Comment Re:In-class exams are the problem. (Score 1) 359

If they have access to the web, then they have access to chatrooms and instant communication. Would you be okay with students bringing in a physics post-doc to answer the test questions for them? That's what Internet access would allow.

I get your point, but it opens a whole can of worms. If we could trust all the students to only refer to reference materials on the webmaybe if students valued the exam as an educational experience more than as a contribution to their GPA. But changing that is a much bigger task than just letting students use tablets or laptops during an exam.

Comment Re:TI calculators are not outdated, just overprice (Score 2) 359

Entering the numbers into the calculator and pressing enter isn't a complex task, there is no need for that to be part of the test.

It's not quite as trivial as that. I have engineering students in college who use the "10^x" button for scientific notation instead of "EE" (or whatever it's called on your calculator), and so when asked to calculate 4/(2e3) will end up with 2000 instead of 0.002 (because they type 4 / 2 x 10^3).

Comment The arbitrariness of a "semester" (Score 1) 205

The duration of a semester *does* put some strange, artificial restrictions on classes. In the introductory physics classes I teach, we have two big units during the course of the year—mechanics, and electricity & magnetism—but there are also smaller topics which get shoehorned in wherever there's room in the schedule: waves, optics, thermodynamics. Then there's topics I never have time for, like relativity. If we had more flexibility in course length, we could set up those extra topics as additional month-long classes instead of cramming them in at the end of the semester.

Slashdot Top Deals

"More software projects have gone awry for lack of calendar time than for all other causes combined." -- Fred Brooks, Jr., _The Mythical Man Month_

Working...