Slashdot Mirror


MIT's Elegant Schoolbus Algorithm Was No Match For Angry Parents (bostonglobe.com)

"Computers can solve your problem. You may not like the answer," writes the Boston Globe. Slashdot reader sandbagger explains: "Boston Public Schools asked MIT graduate students Sebastien Martin and Arthur Delarue to build an algorithm that could do the enormously complicated work of changing start times at dozens of schools -- and re-routing the hundreds of buses that serve them. In theory this would also help with student alertness...." MIT also reported that "Approximately 50 superfluous routes could be eliminated using the new method, saving the school district between $3 million and $5 million annually."

The Globe reports: They took to the new project with gusto, working 14- and 15-hour days to meet a tight deadline -- and occasionally waking up in the middle of the night to feed new information to a sprawling MIT data center. The machine they constructed was a marvel. Sorting through 1 novemtrigintillion options -- that's 1 followed by 120 zeroes -- the algorithm landed on a plan that would trim the district's $100 million-plus transportation budget while shifting the overwhelming majority of high school students into later start times.... But no one anticipated the crush of opposition that followed. Angry parents signed an online petition and filled the school committee chamber, turning the plan into one of the biggest crises of Mayor Marty Walsh's tenure. The city summarily dropped it. The failure would eventually play a role in the superintendent's resignation...

Big districts stagger their start times so a single fleet of buses can serve every school: dropping off high school students early in the morning, then circling back to get the elementary and middle school kids. If you're going to push high school start times back, then you've probably got to move a lot of elementary and middle schools into earlier time slots. The district knew that going in, and officials dutifully quizzed thousands of parents and teachers at every grade level about their preferred start times. But they never directly confronted constituents with the sort of dramatic change the algorithm would eventually propose -- shifting school start times at some elementary schools by as much as two hours. Even more... Hundreds of families were facing a 9:30 to 7:15 a.m. shift. And for many, that was intolerable. They'd have to make major changes to work schedules or even quit their jobs...

Nearly 85% of the district had ended up with a new start time, and "In the end, the school start time quandary was more political than technical... This was a fundamentally human conflict, and all the computing power in the world couldn't solve it."

But will the whole drama play out again? "Last year, even after everything went sideways in Boston, some 80 school districts from around the country reached out to the whiz kids from MIT, eager for the algorithm to solve their problems."

