Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Sophomore Uses List Context; Cops Interrogate

Posted by jamie on Wed Mar 14, 2001 08:55 AM
from the context-is-everything dept.
High school is bizarre enough, but a private high school is an environment uniquely removed from reality. S. and G., two sophomores at such a school in one of the United States' hot technology corridors, put up a couple of private websites with their unflattering thoughts about the school experience. Last week those sites got them suspended for two days. Worse -- because he wasn't familiar with the distinction between perl's scalar and list context, S. now has a police record. Update: 03/14 10:49 PM by J : We had some database trouble in the last couple hours, but all the comments seem to be back... whew.

These two 15-year-old friends are well-spoken; self-described geeks, they choose their words deliberately, with a minimum of "um." I'm using their initials instead of names because they don't want more trouble than they're already in. Their school has rules against disparaging its reputation, and they have learned their lesson from last week -- so you won't learn from me who they are, or which school it is they go to.

Let's get the code out of the way here, as a public service to students everywhere thinking about putting up a website of their own. Every perl expression has a context: scalar or list. (And for the rabid purists among you, who will flame me if I don't mention these, the other possible contexts are boolean, void, and interpolative.)

Many operators behave differently depending on context: in this case, the backtick. The statement:

my($f) = `fortune`;

...puts the backtick operator in list context, so it returns a list, where each element is one line from the program's output.

S. wants to be a developer when he graduates; he certainly has the most important thing down, which is to always be exploring and learning new things. In the process of converting his website from PHP to perl for no especially good reason, he wrote the above line.

If he had written the code correctly:

my $f = `fortune`;

...the backtick operator would have been in scalar context, assigned its complete result to $f for printing, and you wouldn't be reading this sad story.

Last week, the administrators at his school just happened to take a look at his webpage when fortune pulled up this quote:

I put the shotgun in an Adidas bag and padded it out with four pairs of tennis socks, not my style at all, but that was what I was aiming for: If they think you're crude, go technical; if they think you're technical, go crude. I'm a very technical boy. So I decided to get as crude as possible. These days, though, you have to be pretty technical before you can even aspire to crudeness.
- Johnny Mnemonic, by William Gibson

Because only the first line about the shotgun was stored in $f and shown on the webpage, it wasn't immediately obvious that this was a quote.

Visions of kids with shotguns in Adidas bags must have gone through someone's head. The school went into a sort of a crisis mode. Later they would mention that this wouldn't have been an issue if there hadn't been school shootings elsewhere in the country just a week prior.

The sophomores were called down to the office separately for questioning, one at a time, each of them without being told the other had been there. Each of them separately explained that fortune is a unix program that returns random quotations, and each of them told me that the administrators scoffed. "You're saying all these big companies that use unix, like Sun, have this fortune program?"

I assume the staff knew better and was just trying to find holes in the kids' stories, because apparently they had reloaded the page dozens of times and, of course, had gotten a new quote each time. After being released, G. got in touch with their Advanced Placement Computer Science teacher, who is, it sounds like, one of the few authority figures working for the Light Side of the Force. Her explanation of fortune was, finally, believed.

But the police had been called anyway, just to be on the safe side.

The suspension portion of the kids' punishment, carried out last Thursday and Friday, was actually over a separate website, one whose domain name contained the school's name and the Fword. This is a word, by the way, which G. obviously typed in to register the domain but which he was too polite to use over the phone. By the time we hung up, he had me embarrassed for saying it.

The site was very private, all things considered. He and S. had only told a few friends. And they'd done their homework, going over the referer logs to see who knew about it, and making sure the search engines didn't index it. They even banned the school's proxy by IP. As G.'s father later said, "it was the analogue of students in middle school passing a note back and forth. It was never meant to be in the public eye."

But it was disparaging of the school and it was, after all, a publicly available website. That's against the rules. The two shared joint responsibility, so they were both suspended.

Personally, I think a school's job is to teach not just the three R's, but also participation as a citizen in our Republic. That may be more important. For a school to teach freedom as a dry document while crushing student dissent is a waste.

It's legal, of course. The First Amendment doesn't apply to private schools. They can make whatever rules they want. Rules like theirs are great for raising robots. But anyone who's going to make a difference in this world is going to have to be comfortable with laughing at authority.

Unfortunately, the message the administration is sending gets heard. When I asked G. what he thought about being suspended for venting about his school, he told me he just didn't want to fight it. He said he might have felt differently a year ago, but now, "I don't know if it's from brainwashing or just not wanting to get expelled, but ... I just want it to be over." I can't blame him.

And S. said he understood the school's point of view. "People who were thinking about attending [his school] might see the site and think that they might not want to attend. ... I guess they do have reason for concern, because what if it shows up on a search engine."

S.'s family moved from Russia to the United States when he was four. His father painted for me an interesting picture of the interrogation by the police officers who were called to the school. Keep in mind that S. had already been told by his school that he fit the profile of a potential killer.

The police questioned them for a couple of hours. The "killer" profile was brought up again. Questions were raised about S.'s psychological state, whether he had made threats before, and whether the family had guns in the house.

His father repeated to me twice, as if he couldn't quite believe the whole thing had actually happened, that the police gave him a case number and are keeping the report on file. "I grew up in an environment," he told me, "where they are labeling people and where there is a witch hunt." He brought up McCarthyism. Eleven years in the States had led him to believe that this kind of thing doesn't happen here, or at least not anymore. I wish he were right.

The moral of the story is to be careful when passing notes to your friends. And believe the Camel when it says -- third edition, page 69 -- "You will be miserable until you learn the difference between scalar and list context."

