Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:Expelled (Score 1) 684

It wasn't a "difficult case." I was merely responding to the parent article, which claimed that a sufficiently harsh punishment solves the problem. I was presenting a counterexample. You're saying that a different approach solves this particular case. That's true, but not what I was writing about.

Comment Re:Expelled (Score 2, Insightful) 684

It's not quite that easy (speaking as a long time CS teacher). For example, once I found that two of my students had turned in the identical assignment. They did not know each other, so one clearly swiped the other's work. Neither would admit wrongdoing, they both understood the code, and there were no timestamps to check. With an expulsion policy, what do you do? Either expel them both (not fair, you're punishing an innocent person) or break your own policy (looking inconsistent, which weakens the policy). The hard part about dealing with cheating is the borderline cases.
Space

Space Photos Taken From Shed Stun Astronomers 149

krou writes "Amateur astronomer Peter Shah has stunned astronomers around the world with amazing photos of the universe taken from his garden shed. Shah spent £20,000 on the equipment, hooking up a telescope in his shed to his home computer, and the results are being compared to images taken by the Hubble Space Telescope. 'Most men like to putter about in their garden shed,' said Shah, 'but mine is a bit more high tech than most. I have fitted it with a sliding roof so I can sit in comfort and look at the heavens. I have a very modest set up, but it just goes to show that a window to the universe is there for all of us – even with the smallest budgets. I had to be patient and take the images over a period of several months because the skies in Britain are often clouded over and you need clear conditions.' His images include the Monkey's head nebula, M33 Pinwheel Galaxy, Andromeda Galaxy and the Flaming Star Nebula, and are being put together for a book."

Submission + - Simple versioning share drive for Windows? 1

maiden_taiwan writes: My company's documents are stored on a big Windows share drive. We'd like to install a simple versioning system to track document history and roll back to previous versions when needed. Unfortunately, our needs are too simple for the marketplace, which pushes Documentum, SharePoint, and other massive, expensive systems that want to "be in charge" and change everybody's work habits. All we want is a simple Windows share drive (CIFS, not WebDAV, which rules out Subversion with autoversioning) that automatically versions documents when saved or on request, scales internationally to thousands of users, and doesn't cost half a million dollars. Is there really nothing out there for Windows? What does your company use?

Comment Re:squeezebox family (Score 1) 438

Squeezeboxes are AMAZING. I have 7 of them in my home, and with a few button-presses, they can all be synchronized for whole-house audio. Also the server is open-source (Perl) and you can create your own plug-ins. I'm using plug-ins for faster search, logging of all tracks played, and creation of sync groups (so with one press, you can, say, set all your upstairs squeezeboxes to play one tune and all the downstairs ones another tune). Some squeezeboxes have built-in speakers (the Boom) and others require a stereo system. I have never regretted buying them. For the ultimate in space-efficiency, you can connect a speakerless squeezebox (e.g., the Classic) to a tiny in-wall amplifier (www.wireless-experts.com) that fits into a lightswitch box, connected to wall-mounted speakers. All people see is the squeezebox, the speakers, and a volume knob on the wall. Nice.

Comment pipe into /bin/sh (Score 1) 2362

Two techniques I particularly remember for increasing my Linux effectiveness were:

1. find piped into xargs (or "find -print0" piped into "xargs -0" for safety) to process a directory tree in a single command

2. Printing commands on stdout and piping them into bash. For example, if you want to rename a bunch of files, and you put the old names into file "oldnames" and the new names into "newnames", one per line, you can do the mass renaming with:

$ paste oldnames newnames | sed 's/^/mv /' | bash

generates a sequence of "mv" commands and executes them.

First time I saw each of these, it was so eye-opening.

Slashdot Top Deals

Anyone can make an omelet with eggs. The trick is to make one with none.

Working...