399 comments

  1. Optimal Busses by crow · · Score: 4, Insightful

    What about providing optimal bus routes without changing start times? Or what about factoring in a cost for changing start times to only do so when the new start time makes a huge difference in the bussing cost? They just need to take into account the political cost of moving start times as another set of parameters.

    1. Re:Optimal Busses by Dutch+Gun · · Score: 4, Interesting

      Yeah, I was thinking the same thing - parametrize the costs of change. It's actually a pretty big blind spot that they missed this, but it's understandable. They tried to fix their issues in one giant step, which naturally flopped.

      Instead, tune that algorithm to make very small, yearly changes that move things in the desired direction. Essentially, they need to factor in the human / political element of this, which states that people resist change of all sorts. So the challenge then is to find a path which minimizes the pain of this transition for the most people. So it's a ten year plan instead of getting fixed in one shot.

      --
      Irony: Agile development has too much intertia to be abandoned now.
    2. Re:Optimal Busses by ShanghaiBill · · Score: 3, Interesting

      Rule of thumb: People will complain about changes.

      Later start times are correlated with better student performance. It also saves many parents money because they don't need daycare for after school, since the school day will end later. It also saves money on buses. For high school students, later start times are correlated with lower pregnancy and arrest rates, since they have less time after school to get in trouble before their parents come home.

      But the people that don't like the change complain, and the (more numerous) people that benefit mostly stay silent.

    3. Re:Optimal Busses by Anonymous Coward · · Score: 1

      Later start times are correlated with better student performance. It also saves many parents money because they don't need daycare for after school, since the school day will end later. It also saves money on buses. For high school students, later start times are correlated with lower pregnancy and arrest rates, since they have less time after school to get in trouble before their parents come home.

      But the people that don't like the change complain, and the (more numerous) people that benefit mostly stay silent.

      Did you read the whole summary? The district wanted to shift start times from 9:30 to 7:15. Clearly the more numerous benefit would be to leave start times as they were, utilizing your reasoning.

    4. Re: Optimal Busses by Anonymous Coward · · Score: 0

      Or maybe just have the parents fill out a form showing acceptable start and end times.

    5. Re:Optimal Busses by Entrope · · Score: 4, Insightful

      Changing things a little each year for ten years won't fix problems like school times that sharply conflict with work schedules. It will, however, make a bunch of people raise a stink for each of those ten years, and increase the total cost of the transition because you're changing things every year.

    6. Re:Optimal Busses by Anonymous Coward · · Score: 0, Insightful

      The real problem is that they're letting the parent run things. Tell them when the start time is, nicely, and if they push back you tell them that if they don't like it they are welcome to look for another school with a start time that is more to their liking. End of story.

      90% of them will shut up and adjust things to make it work. The other 10% probably were problem actors that you wouldn't have wanted anyway - it actually probably will solve all kinds of unrelated problems.

    7. Re:Optimal Busses by Anonymous Coward · · Score: 0

      they are welcome to look for another school

      You clearly don't understand how the public school system works. :-)

    8. Re:Optimal Busses by alvinrod · · Score: 2

      If it were a private school, sure, but this is the public school system. The parents are going to have a lot more pull and can easily take over a school board if they're overly upset and the existing board won't cave to their demands, which is unlikely in the first place.

    9. Re:Optimal Busses by Anonymous Coward · · Score: 0

      Instead, tune that algorithm to make very small, yearly changes that move things in the desired direction.

      This may not converge to the optimal solution, or even reach the point where benefit outweighs cost. Sometimes it is necessary to take a step back and start from scratch.

    10. Re:Optimal Busses by quantaman · · Score: 2

      Yeah, I was thinking the same thing - parametrize the costs of change. It's actually a pretty big blind spot that they missed this, but it's understandable. They tried to fix their issues in one giant step, which naturally flopped.

      Instead, tune that algorithm to make very small, yearly changes that move things in the desired direction. Essentially, they need to factor in the human / political element of this, which states that people resist change of all sorts. So the challenge then is to find a path which minimizes the pain of this transition for the most people. So it's a ten year plan instead of getting fixed in one shot.

      The basically used an incomplete objective function. I'm not sure the small yearly changes would help since instead of one big headache you're creating a moderate headache each year. Plus, your problem between the current state and the optimal state probably isn't convex, ie there may not be a series of incremental steps that don't incur some major costs along the way.

      I think the better strategy is to look for situations when the routes and/or schedules need to change anyway and take the best smallest modification.

      --
      I stole this Sig
    11. Re:Optimal Busses by Anonymous Coward · · Score: 0

      You don't know how the public school systems work. The parents will start griping, then start filing Title IX and EEOC discrimination lawsuits because their Johnny had to be up and at the bus stop 2-3 hours earlier or later than the other kid across town.

      This stuff is not new. In antediluvian days, school districts would bus kids, to help with desegration. This mean, even though your kid lived across the street from an elementary school, he or she would be bused across town because the other school didn't have enough of a certain ethnic composition.

      The local school district tried exactly the stuff said above to save buses, but instead of an algorithm, they did some basic paper calculations, so one bus could serve an elementary, middle school, and high school... stuff the kids on the bus and stagger the school districts, where some parents had to be up at 5:45 in order to see Little Johnny for a bus ride, while other parents had the bus come at 7 or 8.

      Guess what. The minority parents started heaping on the lawsuits, citing racial bias and discrimination.

      This staggered time thing went away pretty quickly after that.

    12. Re:Optimal Busses by sjames · · Score: 5, Insightful

      Actually, it flopped because they, like you, didn't consider the full effects of the change.

      You see, if school starts 2 hours early, it means it lets out 2 hours early. No big deal if the high school student gets home at 2:30 or so when mom and/or dad don't get home until 6:30, but it's a really big deal if the kid is 5 or 6 years old. That's not minor adjustment level changes either.

      So that's the real reason it failed, they failed to codify all of the constraints when they optimized the problem. They now need to either stay where they are, try again with the constraints corrected, or come up with a practical way to loosen the actual constraints that costs less than the current non-optimal scheduling.

    13. Re:Optimal Busses by sjames · · Score: 4, Insightful

      But this plan was burning parent's money. It would make the older kids who would be fine at home alone for a few hours get home later and the young kids who shouldn't be alone that long get home earlier.

      So take a single parent that's just managing and impose that on them and now they're fiscally sunk. I'm betting you'd complain about that too if you were in their position.

    14. Re:Optimal Busses by kenai_alpenglow · · Score: 1

      The parents are paying the taxes that run things. So, in your opinion, they should "Just give us your money and shut up. We know what's best. We don't need your input.".

    15. Re: Optimal Busses by Anonymous Coward · · Score: 1

      Why don't the kids just take the public busses like they do in EU who are having peak service for all the commuters?

    16. Re: Optimal Busses by b0s0z0ku · · Score: 2

      They definitely do that in New York, or walk. The kids even get a free Metrocard (bus/train pass) for school use.

    17. Re:Optimal Busses by dryeo · · Score: 2

      The problem is that they'd need daycare for before school instead of after. If the bus here had changed from just before 8 till after 9, it would have screwed a lot of people. It seems easier to arrange for the kid to spend an hour or 2 at the neighbours after school then in the early morning. Perhaps if more workplaces were flexible or there wasn't such a need for dual incomes, things would work better.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    18. Re:Optimal Busses by Oligonicella · · Score: 0

      When they tried this in KC, they scheduled my daughter be picked up at 5:30 AM at the corner of 39th and Washington, one block off Broadway in front of a known goddam hooker hotel. She was fourteen. Needless to say, no fucking way.

    19. Re:Optimal Busses by Darinbob · · Score: 1

      Part of the problem is that they wanted to reduce the number of buses needed for everyone. If everyone's school day starts about the same then all the buses have to pick up all the kids at about the same time too.

    20. Re: Optimal Busses by terrycarlino · · Score: 4, Insightful

      Because in the vast majority of places in the U.S., i.e. everyplace that that is not New York, Chicago or Boston there is no public transportation ssytem.

      In the places that do have public transportation what parent wants their kid riding public transportation? Except in the few cities mentioned above public transportation consists of buses basically going down major routes, the places no one actually lives. People even in towns and cities live in cul-de sac communities specifically designed not to be driven through. Trying to get buses in there is a nightmare, one reason school bus routes often require a hour to take a kid somewhere that would take their parents ten minutes to drive.

      For people who don't know cul-de-sacs are mazes design specifically to prevent through traffic. It's home builders/developers answer to buyer's complaints about not wanting to live on a street that has lots of traffic. Typically a neighborhood has one entrance with short streets going off a common road, each having its own short streets, ending in a circle around which houses are built. They are built to only be easily traveled by car. It is common to only be half a mile geographically from a major road, but be miles away by road.

    21. Re: Optimal Busses by Anonymous Coward · · Score: 2, Informative

      A few sidewalks and footpaths connecting isolated parts of the mazes could make wonders.

    22. Re:Optimal Busses by Anonymous Coward · · Score: 0

      The early start time in high school fucked me so bad. I doubt I'm the only one, but I suspect I must be a minority or else there's no way people would be ok with it.

    23. Re:Optimal Busses by Antique+Geekmeister · · Score: 1

      Please, re-read the article or even the summary. One of the big goals was to reduce the number of buses and drivers, by rescheduling so that the same bus can be used for two different schools with different start times. That kind of economy does not come from "optimal bus routes". For many districts, there are no "optimal bus routes" because the buses _must_ pick up children who are not on convenient, well organized routes, and because the buses are part of the rush hour traffic.

    24. Re: Optimal Busses by mcvos · · Score: 1

      That kind of road structure is not unusual in Netherland. The buses follow the common road. It'd be silly to have them enter the cul-de-sac.

    25. Re: Optimal Busses by Anonymous Coward · · Score: 0

      They do that in the UK and it works really well.

    26. Re: Optimal Busses by b0s0z0ku · · Score: 1

      That's when you build footpaths too narrow for cars between the ends of the cul-de-sacs...

    27. Re: Optimal Busses by datavirtue · · Score: 0

      Public schools do not scale. If we developed systems that behaved they way public school systems scale and operate we would be shown the door. For some reason this is all allowed to persist.

      --
      I object to power without constructive purpose. --Spock
    28. Re: Optimal Busses by datavirtue · · Score: 1

      Incremental changes would work great if they functioned like all of the other gears in a public school system where small groups are marginalized and given the shaft. Classic big government, keep the marginalized groups small enough and thier clamoring can be ignored.

      --
      I object to power without constructive purpose. --Spock
    29. Re: Optimal Busses by datavirtue · · Score: 1

      Rule of thumb: bureaucrats will ignore the real reason for thier existence and optimize for thier system.

      They are a fucking day care. Period.

      --
      I object to power without constructive purpose. --Spock
    30. Re: Optimal Busses by Anonymous Coward · · Score: 0

      Genius!

    31. Re: Optimal Busses by Anonymous Coward · · Score: 0

      Then comes the ballot box in November. Enjoy the unemployment line fascist

    32. Re:Optimal Busses by swb · · Score: 1

      This. My 14 year old 8th grader just started a new late start time -- 9:30. It had been 8:25, which was kind of ideal from a parental oversight perspective. He walks to school, so I was pretty much always able to monitor his progress and make sure he got up and ready for school.

      9:30? He wants/expects to sleep until 8:30 and I nearly always have to leave for work at 8:00 and while it worked out OK the first couple of weeks (new school year novelty), Friday he was almost late.

      I'm just lucky he only has to walk and he's 14. If he was 10, had to ride the bus and had to start at 9:30? I'd have no choice but to pay for before school care (which the elementary schools already have, some parents drop off hella early, like 7:00).

      I think a confounding factor in all of this is that the general public mostly understands school start times in the context of their own experience 30-odd years before. And the basic design of the school experience seems kind of wed to the structure of the stay at home mom, the very close neighborhood school that was walking distance for anyone over 7 in 1960.

      Once schools used bussing for desegregation and for facilitating school consolidation it all kind of went out the window, and now start times and distances are driven by bureaucratic goals of racial balance and efficiency.

    33. Re:Optimal Busses by b0s0z0ku · · Score: 1

      This still exists, believe it or not.

      In states with primarily local control of schools like NJ and NY, many towns have multiple schools within walking distance. If the walk is less than a mile for younger kids, two miles for older, they don't even need to implement busing, legally speaking.

      Look at many towns in NJ, and you see kids over 10 or so walking to middle school. Same with urban areas in NY, except that kids take public buses and trains too -- they're given a Metrocard pass by their school for free.

    34. Re:Optimal Busses by crow · · Score: 1

      They were optimizing the routes. Which bus picks up which kids in which order was part of the analysis. Yes, the school start times were also part of the analysis. And "optimal" doesn't mean the shortest routes, it means the routes that meet the optimizing criteria, which in this case was cost.

      For every district there are optimal bus routes. Being optimal has nothing to do with being convenient. It has everything to do with having the best solution for the given input criteria.

      Of course, it gets more complicated because if you optimize for the kids you have today, next year the routes and start times might not be quite optimal as you add a new stop here and take away one there.

      What it boils down to in Boston is that they didn't have enough factors in the optimization. They didn't recognize that change is bad. I'm not clear on if they recognized that early start times are increasingly bad as kids get older.

    35. Re: Optimal Busses by guruevi · · Score: 2

      By 10 I walked alone to school and it was a bit further than 2 miles. Streets have only gotten safer since, at 14 he should be able to get his own breakfast and get ready for school; at that point you're just there to monitor his adolescent impulses; I had a job then which I sometimes (illegally) worked till 2am to get extra cash, then walked or biked home.

      --
      Custom electronics and digital signage for your business: www.evcircuits.com
    36. Re: Optimal Busses by drsquare · · Score: 4, Informative

      In the places that do have public transportation what parent wants their kid riding public transportation?

      Parents who don't want to raise lazy, fat, spoilt kids?

      People even in towns and cities live in cul-de sac communities specifically designed not to be driven through. Trying to get buses in there is a nightmare

      That's why you put the bus stops on the main roads. It's not rocket science.

    37. Re:Optimal Busses by drsquare · · Score: 1

      and while it worked out OK the first couple of weeks (new school year novelty), Friday he was almost late.

      That's not a problem of the system it's a problem of your lazy child.

    38. Re:Optimal Busses by Wycliffe · · Score: 1

      Tell them when the start time is, nicely, and if they push back you tell them that if they don't like it they are welcome to look for another school with a start time that is more to their liking.

      You can't just change public schools in most states. My town has staggered school start times and multiple elementary schools in the same school district. You have to go to your assigned school district. They are very strict about it. In some towns, parents have even been arrested for enrolling their kids in their babysitter's or grandparent's school district. My school district does have a decent solution though. They offer before and/or after school care from about 6am-7pm so if the school schedule is in conflict with your work schedule then you can pay for before and/or after school care.

    39. Re: Optimal Busses by Anonymous Coward · · Score: 0

      Some of you need to realize that the problem is the bus routing.

      If the school districts were half the size, and each had its own schools, the costs double for the school maintenance and staffing, but the classroom sizes become tolerable and bus trip lengths become bearable.

      But because countries often try to cut budgets, leading to state and municipal shortfalls often budgets favor really large centralized schools and insane bus trips where kids spend three hours on the bus every day in the morning AND evening. So these kids are paying the price of no play time and no after-school activities

    40. Re: Optimal Busses by b0s0z0ku · · Score: 1

      Exactly.

      Cut military pork. Cut frivolous law enforcement. End the War on Drugs. Replace highway cops with speed cameras.

      Use the money saved to pay for education, health care, and infrastructure.

    41. Re:Optimal Busses by larryjoe · · Score: 1

      What about providing optimal bus routes without changing start times? Or what about factoring in a cost for changing start times to only do so when the new start time makes a huge difference in the bussing cost? They just need to take into account the political cost of moving start times as another set of parameters.

      The goal was to make things easier for humans, so characterizing the reaction to the negative, unintended impacts on humans as "political" is not only lazy but misdirected. Is the word "political" is intended to convey the idea that the parents are unreasonable? At what point of human inconvenience would be the human pushback transition from "political" to an understandable, natural, and expected human response? What if the start times had been staggered to be 24/7? If a 24/7 staggering would have been unreasonable, why would a 2-hour window staggering be less unreasonable?

      It's clear that the problem was in the specification of the engineering task. The engineers did what they were told. The parents reacted in the expected and understandable way. The superintendent and those who specified the allowed start time changes were at fault. If a pejorative needed to be synthetically invented to smear someone, the pejorative should be targeted at them. Although in this case, no pejorative is needed.

    42. Re:Optimal Busses by nedlohs · · Score: 2

      My 14 year old has been getting themselves up in the morning and ready for school and to the bus stop entirely on their own for years now.

      I'm assuming it's illegal in modern day america but a 10 year can easily get themselves to the bus stop (or walk to school) and back again without parental supervision or interaction.

      I've had to leave at 4am and the kid has got himself to school fine, and I've only arrived home at 1am and the kid has managed to do their homework, have dinner, and go to bed just fine. I never did both on the same day of course, but I'm sure it would have been fine if I had to (and now, at 14, I could vanish for a week - up until the fridge ran out of food :)

    43. Re:Optimal Busses by b0s0z0ku · · Score: 2

      Apparently, there's now a Federal law (ESSA, passed in 2016) that makes school districts and towns lose Federal funds if they don't allow kids to walk or bike to school with parental permission. So things might be changing for the better in this respect.

    44. Re:Optimal Busses by sjames · · Score: 1

      In the end, that probably is more cost effective.

    45. Re:Optimal Busses by Dutch+Gun · · Score: 1

      True. There also has to be a reasonable limit to the staggering just to save on bus costs. While it's admirable to try to save money, at some point, they'll need to get enough buses to transfer all the students at reasonable hours that everyone can live with, rather than spreading start times quite so much - which as you rightly point out, can be hugely inconvenient.

      But the larger point I'm making is that there's nothing wrong with algorithmic-derived solutions, so long as you understand all the parameters you're dealing with. Obviously, reasonable maximums and minimums on start times also need to be a factor as well. Trying to minimize the pain of any transition obviously needs to be more heavily factored into the solutions. It's a good lesson worth learning.

      --
      Irony: Agile development has too much intertia to be abandoned now.
    46. Re:Optimal Busses by b0s0z0ku · · Score: 1

      Or make kids walk if they live less than 0.5 to 2 miles from school, depending on age. Might reduce childhood obesity a bit.

    47. Re: Optimal Busses by apoc.famine · · Score: 1

      That's really common where I live. Those little neighborhood paths are awesome, and can easily take 10 minutes of walking and trim it down to 2.

      --
      Velociraptor = Distiraptor / Timeraptor
    48. Re:Optimal Busses by dryeo · · Score: 1

      It's a 5 km cutoff where I am, basically if closer then 3 miles, the kids don't get bused.
      What does amaze me is driving by an elementary school in the morning/afternoon and how many kids are getting driven to school, right in town where there is a school every few miles. When I was in school, no kids got driven to school, we all walked and it was a couple of miles.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    49. Re:Optimal Busses by Aighearach · · Score: 1

      Also, more schools have "after school" programs than before-school programs, because there are lots of student activities that take place in the building after school is finished. So the buildings are already open and staffed after school. Plus, teachers often are still there working after classes end. So it is just less of a hassle and expense for the school to provide that. Before school programs are usually only at high schools, and in many smaller school districts there may only be one school that has it. (for the AP students)

    50. Re:Optimal Busses by Anonymous Coward · · Score: 0

      In Germany we have dedicated school busses. Just sayin'.

    51. Re:Optimal Busses by Aighearach · · Score: 1

      Optimal doesn't mean perfect. That no answer will be perfect only proves that optimization is possible!

    52. Re:Optimal Busses by Aighearach · · Score: 1

      You're just really biased against discussions of policy, so you presume the word "political" is a bad word. Here, it is a literally informative word to discuss the difference between the mathematical and human-opinion aspects. It doesn't imply that the parents are being unreasonable; rather, it implies that the concerns of the parents are actually more important than whatever math they used, because of the nature of the problem.

      My advice, stop telling politician jokes, that's probably what poisoned your well.

    53. Re:Optimal Busses by HornWumpus · · Score: 1

      A 14 year old is old enough to start feeling consequences. For little things like not getting up on time and making it to school.

      It's once he figures out how much fun an hour of completely unsupervised time can be that you will need to do something like early morning jail. Let him run until he gets caught blowing something up or building a still.

      --
      John McAfee 'It was like that time I hired that Bangkok prostitute; to do my taxes, while I fucked my accountant'
    54. Re:Optimal Busses by Anonymous Coward · · Score: 0

      Hey, I know how we can save even more money:
      Let's stagger school hours all through a full 24 hour cycle! That way all buses will be optimally used during the entire day and night, so we'll only need a handful, and travel times will be shorter on average because we can avoid rush hours altogether.

      Seriously though, as much as I hate it when people start to cry ‘autistic’ when mathematicians fail to take some real-world issue into account, in this case I do have to wonder what was going on inside the head of guy who looked at the final results and thought the people on the receiving end would be able to live with those.

    55. Re: Optimal Busses by Anonymous Coward · · Score: 0

      You obviously don't have kids. Think of it this way: put your most prized possession alone out in public, and wait how long it is for something bad to happen, knowing it doesn't have to be that way. Between other kids, pervs of all kinds, and inattentive drivers in places without sidewalks, there are dangers that are easily overcome that one does not need to submit their kindergartner to. If your neighborhood has a 2-mile walk back to your house from the front, does that make sense to drop them off at the street, or do you break the neighborhood into smaller sections? In practice, it is smaller sections, and that takes time, which is why school districts budget for this. Bottomline: there is no way to guarantee safety at all times, but it is inherently less safe when the kid is out of a parent's protection and left to their own devices.

    56. Re:Optimal Busses by larryjoe · · Score: 1

      You're just really biased against discussions of policy, so you presume the word "political" is a bad word. Here, it is a literally informative word to discuss the difference between the mathematical and human-opinion aspects. It doesn't imply that the parents are being unreasonable; rather, it implies that the concerns of the parents are actually more important than whatever math they used, because of the nature of the problem.

      My advice, stop telling politician jokes, that's probably what poisoned your well.

      I don't believe I'm the only one who attaches negative connotations to the word "political". The word may denote matters of policy, but I doubt that's the common perception of the word, aside from political science majors. Politics in American daily usage clearly has negative connotations. If interpersonal relationships, verbal communication, or social discourse was the intended meaning, better words should have been chosen. But politics is a negative word, and not because I said so.

      More importantly, the word politics distracts from the core problem of the issue, i.e., that the architects of the software problem incorrectly specified the goals and parameters of the issue. The problem was not one of policy. Perhaps there should have been better communication between parents and the school, but the onus is on the school to drive that communication.

      As for bias, yes, of course, I'm biased, because I'm alive and thinking. Only dead people are unbiased. There are those that prefer to perceive of themselves as unbiased, but objectivity is the claim of liars and fools.

    57. Re: Optimal Busses by ragahast · · Score: 1

      That kind of road structure is not unusual in Netherland.

      Based on my one trip to the Netherlands, I'd guess there are also bike / foot paths that cut through to the main road. In US suburbs there are usually no such paths, so the main road is essentially inaccessible without a car.

      --
      .:Semper Absurda:.
    58. Re:Optimal Busses by Anonymous Coward · · Score: 0

      The correct answer is, actually:

      Ditch all the computers, cut about 50% of the non-teaching staff at schools, buy enough buses and hire enough drivers so that the schools can all start at the optimal time, and provide pre and post school care for parents and families who need it.

      There is nothing wrong with improving the solution to a problem, or using computers to do it. They just need to take in account all the variables. Maybe you can't improve the solution, but I'd still try. I like the idea of providing pre and post school care for parents and families who need it. Basically a lot of kids don't live up to their potential, and a bit more supervision, even if it is at the cost of tax dollars is likely worth it. Another concern is the length of time kids are on the bus. If they hit a lot of traffic due to when they are collected, then that time is seldom usefully spent, though perhaps it could be with todays technology. Maybe get one more computer based lesson or review in? Sure kids will resist, but it is time that could be productively used. Perhaps a game where kids on the bus or on all busses compete against each other to solve academic problems?

    59. Re:Optimal Busses by dryeo · · Score: 1

      Good point, my areas schools actually run a late bus to get the students that stay after school for various reasons home. It runs about 2 hours later then the regular bus though it seems to have a somewhat chaotic schedule.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    60. Re: Optimal Busses by mixed_signal · · Score: 1

      Towns and cities used to be built much better for pedestrians and kids to walk to school. Go look at areas built up in the 1900's through about 1930 before cars became the defacto mode of transportation. I grew up in such a town of about 30,000 people outside a major city. ALL the students in the district walked to school. There was no bussing except for field trips.

    61. Re:Optimal Busses by Aighearach · · Score: 1

      You're quite right, you're not the only idiot in the world.

      You still attach negative connotations even after it was pointed out, you're clearly incapable of logical discussion.

    62. Re: Optimal Busses by mcvos · · Score: 1

      Foot paths should be a no-brainer. Even if Americans don't bike, surely everybody's got legs? Bike paths would be awesome of course, enabling kids to bike to school on their own. But even if you want to restrict them to the bus, foot paths directly to the main roads with bus stops there would make a ton of sense and save everybody a lot of time.

    63. Re: Optimal Busses by b0s0z0ku · · Score: 2

      You sound like a coward. Get a vasectomy before you raise kids damaged by your control-freak ways.

    64. Re:Optimal Busses by fropenn · · Score: 4, Insightful

      Non-teaching staff...you mean the people who cook the meals, clean the floors, fix the computers, help the students with special needs, answer the phone, track attendance, order books and supplies, evaluate teachers, respond to parent complaints, clean the sidewalks...sure, schools would run really well without those people.

    65. Re:Optimal Busses by IcyWolfy · · Score: 1

      Why can't the US work like other countries?
      Work was 9-5 for most adults, Grade 1-6 was 8-2; High School was 9-3
      Kids just went home, or did other things unsupervised untitl their parents got home.

      Another place I lived, 1-8 was 9-3:30; 9-12 was 8:30-2:30.
      Kids would get up in the dark, take public transit, or walk to school.
      Parents would basically not change their schedule for the kids at all.
      It seems silly that kids can't have a different schedule than parents.

    66. Re: Optimal Busses by IcyWolfy · · Score: 2

      There is no means to guarantee safety ever.
      Growing up, I had to walk the 1.5 miles to school, even for kindergarten. I would usually walk up a couple blocks, meet up with another kid in my class and we would walk the way together. Sometimes, alone. Age 5.

      From age 10 (4th grade), school board issued everyone a bus pass if you lived within 2miles of a bus stop. Morning busses were filled with kids ranging from age 8 - 16; in addition to the normal business commuter crowd.

      I am not american, but such is normal in several countries.
      Kids aren't stupid.
      And world isn't a scary place.
      Even in SF, the homeless would shun away and try to hide what they were doing when kids were walking around, because, even they think the next generation should have a better life free of fear and bad inflence.

    67. Re:Optimal Busses by IcyWolfy · · Score: 1

      It was perfectly normal for kids age 5/6 (first grade) to be walking home alone or with a friend; and either going out playing, or being at home alone and video gaming until parents got home from work.
      One would think this is even easier now that you can just give the kids a cell-phone to check in with the paranoid parents.

    68. Re:Optimal Busses by sjames · · Score: 1

      Perhaps in some places, but not in Boston and not in this day and age. Right or wrong, parents have had trouble with child protective services letting 9 year olds walk any significant distance unsupervised, so 5 is right out.

      When I was 9, I would often be home alone for a couple hours after school, but we also had a neighborhood where there were always a few trustworthy adults home in case of emergency. My parents made sure I knew who they were.

    69. Re: Optimal Busses by Anonymous Coward · · Score: 0

      Sidewalks run alongside the road, not across peoples' yards.

      Buses collect at the intersections depending on school district policy and age of the students, elementary school (6-12yo) might require the students walk a half mile in such a neighborhood and be escorted to/from the bus by an adult, middle and high school (12-18yo) might have students walk 1.5 miles, to the nearest bus stop. So the elementary bus stops at nearly every intersection, the high school bus stops at the entrance to the neighborhood and maybe 1-3 stops further in if it is really big.

    70. Re: Optimal Busses by Anonymous Coward · · Score: 0

      You act as though it's the job of citizens to serve the government, in this case the public school system. It is not. It is the opposite in fact.

      A lack of understanding of that is what leads technocrats, like the ones who run the EU or who make up the US 'deep state' to be almost universally hated except by other technocrats.

      You really need to adjust your thinking away from authoritarinism.

    71. Re:Optimal Busses by Anonymous Coward · · Score: 0

      Is this self-done, original research or something?

      Schools in the US aren't known for their over-staffing; you can be full time and be under the poverty level even if you have real job skills.

      How does your great plan count for smog and greenhouse gasses? No, it's not the correct answer; It's a flippant, tone-deaf response from someone who doesn't understand or have anything invested in the system.

    72. Re:Optimal Busses by Anonymous Coward · · Score: 0

      In some school systems the students do the majority of the everyday classroom and grounds cleaning a school needs. Most school districts are grossly overstaffed, especially at the administration level, and squander criminal amounts of money on inefficient, but beautiful, facilities that need to be replaced regularly at ruinous expense because they aren't maintainable- assuming maintenance is budgeted at all.
      That's not to speak of teacher pay, which often is in excess of the median salary for a given area; in my own region teachers are among the most richly compensated of all employed persons, making well more than the average two-person household.

    73. Re:Optimal Busses by Anonymous Coward · · Score: 0

      The correct answer is, actually:

      Ditch all the computers, cut about 50% of the non-teaching staff at schools, buy enough buses and hire enough drivers so that the schools can all start at the optimal time, and provide pre and post school care for parents and families who need it.

      Non-teaching staff...you mean the people who ... fix the computers,

      See bold above

      help the students with special needs, answer the phone, track attendance, order books and supplies, evaluate teachers,

      Lose this last one. Really. Teacher evaluations have turned teachers into prey animals, jumping at the slightest hint of administration looking at their curriculum, and thus making them very ineffective.

    74. Re:Optimal Busses by Anonymous Coward · · Score: 0

      Because that would requires parents to actually raise their kids to be able to survive on their own for a little bit.

    75. Re:Optimal Busses by Anonymous Coward · · Score: 0

      No big deal if the high school student gets home at 2:30 or so when mom and/or dad don't get home until 6:30

      As someone who lived near a high school, that's four hours for them to break into people houses and other such games.

    76. Re: Optimal Busses by robsku · · Score: 1

      What's an unemployment line fascist?

      --
      In capitalist USA corporations control the government.
    77. Re: Optimal Busses by robsku · · Score: 1

      At least our public schools are excellent - and nobody's complaining about stupid things like this.

      --
      In capitalist USA corporations control the government.
    78. Re:Optimal Busses by Anonymous Coward · · Score: 0

      Not to mention that "changing a little" isn't necessarily going to save them money. What if those 10 transition years contain a few that are *more* expensive than the status quo?

    79. Re:Optimal Busses by nasch · · Score: 1

      No, the people who just sit around doing nothing all day. Because that's what government employees do, of course, not important work. /s because sadly it is probably necessary

    80. Re:Optimal Busses by robsku · · Score: 1

      But this plan was burning parent's money. It would make the older kids who would be fine at home alone for a few hours get home later and the young kids who shouldn't be alone that long get home earlier.

      Maybe I'm missing something, but it seems to me that there's a really simple fix for this problem...

      Anyway, when I was in first grade, I had no problem with being alone for couple of hours after school... I don't know why it would be such a big problem, but if it really is then couldn't you just swap the younger and older kids school times?

      --
      In capitalist USA corporations control the government.
    81. Re:Optimal Busses by Aereus · · Score: 1

      I can't speak to other countries, but the US atm is in the middle of a large wave of helicopter parenting: "The world is a scary place, so children must be scheduled and supervised 24/7. Failure makes them feel bad, so they need to be taught that everyone is special." The end result of this over the last decade+ is we have a generation that can't handle the everyday failures that are a part of life for everyone. They aren't taught the life skills to survive as an independent person nor the problem-solving and critical thinking skills needed to work out issues.

      Now that is obviously an overly simplified assessment, but it generally holds true: Kids today aren't allowed enough unscheduled free time in the US, and are showing rising psychological issues with coping with stress, etc.

    82. Re:Optimal Busses by sjames · · Score: 1

      That fixes that problem, but then you're guaranteeing that the high school's first period is a wasted class since the teens will be walking in their sleep.

      This may just come down to TANSTAAFL. There's a fair chance they can optimize their routes a bit to save some fuel but they probably can't eliminate a bus.

    83. Re: Optimal Busses by Anonymous Coward · · Score: 0

      In my (100k population) US city the schools contract to the city bus company for all school bus routes. So even the "school buses" are city buses (and required by law to take any paying customer).

    84. Re: Optimal Busses by Anonymous Coward · · Score: 0

      You skipped Honolulu-- there are no school buses there. Kids ride "Da Bus", the public transportation system.

    85. Re: Optimal Busses by Okind · · Score: 1

      You obviously don't have kids. Think of it this way: put your most prized possession alone out in public, and wait how long it is for something bad to happen, knowing it doesn't have to be that way. [...]

      Why so pessimistic? Sure, there's often news about nasty stuff, and terrorists, pedophiles, bullies, inattentive drivers, etc. do exist. But of all dangers, traffic poses the biggest risk (by far), followed by bullies (which usually only cause emotional pain). The rest is negligible if you look at the numbers unhampered by fear.

      If your children are attentive (like I teach my children to be) and self-confident, you as a parent are perfectly capable of teaching them to deal with it. And then even a 6 year old can safely navigate the streets of a residential area (on foot and by bike), and a 10 year old can safely cross the a main street (at the traffic lights, as taught) or take the bus to school 5 miles away. This is basic stuff where I live (The Netherlands, Europe).

  2. Bad Headline by Anonymous Coward · · Score: 2

    Hundreds of families were facing a 9:30 to 7:15 a.m. shift. And for many, that was intolerable. They'd have to make major changes to work schedules or even quit their jobs...

    This sounds like a perfectly legitimate argument against the plan. The plan wasn't nixed because people were angry to it, the people were angry because it's a bad plan.

    1. Re:Bad Headline by Anonymous Coward · · Score: 0

      Well, let's be honest: They were angry because they had to wake up earlier.

  3. Better option by Anonymous Coward · · Score: 0

    Turn all schools into boarding schools. No babysitting problems for parents!

  4. BS Story? by Anonymous Coward · · Score: 0

    Something really stinks about this. Moving timeslots like that would completely distrupt the already chaotic morning routine of any house that actually has kids in School, and working parents. What the fuck?

    Talk about an attack on MIddle / Lower class. We're not slaves no matter what your "computer simulation" finds. Keep that shit where it belongs, in Prisons and Eastern countries.

    Ivoy League my asss. What a waste of money.

  5. What's bad about starting at 7:15AM by raymorris · · Score: 0

    What exactly is bad about starting school at 7:15AM?
    For most people, that means drop the kids off at school, then head to work.

    It's only a problem if you've organized your life around the 9:30 start time. The change would be difficult for some. (I suspect that for many it would be less difficult than they make it out to be. People often complain loudly about change, then when that doesn't work they make some simple adjustments to adapt to the change.)

    1. Re: What's bad about starting at 7:15AM by Anonymous Coward · · Score: 0

      Try reading.
      A 2 hour earlier start time means a 2 hour earlier end time. Which means a working parent now has to try to go grovel for a shift change, if there's even one available, or find a different job.

      All these "brilliant" MIT students had to do was have parents submit a survey with what times would work, and feed that into their program.
      But they didn't even think to fucking ask, because their goal was to save money for the District and fuck anyone else.
      Their algorithms ended up being a pile of shit because they failed to properly define the parameters of the problem from the outset.

    2. Re:What's bad about starting at 7:15AM by Anonymous Coward · · Score: 0

      A lot of working people don't have 8-5 office jobs. They have shift work, manufacturing jobs, construction, retail, or others. Changing a start time means potentially losing hours per week, or losing sleep, when you've adapted to a schedule already.

      Try to remember not everyone is a salaried exempt employee.

    3. Re:What's bad about starting at 7:15AM by sjames · · Score: 1

      You may have forgotten that this would also have the elementary school kids getting home 2 hours earlier when both parents are still at work. Many bosses wouldn't be that understanding about needing to leave 2 hours early every day.

    4. Re:What's bad about starting at 7:15AM by jcr · · Score: 0

      What exactly is bad about starting school at 7:15AM?

      Let me be the first to say FUCK YOU.

      -jcr

      --
      The only title of honor that a tyrant can grant is "Enemy of the State."
    5. Re:What's bad about starting at 7:15AM by ugen · · Score: 2

      You might not be a parent.

      If elementary school starts 2 hours earlier, that means it also *ends* 2 hours earlier. Now, where does that elementary school child go for the 2 extra hours (while parents are, presumably, at work)? That's right - now you need pay a nanny.

      There is nothing "elegant" about an algorithm that optimizes one variable. You can optimize any one variable to the detriment of others (what if *all* kids go to one giant school, for example :) ) It is not a fault of the algorithm though - it's just relying on poorly specified conditions. To be actually useful to real humans, it should have included as many relevant variables as possible.

      No need to blame "angry parents" and no reason to laud poorly specified task.

    6. Re:What's bad about starting at 7:15AM by Anonymous Coward · · Score: 0

      Gotta say, From 11 to 17 my school started at 7:00.
      I got on the bus 5:45 every morning and I was at school at 6:30. Had to be there that early because I lived out in the fucking boonies and that was the only bus.
      I wouldn't choose to do that again though. Now I work from home.
      I roll out of bed at 10 AM, and get behind my PC.

    7. Re: What's bad about starting at 7:15AM by sycodon · · Score: 2

      That's because while they might be hot shot programmers, they are crappy analysts.

      I suspect that any grad student from a, "lessor" school, but had been trained in analyzing requirements correctly, this would not have happened. That's because they would have asked the most obvious question, who are the customers and what are their needs.

      Failing to account for the work schedules of parents (the real customer ) is a 100,000 watt light sign proclaiming Inadequate Analysis.

      --
      When Fascism comes to America, it will call itself Anti-Fascism, and tell you to give up your guns.
    8. Re:What's bad about starting at 7:15AM by dnaumov · · Score: 2

      What exactly is bad about starting school at 7:15AM?
      For most people, that means drop the kids off at school, then head to work.

      It's only a problem if you've organized your life around the 9:30 start time. The change would be difficult for some. (I suspect that for many it would be less difficult than they make it out to be. People often complain loudly about change, then when that doesn't work they make some simple adjustments to adapt to the change.)

      In Europe, many countries are considering moving the start of the school day from 8-9 am to 10, because it is simply neither healthy nor productive to wake people up so early, child or not.

    9. Re:What's bad about starting at 7:15AM by angel'o'sphere · · Score: 1

      Waking the kid at 7:00 and dropping it half dead in school at 7:15 is probably no problem, if the parents manage to get out of bed early enough and the school is close buy. Probably best is, to put it completely dressed into bed, that saves time.

      But: what is a half dead kid supposed to do in school so early? Sleep another 2 hours before the classes start? I don't know a school that has enough sleeping room for early coming kids.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    10. Re: What's bad about starting at 7:15AM by Anonymous Coward · · Score: 0

      What I don't get is, how do you work if your kids start school at 9:30? My work day is 5:30 to 2:00, so neither of those schedules work for me. Have to pay before or after care one way or the other.

    11. Re:What's bad about starting at 7:15AM by ChoGGi · · Score: 1

      The two hours earlier was for high school students, TFA doesn't mention what times elementary students would've started/ended at (and I can't be bothered to find out).

    12. Re:What's bad about starting at 7:15AM by VeryFluffyBunny · · Score: 1

      Because MIT's "plan" shifts a cost of $3-5 million from the school buses to an order of magnitude more money from the parents as they try to adjust their lives and work schedules to fit the changes. That was a really shitty algorithm they came up with.

      --
      Debate is a form of harassment. Do not question my truth.
    13. Re:What's bad about starting at 7:15AM by dryeo · · Score: 1

      They experimented here one year with starting the high school students early, like 6:30 instead 7:50 to catch the bus (I'm at the end of the route and there's a few dozen houses further down the roads). It was sure hard on the teenage kids and their school work. They canceled it the next year.
      As it is, the bus serves 3 or 4 schools, which are staggered by about half an hour and it seems to work well.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    14. Re: What's bad about starting at 7:15AM by ChrisMaple · · Score: 1

      This is why spelling matters. "Lessor" still makes sense, but is probably nothing close to your intended sarcasm. The word you are hunting for is "lesser."

      --
      Contribute to civilization: ari.aynrand.org/donate
    15. Re:What's bad about starting at 7:15AM by ChrisMaple · · Score: 1

      That sounds like a social problem. In studies where societal interaction was not a factor, having people active for the fewest hours while it's dark out is the healthiest. If an area's schedule could be rebooted, business and work times should center around mid-day if health is the primary concern.

      --
      Contribute to civilization: ari.aynrand.org/donate
    16. Re:What's bad about starting at 7:15AM by ChrisMaple · · Score: 1

      If the kid is put to bed at 8 PM, he'll have no problem being wide awake at 6 AM.

      --
      Contribute to civilization: ari.aynrand.org/donate
    17. Re:What's bad about starting at 7:15AM by Anonymous Coward · · Score: 0

      It's only a problem if you've organized your life around the 9:30 start time.

      You just answered your own question. And you aren't in a place to judge how difficult it is for others to rearrange their lives.

    18. Re: What's bad about starting at 7:15AM by Oligonicella · · Score: 1

      So does context. It was obvious the poster meant lesser. But, like those grad students, you focused on the pedantic details instead of the actual picture.

      PS: That lack of proper analysis on the part of MIT can easily be explained - they weren't parents and probably never gave a thought or helped out with the details of getting siblings off to school, perhaps even being influenced by their memories of hating being bussed.

    19. Re:What's bad about starting at 7:15AM by ezelkow1 · · Score: 1

      Just wondering, do elementary schools not offer after school programs anymore? I went to after school every day when I was in elementary for 2hours until my parents could get me

    20. Re: What's bad about starting at 7:15AM by Anonymous Coward · · Score: 0

      Parents were not the customers, they were end users. Solution would have been that they would have taken the feedback and modified requirements and run the algorithm again and asked new feedback. The work was mostly done already so it was idiotic to stop there.

    21. Re:What's bad about starting at 7:15AM by angel'o'sphere · · Score: 1

      Never met a kid for which this worked.
      And for the scenario in question, being at school at 7:15, getting up at 6AM will only rarely work. Washing, getting dressed, breakfast, traveling to school etc ...

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    22. Re:What's bad about starting at 7:15AM by Anonymous Coward · · Score: 0

      Maybe not a shitty algorithm, but either some conditions were not considered or were given a bad value.

    23. Re: What's bad about starting at 7:15AM by Hognoxious · · Score: 1

      Not to mention that the first sentence in the second paragraph is a total fucking trainwreck.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    24. Re:What's bad about starting at 7:15AM by AHuxley · · Score: 1

      Work as in an average day shift and school start times got set to some system everyone could work with in the USA.
      Working people do not have the ability to push the time they would like to get to work out by a few hours.
      That job would go to someone new who could get to work on time.
      Re "school is close buy" not every school is close.
      Thats why the time needed is such a consideration to get correct.

      --
      Domestic spying is now "Benign Information Gathering"
    25. Re: What's bad about starting at 7:15AM by Anonymous Coward · · Score: 0

      Take away mobile devices and shut down the internet at 7:30pm. Feed your kids melatonin at 7:00pm.

    26. Re: What's bad about starting at 7:15AM by b0s0z0ku · · Score: 1

      Drug your kids? Seriously?

      Also, early school start times still sucked sweaty donkey yarbles before mobile devices and the Intarwebz.

    27. Re: What's bad about starting at 7:15AM by colin_young · · Score: 1

      That's because while they might be hot shot programmers, they are crappy analysts.

      I suspect that any grad student from a, "lessor" school, but had been trained in analyzing requirements correctly, this would not have happened. That's because they would have asked the most obvious question, who are the customers and what are their needs.

      Failing to account for the work schedules of parents (the real customer ) is a 100,000 watt light sign proclaiming Inadequate Analysis.

      I don't personally know either of the grad students, but I've corresponded via email with Sebastien, and I can say he seems like a decent, thoughtful guy who does in fact understand all the issues. If you had bothered to RTFA, you'd see that they ran their program multiple times with multiple criteria (thousands of times to be exact). The reality is, people just don't like change, even if you can demonstrate that a) the systems (jobs, businesses, etc.) will adjust to accommodate and b) things will be measurably improved after. It really was a political failure -- the program did exactly what it was required to do. The people who ordered the results failed to get the required buy-in from the public to implement those results.

    28. Re:What's bad about starting at 7:15AM by TheCastro1689 · · Score: 1

      Every kid in elementary school that goes to "before care" or any other early program lives this life just fine.

    29. Re:What's bad about starting at 7:15AM by nasch · · Score: 1

      What a terrible idea. My high schooler starts at 7:15 and it's just too early for teenagers. My middle schooler has trouble waking up for 8:30 school and I'm worried how he's going to cope when he starts high school.

    30. Re:What's bad about starting at 7:15AM by angel'o'sphere · · Score: 1

      I doubt it.

      As there are no such elementary schools in Europe. That would be insane.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    31. Re:What's bad about starting at 7:15AM by Okind · · Score: 1

      If an area's schedule could be rebooted, business and work times should center around mid-day if health is the primary concern.

      Actually, business/work and leisure times would center around mid-day if health is the primary concern.

      The reason many people (especially nearer the equator) prefer summertime / daylight saving is because it also provides them with daylight in their leisure time. This preference is obviously more prevalent in rich countries, because people don't have to work around the clock to sustain themselves and sitting in your garden in daylight is a lot better than at night.

    32. Re:What's bad about starting at 7:15AM by TheCastro1689 · · Score: 1

      You don't have like a before care school system for single or working parents?

    33. Re:What's bad about starting at 7:15AM by angel'o'sphere · · Score: 1

      Sadly not really. And if we had more of those, it would not start 7:15 but 8:45 so parents can be at work around 9:00.
      While there are jobs that start more early, it makes no sense to bring kids even more early to child care.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
  6. The cost of doing things right by Anonymous Coward · · Score: 0

    Doing the right thing sometimes costs dollars. But some people seem to think that every cost should be reduced to zero dollars. Unless it involves an iPhone. That is why so much is going belly-up in today's world.

  7. Sorting through 10^120 options by DrNico · · Score: 2

    Given there have only been around 4.3 x 10^17 seconds since the big bang, it seems unlikely that they actually sorted through 10^120 options.

    1. Re: Sorting through 10^120 options by Anonymous Coward · · Score: 0

      You're right. This whole story stinks of unrealistic pieces of information. Somebody is trying to beef up their academic citations a lot or something on this whole sham.

    2. Re:Sorting through 10^120 options by Anonymous Coward · · Score: 0

      It's one of those typical garbage statements.
      10^120 is probably some number when you take into account every single possible route, including all the ones heading the wrong way. and including the exact same rout shifted by 1 second increments.

    3. Re:Sorting through 10^120 options by ShanghaiBill · · Score: 1

      Given there have only been around 4.3 x 10^17 seconds since the big bang, it seems unlikely that they actually sorted through 10^120 options.

      They could do it with aggressive pruning of the search tree.

  8. CS should be required to study history by Anonymous Coward · · Score: 0

    The Soviet Union was full of this type of ridiculous problems. The idea is that centralized social control can 'optimize costs', what it actually does is make life miserable for millions of people, and waste an enormous amount of time and money.

    1. Re:CS should be required to study history by Anonymous Coward · · Score: 1

      No it was not. They didn't try to optimize costs, wasting money to achieve social goals wasn't even frowned upon. I attended three schools in SU, all were in 8 minutes walking distance. Never had any reason to use a bus. It wasn't a weird coincidence, it was built this way.

  9. what about we just build more schools by Anonymous Coward · · Score: 0

    and enough walking paths and security so children can get to school without a giant diesel spewing yellow monstrosity that has no seatbelts

    1. Re:what about we just build more schools by Oligonicella · · Score: 1

      Clearly you are not a parent or haven't looked at any city maps and traced the homes of origin to the schools. It's a spider web approach, with hundreds of students coming from literally 360o around. Your plan would require 'security' for hundreds of children each way, every day. Also, 7:30AM is in the fucking *dark* in the winter.

    2. Re: what about we just build more schools by mcvos · · Score: 1

      What kind of security would you need? And why 7:30? Dutch schools start at 8:30 and kids walk or bike there. Young ones accompanied by their parents.

      Lack of walking and biking infrastructure in the US is definitely a problem of course, but it seems to me that that's the thing that needs to get fixed here.

    3. Re: what about we just build more schools by Anonymous Coward · · Score: 0

      This isn't Holland, and you can't just fucking walk or bike everywhere. What works in your country simply doesn't scale to how things are laid out here.

      You could argue that we should go back to what was done in the 1800s, but that involved a lot of really small schools all across the country with kids walking to them, and a single teacher in each.

      We DID have better results back then.

    4. Re: what about we just build more schools by foobar666 · · Score: 1

      There are two key differences between typical US towns and those in European countries: 1) The US tend to have far fewer but larger schools. 2) Housing is far more spread out in the US and the areas were built from scratch long after travel by car became the norm. They're just not designed for walking. In the UK at least, most housing areas are designed to support walking with smaller schools spread out to improve locality. I've got 4 primary schools within 15 mins walk from my house - the nearest is less than 2 mins walk away. The nearest high school is less than 20 mins walk and the route only involves 30mph limit residential roads. This just doesn't happen in US towns.

    5. Re: what about we just build more schools by Chris+Mattern · · Score: 1

      Walk? Bike? When I was in high school, the high school was about five miles away from where we lived. The same was true with junior high, as a matter of fact. This is far from uncommon in the US. People from Europe often don't grasp how *big* the US is until they come here, and then they wonder why we don't walk anywhere. The answer is that it's almost always too damn far.

    6. Re: what about we just build more schools by datavirtue · · Score: 1

      Ding ding ding. My kids go to a private school that costs far less to run than an equivilent public school. The education is better, no stinky busses, starts at 9am, ends at 4:30, kids love it, and it is located a few minutes from the house.

      Funny how all the neckbeards on here fixate on the complex algorithm when the solution is a simple distributed system.

      --
      I object to power without constructive purpose. --Spock
    7. Re: what about we just build more schools by Anonymous Coward · · Score: 0

      My high school was 7 miles from home and I went by bike. And so did everyone else. It's not just the way things are built - this is also a cultural thing.

    8. Re: what about we just build more schools by Anonymous Coward · · Score: 0

      We had absolutely no idea what the results were back then.

    9. Re: what about we just build more schools by AHuxley · · Score: 1

      The US mil would have some idea of the education standards of who was accepted. The educational needs and later quality of its officers.
      The quality of US math, medicine, legal services, industrial skill, universities could be measured.
      Later IQ testing gives a way to rank most normal advanced nations AC.

      --
      Domestic spying is now "Benign Information Gathering"
    10. Re: what about we just build more schools by drsquare · · Score: 1

      Wait, five miles is supposed to be a long way? For a child presumably in peak physical condition?

    11. Re: what about we just build more schools by mcvos · · Score: 1

      5 miles isn't a problem. I biked 10 km to school from age 12. My wife 20 km (she lived in a very rural area). A big part of the problem is of course the complete lack of bicycling in the US. That takes away kids' mobility.

    12. Re: what about we just build more schools by mcvos · · Score: 1

      How about somewhere in the middle? Schools that aren't enormous, small enough to have them within a reasonable distance, but large enough to have at least one teacher per year group?

    13. Re: what about we just build more schools by Anonymous Coward · · Score: 0

      Not to mention I don't think they taught calculus, physics, chemistry or linear algebra back then either

    14. Re: what about we just build more schools by Anonymous Coward · · Score: 0

      In the US there is a massive teacher shortage. More, smaller schools sounds great, but there arenâ(TM)t enough teachers.

      I have an idea, letâ(TM)s cut taxes and let teacher wages be stagnant for 25 years. Thatâ(TM)ll work.

      Most US schools canâ(TM)t hire all personal at this point. Thereâ(TM)s just not enough educators. 50k in debt for. 30k a year job is a joke.

    15. Re: what about we just build more schools by mcvos · · Score: 1

      My impression is that the US has thoroughly neglected all forms of non-car infrastructure. Some straight bike and foot paths running straight through a suburban cul-de-sac maze would do a lot of good.

  10. Where is Patrick Henry Winston by Anonymous Coward · · Score: 0

    Where is Patrick Henry Winston, when his nation needs him?
    Answer: Probably working on some over funded defense project that will never amount to a hill of beans.

  11. what about we just build more homes? by Anonymous Coward · · Score: 0

    Home schooling. Problem solved.

    1. Re: what about we just build more homes? by Anonymous Coward · · Score: 0

      Birth control.

      Even better solution.

    2. Re:what about we just build more homes? by b0s0z0ku · · Score: 1

      Not every parent has the time or skills to give their kids a good education at home. Not to mention that most homeschool curricula in the US are written by religion/conservative nutbags.

    3. Re:what about we just build more homes? by ChrisMaple · · Score: 3, Insightful

      Home schooling works superbly in the best case.

      In the worst case, it's a disaster. Parents don't care, kid watches TV for a year, learns nothing and loses much of what was previously learned. You'd be surprised to find out just what portion of parents are that bad, probably close to one quarter.

      --
      Contribute to civilization: ari.aynrand.org/donate
    4. Re: what about we just build more homes? by Anonymous Coward · · Score: 0

      home schooling only works when one of the parents is above average iq or educated.

    5. Re:what about we just build more homes? by HornWumpus · · Score: 1

      In CA 'homeschooling' is what they call it when the student is truant to the point the schools are losing federal money on the deal.

      The kid gets designated 'homeschooled' and stops going to school. The 'teachers' call once per week to bitch about 'no homework', give him/her a joke of a test once in a while. The sweet federal money flows.

      --
      John McAfee 'It was like that time I hired that Bangkok prostitute; to do my taxes, while I fucked my accountant'
    6. Re:what about we just build more homes? by Anonymous Coward · · Score: 0

      [S]chooling works superbly in the best case. In the worst case, it's a disaster. [Teachers] don't care, kid ... learns nothing and loses much of what was previously learned.

  12. The Installed Base Wins Again by Artagel · · Score: 2

    Another case where the installed base wins over new things because it is too disruptive to change it.

    The school scheduling equivalent of COBOL.

  13. Fucking barbarians. by jcr · · Score: 5, Insightful

    Civilized people are dead at 7:15 AM. What kind of an asshole would demand that you get a kid to school so early?

    -jcr

    --
    The only title of honor that a tyrant can grant is "Enemy of the State."
    1. Re:Fucking barbarians. by Snotnose · · Score: 0

      I used to get to work at 6:30 AM to miss traffic. Most people showed up 8-9, management started scheduling meetings at 9 (and yeah, I was management for a while). I got more done before 9 than I did the rest of the day. And that's including 20 minutes making coffee, starting the computer, and perusing a few web sites before I was ready to actually work.

      I don't get the push to start school later. There are 2 ends to sleep, they're accommodating the tail end. I'm not gonna argue you need 8-9 hours of sleep a night, I'm arguing you don't need to be up past midnight watching TV (my era) or updating facebook (modern era). You need to be at school at 8? That means you get up at 7. For 8 hours that means you're in bed at 11 PM. You don't want to be in bed at 11? Guess what, wait until you get to the real world.

    2. Re:Fucking barbarians. by Anonymous Coward · · Score: 0

      Can you imagine being a teacher or hell anyone involved with the administration? Takes me 15 minutes to walk to my car as it is. Morning comute involves 40 minutes to travel what would normally take 10 minutes. That's almost an hour on average just getting to/from work. Add on days picking up kid from School and it's easily 1.5-2 hours, per day, in a car.

      These are some awfully rich and incredibly out of touch people.

    3. Re: Fucking barbarians. by Anonymous Coward · · Score: 0

      > You need to be at school at 8? That means you get up at 7

      One hour from bed to classroom? That would be quite an impressive trick even for a college student who lives on campus, let alone a kid in elementary/middle/high school whose travel includes vehicular travel of any kind.

      Nowadays, most schools explicitly prohibit dropping off kids nearby to avoid waiting in the traffic jam... if they're in a car, they have to be IN the car until you reach their designated drop-off point. And if you live more than {threshold} distance from the school, they MUST arrive by car or school bus.

      My 7th-grade niece lives 3.1 miles from her school. Last year, my brother (her dad) made her bike to school one day when an emergency came up, and ended up having to buy her an iPad to make up for the detention he caused her to end up with when they caught her arriving by unauthorized means (she warned her dad they'd do it, he figured he could talk them out of it).

      What's even MORE fucked up is that they'll ALSO punish kids for arriving by taxi, Uber, or Lyft. So busy parents can't even use THEM as a fallback transportation method. I get on my knees & thank god daily I don't have kids of my own... they'd probably arrest me for showing up & insisting upon serving my child's detention for them if they got it for something that was my own fault.

    4. Re:Fucking barbarians. by angel'o'sphere · · Score: 2, Insightful

      Interesting that people who get most of their work done before 9:00 are stupid to believe going to bed early would shift everyones performance as well.

      I don't sleep before 1:00 ... and usually not before 3:00.

      I don't know why. But it is pretty pointless to go to bed at 23:00 and can not sleep till 2:00 or 3:00 ... why can I not do something that I enjoy during that time, and you simply leave me alone with your "wisdom"?

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    5. Re:Fucking barbarians. by sjames · · Score: 2

      Teens are naturally night people. It's more or less hard wired for the majority of them. Younger kids naturally wake up early and fall asleep early (in spite of attempts to resist in many cases).

      After the early 20s, many people shift to a mid point between the extremes.

      Unfortunately, like many things we've squeezed all the slack out of the system and so we demand that people adapt to serve the social structure rather than the social structure adapting to serve the people.

    6. Re:Fucking barbarians. by b0s0z0ku · · Score: 1

      Kids learn better when they get up at a reasonable hour than at the asscrack of dawn. I don't remember much about my 8 am classes in HS other than a dull desire to punch the teacher who was yammering at me in the nose.

    7. Re:Fucking barbarians. by Billly+Gates · · Score: 1

      Easy. You're a Mom who HAS TO GET TO WORK by 8am or you're fired! To do this you need to drop off your kid by 7:15am. That is the problem.

      I see comments here whining about change, but it is simple economics. You don't show up to work at 8am you won't have a job for long. If people can't work you bet your ass they would freak out as they are just shifting the costs from the school district to the parents aka tax payers who now can't work.

      High school kids are independent enough to get to school and prep themselves by that age, but not when your kid is 6 or if there are child predators outside who pray and kinds walking to school by themselves at an earlier age.

    8. Re:Fucking barbarians. by Billly+Gates · · Score: 1

      That's great you don't. I do. I work better at 9 hours as I feel tired if I sleep less due to my genetics and age. I am also on my feet for 6 to 7 hours a day so I am more tired too. 6:30 would mean I would need to go to bed at 8:30 at night to get up by 4am to be out of the door by 5am to get to work by 6:30am.

    9. Re: Fucking barbarians. by Snotnose · · Score: 1

      > You need to be at school at 8? That means you get up at 7 One hour from bed to classroom? That would be quite an impressive trick even for a college student who lives on campus, let alone a kid in elementary/middle/high school whose travel includes vehicular travel of any kind.

      I got up at 5:45, was on the road by 6, and at work by 6:30. Did that for 30+ years, with the wake up/road time getting dialed back as traffic got worse.

    10. Re:Fucking barbarians. by Snotnose · · Score: 2

      I don't know why. But it is pretty pointless to go to bed at 23:00 and can not sleep till 2:00 or 3:00 ... why can I not do something that I enjoy during that time, and you simply leave me alone with your "wisdom"?

      I am leaving you alone. I'm just saying, if you need to be somewhere at 8 AM you really need to learn to plan ahead. Otherwise show up bleary eyed and useless to both of us.

      That said, when I was in charge of calling meetings I declared that 10-3 were the golden hours. You can show up at noon for all I care, and I'll work with you. But if I need to call a 10 AM meeting I expect you to be there.

    11. Re:Fucking barbarians. by Anonymous Coward · · Score: 0

      Are you a parent? There are very common sleeping patterns kids follow, and trying to get them to shift is more than just "planning ahead." While not universal, the preferred sleeping schedule of kids has been demonstrated again and again to affect how well they do at school and affects many other aspects of their development and lives. Younger kids tend to get up earlier, and teenagers tend to get up later. You can make them go to bed at a different time, and make sure they get 8 hours of sleep, but not all 8 hours of sleep are equivalent. Just as adults can adapt to night shifts, but it still wrecks havok on most such people's health.

    12. Re:Fucking barbarians. by ChrisMaple · · Score: 1

      So if the change is to 7:15, how does mom now drop off her kids at 8:45 for school starting at 9 AM if she's already working at 8AM? Your post is nonsensical.

      --
      Contribute to civilization: ari.aynrand.org/donate
    13. Re: Fucking barbarians. by Oligonicella · · Score: 1

      How *you* as an adult get ready and arrive at work isn't relevant. Your second sentence shows this would not work re getting a kid to school. They don't allow 'dialing back' on the schedule.

    14. Re:Fucking barbarians. by angel'o'sphere · · Score: 1

      Depending how far away the 8AM meeting is: no, I don#t show up with bleary eyes. But before 10AM I won't be much use for anything than repeating stuff out of my experience, my brain will not be creative at that time. Regardless when I went to bed and if I slept or not.

      10AM is fine, actually 9:30 is. Worst case I would come a day earlier and stay in a hotel nearby.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    15. Re:Fucking barbarians. by Anonymous Coward · · Score: 0

      Interesting that people who get most of their work done before 9:00 are stupid to believe going to bed early would shift everyones performance as well.

      I don't sleep before 1:00 ... and usually not before 3:00.

      I don't know why.

      I know why. It is called lifestyle. And you can change it. But from your tone I see that you don't want to.

      How do I know? I used to be a "morning person", after quitting my work and finding a hobby that keeps me physically active between 19.00 and 23.00 before I head home I seldom get into bed before 01.00, but that is a conscious choice and I know what drawbacks it incurs. If needed I can turn around my waking hours. It will take a few weeks before it becomes natural and during that transition period I will be tired due to the lack of sleep. It is doable though.

      What do you do between 23.00 and 03.00? If you sit watching a screen or do something that gets you worked up, then you have your problem there. Being in a dark area and trying some simple relaxation techniques might do wonders for you... if you want to that is.

      why can I not do something that I enjoy during that time, and you simply leave me alone with your "wisdom"?

      Do so, but do not complain about a crappy lifestyle as if it was a law of nature. Or see your doctor and/or psychiatrist if it is a problem.

    16. Re: Fucking barbarians. by Anonymous Coward · · Score: 0

      You cannot read. Yes, people can adjust to any fucked up schedule but we are wired from birth to function better and remain healthier if we are asleep when it is still dark out.

      Your anecdote proves this. You stay up late and have been left so mentally deficient you missed the numerous people on this thread saying the same thing and lack common sense as well as being a narcissistic selfish centered prick.

    17. Re: Fucking barbarians. by mcvos · · Score: 2

      Every aspect of your comment sounds completely insane to me. An hour from bed to school is not hard where I live. My 9 year old son often gets out of bed at 7:45 and is at school at 8:30. We live right next to school, but even with 15 minutes walking or biking, it's quite doable. No primary school in a city should be further away than that (though in very rural areas they might be).

      The idea that a school would punish a child for coming on foot or bike is too idiotic toi believe, were we not talking about the US here. Americans seem to he completely nuts when it comes to schools or transportation.

    18. Re: Fucking barbarians. by b0s0z0ku · · Score: 4, Interesting

      I understand that in Germany or Switzerland, helichopper parents who drive their kids to school after age 9 or so are given a "talking to" by school authorities about kids needing independence. Much better model than the US hover-parent model.

    19. Re:Fucking barbarians. by dave-man · · Score: 1

      Not everyone is a night owl. I get up around 4a LT and get my EU comms knocked out before most of the US wakes up. US West Coast buttheads how email me after their dinner still get a response within a few hours.

      --
      Bill Gates is a communist -- he's just more equal than the rest of us.
    20. Re:Fucking barbarians. by Anonymous Coward · · Score: 0

      or if there are child predators outside who pray

      Is there some reason you are unconcerned about atheist child predators? Or did you mean prey?

    21. Re: Fucking barbarians. by mcvos · · Score: 1

      I don't think teens are maturally night people, it just works out that way because they go to bed much later. Youmg kids are put to bed fairly early so their parents still have somr time for themselves. Teens have their own evening activities, so they go to bed later and have more trouble getting out of bed in the morning.

    22. Re: Fucking barbarians. by gnuhost · · Score: 0

      i was raised in 70's, we lived in the lake and ate air. School was 45km away behind the snowy mountains.

    23. Re: Fucking barbarians. by Anonymous Coward · · Score: 0

      I had an early bus route due to the distance from school. I was up at 0530 and in the school 0700. I worked in the cafeteria (because my family was poor and I needed luches) for 1/2 hour and then had the rest of time to myself, usually spent on trs80 amusing myself. Oh, and I walked 1/2 mile to catch the special bus.

      Forty years later, I will get up at 0530. The computer is a bit nicer.

      So you little snowflakes that need more sleep, go to bed earlier.

    24. Re:Fucking barbarians. by n3r0.m4dski11z · · Score: 1

      Spoken as someone who has never had kids... Young kids are up at 6am no problem. If i wasnt up at 5 every day, life would grind to a halt.

      Working 2 hours before everyone else gets to the office is sheer bliss. Shopping 2 hours before everyone else gets to the store is how it should be. Driving around 2 hours before everyone else, and the roads are made for you.

      You might try not drinking coffee, as i find your attitude common with people who 1) drink coffee and dont realize that it only gets you back up to your normal baseline after you are addicted 2) go to bed too late, after 10pm is too late and 3) try to do too much in a single day.

      Sleep is important. Get enough and you can work at literally any hour, productively.

      --
      -
    25. Re: Fucking barbarians. by b0s0z0ku · · Score: 1

      Argy-bargy-grunt-grunt-grunt. Muh lahf was so hard so those damn kids shouldn't have it better grumble grunt.

    26. Re:Fucking barbarians. by b0s0z0ku · · Score: 1

      OK, so you're genetically wired to be a "lark." Not everyone is. Nothing wrong with coffee, either, it tastes delicious.

      Speaking as an "owl," Spanish and Portuguese speaking cultures have it right ... late to bed, late to rise.

    27. Re:Fucking barbarians. by shess · · Score: 1

      Civilized people are dead at 7:15 AM. What kind of an asshole would demand that you get a kid to school so early?

      They're just school kids, why should they matter? Won't they have to deal with inconvenient work times when they grow up? Why should my taxes go to support making it easier for prisoners ... err, school children in the first place?

      Put another way: Why does anyone expect a project to save $3M on a budget of $1B should benefit any of the users of the system? The root problem is that for optimization purposes, we use cost-center optimization metrics rather than profit-center optimization metrics. We can measure how much we're spending on bussing, so we target that, with no regards to outcomes.

    28. Re: Fucking barbarians. by sjames · · Score: 1

      No, it really is hard wired. There isn't much controversy in that position.

    29. Re: Fucking barbarians. by Anonymous Coward · · Score: 0

      Nope. Most of our little towns have a single school for the grades similar to the US. The larger cities have multiple zones. Since we have many trollies still, there isnt a need for a separate bus. Few parents would drive unless it is on their way. Many parents walk their kids to school. More time to spend with kids before they grow up

    30. Re:Fucking barbarians. by Anonymous Coward · · Score: 0

      pretty sure you don't live in a place where there are child predators, though you are probably right that those child predators are religious.

    31. Re: Fucking barbarians. by Anonymous Coward · · Score: 0

      parents who drive their kids to school after age 9 or so are given a "talking to" by school authorities about kids needing independence.

      Hopefully the parents give the school civil-servants a talking to about who works for whom, and the parents' independence from the school's "authority".

    32. Re: Fucking barbarians. by Anonymous Coward · · Score: 0

      Heck, a school district near me requires that parents (parents, not even a 'designated person') be present for dropoff of children by the bus, otherwise the bus takes the kids straight back to school. How that decision was made and presented, voted in by committee, and continues without being nuked from orbit by anyone and everyone with common sense utterly flabbergasts me. This in a town known as the 'churchy town' of the county, highly agrarian, sleepy and elderly by any standard. The safest community in the county, by far.
      Madness.

    33. Re:Fucking barbarians. by nasch · · Score: 1

      if there are child predators outside who pray and kinds walking to school by themselves at an earlier age.

      There almost certainly aren't.

    34. Re: Fucking barbarians. by Anonymous Coward · · Score: 0

      I understand that in Germany or Switzerland, helichopper parents who drive their kids to school after age 9 or so are given a "talking to" by school authorities about kids needing independence. Much better model than the US hover-parent model.

      Bring the SAM (Surface-to-Air missiles) back to Uncle Sam.

    35. Re: Fucking barbarians. by robsku · · Score: 1

      > You need to be at school at 8? That means you get up at 7

      One hour from bed to classroom? That would be quite an impressive trick even for a college student who lives on campus, let alone a kid in elementary/middle/high school whose travel includes vehicular travel of any kind.

      What? Maybe for the kid, but for a college student who lives on campus!? How long does it take you to get up from the bed and ready to leave? Teeth brushing, even a quickie shower (with soap), I do it in 30 minutes, which would leave me with another 30 minutes. Well, that's what I did between 7th and 9th grade (in Finnish school system), but now days I take the shower before going to bed, and I can move from dead to walking out the door in less than 15 minutes.

      I guess some people really take their time with their morning routines.

      Nowadays, most schools explicitly prohibit dropping off kids nearby to avoid waiting in the traffic jam... if they're in a car, they have to be IN the car until you reach their designated drop-off point. And if you live more than {threshold} distance from the school, they MUST arrive by car or school bus.

      My 7th-grade niece lives 3.1 miles from her school. Last year, my brother (her dad) made her bike to school one day when an emergency came up, and ended up having to buy her an iPad to make up for the detention he caused her to end up with when they caught her arriving by unauthorized means (she warned her dad they'd do it, he figured he could talk them out of it).

      What's even MORE fucked up is that they'll ALSO punish kids for arriving by taxi, Uber, or Lyft. So busy parents can't even use THEM as a fallback transportation method. I get on my knees & thank god daily I don't have kids of my own... they'd probably arrest me for showing up & insisting upon serving my child's detention for them if they got it for something that was my own fault.

      All this... It sounds... no, it is totally fucked up... That's not how things should be - totally and utterly fucked up by insane people with, I guess, nothing better to do.

      --
      In capitalist USA corporations control the government.
    36. Re: Fucking barbarians. by Okind · · Score: 1

      I understand that in Germany or Switzerland, helichopper parents who drive their kids to school after age 9 or so are given a "talking to" by school authorities about kids needing independence. Much better model than the US hover-parent model.

      Not just Germany or Switzerland. The Netherlands too, as any other country that has the best interest of children at heart. How can children learn to be responsible if you don't teach them (early)?

    37. Re: Fucking barbarians. by robsku · · Score: 1

      Except for the mention of his/hers family being poor, I didn't see anything about how "hard my life is/was" or "kids shouldn't have it better than me" in his/hers post. Your being dumb.

      --
      In capitalist USA corporations control the government.
    38. Re: Fucking barbarians. by robsku · · Score: 1

      Thank you for this interesting link!

      --
      In capitalist USA corporations control the government.
    39. Re: Fucking barbarians. by robsku · · Score: 1

      We had to ski uphill to and from school.

      --
      In capitalist USA corporations control the government.
    40. Re:Fucking barbarians. by robsku · · Score: 1

      Here in Finland kids walk or bike to school mostly by themselves... When I was 5 or 6 years old (that would've been around '85-'86) and going to 1st grade, I was first shown the safest route to walk and after that my father started his work at 6am, my mother woke me, made breakfast and left to her job that started at 7am, while I was left home and the school day usually started between 8 and 10 - I don't think the 1st graders start that early anymore (I mean 8am, not 10am), and if a parent had to drop kid(s) at school in the morning I don't think there would be very many parents who both go to work.

      --
      In capitalist USA corporations control the government.
    41. Re:Fucking barbarians. by robsku · · Score: 1

      Not everyone is a night owl. I get up around 4a LT and get my EU comms knocked out before most of the US wakes up. US West Coast buttheads how email me after their dinner still get a response within a few hours.

      You know, everything after your first sentence is gibberish? Or maybe how read I could understand your post everyone possible? :)

      --
      In capitalist USA corporations control the government.
  14. They just learned what every programmer knows by Opportunist · · Score: 5, Funny

    Programming would be so much easier without the damn user!

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    1. Re: They just learned what every programmer knows by Anonymous Coward · · Score: 0

      Yep. Their "elegant algorithm" was simply oblivious to half the parameters of the problem. No need to make bajillions of computations to predict that their simplistic approach would fail miserably.

    2. Re:They just learned what every programmer knows by Anonymous Coward · · Score: 0

      Or external interacting systems.

    3. Re: They just learned what every programmer knows by Anonymous Coward · · Score: 0

      Programmers gave the customer what customer wanted. They would have not presented it if it wasn't so. The fact that you blame programmers says that you expect programmers to be perfect and make no mistakes even if they are given false info. While allowing all other people to be idiots.

    4. Re: They just learned what every programmer knows by robsku · · Score: 1

      I think he was just making a joke, but seriously there has been a whole sh*tload of mean spirited programmer blamings in this comment thread from people who expect the programmers to know and understand everything non-programming related about other people and how they feel about this'n'that, and it's just evil.

      --
      In capitalist USA corporations control the government.
  15. You can rigidly optimise for anything. by Qbertino · · Score: 1

    The big question being: Are you really willing to stomach the results? So optimsing school bus usage for highest effciency brings morning schedule out of wack by 2 hours and more for on the far ends of the queue? Gee wizz, what a surprise. Who would've thunk?

    In other words: Be careful what you wish for, you might get it.

    --
    We suffer more in our imagination than in reality. - Seneca
    1. Re:You can rigidly optimise for anything. by TechyImmigrant · · Score: 1

      Highest efficiency brings the least resilience.

      The first bus to stall at a traffic light is going to bring the school system to a halt.

      --
      I should use this sig to advertise my book ISBN-13 : 978-1501515132.
    2. Re:You can rigidly optimise for anything. by colin_young · · Score: 1

      The first bus to stall at a traffic light is going to bring the school system to a halt.

      It'll bring Boston traffic to a halt. Not that anyone will notice the difference.

  16. Complaining that school starts too... late? by diamondmagic · · Score: 4, Informative

    Too-early start times, especially for high schools, are a well known reason for poor academic performance:
    http://time.com/4741147/school...
    https://www.cbsnews.com/news/s...

    1. Re:Complaining that school starts too... late? by KingAlanI · · Score: 1

      Early start times are a problem for highschoolers. This plan started high school later - but started elementary school earlier. That's a better fit to young kids' sleep schedules but would've wreaked havoc on their parents' schedules.

      --
      I listen to both RIAA and non-RIAA stuff if I like the music, tangential business/politics nonwithstanding.
    2. Re:Complaining that school starts too... late? by angel'o'sphere · · Score: 1

      Young kids also need sleep till minimum 7:30 ... sending them to school before 9:00 is simply torture.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    3. Re:Complaining that school starts too... late? by Anonymous Coward · · Score: 1

      Biologist, here. No, there is no such things as a minimum. There is a distribution even among children. For example, until 25 years old, I used to need 9+ hours of sleep. If for some day during the week I was under 8 hours, my body would respond by a 14 hours long sleep during the weekend. My wife slept only 6 hours... Now, I am sleeping around 7.5 hours by night. What matter the most is for me is not to be in constant "jet lag" (Dis-regulating my circadian clock), which means for me going to sleep before midnight (around 11PM) whatever the time of sleep.

      Youngest generation are failing because they are fucking up there biological clock which is (re-)synchronized with light. Starting school later will be worse for everybody.

      Keywords: circadian clock, suprachiasmatic nucleus, chronobiology.

    4. Re:Complaining that school starts too... late? by diamondmagic · · Score: 1

      I get the theory, but schools that moved back their start time saw an increase in attendance and achievement. High school start times are often so early you're waking up before sunrise, in winter if not year-round, which blocks the light-synchronization behavior you're talking about.

  17. Typical case of mathematicians by TimothyHollins · · Score: 5, Insightful

    Nearly 85% of the district had ended up with a new start time, and "In the end, the school start time quandary was more political than technical... This was a fundamentally human conflict, and all the computing power in the world couldn't solve it."

    No, it wasn't 'political'. The algorithm successfully computed an optimal schedule for the students with regards to bus transport, but did not include any data at all about the optimal schedule for the parents.
    If they wanted to find the optimums, they should have included the whole system and not just the least impactful part. The parents schedules are the most important ones since they are responsible for making it all happen; from breakfast to dinner to bedtime.

    I see this all the time. Brilliant programmers and mathematicians that think they can just throw the data into an algorithm and get an answer without understanding the data itself or how to interpret it medically/biologically.

    1. Re:Typical case of mathematicians by Anonymous Coward · · Score: 0

      You're giving them too much credit. Brilliant programmers and mathematicians have the clarity to make their solutions useful. These guys underconstrained their problem (i.e., made it too easy) and convinced themselves they had found an amazing novel solution. This happens far too often in academia.

    2. Re:Typical case of mathematicians by KingAlanI · · Score: 1

      TFA said that the algorithm suggested multiple solutions based on different parameters
      optimizing cost (but that annoyed the most parents and gave fewer high school students late starts)
      pleasing the most parents and giving all high school students late starts (but this cost way more)
      balancing those factors

      The compromise was chosen and apparently pleased nobody. I'm reminded of the engineering slogan "fast, cheap, good - pick 2". It doesn't sound like a problem with the algorithm technology, rather how it was used

      --
      I listen to both RIAA and non-RIAA stuff if I like the music, tangential business/politics nonwithstanding.
    3. Re:Typical case of mathematicians by Anonymous Coward · · Score: 0

      It's also just a couple of grad students leading the project. Yes they're at MIT, so I reckon they're pretty smart, but they're still grad students, and these blind spots belie their real-world inexperience.

    4. Re:Typical case of mathematicians by Anonymous Coward · · Score: 0

      The fact that they had multiple solutions means they used too many free parameters and not enough signals. They set up an underdetermined system. No wonder it failed.

    5. Re:Typical case of mathematicians by Anonymous Coward · · Score: 0

      They also made the classic mistake of 'rip off the bandaid'.

      If they had done a bit here and a bit there. They would have pulled it off. Instead someone decided 'lets save 100 million and I can get re-elected' game. Instead they could have milked that for *years*.

    6. Re:Typical case of mathematicians by Anonymous Coward · · Score: 0

      You can make huge sweeping changes in a lot of things. But it suddenly puts 50 people out of work and messes with someones empire. Guess who will be let go. It sure will not be the 50 people or the person running the empire. It will be your cool project that puts 50 people out of work. I have seen it here and there and have heard numerous stories like it. Cost cutting in a 'political' environment needs to be done delicately. Or it just ends up with you crying and someone else building more empire.

    7. Re:Typical case of mathematicians by Anonymous Coward · · Score: 0

      "Pleasing the parents", that right there is the kind of condenscending attitude that's sure to backfire sooner or later.

      Too many times it's way later and more expensive to repair than it was in the first place!

    8. Re:Typical case of mathematicians by aoeusnth · · Score: 1

      Nearly 85% of the district had ended up with a new start time, and "In the end, the school start time quandary was more political than technical... This was a fundamentally human conflict, and all the computing power in the world couldn't solve it."

      No, it wasn't 'political'. The algorithm successfully computed an optimal schedule for the students with regards to bus transport, but did not include any data at all about the optimal schedule for the parents.

      Yes, I definitely agree that it wasn't "political" on the parents' part. To have described it so is a real slant at the genuine troubles parents of young children would have faced in terms of their own livelihoods had the new startup times gone into effect.

      Rather, it became political by definition at the very *beginning* when Boston told MIT they wanted to reduce costs and have a later start basically just for the high schools — in particular, the highly desirous Boston Latin school.

      Backing up: Boston is one of the rare (or maybe only?) school districts forced by law to desegregate their schools by randomizing school assignments. Recent reports show it is *dramatically* failing even so, mostly because the lottery system was so stressful for parents that many (mostly white) families ended up moving out of Boston or putting their kids in parochial schools.

      Many of these same families then send their kids to Boston Latin exam school (if they get in), sometimes by "re-establishing residence" in Boston. Consequently, these families only care about the Boston public school system for its high schools, which are consequently far more wealthy and white than the lower grades.

      So you see: Boston never asked MIT to see what they could have done better with the *existing* budget. They didn't ask MIT to watch out for parents' work schedules when daycare figured heavily into their children's lives — when so much of the student population are from low-income families.

      They basically only listened to a certain slice of taxpayers (I speak euphemistically). It was political from the start, in the worst possible way.

      ---

      Part of the reason the lottery was stressful — the other is rank racism — is because a bus route could theoretically put a young child on a 1hr+ bus ride to the other side of town. To make randomized school assignment work requires dedicated bus lanes and a lot more buses and drivers. So we should not only be spending MORE money on busing, but we should be MORE EFFICIENT with the money we have allocated to it.

      ---

      Final word: it's perhaps a perfect stereotype that MIT engineers were oblivious to the human element. They did have the sincerity and grace of accepting that they missed that crucial aspect in their calculations. They made a terrible mistake (by not seeing the basic flaw in their results without having it pointed out to them), but they didn't become defensive. Rather, I feel the city itself failed its people.

    9. Re:Typical case of mathematicians by colin_young · · Score: 1

      If they wanted to find the optimums, they should have included the whole system and not just the least impactful part. The parents schedules are the most important ones since they are responsible for making it all happen; from breakfast to dinner to bedtime.

      Well, the reason the parent's schedule is the way it is is because the school schedule is the way it is. When school systems shift their schedules, the rest of the system tends to adapt to it.

    10. Re:Typical case of mathematicians by Anonymous Coward · · Score: 0

      Great answer and so true. Garbage in garbage out problem. They missed a key factor because they didn't really understand the problem.

    11. Re:Typical case of mathematicians by Krishnoid · · Score: 1

      As one example, they approximated the students (and school buses) as perfect spheres.

    12. Re:Typical case of mathematicians by Anonymous Coward · · Score: 0

      I am a mathematician and develop and customize algorithms for various commercial purposes.

      On my end of things, I have to spend a great deal of time trying to get the information I need to make an informed approach. A lot of clients give you what they think you want and an overly-simplified model which of course will bite them in the ass, just as this did. Too many in my field just let this slide, and I can understand since it is such a pain to try to get people on board with an algorithmic migration process, not just the end algorithm.

      The end result here, and in many other cases such as Facebook-influenced political landscape, are blindingly foreseeable on my end. Getting people to listen or care before the shit hits the fan, that's a whole other story.

  18. Inability to change by Anonymous Coward · · Score: 0

    ... a 9:30 to 7:15 a.m. shift ...

    Is night-shift common there? If the parents are around before 9:30 AM why aren't they around before 7:15 AM? I suspect this rejection is caused by the laziness of parents and the failure of child-care services and sporting clubs, not the inability to change routine.

    1. Re:Inability to change by KingAlanI · · Score: 1

      Start time changed from 9:30 to 7:15 rather than an overnight work shift. If changed had been used instead of shifted, it would've been clearer.

      --
      I listen to both RIAA and non-RIAA stuff if I like the music, tangential business/politics nonwithstanding.
    2. Re:Inability to change by sjames · · Score: 1

      The two hour change in the morning comes with a two hour change in the evening. Meaning that young school children would start getting home well before their parents.

  19. Clueless, single Programmers with no kids ! by Anonymous Coward · · Score: 0

    This is precisely what happens when programmers don't understand the real issues and get caught up in the coolness of their work. If these MIT grads had a family and regular office working hours - No not the anytime Grad student life types, the sheer stupidity of their proposed solution would have been apparent. How does an average family adjust to a sudden two hour shift ?

    1. Re: Clueless, single Programmers with no kids ! by Anonymous Coward · · Score: 0

      Why is everyone blaming the students that implemented what was asked. Is there no responsibility for the customer who accepted the solution abd dwcided tobuse cheap students for the task?

    2. Re: Clueless, single Programmers with no kids ! by Anonymous Coward · · Score: 0

      No

    3. Re: Clueless, single Programmers with no kids ! by robsku · · Score: 1

      I think it's because these critics are smug elitist better-than-everyone programmers that reinforce their elitism by talking shit about, and loving finding faults in, other programmers.

      --
      In capitalist USA corporations control the government.
  20. How did they not see this comming? by Anonymous Coward · · Score: 0

    What kind of idiot researchers do they have at MIT who didn't think of the fucking parent's not wanting to get up 2 hours earlier, or stay home an hour longer?

  21. 10^120 by Anonymous Coward · · Score: 0

    If they really did sort through 10^120 options, assuming an option took at one single clock cycle, and assuming they used a 1 million yottahertz processor would result in it being processed in 10^82 years.

    Sure they can probably optimize it down to, say, 10^40 (10^-80 times as many) options, then with that impossible million yottahertz processor it would only take 300 years.

    Impressive to say the least.

  22. Re: Real problem is to elegantly remove all the bu by Anonymous Coward · · Score: 0

    I honestly doubt that the majority of parents in that geographical area would 1) choose to homeschool vs work a job making >20k/yr and 2) be able to provide that level of education on avg.

  23. I Would Absolutely Would Be Rich... by sycodon · · Score: 4, Insightful

    ...if I had a mere dollar for every project that failed because they failed to identify the primary customer and understand their needs.

    --
    When Fascism comes to America, it will call itself Anti-Fascism, and tell you to give up your guns.
    1. Re: I Would Absolutely Would Be Rich... by Anonymous Coward · · Score: 0

      The state in this case?
      This merely illustrates the problems of (public) services where the so called customer isn't the final payer and doesn't have incentive to save or pay more for better service.

    2. Re: I Would Absolutely Would Be Rich... by Anonymous Coward · · Score: 1

      Moron. No The state is not the customer. The citizens are. Even those without kids.

      We have a name for these customers. They are called tax payers.

      Yet another fucking socialist idiot thinks we are here to serve the government and not the government to serve the people.

      Please shoot yourself.

    3. Re: I Would Absolutely Would Be Rich... by Anonymous Coward · · Score: 0

      On the contrary, this current system is socialist by nature. Try to compare the business model of education with grocery stores. Do you get food vouchers from the state paid by "taxes"? Perhaps you do. But that is charity, which in truly capitalistic system would be private, not how free markets work.

    4. Re: I Would Absolutely Would Be Rich... by Anonymous Coward · · Score: 0

      Actually the options are:
      In Fascism the state is the customer. In communism it's the commune. In socialism it's the society. In capitalism it's the parents/students by private money.
      Which of these options does your citizen belong to?

    5. Re:I Would Absolutely Would Be Rich... by Shirley+Marquez · · Score: 2

      The algorithm was designed to understand the needs of who the designers thought were the primary customers, the students, and for the desire of the school district to save money on transportation. The desirability of adopting later start times for high schools is well documented; teenagers are natural night people. There don't seem to be any particular disadvantages to earlier start times for elementary schools in terms of student outcomes. So if those are the things you are trying to accomplish, starting high school later and elementary school earlier makes perfect sense.

      The problem was that although the new schedule was beautifully designed to address the needs of the students and the school district, it made no attempt to address the needs of the parents. In the case of high school students it SHOULDN'T be necessary to consider the needs of parents, as those students are old enough to get themselves out of bed and to their schools without parental intervention, but not all parents see it that way. And the change in elementary school schedules, especially the earlier end times, caused serious problems for some parents who were facing the need for hours of additional day care every afternoon. A further complication is that those very high school students with the early start times were often expected to be the caretakers for their younger siblings after school, which doesn't work if the high school gets out hours later than the elementary school.

      Ultimately it's a textbook example of optimizing for the wrong variables.

    6. Re:I Would Absolutely Would Be Rich... by IcyWolfy · · Score: 1

      Why would the parent's need day-care?
      I'm not American, but even first graders (age 5/6) would simply get up in the morning, walk the mile to school, or take a bus.
      They would do the same on their return, and usually would be home alone until their parents return after work.
      Which is normal in the 3 countries I was schooled.

    7. Re:I Would Absolutely Would Be Rich... by nasch · · Score: 1

      It's not generally accepted to leave 6 year olds home alone in the US.

    8. Re: I Would Absolutely Would Be Rich... by kenh · · Score: 1

      And expect them to dress, feed, and get themselves to school on time.

      Not in elementary school.

      --
      Ken
  24. Bugmen by Anonymous Coward · · Score: 0

    Bugmen BTFO how will you ever recover

  25. Even when MIT horrendously fails ... by m00sh · · Score: 2

    MIT's algorithm wasn't elegant. It was a complete failure. Still, it is being spun as some sort of success. They're blaming the field of algorithms. The brilliant and elegant men of MIT could not fail.

    All this university branding ...

    1. Re:Even when MIT horrendously fails ... by Anonymous Coward · · Score: 0

      If you don't come up with a workable solution for the customer, and the customer has to complete the task themselves, did you really succeed? In this case, the customer obviously wasn't prepared for such a great solution. I bet this was a CPFF contract that paid out whatever the outcome. In the meantime, the taxpayers in that district just dumped a bunch of money into a non-workable solution. Congrats!

  26. School start times are often too early by LostOne · · Score: 1

    School starting at 7:15 is ludicrous. Especially for older children for whom getting up early is counter-indicated by biology. (There are studies but I can't be bothered looking up references for a /. comment.) And wouldn't that mean school is then getting out for the day at 1:30 or so? Or do school days run longer in the US than I'm familiar with from when I went to school. Where and when I went to school, it ran from roughly 8:45 or 9:00 to about 3:15 or so, which meant I could get up at 7:00, do the necessary morning stuff, and *walk* to school and be there with a substantial margin before school started. Said schools provided zero bus service within towns. Maybe it's time we start allowing children to walk to school and stop bubble wrapping them? Especially the older ones, but even at age 6, I was walking to school and crossing a *highway* to do so.

    --

    If it works in theory, try something else in practice.
    1. Re:School start times are often too early by Fly+Swatter · · Score: 1

      I used to get on the bus at 7:02am (home at 2:45pm), every school day for four years. 8:02am prior to that for middle and elementary school. If you stick to a routine your body adapts and biology doesn't suffer. As for parents and work time conflicts, this was back when one parent could be a homemaker while the other, yes usually the father, could support an entire family with one full time lower middle class blue collar job. There was even enough for college and retirement because they didn't live beyond their means.

    2. Re:School start times are often too early by Billly+Gates · · Score: 1

      There are pedophiles out today and it is dangerous in urban areas with traffic. The reason they start that early is not just because Mommy has to be at work by 8 but because you would increase bus drivers by 300%. Think about it?

      You can have the same bus driver drive preschool, elementary, middle, and high school. If they all started the same time you would then need to hire 4 times the amount of bus drivers for each shift.

    3. Re:School start times are often too early by b0s0z0ku · · Score: 4, Insightful

      Traffic is no more dangerous than 30-40 years ago, in fact, it's safer. I don't think a larger % of the population has a proclivity to kidnap and abuse children than before, either.

      You sound like part of the problem. In normal places like NYC or parts of Europe, kids walk, bike, or take public transit to school, and parents aren't quaking in their boots in fear.

    4. Re: School start times are often too early by Miamicanes · · Score: 1

      Traffic at a given intensity might be safer now than it was 20-40 years ago, but traffic intensity HAS generally increased. The population of the US has increased by ~40% over the past 40 years... partly due to immigration, mostly due to Baby Boomers having kids of their own.

      Another difference is that young suburban kids are now commuters, too. 50 years ago, an "average" American baby boomer lived in a suburban single-family home & walked less than a mile to an elementary school with a few hundred students. Now, their grandkids in suburbia live in walled townhouse developments (or single-family homes whose roofs practically touch) & attend elementary schools with more students than an average 1950s high school... and usually NOT the geographically-nearest one (thanks to desegregation, magnet schools, and shifting population patterns that mean urban neighborhoods have too many old schools, while new suburban neighborhoods don't have nearly enough).

      So, yeah. Net daily travel by school kids HAS increased overall, and most of them do encounter significantly more-intense traffic conditions than their parents & grandparents did.

    5. Re: School start times are often too early by b0s0z0ku · · Score: 1

      Great, except that we're talking about Cambridge, MA. Only 10% larger population than 50 years ago. The city/town also has quite a lot of elementary schools -- they're not consolidated into one elementary school.

    6. Re:School start times are often too early by Areyoukiddingme · · Score: 1

      In normal places like NYC or parts of Europe, kids walk, bike, or take public transit to school, and parents aren't quaking in their boots in fear.

      That was one of my biggest instances of culture shock in Germany. I was there in late fall, and seeing mobs of kids riding the same trams and subways as I was was entirely foreign to me. They were as businesslike as any of the adults about getting to where they were going.

      It strikes me that America's total lack of effective public transportation is contributing to America's bullying problem among kids. School buses were and still are the sites of a lot of bullying. That's simply a non-issue when kids are riding the same transportation as a bunch of commuting and errand-running adults. When the child to adult ratio goes from 70:1 to 1:1 or even less, kids act far more sensibly. First because they can't get away with bullying, because it will be noticed (and presumably stopped), and second because they're surrounded by role models in the form of hundreds of adults going about their business. Kids imitate what they see.

  27. Not Enough Data by QuadEddie · · Score: 2

    The real root of the parents complaint is the lack of individual situational data into the algorithm. Plug that data into the system, and the results would not be as dramatic, but I guarantee they'd still pay for the project itself multiple times over.

    I wonder why they overlooked the individuals as components of the algorithm versus just scheduling the bus. It's like they were programming a motherboard bus where people are 1s and 0s instead of dealing with complex human individuals.

    Here's a good exercise for them to remember to think of people:

    Create a program to determine where an office full of 15 people can eat lunch on Fridays. Take into consideration, work schedules, personal restaraunt preferences, food preferences, allergies, location of eatery, menu options, service level, eatery reviews, avoid repetition, transportation, weather, traffic, eatery wait times, busyness by hour, price.

    Humans negotiate a lot of that in a conversation and usually with a larger group, there's some sacrifices that need to be made. A program should be able to do this, and MIT should have done something like this before attempting the schoolbus problem.

  28. MIT huh? by Anonymous Coward · · Score: 0

    So you asked a bunch of college students to solve a problem that involves something they have zero familiarly with:

    1) Working a job
    2) Having kids

    I wonder why this didn't work out...

    1. Re:MIT huh? by Anonymous Coward · · Score: 0

      Yeah, I see that I spelled familiarity wrong. Sorry.

    2. Re:MIT huh? by b0s0z0ku · · Score: 1

      College students WERE kids more recently than the "grownups" who are under a misguided delusion that suffering (getting up at 6 am for a high school student) somehow builds character.

    3. Re:MIT huh? by TechyImmigrant · · Score: 1

      College students WERE kids more recently than the "grownups" who are under a misguided delusion that suffering (getting up at 6 am for a high school student) somehow builds character.

      Bravado and posturing is all very nice, but in other countries all schools manage to start all at the same time at 9.00pm and things work out fine.

      In the USA, whinging about busses costing money and requiring absurd pre-sunrise wake up times to compensate is a product of inadequate taxing and incompetent government.

      --
      I should use this sig to advertise my book ISBN-13 : 978-1501515132.
    4. Re:MIT huh? by b0s0z0ku · · Score: 1

      9 am ... but yes, you've described Americah in a nutshell..

    5. Re:MIT huh? by serviscope_minor · · Score: 1

      In the USA, whinging about busses costing money and requiring absurd pre-sunrise wake up times to compensate is a product of inadequate taxing and incompetent government.

      Not only that but one can also complain that it's primarily the "fault" of the low income parents because they have no flexibility in their jobs.

      --
      SJW n. One who posts facts.
  29. Multiple ways to a solution by Anonymous Coward · · Score: 0

    At a business meeting I attended, management wanted to increase the return on assets. A suggested solution was to discard some assets.

  30. My first thought. by Fly+Swatter · · Score: 3, Insightful

    Is that problems like this didn't happen when only one parent had to work to support a family. The 'homemaker' stayed home and handled things like weird school times, plus you know, actually teaching their own kids about life. Now both parents have to work, isn't it nice that now it takes two people working full time jobs to earn enough that used to be done by ONE full time parent? This tells me that your job is only worth half the value it used to be! Progress for corporations, at the expense of your family, indeed.

    1. Re:My first thought. by Oligonicella · · Score: 1

      Now both parents have to work...

      No they do not. It's a choice to live in a certain manner. You pare back the wants from the "needs". I was a single parent and went that world just fine. I dealt with stupid rules by basically saying in a courtly manner "I'm a single parent you imbecile, I can't."

      Having single parents, by the way, was something this algorithm obviously did not take into account.

    2. Re:My first thought. by terrycarlino · · Score: 4, Insightful

      I call BS.

      The duel income family is not a result of two parents having to work to meet needs. Its the result of two parents having to work to meet wants.

      Why the hell do 2 adults and a kid need 2500 sqft of house? Is it really necessary for each kid in a family of four to have their own room? Why the hell does every member of the family need a $1000 iphone?

      The difference in family incomes from 30 years ago isn't that families have half the buying power. Its that they spend twice as much. Most of the increase is for stuff they wouldn't have had 30 years ago.

      Let me run down some examples. 30 years ago no one needed an ISP. Most people pay >$150 a month for internet access. No one 30 years ago had a cell phone. Unless you're on Cricket you're paying ~$80-100 a person for a smart phone date plan. You can throw in the difference in price for an 1800 sqft to a 2500 sqft house. Two new cars, vice one new car and a beater. Laptops, tablets, heck desktops, if anyone still has them, none of which a household had 30 years ago.

      Now don't get me wrong. Lots of that stuff is nice to have. Some of it, like Internet access and connected devices are even pretty close to necessary today. But it is stuff in excess of what the single income household use to have 30 years ago.

    3. Re:My first thought. by Anonymous Coward · · Score: 0

      Nope. Got to pay twice as many people now, so each gets 1/2 of what the male bread-earner got in 1955.

    4. Re:My first thought. by serviscope_minor · · Score: 1

      The 'homemaker' stayed home and handled things like weird school times, plus you know, actually teaching their own kids about life. Now both parents have to work, isn't it nice that now it takes two people working full time jobs to earn enough that used to be done by ONE full time parent? This tells me that your job is only worth half the value it used to be! Progress for corporations, at the expense of your family, indeed.

      Like most things we think of as "the way it used to be", that was basically an anomalous period of history around the 1950s. At most points in history most people have had to work.

      --
      SJW n. One who posts facts.
    5. Re:My first thought. by tippen · · Score: 1

      bingo

    6. Re:My first thought. by Okind · · Score: 1

      The duel income family is not a result of two parents having to work to meet needs. Its the result of two parents having to work to meet wants.

      Tell that to people in the more populated countries in Europe. In the Netherlands, for example, there's been a housing shortage for decades (at least since WWII) and houses cost as much as the more prosperous people can afford. This naturally drives prices up to the point where you need at least a dual income to pay for a 300 sqft home.

    7. Re:My first thought. by robsku · · Score: 1

      Oh god you have expensive internet and phone plans.

      --
      In capitalist USA corporations control the government.
  31. facing a 9:30 to 7:15 a.m. shift?? How retarded .. by angel'o'sphere · · Score: 1

    shifting school start times at some elementary schools by as much as two hours. Even more... Hundreds of families were facing a 9:30 to 7:15 a.m. shift.
    Elementary school kids should start at 7:15???

    When are they supposed to leave the house? 6:45?
    When are they supposed to get out of bed? 5:45?
    When are the parents supposed to get out of bed?

    Hello!!! That is torture!!

    --
    Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
  32. There's the problem... by QuietLagoon · · Score: 1

    "Computers can solve your problem.

    Computers do not solve problems. Computers run programs written by humans. Those humans try to solve the problem via computers. When (if?) humans take responsibility for the problems they tell the computers to create, then and only then will we be able to better resolve the problems that face us.

  33. Dear people who think they're smart.. by Anonymous Coward · · Score: 0

    This algorithm says you're literally delusional. These bus routes are a stand-in for society. You think you can control society and you can't even handle bus routes.

    Idiots.

  34. Re:Real problem is to elegantly remove all the bus by Anonymous Coward · · Score: 0

    So, give the money directly to the parents to choose whatever educational options they think best (including homeschooling and private schools). See my essay on this from about a decade ago:
    https://www.pdfernhout.net/tow...
    "New York State current spends roughly 20,000 US dollars per schooled child per year to support the public school system. This essay suggests that the same amount of money be given directly to the family of each homeschooled child. Further, it suggests that eventually all parents would get this amount, as more and more families decide to homeschool because it is suddenly easier financially. It suggests why ultimately this will be a win/win situation for everyone involved (including parents, children, teachers, school staff, other people in the community, and even school administrators :-) because ultimately local schools will grow into larger vibrant community learning centers open to anyone in the community and looking more like college campuses. New York State could try this plan incrementally in a few different school districts across the state as pilot programs to see how it works out. This may seem like an unlikely idea to be adopted at first, but at least it is a starting point for building a positive vision of the future for all children in all our communities. Like straightforward ideas such as Medicare-for-all, this is an easy solution to state, likely with broad popular support, but it may be a hard thing to get done politically for all sorts of reasons. It might take an enormous struggle to make such a change, and most homeschoolers rightfully may say they are better off focusing on teaching their own and ignoring the school system as much as possible, and letting schooled families make their own choices. Still,homeschoolers might find it interesting to think about this idea and how the straightforward nature of it calls into question many assumptions related to how compulsory public schooling is justified. Also, ultimately, the more people who homeschool, the easier it becomes, because there are more families close by with which to meet during the daytime (especially in rural areas). And sometime just knowing an alternative is possible can give one extra hope. Who would have predicted ten years back that NYS would have a governor who was legally blind and whose parents had been forced to change school districts just to get him the education he needed? So, there is always "the optimism of uncertainty", as historian Howard Zinn says. We don't know for sure what is possible and what is not."

    On why early start times are terrible teenagers:
    https://www.theguardian.com/bo...
    "The book bears a sobering and vital message, too, about the centrality of sleep to the proper development of young minds. Early school starting times - particularly in the US, where, barbarically, almost half of public high schools start before 7.20am - are disastrous for the mental health of teenagers. There is serious evidence, Walker suggests, for viewing lack of sleep as a factor in the onset of depression and schizophrenia."

    Were not the recent mass shooters home schooled? Just sayin'

    https://hsinvisiblechildren.or...

  35. So, the problem wasn't the optimization... by craighansen · · Score: 2

    ....it was the choice of cost function. They could have chosen the cost function so that no school had their time moved up more than, for example, 30 minutes. The end result might not have saved as much in bus costs, but by removing the objectionable results, they might have successfully implemented the optimized schedule. If they had asked parents about acceptable start times in the surveys, surely they should have exposed the problem up front.

  36. Re:Real problem is to elegantly remove all the bus by rtb61 · · Score: 1

    Stupid as. Private for profit, their only purpose to serve the wallets of the investors, if they could rent the children out as slaves they would, their last priority is teaching children, their first priority profits, honestly how well do you think that will really work, it routinely fails to provide good services every where else, if fact ' cheap shit service, lawyers and lobbyists and maximum profit' are their motto (that's cheap to provide, charge maximum amount of course, else where the profits).

    Basically education should be taken out of local purview and be shifted up to state level. Each school should serve a catchment zone the obviates the need for school buses, except for larger regional zones catchments.

    So in the majority of instances no school buses what so ever, done and finished. If necessary more smaller school if catchments are too large to be done on foot, by bicycle or parents dropping off kids to school. Worried about the kids travelling, no problem, the highest possible number of police officers should be on the road patrolling at school start and finish times. Same should be done for the police, turn them from junk yard dog enforcers, to proper police officers caring about their community, drop the insane local show and go for properly managed state based policing.

    --
    Chaos - everything, everywhere, everywhen
  37. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by Billly+Gates · · Score: 0

    shifting school start times at some elementary schools by as much as two hours. Even more... Hundreds of families were facing a 9:30 to 7:15 a.m. shift.
    Elementary school kids should start at 7:15???

    When are they supposed to leave the house? 6:45?
    When are they supposed to get out of bed? 5:45?
    When are the parents supposed to get out of bed?

    Hello!!! That is torture!!

    Funny I have to do that to remain employed. Why can't they? Not everyone gets to be a rockstar and live 5 miles from the office. My company forbids work at home and I have people who need warm seats at 8 and live 80 minutes from work. It is good to teach children the value of arriving to work on time and going to bed early and getting up early.

    After all school is to prepare them to be adults and this is what it's like to be a grown up who isn't a badass programmer who has an understanding boss.

  38. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by b0s0z0ku · · Score: 1

    Maybe if we didn't condition kids to accept unnecessary suffering from an early age, they'd push back against asshole bosses who made ridiculous demands of them. Give a generation or two, and we might even end up with a 40-hour average work week in the US again. Would that be so bad?

  39. Graduate students by Tony+Isaac · · Score: 1

    If you've ever worked with a fresh college grad, you know that they are very, very junior. College does not teach students how to be software engineers, it only teaches them how to write code, and maybe a bit of logic theory. To be worth much in business, it takes a few years of experience.

    Missing the actual reaction of humans who use a system (in this case, parents dealing with bus schedules) is very typical for a young person just out of school, or in this case, still in school.

    1. Re:Graduate students by b0s0z0ku · · Score: 1

      Or maybe they're not so jaded that they don't think they can't knock the bloody system to the ground and help to rebuild it. If we get HS kids used to starting school at 9 am, not 7 am, they'll be less likely to want to take crap from a PoS boss down the road. Maybe we'll finally go back to actual 9 to 5 working times rather than having employees bending over backward to accomodate their bosses.

    2. Re:Graduate students by Tony+Isaac · · Score: 1

      Get "back" to 9 to 5? Study history. Before Henry Ford, people commonly worked six day weeks, 10-12 hour days. We have it pretty darn good these days.

    3. Re:Graduate students by Oligonicella · · Score: 1

      If we get HS kids used to starting school at 9 am, not 7 am

      So you missed the whole part about shifting the start from 9:30AM to 7:15AM? This is what happens when you view everything through radical agenda.

    4. Re:Graduate students by Anonymous Coward · · Score: 0

      Study history! You could be a peasant or a slave. We have it pretty darn good these days.

      I don't think "better than the 19th century" should be our metric for whether current labor laws are the correct laws.

    5. Re:Graduate students by b0s0z0ku · · Score: 1

      Why not continue in the direction of less work, more leisure? Progress should be improvement, not backsliding. 50% of the work done in the US is mindless, unneeded paper-pushing anyway.

  40. That's pretty barbaric by H3lldr0p · · Score: 1

    I mean, what nation decides to place a higher value on an arbitrary start time for work than it does at making certain its children are able to attend school?

    Oh. Wait. That would be our nation.

    It's downright silly to put such demands on people. To tell them simultaneously that they must ensure proper care and education of their children and that they have to be employed while being without recourse or protection of the law should the first priority come in conflict with the second. Only psychopaths demand that sort of thing. And I don't know about the rest of you, I'm not one of those.

    1. Re:That's pretty barbaric by Billly+Gates · · Score: 1

      That's great. My boss would fire you. Infact, I was denied being hired full time because I was 8 minutes late one day, 22 one other day due to an accident, and 9 the rest. I learned my lesson.

      The boss who signs your checks tells you what to do an when to come in. Do not like that then die as you starve. That is just reality. I studied International Marketing in College. The US, Sweden, and Germany have more clocks than anywhere and tardiness is never acceptable PERIOD in our cultures. You can rebel all you want but if you live in these countries you need to warm your seat at the right team and that is always more important than work as you loose the wind in your sail when you do good work and get denied a raise or promotion.

      Kids need to learn this too. It is not about being a wuss but acceptance that people in America (most slashdotters) are retarded and I agree with you on this. If you want their money suck up and show up early. Perception is reality

    2. Re:That's pretty barbaric by Anonymous Coward · · Score: 0

      Then your boss is a psychopathic control freak who has no business managing people.

      I've been working for 25 years and the only time I've worked under those conditions was when I was a by the hour shift worker - and that's understandable, since you need to be in on time so that the previous shift can end on time, and the machines keep running.

      But slavish adherence to an arbitrary start / finish time when you're not in that sort of job is stupid, and will be costing the business real money in lost productivity.

    3. Re: That's pretty barbaric by Anonymous Coward · · Score: 0

      Capitalism is psycopathic by nature. It does not reward any of our empathic or altruistic impulses. It works by turning self-interest into a sort of surrogate altruism.

    4. Re:That's pretty barbaric by djinn6 · · Score: 1

      Sounds like you don't have the skills it takes to negotiate a better schedule. The entire power dynamic flips on its head when you're the only guy in the company who knows how to keep the business-critical stuff running and rival companies are offering 30% raises to jump ship.

    5. Re:That's pretty barbaric by mvdwege · · Score: 1

      The entire power dynamic flips even harder if everyone decided that they just didn't take the offer, and, you know, organised and appointed someone to negotiate a better deal with the employer.

      But that would be crazy talk...

      --
      "I know I will be modded down for this": where's the option '-1, Asking for it'?
    6. Re:That's pretty barbaric by Anonymous Coward · · Score: 0

      Some work start times are arbitrary, but not all.

      If your business advertises that it opens at 8:00 a.m., but nobody has actually turned up at that time to open the doors, that's a pretty big deal.

  41. Re:Real problem is to elegantly remove all the bus by Anonymous Coward · · Score: 0

    Cruz?

  42. Consider the location. by ChrisMaple · · Score: 0

    M.I.T. is located in Cambridge, Massachusetts, across the river from Boston. Both cities are havens for leftist loony toons, so it's no surprise that there was no wise oversight of the project before it was presented to the community.

    --
    Contribute to civilization: ari.aynrand.org/donate
    1. Re:Consider the location. by Anonymous Coward · · Score: 2, Interesting

      The MIT leftie loonies are kept in line by actually having to prove their scientific claims. Harvard, however.....

      The problem for the MIT researchers was that they tried to solve a math and a scheduling problem. They'd never attended a town hall meeting in Southie, or in Charlestown, or the political loonie of anything involving the Cambridge Housing Authority. Now *that* is a bunch of overprivileged wealthy white single moms who don't actually have to worry about rent, they just worry about where to find cheaper gas for their SUV that their daddy or ex husband is paying for. Been there, done that, dealt with their spoiled rotten over-medicated kids.

    2. Re:Consider the location. by Anonymous Coward · · Score: 0

      How about you learn to stay on topic.

  43. I have a solution by Anonymous Coward · · Score: 0

    Bicycles. Let the mother fucking dipshits ride to school on a bike or walk or ride a horse. Youncould buy every 1 of those mother fuckers a cheap Next bike and they would be awake by the rime they pedaled to school.
        I know this will not happen because the mother fucking liberals all have a mojor interest in the bus and taxi companies that are raping the middle class to subsidize the diesel guzzling busses that clog up the roads

    The United States contibution to world society is to have conclusivly and definativly proved that Democracy just doesnt work. Fnord.

  44. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by Billly+Gates · · Score: 1

    Redicilous? Where do you live? In the US, Germany, and Nordic countries tardiness is never ever acceptable PERIOD. Sure you can be a few minutes late every now and then but if it is a common occurence then prepared to be disciplined.

    I have to get up at 4:45am to get to work at 8am due to traffic and other variables where I live. I was late 3 times when they demanded I come in earlier last month and I was angry too. Then I thought about it and realized if I didn't be there on time they would fire me and replace me with someone else who will. I am a contractor and the customer is always right too in the US.

    How do we prepare our kids if they expect to show up late and be fired all the time when they enter the workforce? Also in my neighborhood I see cars heading out starting at 4am! Obviously they have no problems and are thrilled to be up early and have a job.

    But I studies international marketing in college. Germany, Nordic countries, and the US/Canada do not tolerate tardiness and have more clocks per capita than everywhere else. You can't change the culture of Americans when someone else is happy to do your job for less and be there on time.

    Just go with the flow or be unemployed with no benefits as being late counts as misconduct.

  45. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by ezelkow1 · · Score: 2

    Arriving to work on time sure, thats a fine value

    Why is going to bed early and getting up early a value? Its all arbitrary. At least all of the shops I know of and have worked at dont really give a crap what time you show up (at least before noon so you can be there to discuss things with others or to make it to a meeting when scheduled). As long as you aren't inconveniencing someone else by not being there what does it matter, do your 8hrs of work and as long as you get it done adequately who cares

    Of course this doesnt apply to shift work, when you have to be there at a certain time, but for anything non shift going to bed early and getting up early is a preference, not a value

  46. $3 to $5 million from 100-million+ budget by Anonymous Coward · · Score: 0

    It looks like the algorithm just sucks. After evaluating 1 novemtrigintillion options all it can do is shave few percents requiring life changing sacrifices from the clients. This can't be right.

    Did school district just stumble on near-optimal solution which MIT can't improve? Considering these things usually just grow over time naturally it seems unlikely.

  47. And the client exclaimed with a snarl and a taunt by kmoser · · Score: 4, Insightful

    "It's just want I asked for, but not what I want!"

  48. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by Oligonicella · · Score: 1

    Not everyone gets to be a rockstar and live 5 miles from the office

    Get a city map. Study the layout as concerns where people live and where they work. Get back to me when you realize five miles isn't that far from work for most people. Hell, I now live in a tiny town and know people who live on one side and work on the other. Over five miles.

  49. Complete design failure by Anonymous Coward · · Score: 0

    As much as I look at this there was no defined measure of success. What was good enough. That even recognised all the stakeholders.

    Whoever at MIT was supervising this was either not listened to, or just sitting there waiting for an inevitable epic fail.

  50. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by angel'o'sphere · · Score: 1

    What has getting up early for work as a guy over 30 to do with getting up early for school for a 6 or 7 year old?
    Easy answer: nothing.

    --
    Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
  51. do it again by AndyKron · · Score: 1

    What a fucking waste of time. Let's do it again!

  52. Um... they were going to have the younger kids by rsilvergun · · Score: 1

    come in earlier so the older kids could come in later. That would make the day care situation worse, not better. That's more than likely why people complained about the change. That plus most folks build their work hours around their kids.

    --
    Hi! I make Firefox Plug-ins. Check 'em out @ https://addons.mozilla.org/en-US/firefox/addon/youtube-mp3-podcaster/
  53. The point of school was to get you ready by rsilvergun · · Score: 1

    for factory work. Until you get to the fancy private schools that is...

    --
    Hi! I make Firefox Plug-ins. Check 'em out @ https://addons.mozilla.org/en-US/firefox/addon/youtube-mp3-podcaster/
  54. Kids these days by rossdee · · Score: 1

    Back in mu day, we walked to school.

    1. Re:Kids these days by Anonymous Coward · · Score: 0

      But did uou learn anything?

  55. Why buses? by mcvos · · Score: 1

    If this is such a hassle, what is the advantage of the US school bus system?

    Netherland has no school buses; all schools start between 8:15 and 8:45, and kids go to school on their own bike. Young kids are brought by their parents. Especially in a city like Boston, I would expect the distance to school to be too short to justify buses.

    1. Re:Why buses? by Anonymous Coward · · Score: 0

      USA is retarded. Even in cases where the distance is doable, they have asshole drivers who will purposefully run over people cycling just because they get angry at them for some reason.
      They also don't have good cycling paths like we do, and their kids are all fat and diabetic.

    2. Re:Why buses? by CrimsonAvenger · · Score: 2

      Netherland has no school buses; all schools start between 8:15 and 8:45, and kids go to school on their own bike. Young kids are brought by their parents. Especially in a city like Boston, I would expect the distance to school to be too short to justify buses.

      Well, and this just goes to show that the Netherlands has never had to deal with "forced bussing".

      Once upon a time, it was determined that black kids got worse educations at their local schools than white kids at their local schools. The obvious solution? Bus some of the white kids to the black schools, and some of the black kids to the white schools. Net result? Most kids don't go to the close-to-home schools, they go across town, no matter where they live (the exception, of course, is the children of the upper class, who could (and did) afford to go to private schools).

      Anyways, for the last 50 years, major cities didn't allow for the option of "go to the school just down the street"....

      --

      "I do not agree with what you say, but I will defend to the death your right to say it"
    3. Re:Why buses? by AHuxley · · Score: 1

      Some of is real distances to a school. Some of it was very political. To get average students in some areas to much better schools more wealthy area.
      Did the average students do better with a quality education? That would often need transport given the distances.

      --
      Domestic spying is now "Benign Information Gathering"
    4. Re:Why buses? by b0s0z0ku · · Score: 2

      Actually, Massachusetts almost totally got rid of "forced busing" rules around 2013. Many towns and cities the size of Cambridge (~100k population) in the US have their own districts and route kids to local elementary schools within a mile or two of their homes.

      Even bigger US cities do this -- in NYC, kids typically go to local elementary schools, semi-local middle schools, and then take public transportation to high schools.

    5. Re:Why buses? by b0s0z0ku · · Score: 1

      Solution is to fix all schools -- require building elementary and middle schools within walking distance in urban and dense suburban areas, even if some land has to be taken using eminent domain. State control, equal funding per student for all schools (or more funding if the students are ESL). Get rid of school property taxes, use state income/sales taxes to pay for all education. Randomly assign teachers to a school within under 30 minutes' commute of their home to avoid teachers "cherry picking" "good" schools.

    6. Re:Why buses? by mcvos · · Score: 2

      I can certainly understand the desire for more mixed schools; some schools in Amsterdam could certainly use being a bit more mixed.

      But still, that doesn't mean everybody has to be bussed, just half of the kids living in a neighbourhood that is itself completely homogenous as well as too far away from a different neighbourhood.

      Of course the real solution to that problem would be to encourage more mixed neighbourhoods. Add bigger, more expensive houses in poor neighbourhoods and more affordable housing in wealthy neighbourhoods.

    7. Re:Why buses? by AHuxley · · Score: 1

      Funding was not a problem per student.
      All the funding spent over decades did not get the grades to any better standard. All the changes to education and funding new tech did not see better results.

      --
      Domestic spying is now "Benign Information Gathering"
    8. Re:Why buses? by Anonymous Coward · · Score: 0

      Young kids are brought by their parents..

      Except for those ons that got run over by a train the other day.
      Parents fault ?

    9. Re:Why buses? by Anonymous Coward · · Score: 0

      You really don't want anything like what you described in your post in your town.

    10. Re:Why buses? by mcvos · · Score: 1

      Anything? I certainly do want something that I mentioned in my post. I don't want the excessive bussing, but I do want mixed neighbourhoods. Those are generally much healthier for the city and more pleasant to live in than highly homogenous neighbourhoods. Just like the mixed schools.

    11. Re:Why buses? by mcvos · · Score: 1

      No, that was pre-school care, for kids whose parents need to go to work earlier than the school starts. No idea if that exists in the US; if it does, I suppose that would solve the problem of the parents whose kids' school now starts a lot later. Just like after school care can solve the problem for kids coming out of school earlier than they used to. But if this was the easy solution, I don't think so many parents would be complaining.

      Only a very small percentage of Dutch kids go to pre-school care. Much less than after school care. Most parents prefer to go to work when or after their kids leave for school, possibly dropping them off at school.

      As for whose fault the accident was, that's something that further investigation will show. It seems the brake of the vehicle was malfunctioning. Expect thorough investigation into the safety of these electric passenger scooters. But tragic as it may be, no vehicle, not even school buses, are immune to accidents.

    12. Re:Why buses? by robsku · · Score: 1

      This is most definitely the way to go, but I'm so certain that there will be a whole bunch of people, and perhaps stupid laws too, that will put a fight against this for what godforsaken reasons (and misunderstandings) they have.

      --
      In capitalist USA corporations control the government.
    13. Re:Why buses? by robsku · · Score: 1

      Maybe the funds were spent to wrong things... There are some simple ways to improve students learning success, like smaller class sizes, but that's not really relevant. Another somewhat relevant to this discussion is later starting times, especially for teenagers.

      This discussion however was about school bus routes and times they go at and when school starts.

      --
      In capitalist USA corporations control the government.
    14. Re:Why buses? by Green+Mountain+Bot · · Score: 1

      I agree with most of what you're saying, but "equal funding per student" sounds a lot better in theory than it works in reality. A school in the middle of a city is going to cost considerably more than one in the middle of the country, if for no other reason than the cost of living is higher there, so you have to pay employees more. There are other factors, as well, such as higher utility costs in older school buildings and additional security costs.

  56. "More political than technical"? Bullshit! by Anonymous Coward · · Score: 0

    If the participants would "have to make major changes to work schedules or even quit their jobs" to reach the designated start times, that's not a "political" failure. That's failure to meet the goals of the stakeholders, and a fundamental design error. It's not "Computers can solve your problem. You may not like the answer", it's NOT THE RIGHT ANSWER. How on earth could the right involve having to quit your job?

  57. Exactly! by Anonymous Coward · · Score: 0

    Simply, fucking, brilliant. Buses have no place in urban or even suburban areas, only rural. The rest need to have more but smaller schools.

  58. what about designing a slow shift? by platinummyr · · Score: 1

    So, create an algorithm which migrates from the current times to the new times over a longer period of time. and does so in short segments? Hmm

  59. Re: Real problem is to elegantly remove all the bu by Anonymous Coward · · Score: 0

    In the UK schools are allocated on the distance your house is from the school. Rural villages are then allocated a school in town and a bus route setup. While living here we have never been more than a 10 minutes walk from our kids school.

    If you dont like the local government school you can always choose a nice public school, but you will be talking about 20K a year in fees.

  60. Re: Real problem is to elegantly remove all the bu by Anonymous Coward · · Score: 0

    Note that a public school in the UK means the opposite - a private school.

  61. Second world country problems? by LostMyBeaver · · Score: 3, Insightful

    We don't really have those problems here.

    In first world countries, it is assumed that people work for a living and that the average work day spans from around 7am to 5pm with a little time for drifting. As such, in first world countries we have government subsidized day care that operates from 7am to 5pm. This means that everyone should be able to make their work window happen during those hours.

    For children who are too young to be home alone before and after school, the schools are open early and there are people watching the playgrounds. Then there are programs sponsored by the government to provide after school activities (similar to day care) for kids up to around 6th grade until 5pm.

    In these environments, we don't have school buses... we simply have public transportation. The parents drop off and pick up using public buses... even if you live on a farm 500km from civilization... there should be a regularly serviced bus stop nearby.

    Parents often make groups to walk kids to and from school each day... and the single parent with a long way to go to get to and from work generally don't have problems because no one would consider making one of their child's friends mother have to quit their job.

    Then there's the issue of making sure that mom or dad don't have that problem. Whether you're a 1%er or you're the bottom 1%, the government pays your child welfare to make sure their have what they need. This pops an extra $300-$500 a month into your bank account. So you can afford to have a slightly more flexible job or even to be a student long enough to make things easier later on.

    We pay for this as tax payers in the first world and don't think anything of it. It doesn't matter whether we choose to have children of our own or not. What matters is that the people we work with need to be healthy. The people who work for us need to be healthy. The people who pick up the trash on the road need to be healthy. The people who we pass on the street need to be healthy. Otherwise, you get second world problems like school shootings because people aren't healthy. Or equally disgusting... people live in neighborhoods with security gates and guards because they're terrified of their own lives.

    The first world is willing to live with a little less to get a lot more. We have governments with parties who we don't trust, but are smart enough to make sure there are enough parties that they can't make any choices without actually debating those laws openly. So while we don't trust the people in the government... we trust their enmity towards one another to keep them from hurting us. We also trust the government to make sure our tax payer money is spent in a way that will get them reelected because we can see, touch and feel how much better our lives are than the second world Americans on TV.

  62. Busses are the fucking ELEPHANT in the room by Anonymous Coward · · Score: 0

    This case does not need AI.

    Not everything can be solved by AI.

    Using AI in this case is like pushing a square peg into a round hole.

    The thing blew up not because the busses are not optimal.

    The thing blew up because MIT's so-called 'elegant solution' was attempting to solve a problem without identifying that ELEPHANT IN THE ROOM - which is, the busses.

    It is the busses that have become the BOTTLENECK.

    If one really wants to solve any problem, the bottleneck must be identified and eliminated.

    To eliminate that bottleneck in this scenario one either

    1. MASSIVELY INCREASE THE NUMBER OF THE BUSSES,

    or

    2. Stop bussing the students altogether.

    1. Re: Busses are the fucking ELEPHANT in the room by Anonymous Coward · · Score: 0

      Stop bussing kids around, buy them all a bike that gets treated like a textbook. "On loan from school."

      Kids will benefit from more exercise.

      If kids die because of unsafe road conditions, THAT is a problem MIT can solve. Launch big data AI at removing bad drivers from the road.

    2. Re: Busses are the fucking ELEPHANT in the room by b0s0z0ku · · Score: 1

      Problem is that the helicopter parents will start yowling that their Biffy and Buffy might get hit by a car or abducted by aliens if they don't have a nice safe bus or can't drive their kids to school.

    3. Re: Busses are the fucking ELEPHANT in the room by Anonymous Coward · · Score: 0

      Or abducted by some weirdo and held captive. Possibly even forces to have the weirdo's children. Elizabeth Smart, and these kids... http://www.cbs8.com/story/12120578/san-diegos-dark-history-of-child-abductions.

    4. Re: Busses are the fucking ELEPHANT in the room by b0s0z0ku · · Score: 1

      Blah blah blah, a kid's more likely to be hit by lightning than be abducted by a psychopath. Most abductions are one parent in a divorce or a family member. Stop drinking hyped-up media Koolaid.

    5. Re: Busses are the fucking ELEPHANT in the room by Anonymous Coward · · Score: 0

      In most states thereâ(TM)s no way to collect money from parents for any reason. You still cannot deny their child fape.

  63. Right solution to the wrong problem. by Anonymous Coward · · Score: 0

    This is a classic software development failure. The developers set about finding an optimum solution, spent hours on it creating the algorithms, programming them, and rush in a mad deadline to finish. They finish, the solution works as designed. But only later do they discover they solved the wrong problem!

    This happens all the time. The article makes it out as "political" (which it's not), it's a functional problem. Changing start times is a massive headache for parents. You try getting your 10 year old up at 6am. Personally I _hated_ getting up this early in HS, and it'd have been 10 times harder in grade school.

    Of course the parents petitioned and put the kibosh on this. It was a stupid idea designed to save money at the expense of anything. Saving money to the exclusion of everything else is rarely the right solution.

  64. Re: Real problem is to elegantly remove all the bu by Anonymous Coward · · Score: 0, Insightful

    I fail to understand the importance of having two hours more sleep during 7 to 9 AM instead at 9 to 11 PM.

  65. Obviously by Anonymous Coward · · Score: 0

    One could only expect those results when all of the following took place:

    1) Those that were most affected (parents), were not consulted
    2) Those that foot the bill (see above) were not consulted
    3) AI was used and actual intelligence (common sense) was disregarded
    4) Those doing the calculations have no experience with children or jobs, but know how to program

    Almost nobody can just change the start or end times of their jobs. No, geniuses of slashdot, slowly adjusting it wouldn't help either and would likely cause continued issues as the changes kept coming.
    If your boss told you at work tomorrow that you need to stay an hour late, you might be irritated. If you have kids, you might have to tell him to fuck off. What if you he told you that you need to come in early tomorrow? Same.

    This isn't a theoretical thing we're talking about, it's the very thing people deal with in real life when you have a job and kids in school.

  66. Bad Algorithm by Anonymous Coward · · Score: 0

    Why are they calling this an "elegant" algorithm when it reaches an intractable solution? I'll bet these MIT nerds don't have any kids because a 7:15-9:30 time window is just stupid. They didn't even consider in their design when parents have to be at work. They claim they interviewed parents to find preferred start times and still landed on a solution that every parent knows is just plain stupid. They only optimized the actual routes regardless of necessary constraints of parents' schedules. Yet another example of overhyped nerds failing to consider all the constraints of a problem, and coming up with an overcomplicated, utopian solution to problems that completely miss the mark in the end.

  67. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by CrimsonAvenger · · Score: 1

    When are they supposed to leave the house? 6:45?

    When are they supposed to get out of bed? 5:45?

    When are the parents supposed to get out of bed?

    Hello!!! That is torture!!

    Hmm, I get up in the 4AM to 5AM range most mornings. No, it's not torture, since I don't bother with an alarm (actually, I have a 6AM alarm, because there are a couple things that absolutely must be done before 7, but I've only been awakened by that alarm twice this month)....

    No, humans aren't hardwired to any particular wake-up time (other than dawn), nor to any particular sleep time (other than sunset).

    Now, are modern parents/children wired to particular times for waking and sleeping? Well, I guess that depends on what TV shows are on at any particular hour....

    --

    "I do not agree with what you say, but I will defend to the death your right to say it"
  68. Junk in Junk out by Anonymous Coward · · Score: 0

    So funny in the light of recent news about children sleep being destroyed by early school start times... parent's are correct, the computer did not "figure out the correct answer" because it was not correctly parameterized, specifically with the requirement that children don't end up with very poor sleep. Perhaps some children already do and the naieve designers of the algorithm thought that simply maintaining the average would therefore be ok - which shows a complete lack of understanding of reality of how people respond to change, imagine being told your kid's school start time was changed from 9 to 7:30.

  69. Re: Real problem is to elegantly remove all the b by Anonymous Coward · · Score: 0

    It's called a public school because the public can attend, for a fee.

    There are schools in the UK so elitist that the public cannot attend for any price.

  70. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by b0s0z0ku · · Score: 1

    Who says anything about tardiness? What's wrong with shifting ACTUAL start times (work or school) to better accomodate human circadian rhythms?

  71. schedules are already bad by Anonymous Coward · · Score: 0

    The real irony being that loads of real experts in child health say that we shouldn't be putting kids in school so early in the first place (the current school schedules are primarily to serve the convenience of adults).

    I.e., just one thing is apparently yes teenagers do in fact need 10-11 hours of sleep per day.

  72. Do the math if you have three kids by Paul+Fernhout · · Score: 0

    If you have three kids, that is $60k a year. That is about the average household income in the USA. And since household income is often unevenly distributed between two working parents, even just $20k a year is about what one parent might be making, say, working at minimum wage at a convenience store (especially if not quite full time). And $20k a year would go a long way for some families otherwise living near the edge of poverty (especially in rural areas where the cost of living is generally lower). For farming families with a couple of kids, this money could mean the difference between a parent needing to work off the farm to bring in income (maybe with a long commute) or not.

    There are so many free resources on the internet now (e.g. Khan Academy) that providing learning opportunities to children is much easier than it was decades ago. There's a difference between supervising a child's education and teaching everything yourself.

    As more families homeschool, it becomes easier for all of them since there are more near-by families with kids around to interact with and share resources with. Also, with all that money in the hands of families with kids, they can afford things like educational travel, tutors, and learning center classes -- boosting those areas of the economy. And decent public school teacher could probably do as well financially working in those growing areas and would probably be a lot happier teaching only people who actively want to learn in those areas.

    --
    A 21st century issue: the irony of technologies of abundance in the hands of those still thinking in terms of scarcity.
    1. Re: Do the math if you have three kids by Anonymous Coward · · Score: 0

      If giving the $20k directly to families for the year would have more impact than teaching one student for a year, then something is really wrong with the school system.

    2. Re: Do the math if you have three kids by Anonymous Coward · · Score: 0

      Something is really wrong with the public school system.

      FTFY

    3. Re: Do the math if you have three kids by HornWumpus · · Score: 1

      WTF?

      You really think a 'hookers and blow' will have more impact than education?

      Sure, give them a voucher, let them pick a school. But cash? You must be joking.

      --
      John McAfee 'It was like that time I hired that Bangkok prostitute; to do my taxes, while I fucked my accountant'
    4. Re:Do the math if you have three kids by Aereus · · Score: 1

      I think there are too many untrustworthy parents for varying reasons, to trust giving them a lump-sum cash payment and expect them to responsibly spend that on their childrens' education...

  73. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by AHuxley · · Score: 1

    Work for the parents starts at set time. They have to be at 'work' at a set time. That work shift time cannot be changed for many working people.
    Distances and time needed has to count back from that very important start of work time.

    --
    Domestic spying is now "Benign Information Gathering"
  74. Why teenagers need to get up later by Paul+Fernhout · · Score: 1, Redundant

    According to research cited in Matthew Walker's excellent book, teenagers shift their sleep schedule later by a couple of hours compared to their younger years. This may be because of evolutionary benefits to a tribe of having some people in a village awake to watch for danger when others sleep. A couple of unsupervised hours at night also provides a chance for teenagers to learn to operate independently from their parents while still being part of the family, village, and tribe. So, if you take a teenager who naturally may go to sleep close to midnight and wake up at 10am, and you force them to wake up a 6am to get to a 7am class, you are disrupting their natural sleep cycle which has all kinds of health an cognitive consequences (since naturally they will still stay up late and will thus get less sleep). Examples in the book include a huge reduction in car accidents in an area among teenagers who are better rested. Studies also show vastly better test scores for well-rested teens. Lack of sleep may also be contributing to the teen obesity crisis, the teen heart disease crisis, teen mental illness -- among other negative health impacts from lack of sleep.

    More on this: https://www.sleepfoundation.or...

    As an additional complexity, some people are naturally "larks" (early morning risers, about 10%, according to link below) and some are naturally "night owls" (later risers, about 20%) while most others are "hummingbirds" in the middle. There is very little that can be done about this since this sleep preference is genetically determined to a significant degree -- although sleep schedule may change as we age as above. Caffeine may help some night owls get going anyway in the morning -- but there remains a significant health impact of getting too sleep -- since most night owls simply are not going to go to bed earlier even if they are forced to wake up earlier.
    https://www.nasw.org/users/lla...

    People suffer if their sleep schedule does not reflect their natural cycle. So, forcing a night owl to perform early in the morning is just a bad idea -- whatever the person's age. Similarly, the cognitive performance of someone who stays up a few hours late or who gets a few hours too little sleep is typically similar to that of someone who is drunk -- which is why drowsy driving kills more people than drunk driving. If an early morning school schedule is terrible for a regular teenager, it is going to be even worse for a night owl.

    --
    A 21st century issue: the irony of technologies of abundance in the hands of those still thinking in terms of scarcity.
    1. Re: Why teenagers need to get up later by Anonymous Coward · · Score: 0

      It may also be because of a lack of disipline in teenagers, so they test their boundaries by pushing their sleep schedule around. The same reason why they usually don't know how to handle a credit card.

    2. Re: Why teenagers need to get up later by b0s0z0ku · · Score: 1

      Discipline is bullshit when stupid rules are involved. The people who say "Why? Because I SAID SO, kiddo" deserve nothing better than a kick in the face.

  75. Moving beyond Prussian schooling by Paul+Fernhout · · Score: 0

    Some people of all backgrounds do bad things. Someone growing up badly is more likely to happen when parents and the community do not have enough resources to make time for kids and for each other -- since "it takes a village to raise a child well". So, making more money available to people outside of formal schooling seems (to me) to overall be likely to lead to a reduction in violence and other bad behavior across the board -- including by reducing stress levels. (A universal basic income would be another way to address this.)

    The mostly forgotten purpose of Prussian-inspired schooling in according to Gatto is to turn children into obedient cannon fodder for a military empire. That includes increasing class and race prejudice in structural ways (e.g. the medium is the message, regardless of the content). Give public schools more money and they will only do that distasteful task even better.

    So, without public schools derived from Prussian militaristic ambitions, would the USA overall -- including wars -- be a less violent nation?

    See: https://en.wikipedia.org/wiki/...
    "The Prussian education system refers to the system of education established in Prussia as a result of educational reforms in the late 18th and early 19th century, which has had widespread influence since. It is predominantly used as an American political slogan in educational reform debates, since it was adopted by all American K-12 public schools and major universities as early as the late 18th century, and is often used as a derogatory term for education in the service of nation-building, teaching children and young adults blind obedience to authority, and reinforcing class and race prejudice. The actual Prussian education system was introduced as a basic concept in the late 18th century and was significantly enhanced after Prussia's defeat in the early stages of the Napoleonic Wars. The Prussian educational reforms inspired other countries and remains important as a biopower in the Foucaultian sense for nation-building. Compulsory education on the Prussian example was soon mirrored in Scandinavia, and United States started to adopt the Prussian example."

    And in general, by John Taylor Gatto: https://archive.org/details/Th...
    "John Taylor Gatto is a former New York public schoolteacher who taught for thirty years and won multiple awards for his teaching. However, constant harassment by unhelpful administrations plus his own frustrations with what he came to realize were the inherent systemic deficiencies of our `public' schools led him to resign; he now is a school-choice activist who writes and speaks against our compulsory, government-run school system.
    THE UNDERGROUND HISTORY OF AMERICAN EDUCATION is a freewheeling investigation into the real - as opposed to the `official' - history of schooling, focused on the U.S. but with examinations of other historical examples for the purposes of comparing and contrasting, as well as for tracing where ideas and concepts related to education originated. You will discover things you were never told in the official version, things that will, at times, surprise, disgust, and scare you. You will also be introduced to the little-known historiography of the the darker side of the construction of compulsory government schooling.
    In the final analysis, Gatto believes that compulsory, government-run schooling is inherently destructive to true education, the cultivation of self-reliance, and indeed to individualism - which used to be a defining element of the American character. The true purpose of our public school system in reality has more to do with control than it does with learning. This does not mean that rank-and-file teachers, principals, and even superintendents believe they are making students dumber, more conformist, less self-reliant, less capable of genuine analytical, independent thou

    --
    A 21st century issue: the irony of technologies of abundance in the hands of those still thinking in terms of scarcity.
  76. Bring back consultants by holophrastic · · Score: 2

    A long long time ago, known as the '80s, we still had people called "general business consultants". These people were hired by businesses, for lots of money, purely to look around and make decisions. They didn't justify those decisions (with any sort of data) at all. They simply said thing like "I believe this is the best course of action.". You believed them because they had a good track record and experience in the field, or you didn't.

    Nowadays, general business consultants have been replaced by data engineers -- people who like to collect huge amounts of data points, and have dumb-ass machines make decisions based on those data points. Alas, like every study that's ever been done with data points, it all comes down to whether or not you have enough of the right data points, and not too many of the wrong data points. And that's a skill that absolutely none of these data engineers has ever had.

    I can make the cost of transportation absolutely $0. It's really easy. I'll just cancel all of the buses. Oh, wait, you actually want buses? I hadn't thought about that. Okay, I'll take your children at midnight. Oh? You don't like that either? Here's a thought, I'll get more buses, not stagger anything, and you'll be happy. Oh wait, we don't have that much money?

    Look at that. Balancing costs and services can't make everyone happy. Maybe happiness costs money, or customers. Shock of a lifetime.

    Maybe one day, data engineers will be able to put in the very important data point that says we're never trying to solve a problem. Solving any problem is ridiculously easy. We're always trying to solve a problem within another problem -- within a context. Like, in this case, within a parent's business day. That's hard, if not impossible, every time.

    1. Re:Bring back consultants by b0s0z0ku · · Score: 1

      Not a bad idea to just get rid of busing or drastically cut it down and require kids to walk or bike. All parts of Cambridge basically have a school within a mile of them.

      https://www.cambridgema.gov/~/...

      Other than coverage in the far west side of town (might require one more school), it should be possible for middle/lower school students to have no more than a mile's walk to a local school. It might take some shuffling of usages of facilities, though, and adding on to buildings.

      For high schools, a 2 mile walk is generally acceptable. Most of the city wouldn't need busing to do this.

  77. Probably those MIT students are not parents by Anonymous Coward · · Score: 0

    Are you a parent? If not, you better stay read-only w.r.t. this article.

    While your kids are young (that is they cannot get themselves to school in the morning without help yet), one of the harshest effects of parenthood is permanent sleep deprivation. Especially when new babies are born into a family with kids. Even if the stars were lucky and the birth went well without complications or emergency (you *never* know in advance until it is over), the mother is virtually glued to the baby, she may suffer from post-birth depression, and she is surely tired of pregnancy and birth. The father takes care of everything else, plus he must give the mother several hours of rest (changing diapers, walking miles from one corner of the room to the other at night with the crying baby on his arms, bathing, cooking, feeding, cleaning, and what-not). The father's share of home chores increases dramatically. The father must also attend his job (look carefully at those happy new fathers that do not have any external help at home, when it is them and their wives---these men are walking zombies that I would not permit to drive a car). It gets so hard that it reminded me my toughest times in the military---sleep deprivation accumulates.

    Modern economy *expects* *both* parents to work (it is not a right anymore, thanks to "feminism"): there were times when my wife said that she is so burnt out that she would prefer to give up her skilled office job and just stay home with the kids if I had a way to make up for her share of our income. Planning morning and evening transportation is an ever-reoccurring nightmare: both parents are expected to work at least 10 hours a week in order to stay competitive. Having one kid is usually less of a problem: parents can take turns. Having two kids or more will turn you into a Master of Scheduling. Just imagine that your two 7 and 9 years olds that go to *different* schools were scheduled by that algorithm to start at 0730 and 0930. It means that a parent loses two hours daily thanks to the algorithm.

    There is no politics in this story, just plain stupidity and not knowing first hand what being a parent actually involves. That algorithm literally make parents to hate its inventors for lost hours of work, sleep, quality time with their with kids, etc. I think that it is enough for getting people out to the streets.

    1. Re:Probably those MIT students are not parents by b0s0z0ku · · Score: 1

      That's why we need more SOCIALISM. That's right. Socialism. If a 35-40 hour work week were the norm and respected, and parents were allowed enough free time to care for their kids, maybe such problems wouldn't arise. Two working parent families are fine, but hours should be cut and made flexible enough to deal with the situation.

      As far as making up your wife's share of income, there's an option. Downsize. Do you live in a single-family home on a bigger lot? Sell it, buy a duplex in a less posh part of town (often available for the same price as single-family 'burb homes). Rent one apartment, have some other poor sod paying a large % of your mortgage and taxes.

      Keep cutting. No need for a new iPad every year, one phone and e-device per person, go on the cheapest cell plan possible, drive used cars that are paid off.

      Who knows, you might make up enough money to take a nice backpacking trip every year :D

    2. Re:Probably those MIT students are not parents by Anonymous Coward · · Score: 0

      This was Boston. They could have saved a buttload and not had to change a single thing for elementary school kids by making the high schoolers take the MBTA - just issue a student pass. New York City doesn't cheese bus its middle/high school kids...

  78. I feel this is a common problem by Sqreater · · Score: 1

    Engineers fail to take into account human factors and respect the way things have evolved over time. It will be the same with self-driving cars and vehicles. There are the laws of the road, and then there are the human laws of the road - and they are not the same. You can program in fixed laws, but you cannot account for the understandings and accepted abnormal behaviors of people in software.

    --
    E Proelio Veritas.
    1. Re:I feel this is a common problem by Areyoukiddingme · · Score: 1

      There are the laws of the road, and then there are the human laws of the road - and they are not the same. You can program in fixed laws, but you cannot account for the understandings and accepted abnormal behaviors of people in software.

      Yes you can, and they already have. Google's self-driving cars used to get stuck at 4-way stops in California, because the human convention (completely in contradiction of the law) is to roll the stop. If you're not already moving when it's your turn, you miss your turn. Google coded that into their cars, and now they can navigate 4-way stops just fine, because they exhibit the same aggressive behavior as human-driven cars.

      You can always account for human abnormalities in software. You just have to find out what they are first. And ignore the law, just like the people do. And that's what Google did.

  79. A regulated market-based approach to education? by Paul+Fernhout · · Score: 0

    For good or bad, in the USA we live in a capitalist society with a (somewhat) free market. We can try to make the most of that because -- given appropriate regulation by the State and a fair distribution of purchasing power -- markets can work. See:
    "Planning Through the Market: More Equality Through the Market System" by G. William Domhoff
    https://whorulesamerica.ucsc.e...
    "Most importantly for our purposes, markets can be reconstructed to make it possible to plan for a more egalitarian economic future. It turns out it is possible for strong governments to use the market system for planning. Once it is realized that markets can be viewed from a governmental point of view as administrative instruments for planning, it can be seen that with a little reconfiguring they can serve collective purposes as well as the individual consumer preferences trumpeted by conservative free market economists. In this form of planning, the information is supplied by the price system that is so central to the considerable, but far from perfect, efficiency brought about by markets. There is thus no need for one big planning apparatus. Instead, the planning tools within a reconstructed market system are simply taxes, subsidies, government purchases, and regulation. This point may seem very mundane, but these well-known government powers can be potent when applied to markets. ..."

    Just like there are some good cars out there out there (e.g. Toyota Camry) and bad cars (e.g. Ford Pinto), there are some good private schools out there which can be beneficial to specific families with specific needs and interests and there are also some bad private schools. Even the same school can be good or bad for a family depending on circumstances. For example for an overall good school (especially for families with kids who are a little extroverted), consider the Albany Free School:
    https://en.wikipedia.org/wiki/...

    For parents who don't want to home educate (or otherwise can't do it for some reason), they could spend the $20k per child per year on private school instead. There would thus be a lot of money around to support alternative local private schools (like Montessori schools and child-directed Free schools as well as other types of schools). These schools would have to be very responsive to the needs of families in order to prosper given the potential for competition with all these other educational approaches and other private schools.

    People choosing what they want to learn (and spending money on those choices) seems more compatible with a supposedly free-market capitalist society like the USA -- compared to what we have now with most young people being turned into standardized minds in government-owned "education" factories called schools (see my other comment on Prussian-inspired schools).

    Local libraries might also be big beneficiaries from this shift. As John Taylor Gatto writes in "The Underground History of American Education", the "public" in public libraries means something very different than the "public" in public schools. Public libraries are inclusive institutions where you pick what you want to learn about on your own schedule and the librarian is not looking over your shoulder at everything you read. By contrast, public schools are only available to some people in the community (and exclude participation to everyone else) and, if you can enroll in them, are essentially mini surveillance states dictating what you learn and when you learn it (regardless of your individual needs or interests).

    I's actually prefer a universal basic income over money spent just on families with children. But both of those solutions are in part about the same thing -- addressing a growing destructive rich-poor divide. Both capitalism and democracy can only function well when wealth is roughly evenly distributed across the society. Otherwise regulatory capture and

    --
    A 21st century issue: the irony of technologies of abundance in the hands of those still thinking in terms of scarcity.
  80. Re: Real problem is to elegantly remove all the bu by Anonymous Coward · · Score: 0

    "we do not claim that homeschool students and graduates are any more or less violent than individuals otherwise educated."

    From your referenced article. Just sayin.

  81. Another example of Entitlement by jenninaj · · Score: 1

    A few themes here made me want to comment: 1. Who pays for the schooling system 2. Choice within the schooling system 3. Purpose of the schooling system To point #1: everyone who pays taxes. That includes myself and my wife, who both work hard for our money and who donâ(TM)t - and never will - have kids. As such, I have a stake in this but donâ(TM)t receive any direct benefit. To point #2: as someone who grew up and was educated in the UK the choice available was simple: any of the local schools within a certain catchment area/radius, or pay to go to a private (fee paying) school. The local schools all had generally the same start times (8:30 - 9:00) and you were expected to be there. It wasnâ(TM)t the schoolâ(TM)s responsibility how you got there, and there would be penalties for being late. If you lived out in a remote village then the city would ensure a bus was available (either existing public transport or a school bus). It was your responsibility to catch the bus at whatever time it was due in order to be at school on time. This was an early lesson in the requirements of adulthood. Since we were at school with kids from the same streets, sometimes literally next-door neighbors, we knew many kids at school and could all walk/travel to and from the school together, making it safer and ensuring we all got there on time. Also, it was common that at least one parent would have some schedule flexibility on a particular day so after school a whole bunch of us would go play at that house until our parents were home. To point #3: the basic and undeniable purpose of schooling is to learn. Racial/gender/religious/ considerations are nice but shouldnâ(TM)t drive any of the decisions around which school you can attend. If you leave school without the ability to write, listen, process information, and contribute new ideas then itâ(TM)s a fail. Not being able to do this but having a firm grasp of random sensitivities is still a fail. The number of folks that decide to have kids but only factor in the cost of things like a pushchair, diapers, clothing, etc. rather than the entire cost of their upbringing continues to disappoint me. If you want your kid to go to school A at times B and with diversity C, then donâ(TM)t expect the _public_ system that I help pay for to meet these goals. Canâ(TM)t afford the choices youâ(TM)d want your kid(s) to have? Then you should either not have kids, adjust your expectations, or find some way to make more money. This entitlement crap drives me crazy. Growing up, we were always taught that schooling was a privilege - not a right - and that we should treat it as such. The number of parents who believe that society should pander to accommodate their kids is jarring. You made them, theyâ(TM)re your responsibility, they get no special rights over adults, and I will admonish them if they are doing something that bothers me...exactly as I would do to an adult. Iâ(TM)m content to pay taxes for systems that benefit the wider society but donâ(TM)t directly benefit me, as I recognize that they improve the society I live in and hence improve my quality of life. On a couple of additional points... Homeschooling is a terrible idea for all the reasons already provided (parents are terrible educators, parents canâ(TM)t be expert enough in all subjects, kids grow up with relationship problems, religious nutbaggery, etc,). Safety of kids on the commute: statistics show that kids are safer now than in the past and itâ(TM)s the (social) media who are responsible for whipping people up into a froth about such concerns.

    1. Re: Another example of Entitlement by jenninaj · · Score: 2

      And apparently I need to learn how to insert paragraph breaks. Mucho apologies.

    2. Re:Another example of Entitlement by b0s0z0ku · · Score: 1

      The problem was that schools were locally funded in the US, and schools in Black areas were often UNDERfunded. Thus the desire to bus kids to "better" schools.

      Of course, the better solution would have been public schools under state control, with equal amounts of funding per students, subject to minimum national standards.

      But yes, many US parents are fearful helicopter parents who freak out at the thought of their Biffy and Buffy walking half a mile to school.

    3. Re:Another example of Entitlement by lengel · · Score: 1

      . As such, I have a stake in this but donâ(TM)t receive any direct benefit. .

      Do you own your home?

    4. Re:Another example of Entitlement by lengel · · Score: 1

      Of course, the better solution would have been public schools under state control, with equal amounts of funding per students, subject to minimum national standards.

      I invite you to investigate the education system in the state of Michigan.

  82. just another arrogant inexperienced sw deveoper by Anonymous Coward · · Score: 0

    just another arrogant junior developer thinking they can solve an actual business problem by looking at only the technology and numbers. jeez..

    nothing new to see here, move along.

    City thought it was saving money by putting a couple of gradschool students on the job. that too the geeky ones living in a parallel universe of MIT. no wonder.

  83. Comment removed by account_deleted · · Score: 4, Insightful

    Comment removed based on user account deletion

  84. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  85. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  86. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  87. incremental change won't work by Anonymous Coward · · Score: 0

    All those folks saying "move the schedule a bit at a time" fail to recognize that there's a fundamental granularity and sequencing problem. All schools at a given grade level have to start at the same time - so you really have only 6 orderings: elem, middle, high; H, E, M; M,H, E; and the other 3 permutations.

    Then there's a set of general sequencing constraints which work like this:
    High schoolers perform academically better if they start latest; however extra-curricular (EC) activities such as athletics prefer to start early afternoon, particularly in the fall/winter - some districts forbid interscholastic competition after dark for (misguided) fear of violence. In today's "everyone has to compete for selective college admission" model - EC activities are perceived to be important; and, of course, HS athletics has always driven a lot of decisions.

    Elementary schools don't want to start too early, because "stay at home parents" (who are politically powerful, since they have time to spend on it during working hours) don't want to have to get up too early - the model is: get wage earner off to work, other kids off to school, take young kid to school, then volunteer/socialize with other SAHPs. For working parents, there's a whole infrastructure of child care, etc. that tries to structure on a "arrive late, leave early" basis -

    Middle schoolers - eh, nobody cares about them, so they get put where the other two aren't.

    So you're not going to be able to gradually creep the High schoolers later and the Elementary earlier - Sooner or later, one has to jump over the other, and that's a 1 hour jump at least. a 1 hour jump *is* disruptive, no matter how you look at it. It's going to create a firestorm of criticism, along with all sorts of specious arguments like "my first grader will be walking to school in the dark" - no they won't because you drop them off from your SUV; but YOU will have get up earlier to get yourself dressed and ready to drive them, and that means competition for home resources (cooking, hot water, etc)

    1. Re:incremental change won't work by b0s0z0ku · · Score: 1

      The real question is, what's wrong with the kidlets walking to school in the dark (or more likely twilight) in an era of streetlights and cell phones? Make everyone walk -- maybe this will be the push required for Americans to support livable neighborhoods with sidewalks and bike paths instead of suburban-hell cul-de-sacs off a 4-lane road.

  88. Optimized families by Anonymous Coward · · Score: 0

    Maybe they should try optimizing the families.

    If they could reorganize the families into two parent households with a homemaker / stay at home wife / mother shifting start times would have generated much less push back.

    This is why we can't have nice things.

  89. Re:Real problem is to elegantly remove all the bus by Shirley+Marquez · · Score: 4, Informative

    There is a fallacy of averages in play here.

    We try to provide an education for all students, and there are federal laws protecting that right to an education. But some students cost more to educate than others. Special needs students are very expensive to educate. Most charter and voucher schools find ways to get out of taking their fair share of special needs students, and few parents will have the resources to home school them.

    But voucher systems typically pay the district-wide average of student cost, rather than the average cost of educating a non-special-needs student. As a result, they overpay for what the schools are delivering. Students who are less costly to educate leave the public school system, leaving that system with a higher percentage of those expensive students while simultaneously damaging its economies of scale. The result is a downward spiral of public education.

  90. wrong variables by cascadingstylesheet · · Score: 1

    What about going back to neighborhood schools?

    More grades in one building isn't so bad - when you aren't scooping them up from all over the city. Bonus, they could take the same bus and wouldn't need staggered start times.

  91. 2-person family by Anonymous Coward · · Score: 0

    None of these options are actually optimal for the kids, and the school shouldn't be a day care for kids while parents work.
    Kids should be in school at the time when they can learn. Getting them into school like cattle at the crack of dawn ruins that potential for the entire day.

    The optimal environment is when kids have support at home, a two-person family where only one person *has to* work. Unfortunately, like any good market, our society adapted and converted "ability to have a career for both parents" to actually making it necessary for both parents to work to survive at all.

  92. lame management by nazsco · · Score: 1

    This can call be solved with a single ALTER TABLE to add a column "user_preferred_start_time" and reruning their gigawattBS algo.

    But no, let's make a political post on /. or some other crappy news site.

  93. Re: Real problem is to elegantly remove all the by jabuzz · · Score: 1

    Noting that not all fee paying schools are public schools (most are not). So we have state schools which are free to attend, private schools that cost money, and public schools which are all very old and very elitist, think Eton, Harrow, Rugby etc. Note the oldest school in the UK (and world as I understand it) with continuous teaching since 692 AD is technically not a Public school, and the state school in the next town to mine growing up known locally as Qegs or the Queen Elizabeth Grammer School, where thats Elizabeth the First, and the school is getting on for 500 years old. So its not just about age.

  94. Re:Real problem is to elegantly remove all the bus by mixed_signal · · Score: 1

    That is a very concise summary of the problem with charters that can skip out on the requirements that public schools must operate under.

  95. Arrogance and failure to understand requirements.. by Anonymous Coward · · Score: 0

    The aeticle states "In the end, the school start time quandary was more political than technical."
    Well for 85% who may have had to modify their jobs, start or end times, etc, it's hardly "political", it's a real world constraint. Did the smart MIT schoolbus algorithm also find new jobs for those who would be affected?

    Not so smart now ey?

  96. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by 110010001000 · · Score: 1

    What would happen if you were not in your seat at 8? Would the world stop? If it would you must be very important.

  97. Re: facing a 9:30 to 7:15 a.m. shift?? How retarde by Billly+Gates · · Score: 1

    My world would stop frankly.

    I agree on principal that everyone would benefit if we worked less and hired more people and stopped obsessing over time.

    But in reality my posts are about hurting parents who need to work and an intollerent society of not showing up early or before 9am outside of programmer jobs.

    I had to not work for 2 years because of this problem as kids had early release at 1:30 Friday's to appease the teachers union. No one would hire me as a result.

  98. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by angel'o'sphere · · Score: 1

    Which part of:
    The kid is tortured to get up at 5:45 (to get to the school so early it will spent the first hours sleeping), don't you get?

    No, humans aren't hardwired to any particular wake-up time (other than dawn), nor to any particular sleep time (other than sunset).
    Seems you never worked in an environment where it was obvious: yes, 50% of humans are hardwired. E.g. me. And the others aren't, like you.

    E.g. the typical, hard wired, "I get up somewhat early and like to work from 8:30 to 15:30", that is the classical school teacher. You will hardly find one who likes to sleep into the day, or gets up for fun at 4:00 in the morning.

    If you can shift your sleep and wake times around, you belong to the happy 50% people who can. I guess it is probably only 25% even. As I don't know anyone in person who can do that.

    Well, I guess that depends on what TV shows are on at any particular hour.... Kids usually have no TV in their rooms (where I come from).

    --
    Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
  99. priorities by Anonymous Coward · · Score: 0

    For a 3-5Million dollar saving, you could build schools within walking distance of the students. - Oh wait, this is America not the rest of the world where kids actually walk in the fresh air and get exercise before school by using their legs.

    I'm kinda surprised they didn't suggest scrapping the school busses altogether. Problem solved, no big computer project needed. - I'll collect my consultancy cheque now . thx.

  100. Re: Real problem is to elegantly remove all the bu by stealth_finger · · Score: 1

    Note that a public school in the UK means the opposite - a private school.

    I'm from the Uk and I've never heard a private school called a public school. Private schools cost fees, public schools are free and do all the catchment stuff.

    --
    Wanna buy a shirt?
    https://www.redbubble.com/people/stealthfinger/shop?asc=u
  101. Re:Real problem is to elegantly remove all the bus by Anonymous Coward · · Score: 0

    That $20,000/year figure is once they wrap in special education student costs.

    One disabled student can easily cost $100,000 once you include a $30-60,000 paraeducator to walk from class to class with the student and assist them with every need (including reading the materials to them when they're below grade level, transcription from however the student can communicate to legible text, assistance with going to the bathroom, pushing their wheelchair, emotional outbursts, transporting them to a sensory room so they calm down during an incident, etc), plus visits for rehabilitation that the school must pay for, etc. English for Speakers of Other Languages curriculums are incredibly expensive as well for children who did not learn English at home, you might have five kids sharing one $60-80,000 teacher who is fluent in their language.

    Gifted students also cost more than the average to properly educate, but they're easier to sweep under the rug by putting in the back and giving them some extra credit to work on in a normal classroom.

    Hand every home-schooling family $20,000 per child, and you'll find the special education parents at your door with pitchforks wanting their larger slice of the pie when the money runs out.

  102. Re:Real problem is to elegantly remove all the bus by nasch · · Score: 1

    If necessary more smaller school

    A lot more in some places. In rural areas people can live many miles from the nearest school. You would need little bitty schools that serve the handful of families in walking or biking distance. I think the one-room rural schoolhouse is probably not going to make a comeback though.

  103. Re:Real problem is to elegantly remove all the bus by Wycliffe · · Score: 1

    Conversely buy enough buses to serve both elementary/middle schools and high schools and the problem goes away too.

    It's not about the buses, it's about the bus drivers. My current town has 3 different start times staggered so that they can have full time 8-5 bus drivers. They basically work 4 hours in the morning and 4 hours in the afternoon with a lunch break like a normal job. Where I grew up, the bus drivers were mostly farmers or people who had other jobs. They would drive for 1 hour in the morning, go to work and then drive 1 hour in the afternoon. My current school also has a large number of before and after hour care which is even more needed now that schedules are staggered and the teenager can't be home to take care of the grade schooler. It seems like another easy solution to the busing problem is counter intuitively to extend the school day. If kids went to school the standard 8-5 then there would be less need for bus drivers and more bus drivers available. People could work a normal day job and then still run the buses in the afternoon. Another option would be to have the school teachers drive the buses. If the school teachers did the busing during a normal 8a-3p/9a-4p school day they would have a normal 8 hour 7a-4p/8a-5p 40 hour week.

  104. Re:facing a 9:30 to 7:15 a.m. shift?? How retarded by Anonymous Coward · · Score: 0

    The capital class is obsessed with worms.