This discussion has been archived. No new comments can be posted.
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
(1) | 2 | 3 | 4 | 5 | 6
  • Re:But why a police record? by Anonymous Coward (Score:1) Wednesday March 14 2001, @04:39AM
  • Re:So what your saying... by Anonymous Coward (Score:1) Wednesday March 14 2001, @04:40AM
  • But why a police record? by Anonymous Coward (Score:1) Wednesday March 14 2001, @04:04AM
  • Re:No big deal, just a pain in the ass by Anonymous Coward (Score:1) Wednesday March 14 2001, @06:55AM
  • 1st Ammendment by Anonymous Coward (Score:1) Wednesday March 14 2001, @04:21AM
  • Re:Not the first bad Perl usage to bring the cops by dair (Score:1) Wednesday March 14 2001, @04:47AM
  • RTSL! by Joseph Vigneau (Score:1) Wednesday March 14 2001, @04:13AM
  • T.A.N.J.! by farrellj (Score:1) Wednesday March 14 2001, @04:07AM
  • If Larry Wall is God, is his home named Camel Lot? by farrellj (Score:1) Wednesday March 14 2001, @05:50AM
  • Re:Yes, incredibly bad journalism by cduffy (Score:1) Friday March 16 2001, @01:00PM
  • So... by Kyusaku Natsume (Score:1) Wednesday March 14 2001, @02:23PM
  • Re:Confused from the UK by DataPath (Score:1) Wednesday March 14 2001, @05:11AM
  • Re:Confused from the UK by jedidiah (Score:1) Wednesday March 14 2001, @03:18PM
  • Re:He Should Post the School Name by singularity (Score:1) Wednesday March 14 2001, @04:27AM
  • Re:Excatly by jamiemccarthy (Score:1) Wednesday March 14 2001, @05:36AM
  • Re:I have a question by jamiemccarthy (Score:1) Wednesday March 14 2001, @04:09AM
  • Confused people in the US too by shroom (Score:1) Wednesday March 14 2001, @02:00PM
  • Re:When will people learn? by fatboy (Score:1) Wednesday March 14 2001, @07:35AM
  • It's not as bad as you make it seem. And worse. by mcramer (Score:1) Thursday March 15 2001, @01:02PM
  • More than one way to do it by prwood (Score:1) Wednesday March 14 2001, @04:14AM
  • Re:What did they expect ? by PhilosopherKing (Score:1) Wednesday March 14 2001, @05:23AM
  • ``5; Bizarre'' more appropriate for schools by leonbrooks (Score:1) Wednesday March 14 2001, @02:08PM
  • Re:What did they expect ? by Erore (Score:1) Thursday March 15 2001, @07:56AM
  • Re:Confused from the UK by The Swedish Chef (Score:1) Wednesday March 14 2001, @06:18AM
  • Re:Confused from the UK by grahamm (Score:1) Wednesday March 14 2001, @05:09AM
  • Re:Confused from the UK by grahamm (Score:1) Wednesday March 14 2001, @05:00AM
  • Re:Confused from the UK by DavidTC (Score:1) Wednesday March 14 2001, @05:10PM
  • Re:Confused from the UK by DavidTC (Score:1) Wednesday March 14 2001, @05:27PM
  • Re:This is less than troubling. by i22y (Score:1) Wednesday March 14 2001, @04:59AM
  • thanks, Jamie by einstein (Score:1) Wednesday March 14 2001, @04:17AM
  • Re:Confused from the UK by GiMP (Score:1) Wednesday March 14 2001, @06:11AM
  • Schools dicating speech? by dcowart (Score:1) Wednesday March 14 2001, @04:20AM
  • Re: not so confused from France by El Cabri (Score:1) Wednesday March 14 2001, @05:15AM
  • Re:Confused from the UK by El Cabri (Score:1) Wednesday March 14 2001, @05:25AM
  • Re:But it *was* by grappler (Score:1) Wednesday March 14 2001, @05:59AM
  • Freaky by grappler (Score:1) Wednesday March 14 2001, @04:15AM
  • Glad I live in Canada? by johnnnyboy (Score:1) Wednesday March 14 2001, @10:42AM
  • Re:Confused from the UK by Guanix (Score:1) Wednesday March 14 2001, @04:16AM
  • Re:Confused from the UK by bdjohns1 (Score:1) Wednesday March 14 2001, @06:57PM
  • Re:Confused from the UK by magnwa (Score:1) Wednesday March 14 2001, @04:24AM
  • Childred by matt_king (Score:1) Wednesday March 14 2001, @05:39AM
  • Re:not a public website? by Migrant Programmer (Score:1) Wednesday March 14 2001, @04:40AM
  • Re:Confused from the UK by Salgak1 (Score:1) Wednesday March 14 2001, @04:15AM
  • Re:First amendment by AstroJetson (Score:1) Thursday March 15 2001, @04:19AM
  • Re:First amendment by AstroJetson (Score:1) Wednesday March 14 2001, @04:50AM
  • Re:1st Ammendment by laura20 (Score:1) Wednesday March 14 2001, @11:22AM
  • Re:1st Ammendment by laura20 (Score:1) Wednesday March 14 2001, @11:37AM
  • Excatly by Squirrel Killer (Score:1) Wednesday March 14 2001, @04:56AM
  • A troll? Not a very good one with only one reply by Squirrel Killer (Score:1) Friday March 16 2001, @11:41AM
  • Re:Confused from the UK by MLamar (Score:1) Wednesday March 14 2001, @04:31AM
  • Re:Confused from the UK by Mikeman (Score:1) Wednesday March 14 2001, @05:06AM
  • Re:Confused from the UK by _Lint_ (Score:1) Wednesday March 14 2001, @04:31AM
  • Re:RTSL! by rking (Score:1) Wednesday March 14 2001, @04:50AM
  • Re:Sensationalism by nmarshall (Score:1) Wednesday March 14 2001, @05:22AM
  • Private schools by cisko (Score:1) Wednesday March 14 2001, @04:26AM
  • Re:What lesson did we learn? by jakob_grimm (Score:1) Wednesday March 14 2001, @04:26AM
  • Re:Confused from the UK by catfood (Score:1) Friday March 16 2001, @10:33AM
  • Re:When will people learn? by kettch (Score:1) Wednesday March 14 2001, @06:17AM
  • Re:Confused from the UK by GoofyBoy (Score:1) Wednesday March 14 2001, @04:11AM
  • Re:Confused from the UK by GoofyBoy (Score:1) Wednesday March 14 2001, @04:17AM
  • Re:Confused from the UK by ilcylic (Score:1) Thursday March 15 2001, @07:12AM
  • Re:Confused from the UK by jazman_777 (Score:1) Wednesday March 14 2001, @06:05AM
  • Re:I am not a lawyer, but I play one on TV by Pedersen (Score:1) Wednesday March 14 2001, @04:20AM
  • Only criminal records go away at 18 by darkonc (Score:1) Wednesday March 14 2001, @03:53PM
  • Re:What could they expect? by darkonc (Score:1) Wednesday March 14 2001, @04:49PM
  • Re:1st Ammendment by Inigima (Score:1) Wednesday March 14 2001, @08:11AM
  • Re:Same situation with the BSA by divec (Score:1) Wednesday March 14 2001, @07:21AM
  • Re:Lawyer: the historical context by divec (Score:1) Wednesday March 14 2001, @07:26AM
  • Re:Confused from the UK by crm0922 (Score:1) Thursday March 15 2001, @05:54AM
  • Re:Confused from the UK by crm0922 (Score:1) Wednesday March 14 2001, @04:13AM
  • Re:T.A.N.J.! by crm0922 (Score:1) Wednesday March 14 2001, @04:16AM
  • Re:What could they expect? by redelm (Score:1) Wednesday March 14 2001, @12:47PM
  • Re:What could they expect? by redelm (Score:1) Wednesday March 14 2001, @05:26AM
  • What could they expect? by redelm (Score:1) Wednesday March 14 2001, @04:15AM
  • Re:Private school by Zoop (Score:1) Wednesday March 14 2001, @05:08AM
  • Normism by birder (Score:1) Wednesday March 14 2001, @04:57AM
  • no, but it's under the umbrella of the fed by operagost (Score:1) Wednesday March 14 2001, @06:35AM
  • Can you say by VFVTHUNTER (Score:1) Wednesday March 14 2001, @04:32AM
  • Re:This is less than troubling. by AlterEd (Score:1) Wednesday March 14 2001, @05:53AM
  • Re:This is less than troubling. by Voltage_Gate (Score:1) Wednesday March 14 2001, @01:42PM
  • Re:Yes, incredibly bad journalism by Kanasta (Score:1) Wednesday March 14 2001, @01:13PM
  • perl contexts? by dougmc (Score:1) Wednesday March 14 2001, @04:24AM
  • Re:Not the first bad Perl usage to bring the cops by PerlJam (Score:1) Thursday March 15 2001, @11:52AM
  • not complaining by alprazolam (Score:1) Wednesday March 14 2001, @07:06AM
  • Re:Confused from the UK by Eponymous, Showered (Score:1) Wednesday March 14 2001, @08:12AM
  • Re:What did they expect ? by PhatKat (Score:1) Wednesday March 14 2001, @06:35PM
  • contract? by townmouse (Score:1) Saturday March 17 2001, @02:22AM
  • Would the Camel Book really have helped? by klmartin (Score:1) Wednesday March 14 2001, @04:37AM
  • Re:Too Bad they won't identify themselves by kootch (Score:1) Wednesday March 14 2001, @04:47AM
  • How'd you like a corrupt gov't protecting rights? by Rares Marian (Score:1) Wednesday March 14 2001, @05:33AM
  • Re:Not the first bad Perl usage to bring the cops by oldstrat (Score:1) Wednesday March 14 2001, @04:31AM
  • Re:Confused from the UK by pbur (Score:1) Wednesday March 14 2001, @04:16AM
  • Re:Confused from the UK by pbur (Score:1) Wednesday March 14 2001, @04:20AM
  • Re:Get a clue, my friend. by rakslice (Score:1) Wednesday March 14 2001, @06:01PM
  • Re:Confused from the UK by paulydavis (Score:1) Wednesday March 14 2001, @10:19PM
  • Re:Confused from the UK by paulydavis (Score:1) Wednesday March 14 2001, @10:31PM
  • Re:Confused from the UK by Creepy (Score:1) Wednesday March 14 2001, @06:09AM
  • Re:Private school by spyderbyte23 (Score:1) Wednesday March 14 2001, @05:22AM
  • Re:Private school by spyderbyte23 (Score:1) Wednesday March 14 2001, @05:25AM
  • Re:Confused from the UK by gfxguy (Score:1) Wednesday March 14 2001, @05:05AM
  • Freedom of the Press by gfxguy (Score:1) Wednesday March 14 2001, @05:09AM
  • Re:Confused from the UK by gfxguy (Score:1) Wednesday March 14 2001, @04:38AM
  • Re:Confused from the UK by gfxguy (Score:1) Wednesday March 14 2001, @04:44AM
  • Re:I have a question by gfxguy (Score:1) Wednesday March 14 2001, @05:17AM
  • Re:This is less than troubling. by gfxguy (Score:1) Wednesday March 14 2001, @06:01AM
  • Re:Confused from the UK by gfxguy (Score:1) Wednesday March 14 2001, @04:55AM
  • Re:Confused from the UK by gfxguy (Score:1) Wednesday March 14 2001, @06:51AM
  • Re:Confused from the UK by gfxguy (Score:1) Wednesday March 14 2001, @06:55AM
  • Re:Not FUD by haystor (Score:1) Wednesday March 14 2001, @05:38AM
  • Re:Confused from the UK by BradleyUffner (Score:1) Wednesday March 14 2001, @05:18AM
  • I'm not understanding this part by BradleyUffner (Score:1) Wednesday March 14 2001, @04:19AM
  • Fortunes can be deadly.. by Domini (Score:1) Wednesday March 14 2001, @04:17AM
  • The strawmen come a-marching... by sarkeizen (Score:1) Wednesday March 14 2001, @07:08AM
  • Why is it... by sarkeizen (Score:1) Wednesday March 14 2001, @05:42AM
  • Re:Why is it...(this time properly formatted!) by sarkeizen (Score:1) Wednesday March 14 2001, @05:49AM
  • Re:Capitalism (was Re:Private school) by smyle (Score:1) Wednesday March 14 2001, @10:19AM
  • Re:Private school by smyle (Score:1) Wednesday March 14 2001, @10:23AM
  • Re:Capitalism (was Re:Private school) by smyle (Score:1) Wednesday March 14 2001, @10:14AM
  • Re:Not the first bad Perl usage to bring the cops by rsborg (Score:1) Thursday March 15 2001, @08:25AM
  • Re:Private school by gaudior (Score:1) Wednesday March 14 2001, @06:14AM
  • As if... by gaudior (Score:1) Wednesday March 14 2001, @05:44AM
  • Re:What did they expect ? by nobody69 (Score:1) Wednesday March 14 2001, @04:34AM
  • Re:Private schools by Molt (Score:1) Wednesday March 14 2001, @05:28AM
  • Re:Private school by realdpk (Score:1) Friday March 16 2001, @01:41PM
  • Well, I mean, they could also proof read... by Latent IT (Score:1) Wednesday March 14 2001, @04:16AM
  • Re:Sensationalism by KahunaBurger (Score:1) Wednesday March 14 2001, @05:13AM
  • Now I know by KahunaBurger (Score:1) Wednesday March 14 2001, @06:45AM
  • Re:not a public website? by ajuda (Score:1) Wednesday March 14 2001, @04:12AM
  • Re:To summarize.. by jcsmith (Score:1) Wednesday March 14 2001, @07:24AM
  • Missed the point, Re: This is less than troubling by SetiMike (Score:1) Wednesday March 14 2001, @06:28AM
  • Re:Missed the point by SetiMike (Score:1) Wednesday March 14 2001, @08:01AM
  • Re:Private school by Xenophobe (Score:1) Wednesday March 14 2001, @05:32AM
  • Re:Funny (was Re:Too Distrurbing) by jgarry (Score:1) Wednesday March 14 2001, @04:40AM
  • Re:Confused from the UK by stilwebm (Score:1) Wednesday March 14 2001, @12:54PM
  • Re:Confused from the UK by stilwebm (Score:1) Wednesday March 14 2001, @04:47AM
  • Amendment 14, section 1 by bmasel (Score:1) Wednesday March 14 2001, @06:37AM
  • Re:Confused from the UK by blane.bramble (Score:1) Wednesday March 14 2001, @04:36AM
  • Re:Same situation with the BSA by blane.bramble (Score:1) Wednesday March 14 2001, @11:30PM
  • Re:Confused from the UK by blane.bramble (Score:1) Wednesday March 14 2001, @11:32PM
  • Re:Confused from the UK by blane.bramble (Score:1) Wednesday March 14 2001, @05:52AM
  • Re:Confused from the UK by blane.bramble (Score:1) Wednesday March 14 2001, @05:17AM
  • Re:Same situation with the BSA by blane.bramble (Score:1) Wednesday March 14 2001, @05:36AM
  • Re:Confused from the UK by blane.bramble (Score:1) Wednesday March 14 2001, @04:14AM
  • Re:RTSL! by blane.bramble (Score:1) Wednesday March 14 2001, @04:18AM
  • Re:Confused from the UK by blane.bramble (Score:1) Wednesday March 14 2001, @04:27AM
  • Re:Lawyer: the historical context by bravni (Score:1) Wednesday March 14 2001, @06:29AM
  • Re:Confused from the UK by DrHyde (Score:1) Wednesday March 14 2001, @05:58AM
  • Re:Confused from the UK by COAngler (Score:1) Wednesday March 14 2001, @08:24PM
  • Re:Same situation with the BSA by COAngler (Score:1) Wednesday March 14 2001, @08:37PM
  • Re:T.A.N.J.! by COAngler (Score:1) Wednesday March 14 2001, @08:59PM
  • Re:Confused from the UK by COAngler (Score:1) Wednesday March 14 2001, @06:53PM
  • Re:Confused from the UK by -Nails- (Score:1) Wednesday March 14 2001, @01:26PM
  • Re:T.A.N.J.! by superdan2k (Score:1) Wednesday March 14 2001, @05:24AM
  • A good programming lesson... by No Such Agency (Score:1) Wednesday March 14 2001, @04:08AM
  • Re:But why a police record? by Thub (Score:1) Wednesday March 14 2001, @11:47AM
  • Re:Confused from the UK by iainl (Score:1) Wednesday March 14 2001, @04:20AM
  • Re:Wait a minute... by iainl (Score:1) Wednesday March 14 2001, @04:29AM
  • Re:Confused from the UK by iainl (Score:1) Wednesday March 14 2001, @04:32AM
  • Re:Confused from the UK by DrgnDancer (Score:1) Wednesday March 14 2001, @12:58PM
  • Re:Private school by Brownstar (Score:1) Wednesday March 14 2001, @05:23AM
  • Re:Why is it...(this time properly formatted!) by nrjyzerbuny (Score:1) Wednesday March 14 2001, @04:36PM
  • Words have consequnces, and that's the whole point by fetta (Score:1) Wednesday March 14 2001, @07:23AM
  • Re:Sensationalism by Frank T. Lofaro Jr. (Score:1) Monday March 19 2001, @01:14PM
  • Re:Not FUD by Frank T. Lofaro Jr. (Score:1) Monday March 19 2001, @01:18PM
  • Re:Not the first bad Perl usage to bring the cops by f5426 (Score:1) Wednesday March 14 2001, @05:11AM
  • Re:Not the first bad Perl usage to bring the cops by f5426 (Score:1) Wednesday March 14 2001, @05:33AM
  • Re:Not the first bad Perl usage to bring the cops by f5426 (Score:1) Wednesday March 14 2001, @08:34AM
  • Re:Confused from the UK by silicon_synapse (Score:1) Wednesday March 14 2001, @07:18AM
  • Re:Confused from the UK by silicon_synapse (Score:1) Wednesday March 14 2001, @06:41AM
  • Re:This just in.... by don_carnage (Score:1) Wednesday March 14 2001, @08:11AM
  • Re:Confused from the UK by torokun (Score:1) Wednesday March 14 2001, @07:20AM
  • Freedom!!! by CakerX (Score:1) Wednesday March 14 2001, @04:32AM
  • Re:Confused from the UK by CiaranMc (Score:1) Wednesday March 14 2001, @05:16AM
  • Re:Confused from the UK by kennyj449 (Score:1) Wednesday March 14 2001, @08:10PM
  • Re:So what your saying... by Rura Penthe (Score:1) Wednesday March 14 2001, @04:44AM
  • So... by Rura Penthe (Score:1) Wednesday March 14 2001, @04:11AM
  • Re:Confused from the UK by theghost (Score:1) Wednesday March 14 2001, @04:16AM
  • Re:Confused from the UK by vroomfondel (Score:1) Monday March 19 2001, @01:23PM
  • Re:Confused from the UK by vroomfondel (Score:1) Wednesday March 14 2001, @07:17AM
  • Re:First Amendment? by Baarrff (Score:1) Wednesday March 14 2001, @09:33AM
  • Re:First Amendment? by Baarrff (Score:1) Wednesday March 14 2001, @09:37AM
  • Re:Not the first bad Perl usage to bring the cops by FortKnox (Score:1) Wednesday March 14 2001, @04:58AM
  • I have a question by Psmylie (Score:1) Wednesday March 14 2001, @04:06AM
  • Re:Confused from the UK by John Jorsett (Score:1) Wednesday March 14 2001, @05:24AM
  • I'll bet the police record says... by yoshi_mon (Score:1) Wednesday March 14 2001, @04:22AM
  • Re:Confused from the UK by markbark (Score:1) Wednesday March 14 2001, @05:21AM
  • Re:1st Ammendment by mlknowle (Score:1) Wednesday March 14 2001, @08:20AM
  • Re:Confused from the UK by Dreyfus (Score:1) Wednesday March 14 2001, @04:59AM
  • Re:First amendment by TheABomb (Score:1) Wednesday March 14 2001, @08:58AM
  • Re:This is less than troubling. by the green giant (Score:1) Wednesday March 14 2001, @08:52AM
  • Re:Same situation with the BSA by Happy Monkey (Score:1) Wednesday March 14 2001, @06:17AM
  • Re:What could they expect? by Happy Monkey (Score:1) Wednesday March 14 2001, @08:03AM
  • Admins are afraid... by nstenz (Score:1) Wednesday March 14 2001, @07:29AM
  • Re:Confused from the UK by christrs (Score:1) Wednesday March 14 2001, @05:08AM
  • First Amendment? by blueg3 (Score:1) Wednesday March 14 2001, @04:21AM
  • Re:What could they expect? by blueg3 (Score:1) Wednesday March 14 2001, @04:27AM
  • Re:Private school (OFFTOPIC) by fantom_winter (Score:1) Wednesday March 14 2001, @05:50AM
  • Re:Private school by fantom_winter (Score:1) Thursday March 15 2001, @07:17AM
  • Re:Private school (OFFTOPIC) by fantom_winter (Score:1) Wednesday March 14 2001, @04:33AM
  • Re:I applaud the administrators and police, here. by David Hume (Score:1) Wednesday March 14 2001, @04:17PM
  • Re:Why is it...(this time properly formatted!) by David Hume (Score:1) Wednesday March 14 2001, @04:55PM
  • What lesson did we learn? by Deanasc (Score:1) Wednesday March 14 2001, @04:19AM
  • Re:First amendment by Phillip2 (Score:1) Wednesday March 14 2001, @05:10AM
  • Re:When will people learn? by Phillip2 (Score:1) Wednesday March 14 2001, @05:19AM
  • Re:First amendment by Phillip2 (Score:1) Wednesday March 14 2001, @04:50AM
  • First amendment by Phillip2 (Score:1) Wednesday March 14 2001, @04:09AM
  • Re:First amendment by MSHNR (Score:1) Wednesday March 14 2001, @05:16AM
  • Re:Why this doesn't make sense by Fujisawa Sensei (Score:1) Wednesday March 14 2001, @07:29AM
  • Re:I have a question by schroedinbug (Score:1) Wednesday March 14 2001, @12:54PM
  • Re:1st Ammendment by 5KVGhost (Score:1) Wednesday March 14 2001, @10:08AM
  • Re:Confused from the UK by Mr. Sharumpe (Score:1) Wednesday March 14 2001, @06:48AM
  • Re:To summarize.. by update() (Score:1) Wednesday March 14 2001, @05:47AM
  • Too Distrurbing by mr.nicholas (Score:1) Wednesday March 14 2001, @04:03AM
  • Re:I applaud the administrators and police, here. by R1chard Gere (Score:1) Wednesday March 14 2001, @05:02AM
  • Re:Confused from the UK by Raffaello (Score:1) Wednesday March 14 2001, @07:09AM
  • You've got it wrong, my compatriot by xenocide2 (Score:1) Wednesday March 14 2001, @08:47AM
  • Re:Confused from the UK by Geeky Frignit (Score:1) Wednesday March 14 2001, @06:17AM
  • Re:Too Bad they won't identify themselves by jlenn0n (Score:1) Wednesday March 14 2001, @05:08AM
  • Re:Why is it... by medscaper (Score:1) Wednesday March 14 2001, @06:35AM
  • I applaud the administrators and police, here. by medscaper (Score:1) Wednesday March 14 2001, @04:31AM
  • Re:Parenting, life lessons, and voting with your f by grammar fascist (Score:1) Wednesday March 14 2001, @06:10AM
  • Re:What could they expect? by westfieldscientific (Score:1) Wednesday March 14 2001, @07:08AM
  • Re:But why a police record? by Mondrames (Score:1) Wednesday March 14 2001, @04:43AM
  • Re:When will people learn? by aolmstead (Score:1) Wednesday March 14 2001, @06:08AM
  • Removed from Reality? Surely you jest. by Shivetya (Score:1) Wednesday March 14 2001, @04:10AM
  • Re:RTSL! by shyster (Score:1) Wednesday March 14 2001, @05:51AM
  • Re:To summarize.. by _N0EL (Score:1) Wednesday March 14 2001, @04:37AM
  • Wonder if they have any "Scent of a Woman" quotes? by _N0EL (Score:1) Wednesday March 14 2001, @04:15AM
  • Re:Schools dicating speech? by Dokutoru Hyakuhei (Score:1) Wednesday March 14 2001, @05:15AM
  • Free speech by Random Walk (Score:1) Wednesday March 14 2001, @05:07AM
  • Re:Too Bad they won't identify themselves by bharatman (Score:1) Thursday March 15 2001, @12:57AM
  • Same situation with the BSA by emmaussmith (Score:1) Wednesday March 14 2001, @05:13AM
  • No free speech in schools by fireboy1919 (Score:1) Wednesday March 14 2001, @07:06AM
  • Re:Confused from the UK by dlkf (Score:1) Wednesday March 14 2001, @07:03AM
  • Re:Confused from the UK by dlkf (Score:1) Wednesday March 14 2001, @06:45AM
  • Re:This just in.... by TheStruuus (Score:1) Wednesday March 14 2001, @06:37AM
  • Re:Confused from the UK by EllisDees (Score:1) Wednesday March 14 2001, @05:53AM
  • Re:Confused from the UK by EllisDees (Score:1) Wednesday March 14 2001, @05:59AM
  • Re:Free speech by EllisDees (Score:1) Wednesday March 14 2001, @06:03AM
  • Re:This is less than troubling. by dachshund (Score:1) Wednesday March 14 2001, @04:41AM
  • Re:Confused from the UK by dachshund (Score:1) Wednesday March 14 2001, @04:28AM
  • Re:Confused from the UK by markmoss (Score:1) Wednesday March 14 2001, @09:04AM
  • Re:"censorship" of shool newspapers by markmoss (Score:1) Wednesday March 14 2001, @09:22AM
  • 2 day suspension isn't anything by crudmonky (Score:1) Wednesday March 14 2001, @04:45AM
  • Re:Private school by crudmonky (Score:1) Wednesday March 14 2001, @04:31AM
  • Re:Confused from the UK by Mahonrimoriancumer (Score:1) Wednesday March 14 2001, @08:11PM
  • Re:``5; Bizarre'' more appropriate for schools by Mahonrimoriancumer (Score:1) Wednesday March 14 2001, @07:22PM
  • Re:When will people learn? by pogen (Score:1) Wednesday March 14 2001, @05:00AM
  • Re:When will people learn? by pogen (Score:1) Wednesday March 14 2001, @05:06AM
  • Re:When will people learn? by pogen (Score:1) Wednesday March 14 2001, @06:49AM
  • Re:I applaud the administrators and police, here. by zap42hod (Score:1) Wednesday March 14 2001, @07:18AM
  • Re:Confused from the UK by Bobo the Space Chimp (Score:1) Wednesday March 14 2001, @05:34AM
  • Re:What did they expect ? by Matthew Ewing (Score:1) Wednesday March 14 2001, @02:18PM
  • Re:Confused from the UK by magi_caspar (Score:1) Wednesday March 14 2001, @06:31PM
  • Re:This is less than troubling. by capologist (Score:1) Friday March 16 2001, @11:37AM
  • Re:Same situation with the BSA by Robert A. Heinlein (Score:1) Wednesday March 14 2001, @06:38AM
  • Re:Confused from the UK by BasicBoomstick (Score:1) Wednesday March 14 2001, @03:27PM
  • Potential killer? by RotateLeft4Bits (Score:1) Wednesday March 14 2001, @04:17AM
  • Skool = bad by Master of Oblivion (Score:1) Wednesday March 14 2001, @06:37PM
  • Re:When will people learn? by vankevner (Score:1) Wednesday March 14 2001, @06:15AM
  • Re:When will YOU learn? by vankevner (Score:1) Wednesday March 14 2001, @06:27AM
  • Private Schools by evenprime (Score:1) Wednesday March 14 2001, @04:43AM
  • school vouchers??? by evenprime (Score:1) Wednesday March 14 2001, @04:23AM
  • How to prevent such incidents in the future by scorcherer (Score:1) Wednesday March 14 2001, @04:33AM
  • Police State by n0-0p (Score:1) Wednesday March 14 2001, @04:33AM
  • Re:A good programming lesson... by prh99 (Score:1) Wednesday March 14 2001, @06:09AM
  • Re:What did they expect ? by purple_ivan (Score:1) Wednesday March 14 2001, @08:43AM
  • Re:I taught at a Bible School for a number of year by purple_ivan (Score:1) Wednesday March 14 2001, @08:46AM
  • Re:Removed from Reality? Surely you jest. by purple_ivan (Score:1) Wednesday March 14 2001, @08:47AM
  • Re:not a public website? by purple_ivan (Score:1) Wednesday March 14 2001, @07:35AM
  • Re:1st Ammendment by Trauma_Hound1 (Score:1) Wednesday March 14 2001, @10:41AM
  • This just in.... by Anonymous Coward (Score:2) Wednesday March 14 2001, @04:05AM
  • Cool by Anonymous Coward (Score:2) Wednesday March 14 2001, @04:09AM
  • No big deal, just a pain in the ass by Anonymous Coward (Score:2) Wednesday March 14 2001, @04:29AM
  • Re:The State IS potentially the worst thing... by Anonymous Coward (Score:2) Wednesday March 14 2001, @04:59AM
  • Police record? by Enry (Score:2) Wednesday March 14 2001, @04:16AM
  • Re:Yes, incredibly bad journalism by cduffy (Score:2) Wednesday March 14 2001, @04:19PM
  • Re:Words have consequnces, and that's the whole po by cduffy (Score:2) Wednesday March 14 2001, @04:24PM
  • Re:Yes, incredibly bad journalism by cduffy (Score:2) Wednesday March 14 2001, @06:47AM
  • Re:Only insofar as the State is not coopted! by cduffy (Score:2) Wednesday March 14 2001, @08:22AM
  • But it *was* by hawk (Score:2) Wednesday March 14 2001, @05:03AM
  • "censorship" of shool newspapers by hawk (Score:2) Wednesday March 14 2001, @05:10AM
  • Re:"censorship" of shool newspapers by hawk (Score:2) Thursday March 15 2001, @04:38AM
  • Re:Yes, incredibly bad journalism by hawk (Score:2) Thursday March 15 2001, @04:43AM
  • Re:Confused from the UK by hawk (Score:2) Wednesday March 14 2001, @05:19AM
  • Re:Lawyer: the historical context by hawk (Score:2) Wednesday March 14 2001, @06:46AM
  • Re:I applaud the administrators and police, here. by johnnyb (Score:2) Wednesday March 14 2001, @05:14AM
  • Re:Why is it...(this time properly formatted!) by jamiemccarthy (Score:2) Wednesday March 14 2001, @07:03PM
  • Re:Private schools by Darchmare (Score:2) Wednesday March 14 2001, @05:52AM
  • Re:Confused from the UK by SgtPepper (Score:2) Wednesday March 14 2001, @05:56AM
  • Re:Freaky by larien (Score:2) Wednesday March 14 2001, @04:17AM
  • Non-pulic? Use authentication! by Rob Kaper (Score:2) Wednesday March 14 2001, @04:06AM
  • Re:Confused from the UK by sdw (Score:2) Wednesday March 14 2001, @05:03AM
  • Re:This is less than troubling. by FFFish (Score:2) Wednesday March 14 2001, @07:16AM
  • Re:Not FUD by FFFish (Score:2) Wednesday March 14 2001, @07:18AM
  • Re:Parenting, life lessons, and voting with your f by FFFish (Score:2) Wednesday March 14 2001, @07:26AM
  • Re:This is less than troubling. by FFFish (Score:2) Wednesday March 14 2001, @06:37AM
  • Re:Confused from the UK by GypC (Score:2) Wednesday March 14 2001, @04:20AM
  • 14th amendment by JoeBuck (Score:2) Wednesday March 14 2001, @08:42AM
  • Re:Godwins Law! by scrytch (Score:2) Wednesday March 14 2001, @05:58AM
  • Not FUD by V. Mole (Score:2) Wednesday March 14 2001, @05:22AM
  • Re:Not the first bad Perl usage to bring the cops by merlyn (Score:2) Wednesday March 14 2001, @01:50PM
  • Re:Not the first bad Perl usage to bring the cops by merlyn (Score:2) Wednesday March 14 2001, @06:33AM
  • Re:Confused from the UK by Syberghost (Score:2) Wednesday March 14 2001, @04:52PM
  • Re:Only criminal records go away at 18 by SoftwareJanitor (Score:2) Friday March 16 2001, @06:40AM
  • Re:No big deal, just a pain in the ass by SoftwareJanitor (Score:2) Friday March 16 2001, @06:52AM
  • Re:No big deal, just a pain in the ass by SoftwareJanitor (Score:2) Wednesday March 14 2001, @08:02AM
  • Re:not a public website? by magic (Score:2) Wednesday March 14 2001, @07:09AM
  • Re:1st Ammendment by ChadN (Score:2) Wednesday March 14 2001, @08:21AM
  • Re:Same situation with the BSA by WNight (Score:2) Wednesday March 14 2001, @06:44AM
  • Re:Yes, incredibly bad journalism by ConceptJunkie (Score:2) Wednesday March 14 2001, @12:49PM
  • Re:Yes, incredibly bad journalism by ConceptJunkie (Score:2) Thursday March 15 2001, @04:23AM
  • Re:To summarize.. by PigleT (Score:2) Wednesday March 14 2001, @04:21AM
  • Re: Wrongo buster by Bob Uhl (Score:2) Wednesday March 14 2001, @01:54PM
  • Re:First amendment by Valdrax (Score:2) Wednesday March 14 2001, @04:22AM
  • When will YOU learn? by Russ Nelson (Score:2) Wednesday March 14 2001, @05:54AM
  • Re:When will YOU learn? by Russ Nelson (Score:2) Monday March 19 2001, @05:17AM
  • Re:Confused from the UK by CharlieG (Score:2) Wednesday March 14 2001, @05:15AM
  • Re:Confused from the UK by CharlieG (Score:2) Wednesday March 14 2001, @03:46PM
  • Re:So what your saying... by el_chicano (Score:2) Wednesday March 14 2001, @10:21AM
  • Why we care by coyote-san (Score:2) Wednesday March 14 2001, @06:58AM
  • Wrong. Supreme Court says so. by rjh (Score:2) Wednesday March 14 2001, @12:35PM
  • No by wiredog (Score:2) Wednesday March 14 2001, @05:52AM
  • Re:Godwins Law! by wiredog (Score:2) Wednesday March 14 2001, @06:09AM
  • Godwins Law! by wiredog (Score:2) Wednesday March 14 2001, @05:43AM
  • public funds by wiredog (Score:2) Wednesday March 14 2001, @05:48AM
  • Re:1st Ammendment by jburroug (Score:2) Wednesday March 14 2001, @08:34AM
  • Only insofar as the State is not coopted! by goliard (Score:2) Wednesday March 14 2001, @06:16AM
  • It doesn't have to be a pain in the ass by darkonc (Score:2) Wednesday March 14 2001, @02:59PM
  • Re:Confused from the UK by Mr. Slippery (Score:2) Wednesday March 14 2001, @09:34AM
  • Re:Dumbass by divec (Score:2) Wednesday March 14 2001, @07:02AM
  • Re:"censorship" of shool newspapers by 1010011010 (Score:2) Wednesday March 14 2001, @07:03AM
  • Re:Sensationalism by nano-second (Score:2) Wednesday March 14 2001, @05:26AM
  • Re:But why a police record? by Bouncings (Score:2) Wednesday March 14 2001, @01:58PM
  • Re:1st Ammendment by cmuncey (Score:2) Wednesday March 14 2001, @11:51AM
  • Re:Private school (OFFTOPIC) by lizrd (Score:2) Wednesday March 14 2001, @05:20AM
  • Re:Private school (OFFTOPIC) by lizrd (Score:2) Wednesday March 14 2001, @06:56AM
  • Re:Confused from the UK by Zak3056 (Score:2) Wednesday March 14 2001, @05:26AM
  • Re:Confused from the UK by G-Man (Score:2) Wednesday March 14 2001, @06:31AM
  • Re:Confused from the UK by Pfhreakaz0id (Score:2) Wednesday March 14 2001, @04:45AM
  • Re:Confused from the UK by Pfhreakaz0id (Score:2) Wednesday March 14 2001, @06:57AM
  • Re:Confused from the UK by Pfhreakaz0id (Score:2) Wednesday March 14 2001, @04:10AM
  • I am not a lawyer, but I play one on TV by Greyfox (Score:2) Wednesday March 14 2001, @04:10AM
  • Re:When will people learn? by shaper (Score:2) Wednesday March 14 2001, @05:57AM
  • Re:What did they expect ? by Bozinbali (Score:2) Wednesday March 14 2001, @07:05AM
  • Wait a minute... by TopShelf (Score:2) Wednesday March 14 2001, @04:07AM
  • Re:Confused from the UK by TopShelf (Score:2) Wednesday March 14 2001, @04:10AM
  • New fortune command line options? by Domini (Score:2) Wednesday March 14 2001, @04:20AM
  • Re:Not the first bad Perl usage to bring the cops by alexburke (Score:2) Wednesday March 14 2001, @09:46PM
  • Re:Not FUD by KahunaBurger (Score:2) Wednesday March 14 2001, @06:39PM
  • Funny (was Re:Too Distrurbing) by jgarry (Score:2) Wednesday March 14 2001, @04:20AM
  • Re:No big deal, just a pain in the ass by COAngler (Score:2) Wednesday March 14 2001, @06:42PM
  • Re:Confused from the UK by coolgeek (Score:2) Wednesday March 14 2001, @03:21PM
  • Re:Confused from the UK by coolgeek (Score:2) Friday March 16 2001, @02:03PM
  • The State IS potentially the worst thing... by clary (Score:2) Wednesday March 14 2001, @04:34AM
  • Re:I'm not joking; are you? by clary (Score:2) Thursday March 15 2001, @04:16AM
  • Nicely answered by clary (Score:2) Wednesday March 14 2001, @04:20PM
  • I'm not joking; are you? by clary (Score:2) Wednesday March 14 2001, @04:56PM
  • Confusing 2 issues by Frank T. Lofaro Jr. (Score:2) Monday March 19 2001, @12:31PM
  • Re:Yes, incredibly bad journalism by Frank T. Lofaro Jr. (Score:2) Monday March 19 2001, @01:28PM
  • It is a wide consipracy by f5426 (Score:2) Thursday March 15 2001, @08:53AM
  • Re:What did they expect ? by cyber-vandal (Score:2) Wednesday March 14 2001, @04:27AM
  • Re:Private school by dmccarty (Score:2) Wednesday March 14 2001, @06:37AM
  • Re:Not the first bad Perl usage to bring the cops by edp (Score:2) Wednesday March 14 2001, @04:49AM
  • He Should Post the School Name by LaNMaN2000 (Score:2) Wednesday March 14 2001, @04:14AM
  • Re:To summarize.. by Erasmus Darwin (Score:2) Wednesday March 14 2001, @04:42AM
  • Re:Private school by Erasmus Darwin (Score:2) Wednesday March 14 2001, @04:49AM
  • Re:To summarize.. by Erasmus Darwin (Score:2) Wednesday March 14 2001, @06:46AM
  • Re:Parenting, life lessons, and voting with your f by SubtleNuance (Score:2) Wednesday March 14 2001, @06:31AM
  • Re:Confused from the UK by Sanchi (Score:2) Wednesday March 14 2001, @04:10AM
  • Re:Schools dicating speech? by AndrewD (Score:2) Wednesday March 14 2001, @04:32AM
  • 1st Ammd/Free Speech not violated. by namespan (Score:2) Wednesday March 14 2001, @07:10AM
  • This is less than troubling. by qpt (Score:2) Wednesday March 14 2001, @04:08AM
  • by hawk (1151) <hawk@eyry.org> on Wednesday March 14 2001, @05:17AM (#364585) Journal
    I am a lawyer, but this is nto legal advice. If you need legal advice, contact an attorney licensed in your jurisdiction.


    As near as I can tell, our federal government is the only one in world history for which distrust of government is a central founding principle (though the state governments of some of the western and midwestern states may qualify as well). By design, individuals are left to their own affairs (though this has weakened to a distressing degree), and government is hamstrong at every possible turn. People decry "gridlock" from our two-chambered legislature and executive veto, but this is a feature, not a bug. It was *designed* to work that way.


    The government has massive resources; the individual little. So that the individual has a fighting chance when faced with the aweseome power of the state, the playing field is tipped in his favor.


    Private interactions are another matter. To *not* allow the school to require its enrollees to abide by these policies would be a *limitation* of the freedom of individuals to contract, and is thus repugnant to the principles of our system (which we got from you, and stem in turn from the tribes the romans were never able to quite control).


    See, it's really all about our protecting "The Rights of Englishmen", which is all we wre really after in the 18th century, anyway :)


    hawk, esq.

  • Re:Private school (Score:3)

    by Masem (1171) on Wednesday March 14 2001, @04:55AM (#364586)
    Why is choice in school bad while choice in OS, CPU, and car are all wonderful? Why is it a bad thing to be allowd to find a school that teaches the way you want? Yeah, yeah, this is a troll, probably, but here's my take: Choice is good only if everyone has the opportunity to make that choice. For cars and CPUs, that's certainly possible; your choice range might be limited in both cases due to income, but that limitation can still leave you with a wide range of choices from different manufactures. (OS, I'll leave out, because of the Microsoft Tax, but ignoring this, you do have a choice in OS as well).

    Vouchers do offer choices for education, but only to a subset of the population. Nearly every implementation of vouchers that I read about would give, no questions asked, about $2500/yr per student. Most private schools, however, are asking for at least $5000/yr, if not up to $10,000/yr for tuition. Those that can afford this will do so, but for struggling families not-necessary-poverty-but-only-just-above-it, that's very much out of the question, and they're stuck with the public school allocated to them by districting lines. Thus, they have no choice. Vouchers only give choices to the rich. That $2500/yr is better spent on a whole improving all public schools particularly those in inner cities, and paying better salaries for teachers, than to allow a few more select few students the choice of an education.

  • Re:Private school (Score:3)

    by stripes (3681) on Wednesday March 14 2001, @05:56AM (#364587) Homepage Journal
    Vouchers do offer choices for education, but only to a subset of the population. Nearly every implementation of vouchers that I read about would give, no questions asked, about $2500/yr per student. Most private schools, however, are asking for at least $5000/yr, if not up to $10,000/yr for tuition.

    So is your complaint that vouchers don't give enough?

    I don't think "only the rich" would find this useful. When I was growing up we middle class, and my parents sent my sister to a private school (possably as a result of seeing how screwed up the public school I went to was). My patents managed to do this pretty much by not buying a new car from 1979 through the early 1990s (and only two or three used ones, all under about $1000).

    I expect even if vouchers are "half off" it will at least help the middle class, and maybe the upper lower class. Not just the rich.

    Vouchers only give choices to the rich.

    Vouchers don't do squat for the rich. The rich are, after all, rich. If they want to send thsir kids to private school, they allready do. If they want to give their kids cars that cost more then my whole family made in a year, they do. Vouchers help the middle class, the not-rich, yet not-poor.

  • by stripes (3681) on Wednesday March 14 2001, @04:23AM (#364588) Homepage Journal
    Private entities are far more dangerous to people, simply because they only have to answer to their shareholders, and that people have been proven again and again that greediness will not stop people from hurting other people.

    Private entities are gennerally less dangerous because you have choices. If these folks can pay for one privte school, they can probbably pay for a diffrent one. If they are sending their children to a public school they are probbably screwed if they need to send them elsewhere.

    It is time for the americans to extend their much beloved constitution to the private sector!!!!

    Ok, just remember you are part of the private sector. If I'm given the right to make a contract with the school to not mock them, and then mock them anyway, I'll have the right to break contracts with you. Perhapse I'll agree to buy your car, and then once I get it forget about the part where I actually have to pay you.

    We allready have tons of laws for the private sector. Maybe too many, maybe too few. Mostly too many. Look at all the slashdot headlines, far more complain about bad stupid unjust laws then the lack of good just needed ones.

  • by Pig Hogger (10379) <pig,hogger&gmail,com> on Wednesday March 14 2001, @04:11AM (#364589) Homepage Journal
    When will people learn that the STATE is NOT the worse thing out there? Private entities are far more dangerous to people, simply because they only have to answer to their shareholders, and that people have been proven again and again that greediness will not stop people from hurting other people.

    It is time for the americans to extend their much beloved constitution to the private sector!!!!

    --

  • by NMerriam (15122) <NMerriam@artboy.org> on Wednesday March 14 2001, @04:27AM (#364590) Homepage
    Does this mean that sections of your constitution don't apply to private schools? How so, I thought the constitution was all-powerful (or am I misunderstanding this?)

    The constitution is a document that explains the powers of the State in relation to the people, and the bill of rights explicitly spells out some of the rights that the people reserve from the State.

    The constitution only limits what the government may do .Originally it was only the federal government limited by the constitution -- each state could make laws to establish religion, etc -- it was just to prevent a central government from "taking over" the autonomy of the states.

    Of course, we amended the constitution so that now it DOES apply to the individual states, but it does not apply to private companies or individuals. The reason most folks get confused is because frequently private groups that accept federal funding (for example schools that offer government education loans) suddenly are considered to be under the authority of the constitution, because using tax dollars makes them quasi-governmental. So you DO hear all the time about schools especially that get into trouble with citizen's rights, but its because they have CHOSEN to accept that responsibility in exchange for being able to offer government programs.

    Many private schools (particularly religious or very conservative schools) refuse federal funding for exactly this reason. It sounds like this school doesn't accept government money, and thus has no responsibility to respect the students' freedom of speech.

    ---------------------------------------------
  • by ajs (35943) <ajs AT ajs DOT com> on Wednesday March 14 2001, @05:58AM (#364591) Homepage
    I just want to make a few things clear to those who are questioning why Randall thinks he was delt a bum rap.
    • Randall did what an awfull lot of us did (I certainly did). He circumvented a client's security (while still working for them) in order to hand them proof that they needed to fix the problem.
    • Beyond the financial burdon that this has placed on him (which, I understand to be astronomical), this case as resulted in a great deal of lost work and the requirement that he tell any prospective employer about the incident.
    • Intel was quite happy with Randall's work, and he NEVER did ANYTHING to harm the company or that resulted in a loss of money.
    So, do I think Intel should have swatted him? Yes. Do I think that they should have fired him (terminated his contract)? Maybe. I wouldn't, but I'm a nice guy.

    But, final analysis, was it worth nearly ruining the man's life over? What, exactly are whe exacting punishment FOR? A stupid mistake?

    No, this is clearly a case where there were an awful lot of people who wanted to "set an example", and while this is not as extreme a case as some others, Randall was wronged by the system.

  • by cyberdonny (46462) on Wednesday March 14 2001, @05:34AM (#364592)
    > he committed crimes and was punished proportionately.

    In the old days, the word "crime" was reserved for actions such as murder, armed robbery, high treason, etc. Nowadays, putting an extra pair of parenthesis around a variable apparently qualifies too...

  • Private vs. public (Score:3)

    by The Queen (56621) on Wednesday March 14 2001, @05:37AM (#364593) Homepage
    the school made the rule.

    I tend to agree with you. I was enrolled in a private school from kindergarten to 4th grade, and the culture shock when I went to public school in 5th grade was insane. In private school, at least back in my day, if you misbehaved you went to the principal's office and got the paddle. Imagine that: between swats, the kid's yelling "I promise I'll *ow* never forget the *ow* difference between list and *OW* scalar again!" :-)


    "I'm not a bitch, I just play one on /."
  • Re:Private school (Score:3)

    by jjo (62046) on Wednesday March 14 2001, @05:53AM (#364594) Homepage
    I see. Even if a voucher program unleashes a vast new demand for lower-cost private schools, the supply side of the private education market will utterly unaffected. The post-voucher market will be precisely equivalent to what we see now. Not one new school will be founded to serve voucher families at tuitions they can afford.

    I beg to differ. Just because upper-crust schools now charge $10,000/yr for tuition does not mean that a quality education needs to cost that much. The current schools are charging what the current (elite) market will bear. Vouchers will change that.
  • by Pseudonym (62607) <ajb@spamcop.net> on Wednesday March 14 2001, @04:31AM (#364595)
    Does this mean that sections of your constitution don't apply to private schools?

    Yes. The constitution only applies to the government.

    For example, suppose your constitution has a clause which says that the government can't establish a state religion. That means that a government or government-funded organisation (e.g. a public school) can't say that members of some religion are allowed to be on staff. However this doesn't apply to non-government organisations (e.g. a church may impose a rule that you must be a member of this church to be an office holder).

    Now of course it may not prohibit the government from passing laws prohibiting this kind of "discrimination" in other organisations, but there might be other problems there. Imagine the fuss that the Roman Catholic Church would kick up if a court decided that they had to allow women to be priests due to anti-discrimination laws...

    There is a good reason for this. Democratic government is meant to be by and for "the people". Government has a monopoly on some things, so they need the restraint. On the other hand, you have a choice as to which private school you send your kids to (if you choose a private school), so they don't need the restraint so much.

    IMO, it's both good and bad. The bad part is that when private organisations overstep the mark there's often no legal recourse. (You can't legislate professionalism.) The good part is that negative publicity can be a much more powerful tool than the legal system, especially in a non-monopoly environment where people can and do vote with their money. Unfortunately, where the guilty party is a school, this can backfire, as lots of parents side with the school, thinking they're doing a good job with "discipline", when they're actually abusing their powers.

    You know, teenagers are rebellious enough without giving them something actually legitimate to rebel against. You'd think the school would know that.

  • by lizrd (69275) <adam@@@bump...us> on Wednesday March 14 2001, @05:48AM (#364596) Homepage
    Pretty much the deal is that, if I want, I am free to say to you

    "Shut the fuck up or get the hell out of my house."

    This is a restriction on your speach, but it is not regulated by the US constitution since it is a transaction between private individuals and we are free to conduct our affairs in pretty much anyway that we choose. This is very different from having a federal judge say:

    "You may speak no more of these matters or we will have you deported."

    Also bear in mind that though you are free to say pretty much anything you want in the United States others may still hold you accountable for what you say. If you speak too frequently about hot grits in your pants, I'm free to tell you to piss off and ignore you. If you tell lies about me that damage my reputation or career, I'm free to sue you. If you say things that are threatening in nature, I'm free to have you held criminaly accountable for them.

    The thing to remember is that just because your speach is free doesn't mean that it is consequence free.

    These kids kind of forgot about that. Pretty much, it's never a good idea to say bad things about your boss (school administration in this case) in a public place. The internet is a public place. Therefore you shouldn't say bad things on the net about people who are in a position to make your real life miserable. It's too bad that these kids had to learn that lesson in a really hard way, but it's one that we all have to learn sooner or later.
    _____________

  • by G-Man (79561) on Wednesday March 14 2001, @05:07AM (#364597)
    Amongst all those relationships (Government-Individual, Company-Individual, Individual-Individual), the difference -- the important difference -- is that Government is the only body allowed to use force in any dispute in the relationship *and* you are never allowed to terminate the relationship.

    How exactly can an individual censor you? If your friend does not want you to say something to a third party, you can always say it and suffer the consequences to your frienship, possibly including it's termination. You can also choose to terminate the friendship yourself.

    The same applies to a company -- if you disagree with your boss you can shoot your mouth off and suffer the consequences, or you can quit and say what you want. Now, with the legal resources available to the company, this relationship can be subject to abuse. UCITA, DMCA and the DeCSS case come to mind, where the Government is using force on behalf of the company, so yes I think these are violations of the First Amendment.

    The fact there are *consequences* of your speaking up does not mean you are being censored. If I call all my neighbors Assholes, the fact they won't speak to me or loan me stuff or babysit my kids doesn't mean I'm being censored. Because Government can drag you away or kill you, it requires special restrictions. Without getting into the whole "social contract" thing, freedom does not mean freedom from consequence.

    Leaving aside that the two kids in the story are minors, they (via their parents) always have the option of going to a different (public or private) school. Government is the relationship you can never terminate, short of leaving for another part of the world (and assuming they'll let you leave).

  • by shaper (88544) on Wednesday March 14 2001, @04:45AM (#364598) Homepage

    When will people learn that the STATE is NOT the worse thing out there? Private entities are far more dangerous to people

    Bzzzt! Wrong answer! Thank you for playing!

    When private entities do you harm, you may appeal to a higher power, namely the state, in the form of judicial, legislative or regulatory actions. If the state has harmed you, there is no higher power to appeal to, at least in the secular sense :-). And the state is not nearly as concerned with things like financial hardship that can be devastating to companies and individuals. Further, the state is specifically exempt from many laws under which one could sue a private entity. And finally the big clincher, the state has lots of guns and many more completely legal reasons to shoot you than you have rights to shoot back. It is still illegal for corporations to shoot you. At least, so far it is, anyway.

    In this particular case, the kids can just go to school elsewhere or even home school. If this is a very expensive private school, the parents may have enough money for private tutors. Kids in public funded schools often do not have so many options. So, no this is not worse than the state (public schools) doing the same thing. It still sucks, though.

  • by nlaporte (116203) on Wednesday March 14 2001, @04:22AM (#364599)
    At my school [gds.org]the AUP states "I [the undersigned] reconize that I continuosly represent Georgetown Day School whenever and wherever I use email and World Wide Web resources, even if I am using these resources away from or outside of the school's network.[my emphasis]" They also state in their handbook that any drug use or other illegal activity outside of school may result in disciplinary action. I'm probably going to get in trouble for psting this on /., using the computer in the library, but who cares.

  • by blane.bramble (133160) on Wednesday March 14 2001, @04:04AM (#364600) Homepage

    It's legal, of course. The First Amendment doesn't apply to private schools. They can make whatever rules they want.

    Does this mean that sections of your constitution don't apply to private schools? How so, I thought the constitution was all-powerful (or am I misunderstanding this?)

  • by f5426 (144654) on Wednesday March 14 2001, @04:38AM (#364601)
    I spend about half an hour on the website.
    Sure, it does document the legal case, but is there a way to actually find what you did ?

    Cheers,

    --fred
  • Re:To summarize.. (Score:3)

    by Erasmus Darwin (183180) on Wednesday March 14 2001, @04:36AM (#364602)
    Honestly, what is Jamie expecting? That the police will say, "Oh, a Perl error! We'll shred all the files and pretend this never happened?"

    It seems easy enough to explain it to me:

    • The quote on the web page was random (easily done with the 'reload' button)
    • The script was inadvertently trimming the quote (easily done via fixing the bug and showing both versions being run)
    • All the quotes are coming from the fortune program (easily done via running the fixed web page and then doing a 'fortume -m (keyword)' in another session)
    • The fortune program is a standard part of Unix (take an empty PC; erase the harddrive; open a shrink-wrapped copy of RedHat Linux; install; run fortune).
    • The quote in question is listed _twice_ in the quote files of the PC used in the previous point (fortune -m Adidas).
    • The fortune files contain over 13 thousand quotations, ranging from Dave Berry to Star Trek to Hunter S. Thompson to Shakespeare. (I suppose you could just do a grep for the /^%$/ separator and count the results, but it'd be more impressive to print out the entire /usr/share/games/fortunes directory.)
  • Private school (Score:3)

    by fantom_winter (194762) on Wednesday March 14 2001, @04:15AM (#364603)
    There are many issues floating around in this story, and I don't want to hit on all of them, but on that struck me as pretty relevant to the goings on of today is the fact that they went to a private school.

    This story is an example of why vouchers are a bad idea. Private schools can do whatever they heck they want, and are not bound by all of those things that public schools are. They don't have to give their students freedom of speech, they can force them to participate in prayer, and generally be bigoted jerks if they want. There is no recourse except to find another school. What a wonderful way to ostracize people from the community.

    I think that even though this is a story in general about persecution in schools of "geeks", I think that the fact that it was a private school aggrivated this situation.

    And yes, I can give an example

    When I was in high school, years ago, the one of the junior librarians at the school allowed me to use their computers to snoop around the campus network to satiate my curiosity. See, what they had was an old school cataloguing system written in LISP (believe it or not) and if you went to load up a catalog (which were limited to filename lengths of 3 characters, you could load a different catalog. Anyways, you could imagine what happened if a person typed 'CON'. :) (DOS System) So when I found this, I asked if I could look around a little bit and see how the system worked... I did so for a few weeks during lunch and the ever ubiquitous 'snack' period, and it was pretty cool. Until one of the computer's power supplies died, and guess who they blamed. I have NO DOUBT that if I was at a private school, I would have been screwed. Why? The dean wanted me gone. She was convinced of my guilt and thought I was just a little shit. The only thing that saved me was her accountability to the law. She had no proof of wrongdoing, and because of that, it was later discovered by the administrators with more than one brain cell, that it was likely not my fault. Still, the younger librarian was probably chastized and I never really went in there very much anymore.

    Believe it or not, the law and public schools are actually designed to protect people like us, when it comes down to the wire.

  • by grammar nazi (197303) on Wednesday March 14 2001, @04:04AM (#364604) Journal
    These kids learned more than a lesson in Perl. The article says that they put the website up on the internet, but didn't intend for it to be a public website. Ooops. If the page is out there (on the web), it's public. It doesn't matter how many IP addresses that you ban, it's still in the public for anyone to see. Even password protection wouldn't have protected the site from being viewed when people started giving the password out.
  • by canning (228134) on Wednesday March 14 2001, @04:27AM (#364605) Homepage
    is that essentially these kids were suspended for voicing their opinion on the web rather than speaking it. If they were to contact the same number of people who saw the site vocally than they'd be protected by the first amendment? How does this make sense? Aren't private school governed by the same laws as public schools? Why are they able to do this?

  • by deran9ed (300694) on Wednesday March 14 2001, @04:26AM (#364606) Homepage

    One of the toughest things to do right about now is mention words like "hurt, kill, weapon, etc.," in any school system in the United States and we all know why.

    Regardless if the student was only posting information for a quote for his webpage it doesn't surprise me he was paid a visit by authorities, sure we can rant on about a scalar value of Perl or the right of free speech, but the authorities are only doing their job.

    One thing I will note though is, authorities rarely take the time to dive deep into investigation when it comes to computer related crimes, as they often don't understand the full spectrum of it all (computing). Things are only going to get worse.

    Trying to fight a computer based crime altogether is a nightmare in itself, as attempting to find a jury to prove your innocence while explaining what TCP/IP is, firewalls, etc., will confuse and bore the crap out of any jury sitting there, your 99% likely to lose, since as stated many won't understand whats going on, many will be bored, and many will fall for anything a DA tells them, especially if you have some circumstantial material against you.

    Its a shame that things are this way, but thats the way the cookie crumbles, and theres only so much you can do to protect your rights online.

    Our IRC server is up [antioffline.com]
  • by hawk (1151) <hawk@eyry.org> on Wednesday March 14 2001, @04:58AM (#364607) Journal
    I'm glad I'm not the only one that reacted that way.


    There are two independent incidents. One broke the contract with the school and the code of conduct, and resuted in suspension. The second was a webpage that put up a line about hiding a shotgun with no suggestion that it was a quotation from a book and--Horror of Horrors!--the police looked into it!


    Just what are we supposed to do when we see something like that? Ignore it entirely unless they've shot someone already? The police looked into it, and found no crime. What more can you ask?


    hawk

  • by Masem (1171) on Wednesday March 14 2001, @04:44AM (#364608)
    A court in Hawaii ruled in a case for disgruntled pilots against their ex-employers that if a web site has sufficient access protection (eg requiring a username and password is sufficient), then by attempted to view that site without obtaining the appropriate access is a violation of the law. In this case, the ex-exployer airline had used passwords of other employees who volunteed their passwords, 'raided' the site (which contained a LOT of critique on the company but wasn't considered libelous since it wasn't a public forum), and fired the people in charge of the site, even though the web site was run on a private server not operated by the company.

    The case above has many parallels, but alas, it's most likely a different jurisdiction, so if it was followed through legally , it would require just the same burdon of proof.

  • Re:Private school (Score:4)

    by stripes (3681) on Wednesday March 14 2001, @04:36AM (#364609) Homepage Journal
    There is no recourse except to find another school.

    Oh dear God, we would be allowed to find a school with policies we agree with! This dredful choice must be stomped out! Free us from the need to use our minds, oh I beg of you!

    Why is choice in school bad while choice in OS, CPU, and car are all wonderful? Why is it a bad thing to be allowd to find a school that teaches the way you want?

    I have NO DOUBT that if I was at a private school, I would have been screwed. Why? The dean wanted me gone.

    Why? What makes you think your parents would have found a private school with a dean that crappy? Or that switching from one private school with a crappy dean to another would have been "screwed" rather then leaving one sucky place for a less sucky place?

    Believe it or not, the law and public schools are actually designed to protect people like us, when it comes down to the wire.

    They might have been designed to do it, but judging from the Hellmouth stories, they arn't doing such a hot job of it. Why not give something else a chance?

  • by clary (141424) on Wednesday March 14 2001, @04:25AM (#364610)
    Two points.

    First, as this was a private school, the family apparently chose it. If there were serious problems with the environment, then they should have switched schools.

    The article says,

    Personally, I think a school's job is to teach not just the three R's, but also participation as a citizen in our Republic. That may be more important. For a school to teach freedom as a dry document while crushing student dissent is a waste.
    Fine. Then find school that has similar values.

    Second, when my kids get old enough to publish a web site, I will be reviewing it. They certainly will not be allowed to do something foolish like put up a site at www.myschoolisfscked.net. Against the First Amendment, you say? Bzzt. Wrongo, Buffalo Bob. My household is a benevolent dictatorship, not a constitutional republic.

    The article says,

    Rules like theirs are great for raising robots. But anyone who's going to make a difference in this world is going to have to be comfortable with laughing at authority.
    And anyone who is going to be taken seriously needs to learn when and how to question authority appropriately and effectively. 10 years from now will this kid make a stupid mistake like calling his employer a fsckhead in a resignation letter? These parent need to teach some life lessons.
  • by Bonker (243350) on Wednesday March 14 2001, @04:22AM (#364611)
    As bad as I feel for these guys and as much as I feel that they got bent over by their school, I can't help but wonder if this is a true story.

    In the last few months, all the really big victories by students over their schools have come from stuendts and families who were not afraid to identify themselves and fight for their individual freedoms.

    Now, I respect these guys' privacies and understand that staying in this school is apparently more important than thier freedom of speech, but because there is no identification here, there can be no outcry. There can be no angry, pointed fingers at a school to permenantly (and rightly) damage their reputation as restricting their students' freedom of speech.

    Maybe this kids' parents are rich enough that they have court cases going, but I would doubt it. Most likely this is a case of the school putting its needs before the students and the students and the parents going along with that because going to this school is the best way to get into a 'good' university.

    C'mon guys. Identify yourselves. It's important to fight for your freedoms, if not for you, then for the guy next to you who *can't* afford to wage his own court battle.
  • by merlyn (9918) on Wednesday March 14 2001, @04:12AM (#364612) Homepage Journal
    My ongoing legal case (documented for the most part at the Friends of Randal Schwartz site [stonehenge.com]) involved a badly written port reflector, which I'm sad to say was embarassingly the first Perl code to be placed in the public record.

    Unfortunately, I had a much different outcome from this student. I'm still in the process of demonstrating that the law under which I was tried was constitutionally flawed, turning the activities of dozens of Oregonians every day into unwitting felonies.

  • Sensationalism (Score:5)

    by micromoog (206608) on Wednesday March 14 2001, @04:24AM (#364613)
    First, the main part of the headline (Perl) is not that big of a deal. The administrators saw a vague mention of loading shotguns into bags, and responded with alarm. This is not suprising given recent events, and the administration was entirely justified in doing this. Not to mention it's FUD to suggest the student has a "police record" because he was interrogated.

    Second, the case about the students being suspended for Web content . . . the story is missing the critical point, which is the content. This is a private organization we're talking about here; libel laws do apply. Tell me what the page said about the school, and then I'll make judgement.

    I guess I'm supposed to be outraged by this story, but I just have to assume the school was in the right until shown otherwise . . . they certainly were on the first point.

  • To summarize.. (Score:5)

    by update() (217397) on Wednesday March 14 2001, @04:15AM (#364614) Homepage
    After wading through Jamie's hyperventilating, the story is this:
    • These kids put up a fuck_theirschool.org site.
    • Because of a coding error, their page had the sentence "I put the shotgun in an Adidas bag and padded it out with four pairs" on it without making it clear that it's a quote from fortune, not part of their text.
    • The police investigated.
    • A lot of dumb grown-ups, whom we're going to laugh at aren't as up on Unix and Perl as Jamie. What morons!
    • The records of the investigation are still in the police files. There don't seem to have been any charges filed, despite Jamie's insinuations.
    I feel bad for these kids, but they just had some bad luck and things worked out the way they should have. Honestly, what is Jamie expecting? That the police will say, "Oh, a Perl error! We'll shred all the files and pretend this never happened?"

    Unsettling MOTD at my ISP.

  • by tmark (230091) on Wednesday March 14 2001, @04:08AM (#364615)
    Many private schools have rules about the conduct of their students, especially as it affects the school or perceptions of the school itself. For instance, many schools have rules that their students *must* wear their school uniform while going or coming from the school; they cannot e.g. change in the school. So it should not come as a suprise that they would suspend students for (as I read the /. article) besmirching the school's reputation or policies.

    Nor should we be upset that they would enforce such a policy. Arbirary school rules are valid because they are private schools that students have elected to attend, and this very election constitutes tacit support of their policies. Private schools *try* to groom students in a very particular way (hence the uniforms, hence the common tradition of addressing students by last name, etc.) and this is precisely the reason parents send their children here. If the parents aren't happy with the school policies, they should not have sent them there. If you don't like the school's policies, don't send your kids there either.

(1) | 2 | 3 | 4 | 5 | 6