Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Good Luck (Score 2) 331

In any case, you would need Amazon to actually enforce it. While they do have more money for legal fees, they would risk a big PR issue if they tried to prevent some guy from working at Walmart after quitting Amazon. Also, the first guy with such a problem wouldn't have a lot of trouble finding someone to help them with legal fees, if only for the publicity.

This is probably just a scare tactic, to discourage people from leaving them, it is unethical, but not really enforceable.

More likely, it's a case of megalomania of some middle manager somewhere. Some guy read the article about Facebook "stealing" methods for data centers and thinks the stuff "they invented" in the company is intellectual property worth billions and tries to "protect his ideas."

The non-competes I have experience with were always some big ego douchebag somewhere, not a real business need. It might be different in some industries, but random software consulting companies just don't need it. Yeah, you can be protective of client lists and such, but how to go about the job?

Comment Re:Beware the incoming LART (Score 1) 122

Say 210 watts system power at the wall. 5000 watts a day. Say $0.20/kWh. That is $1/day. No biggie? That's almost $400 a year. Per server. You claim how many? Funny how one under states power/CPU use but over states the rest. Who you lying for?

Amazon gives you infinite store for $60 a year.

That is why America rulez! and the Greeks druelz!

And if he pays for electric heat, some of that comes back in the form of not needing to heat as much. Even in summer time, sin ome places the basement is too cold to use as living space without heating it.

As usual, do the math and decide for yourself it it works for you.

Comment Or the people can just act like adults. (Score 0) 326

The problems with such rules, means the are plenty of work arounds,

In general booth babes are hired, because they know there are plenty of ongoers who still sexually are teenagers. And use them to attract people to their booth.

However what will happen they will have people dressed to fit the rules. However still be sexy, and they will flirt with the potentional customer anyways.

Comment Re:Symmetric mouse (Score 2) 199

The spine was design to stay at an ideal location, with enough flexibility to accommodate movement. Our hands on the otherwise have joints and muscles designed for more purpose. However some activities, usually in the terms of fine movement, may put more strain than larger movements and grips.

Comment Re:You Congresscritters just don't understand (Score 1) 60

Insightful? More like hippy liberal corporation bashing.
Now this isn't some conservative rant. The FAA should be taking such things carefully, so not to cause problems. However, some of the rules are not focused on more agile aircraft development, where drones are involved there is less needs to verify personal safety, and changes to the drone technology shouldn't need as much screwenty. So unlike a Jet where they decided to change a component, as the safety of the pilot is a major concern, and such change should be completely reviewed. For a drone, just as long it fits in the recommended size and flight area it should be allowed more flexibility in changes without as much FAA review. Being that the overall risk of such changes is so small.

Comment Re:It depends (Score 3, Informative) 486

In general writing to RAM is faster than writing to the disk. However there are things that get in the way of both.
1. OS Memory Management: So you making a small memory string to a big one. So will the os fragment the string, when it comes up to an other systems reserved memory spot. Will it overwrite it (Buffer overflow), will it find a contiguous larger memory block and copy the data there. Will it copy and move the memory slots to a new location away from the memory. Will this be happening preemptively, or when the error condition occurs, will all this stuff happen with a cpu cycle that is not sharing with your app. Also if you are low on memory the system may dump it to the disk anyways.

2. OS Disk management: A lot of the same concerns that memory management has. However a bunch of small request is easier to find free space, then asking for a larger spot. So they may be more seek time.

3. Disk Caching: You tell the program to append to the disk. The OS sends the data to the drive, the drive responds back Yea I got it. then the OS goes back to handling your app, in the mean time your drive is actually spinning to save the data on the disk.

4. How your compiler handles the memory. Data = Data + "STRING" vs. Data+="STRING" vs Data.Append("STRING") vs { DataVal2=malloc(6); DataVal2="STRING"; DataRec->Next = *DataVal2; } You could be spending O(n) time saving your memory where you can be doing in in O(1)

Now sometime I do change my algorithm to write to the disk vs. handling it in memory. Mostly because the data I am processing is huge, and I much rather sacrifice speed, in order to insure that the data gets written.

Comment Re:Do what you can to support this (Score 2) 188

Except for the fact that many of these representatives represent rural communities, where they need to travel miles to even see a local town government official, or police man. This stuff has limited impact on their lives. While the City Folk who see a Homeland security truck parked outside their home feel more threatened.
They rural folk are more likely to see the PA as something that affects other people.

Comment Re:mcedit (Score 2) 119

It appears crazy at first. But it was actually designed rather well as to not have your hand move from the core of the keyboard.
As well vi was one of the first full screen editors. So a lot of terminals had inconsistent keys on the keyboard, you could only really trust the core set. The fact it was using the esc key was pushing it.

Comment Re:Whatever ... (Score 5, Insightful) 141

People where hostile to people with Cell phones in the 1980's, In college back in my day, if a student went to class with a Laptop we were hostile towards them. Portable technology takes a while to get into the culture.

  Google keeps telling us what the future is going to be ... the problem is that future is designed to profit Google. Well Duh! Google isn't going to try to push a product that will put them out of business?

In general Google Glass may or may not make it. However its failure doesn't mean the end. The Apple Newton failed too, from its experience and lessons learned it became the iPhone, and iPad.

Comment Re:It has an acronym , so it will fail. (Score 1) 149

The vast majority of students will never need to know how to analyse literature.
The vast majority of students will never need to know about world history.
The vast majority of students will never need to solve algebraic equations.

Learning to code, isn't about knowing the silly commands, but training your mind into solving problems by breaking them down into elementary instructions. It helps you understand the world and trains your mind into different ways of thinking.

Slashdot Top Deals

Factorials were someone's attempt to make math LOOK exciting.

Working...