James Gosling Leaves Google 192
scottbomb writes "Well, that didn't take long: 'After only a few months at Google, Java founder James Gosling has left the search engine giant to go to a small startup company specializing in ocean-based robotics.' In a brief blog post about his new company, Gosling says, 'They have a growing fleet of autonomous vehicles that roves the ocean collecting data from a variety of onboard sensors and uploading it to the cloud. The robots have a pile of satellite uplink/GSM/WiMax communication gear and redundant GPS units. They have a bunch of deployments. For example, one is a set of robots patrolling the ocean around the Macondo well in the Gulf of Mexico monitoring water chemistry. These craft harvest energy from the waves for propulsion and can stay at sea for a very long time. The longest that one craft has been out is 2.5(ish) years. They can cross oceans.... Slowly. They only move at 1-2 knots, which is a great speed for data collection.'"
SkyNet (Score:3, Funny)
At least we can take comfort in the robots likely getting a java.lang.OutOfMemoryError: Java heap space error.
Re: (Score:2)
I doubt Gosling has problems managing memory in Java.
Re:SkyNet (Score:4, Informative)
I doubt Gosling has problems managing memory in Java.
I dunno, you've never run into the more infamous "java.lang.OutOfMemoryError: PermGen space"?
This is the error that's generated when the Java VM itself (well, the classloader, I guess) runs out of memory.
Because, unlike Java code itself, the Java classloader never frees memory it uses, which means that if you use a class briefly on startup, that code itself will be kept in memory indefinitely and never freed.
Which wouldn't matter as much, if there weren't this special "PermGen" space that used to default to 1MB. (It's slowly been increased as the versions go on and the size of Java programs continued to bloat, I think the default is now something like 16MB and can, as of five years ago, be user-set via a command line parameter.)
So what does this have to do with SkyNet? Well, if it's written in Java, it will run out of PermGen space well before its self-modifying code can accomplish anything.
And, given that PermGen space is never freed, apparently James Gosling does have problems managing memory in Java.
Re:SkyNet (Score:5, Informative)
PermGen is gone in newer versions of Java.
Re: (Score:2)
Re: (Score:3)
Larry is right. I have had to deal with this at work. Our applications create machine generated code, which is compiled and then loaded. I don't know about Java 1.7, but in 1.6 the default garbage collector does unload these classes when there are no more instances of them. The concurrent garbage collector doesn't by default but you can pass the "-XX:+CMSClassUnloadingEnabled" flag to the JVM to enable it.
Re:SkyNet (Score:4, Informative)
Correct me if I'm wrong, but while the JVM doesn't free memory, it does recycle memory from it's allocated space. So, just because you might have accumulated the max memory your JVM might allocate, that doesn't mean your app isn't releasing memory back to the JVM. Kind of like super fetch except allocation is passive.
Re: (Score:3)
Correct me if I'm wrong
Okay. The JVM uses a generational GC. This actually uses a few generations, but I'll talk about a simpler version than Java uses, because it's easier to understand:
When you allocate objects, it uses a simple bump-the-pointer allocator in the short-lived generation. If an object stays around for a while, it is moved into a longer-lived generation. If not, it is deleted. I'm skipping over most of the details here, because they're not relevant. The important thing is that the generations are scanned ap
Re:SkyNet (Score:4, Informative)
However this does often not happen because some objects keeps a (Normally static) reference to this class. An example where this often causes problems are with loggers because they often keep an static reference to a class, because they use it when generating debug output.
Removing all references to a class when doing dynamic class loading is not as easy as it sound, and I know that tomcat had huge problems with this in tomcat 5.5 and 6. I had to restart my 6.0 tomcat server used for development due to this problem because I had it configured to auto reload all newly generated classes. But it seems that they fixed that problem with tomcat 7, because I have not seen a PermGen exception since I upgraded.
Re: (Score:2)
IIRC, when in running with the -server switch, java is willing to -eventually- remove some of the unused memory in permgen.
CMSPermGenSweepingEnabled (Score:2)
check the java parameter -XX:+CMSPermGenSweepingEnabled
it enable the unused class unloading ... but i think that this changed in new versions
Re: (Score:2)
Hate to break this to you, but SkyNet will run on multiple VMs.
Nice try, though.
Re: (Score:2)
Never frees ... unless you are using the CMS collector (any app that does that much class loading/creation/unloading is likely a great candidate for CMS) and you turn on CMSClassUnloadingEnabled in which case the JVM unloads Class objects which are NOT in use just fine.
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
I wonder how this post could be moderated informative. It is simply not true.
Hi, welcome to Slashdot!
Re: (Score:2)
Re:SkyNet (Score:4, Informative)
As the other reply alluded this isn't a JVM problem but a problem with poorly written libraries. If a library sticks something in a ThreadLocal, creates a Thread, registers a JDBC driver, or several other tasks using classes from the webapp class loader and then DOESN'T CLEAN THEM UP when the webapp context is destroyed you get a ClassLoader leak. Just like any other Java memory leak it stems from having classes in the loader still reachable from the GC root.
Tomcat has made some great changes to their webapp classloader to watch for this bad behavior and forcibly remove/cleanup these references when a webapp shuts down, solving this problem in many cases.
Re: (Score:3)
poorly written libraries
I have had my share of PermGen issue. I wouldn't put the blame fully on the developer here. .... This is a java self-inflicted problem, you shouldn't need advanced knowledge of the classloader inner-working (actually, the fact that you need to know about classloader at all to create a webap
It is extremely easy to create PermGen issue (immortal classes object) but the JVM provide very little (closer to nothing) to address that issue: no guideline, no debugging tool, no warning or easy way to detect a leak,
Re: (Score:2)
I'm still wondering why I can't -Xmx"as much as you bloody well need"...
Re: (Score:2)
I'm still wondering why I can't -Xmx"as much as you bloody well need"...
It's the joy of garbage collection. If you did that then your system would run out of RAM whenever you ran two Java programs at the same time.
Re: (Score:2)
switch out windows to linux ... or at least switch to a 64bit system...
in windows 32bits you can only use max about 1.5GB (or something like that) because the "OS" takes 50% of the RAM for him and being 32bits and windows, you can only use 3GB of ram
later windows can use more ram and pass a flag in the boot.ini for the OS "just" take 1GB of ram, and IIRC, that push the limit to about1.75GB or something, that is about the same limit as the (normal) linux 32bit (IIRC)
64bits OS will enable java to use the ful
Oracle? (Score:5, Interesting)
Makes you wonder if the whole Oracle patent shitstorm around Java is making Google reconsider its reliance on that technology. If so, would be interesting to see what they bring forth instead.
Re: (Score:2)
Re: (Score:2)
Go is an interesting language, but there hasn't been much effort from Google to provide adequate tooling for it so far (IDE, debugging etc). Also, its lack of generics in this day and age is quite surprising - even Java had those.
Re: (Score:2)
Add more and more junk like generics and you'll end with languages as byzantine as C++ or Java.
KISS.
Re: (Score:3)
Add more and more junk like generics and you'll end with languages as byzantine as C++ or Java.
Java is a "byzantine language", really? You must be a C coder if you seriously think so.
KISS.
Keep it Simple and Slow? ~
Re: (Score:3, Informative)
Java is a "byzantine language", really? You must be a C coder if you seriously think so.
I'd say Linus Torvalds described this well enough.
KISS.
Keep it Simple and Slow? ~
Well, we're talking about Java vs C...
Seriously, there's a bad trend among some "modern" languages of piling up constructs without regards for efficiency, simplicity or sanity. For example, you can write a non-optimized compiler for languages I'd call sane in a week while for some a team in five years can't be expected to fully implement the standard. There is not a single compliant compiler of C++, and for Java it's only because of a skewed definition of
Re: (Score:3)
Seriously, there's a bad trend among some "modern" languages of piling up constructs without regards for efficiency, simplicity or sanity.
You have a point with respect to C++, though I think that's precisely what makes it invaluable for certain tasks - sometimes you do have a team that knows what they're doing, and they can do it so much better with that pile of features.
But what about generics that makes you lump them into the same category? Efficiency? - but C++ std::sort will beat qsort any day precisely because all polymorphism there is compile-time, and can be fully optimized. Simplicity? Granted, C++ templates are very complicated, but
Re: (Score:3)
Another thing I'd kill for in C is a limited form of RAII, namely scope guards - the ability to say at any given point, "when the scope ends, run this before leaving it"
If you are willing to limit yourself to GCC-compatible compilers (GCC, clang, ICC, Path64, and - I think - XLC), then you should look up __attribute__((cleanup)). I use this for locks in C all the time. I just have a LOCK_FOR_SCOPE() macro, and the lock is automatically released when it goes out of scope. It's even exception safe if you compile with -fexceptions, so if some C++ or Objective-C throws an exception through your stack frame, it works nicely.
Re: (Score:2)
Yes, I know about __attribute((cleanup)). I think it has some design deficiency - notably, it always applies to a single variable, it requires having a cleanup function (no inline code), and it has strict requirements for the signature of that function. For example, you cannot use it directly with fclose() when you need to clean up a FILE*, because it expects the cleanup function to accept FILE** (i.e. it always adds an extra level of indirection, even where it is undesired). Similarly, you can't use it dir
Re: (Score:2)
I know how to do this with C++. The original discussion was explicitly about C, however. Note however that your code is extremely verbose - you have to write a wrapper type with destructor. Scope guards are something much simpler in intent.
Re: (Score:3)
Seriously, there's a bad trend among some "modern" languages of piling up constructs without regards for efficiency, simplicity or sanity.
It's not so much the languages, but the standard libraries. I've spent a lot of time writing performance optimised code (3D engines, large database-type apps, etc...), and the thing that shits me is this:
foreach( x in list_of_x ) { foo( x ); }
where 'foo' does something like:
prep();
work_on( x );
cleanup();
That is bad, especially if 'work_on(x)' has a couple of layers of the same kind of thing -- then there's virtually no hope of the compiler ever optimising that loop in any sig
Re: (Score:2)
There are fully conforming C++ compilers.
Re: (Score:2)
Re: (Score:2)
C++0x is not a published standard yet.
C++, in that context, refers to C++03.
Re: (Score:2)
Generics are quite useful. C++ style generics are much less so, as they rapidly become too complex to sensibly debug. There are, however, other approaches taken by other languages. Both Ada and Eiffel had(have?) generics that were(are?) superior to those of C++. Even Common Lisp appears to have done better, though I've not used it enough to be certain.
Really, the C++ generics are a miserable botch of an excellent idea. Don't blame the idea for the particular implementation. That's as bad as blaming ov
Re: (Score:2)
Being a "C only" coder? Well, yes, that would be borderline insult, at least on Slashdot. Same as being "X only" coder for any language X.
Re: (Score:3)
Yeah, nobody uses those!
Re: (Score:2)
The first S stands for "Simple" as in "BASIC"? (whoops, accidentally held down the shift key there).
Re:Oracle? (Score:5, Interesting)
Are you surprised?
Google is pretty poor at supporting anything longer than a week past the initial launch date.
The whole Google business model appears to go like this:
1. Invent cool tech
2. Make it into an awesome product. Functional, and working, but not finished.
3. Dump it on the public (as a "beta") with a half-hearted launch effort.
4. Start on next project.
For GMail - it worked, partially because a functional product is really all most of us want.
Search is one of the few projects they continually work on - because its what makes them money.
For many of their projects, including Google+, they fail because Google fails at marketing and seeing a project through. Have a look at how Apple launch a product, compared to Google. Apple are often still telling us how wonderful they are even years later, while Google seems to forget about its own achievements after a week.
I like Google - I use many of their services, and have and Android phone + tablet and develop Android apps...but its just plain disappointing to see how little effort is put into their products post-launch. I'm specifically talking about marketing effort, as I'm sure they are working hard behind the scenes.
Re: (Score:3)
Re: (Score:2)
Or even just a .dex converter so that that Android applications can be written in Go instead of Java...
(Since hypothetically any language ought to be convertible to dalvik bytecode and not just Java, I'm surprised Google hasn't put any apparent effort into making that happen so that people don't NEED to program Android applications in Java if they don't want to for some reason.)
(If they came up with a converter that worked from Python code, I don't see how Android application availability wouldn't just plai
Re: (Score:2)
Since hypothetically any language ought to be convertible to dalvik bytecode and not just Java
Not really, just like not any language can be converted to JVM bytecode. With Go, for example, you can have a pointer to an element in an array, and it is indistinguishable from a pointer to any other variable. There's nothing analogous in JVM bytecode - nor, so far as I know, in Dalvik. You can simulate it, but performance would be quite horrendous.
Re: (Score:2)
One is the optional semi-colon and required indent rules
Go doesn't have required indent rules, it has required brace positioning. I don't like this - it seems like a feature that's added for compiler writers, not for programmers, but it's not so bad.
And the Go-routines are interesting, but they should have studied up on erlang message passing
Erlang was inspired by CSP - it even uses CSP symbols for its message passing - but Erlang's actor model is harder to reason about in the common case than CSP, and it's easier to implement the actor model on top of CSP than implement CSP on top of actor model parallelism. Go provides a very nice CSP implementation.
Re: (Score:2)
IDEs add a lot as soon as you start working with a large number of libraries. This applies to any language, from C on up.
IDEs also help catch simple mistakes before compilation.
Oh, and those aren't even touching upon more advanced IDE features, such as refactoring.
Re: (Score:3)
... If so, would be interesting to see what they bring forth instead.
Dunno, maybe they'll switch to Forth as their language... That'd be pretty cool...
Re:Oracle? (Score:5, Funny)
Dunno, maybe they'll switch to Forth as their language... That'd be pretty cool...
FORTH GO MULTIPLY AND
Re: (Score:2)
IMHO slightly better than
(AND (MULTIPLY (GO (LISP))))
blah blah slashdot filter mary had a little lamb
Re: (Score:2)
OMG what a fateful day that was, back in the mid-80s when I decided I needed to become proficient in a new-to-me higher-than-assembly language, and for some arbitrary reason decided I only had time at that moment to learn one [Kids! *facepalm*]. It came down to FORTH or C, and all I cared about, was the speed of the code generated by the compilers / speed of interpreters that were available to me at the time. [Kids! *facepalm*] Based solely on that one thing, I went with C.
Thank Fucking Yog-Sothoth. Somet
Re: (Score:2)
If I were an expert kremlinologist, I would think that you are suggesting Google will dump Java for Forth.
Re: (Score:2)
Could also be that there was some funny IP thing going on in the back. Maybe he just helped google write some patents based on his personal notes.
SPOT (Score:3)
would be interesting to see what they bring forth instead
possibly Spot [9to5google.com]
I take out Gosling's trash (Score:2, Funny)
(Only annoyance: Manual garbage collection)
P.S. your logo is straight out of a Saturday morning cartoon
Re: (Score:2)
Linky [nighthacks.org]
(From here [nighthacks.com])
hmm (Score:4, Interesting)
Re: (Score:2)
> data in, data out, data update, data delete, data sort, data report,
sounds like a typical use case for a robot scanning the oceans...
... just like Java (Score:5, Funny)
The first thing that popped out as I glanced through the post was:
"They can cross oceans.... Slowly. They only move at 1-2 knots, which is a great speed for data collection."
And I thought to myself, "slowly? .. well, it's father of Java, after all."
Re: (Score:2)
Re: (Score:3)
That garbage collection really screws up anything with realtime involved
I'm sure David F Bacon, who wrote an realtime GC for Java for embedded applications almost a decade ago, will be fascinated to hear that.
Re:... just like Java (Score:4, Interesting)
Honestly, JVM hell is caused more by Sun's shitty documentation on how to properly specify JVM versions in a manifest or applet CLSID. Sun historically did a crap job of explaining how to specify things like, "Use the newest version of Java installed on this machine, as long as it's 1.6 (or 1.5, or 1.4) or newer", and instead gave examples that induced people to create needless dependencies on old versions of Java for no real reason besides lack of proper documentation. The fact that Oracle now owns Java makes things worse, because Oracle software was historically the worst of all about creating stupid dependencies on old versions of Java for no real reason (or because for political reasons, they wanted you to use the "thick" OCI drivers that tied you down to a specific runtime environment instead of the "thin" type 4 drivers that would "just work" on anything with a JVM).
The truth is, as long as an Oracle native-code database driver isn't involved and the developer doesn't go out of his or her way to needlessly specify some specific, arbitrary version of Java, 99.999% of anything you write in Java will work on any JVM that's as least as new as the one you compiled it under. I have 9 year old jarfiles built with pre-alpha 1.4 JDKs that still work fine under 1.6.0.${whatever}.
True story: at work, we had a notorious internal application whose development team bent over backwards to make users with newer JDKs and JREs installed miserable. Basically, it used the CLSID that told the JPI, "ignore the user's Java control panel settings, and always use the latest version of Java installed on this machine". Then, a few HTML lines later, used Javascript to commit suicide if that version of Java happened to be newer than 1.6.0.18. Sigh.
Re: (Score:2)
For server apps I haven't had any issue when going to the last official Sun JVM (of course, avoiding the first and buggy releases like the 1.7.0 and other jre vendors.) IMO the technical issues were frequent up to the 1.3 days. The real problem I had was related to the JVM app vendor "certified version" which forced us to carry several versions at times. Of course, that's not a Java problem per se. For example, exactly the same issues arise about the operating system version. Fortunately I never had a vendo
Re: (Score:2)
Not this sysadmin, I frigging love java it is the greatest platform in existence. Not really it is rather damn stupid to run a vm to abstract the hardware when everyone runs it on the same architecture.
The real reason I love it is it takes a ass ton of hardware to run even the most simplistic applications. It may be a pain in my nut sack but my wallet frigging loves java.
What do you wanna bet... (Score:5, Interesting)
Re:What do you wanna bet... (Score:5, Interesting)
That's not really what Google does, they're an advertising company whose primary inputs are words and human behaviours.
The first is closer to hands on lab work, while the second is pure data munging, and my impression is Gosling's not that interested in the latter.
Re:What do you wanna bet... (Score:5, Interesting)
I was in Washington Dulles International Airport (IAD) a few months ago and sitting right behind me was a salesman from Liquid Robotics* giving his pitch to a potential client.
I'll admit, I listened in. The technology he was describing sounded amazing.
Alternative solutions are crazy expensive or have limited range/loitering/real-time capabilities,
while this thing can stay out more or less indefinitely if you pay for a big enough battery pack.
I recall something that a quick google search doesn't turn up in any articles:
The salesman mentioned that Liquid Robotics keeps their costs down by contracting fishing boats to drop off and pick up the Wave Gliders. Because, while you could wait for it to come home at 1.5 knots/hr, it's a lot faster (and not very expensive) to have it swim to/from a spot that someone was going to be at anyways.
By the time I had to leave, I was ready to buy one and I don't even need it.
I seriously feel that their technology is going to be the future of unattended oceanographic research
and if I had a million dollars to invest, I would.
*I never actually caught the name of the company, but from the /. summary, I immediately recognized the technology being described.
Re: (Score:2)
Tiny little bugs that measure something, which can be combined into a completely novel picture of the world.
Google doesn't do it yet at full scale, they're an advertising company whose primary inputs are words and human behaviours.
FTFY (remember Google maps with satellite pictures?)
Re: (Score:2)
Re: (Score:2)
"I doubt it. If you read Gosling interviews from the past few years, one of the ideas he likes to talk about a lot over and over is embedding millions of sensors into the world - in roads, walls, etc. Tiny little bugs that measure something, which can be combined into a completely novel picture of the world."
yeah, billions of devices everywhere running java all talking to each other, straight out of sun's marketing for the past decade.
except that at google it's not java. but it is. but it isn't. but it's da
Re: (Score:2)
Re: (Score:2)
>That's not really what Google does, they're an advertising company whose primary inputs are words and human behaviours.
Really? Then explain google maps or google street view. Or the big google book scanning going on. Or android and all its sensors. Or how I can see local traffic (more sensors) on my google maps.
Google is a lot of things and I think the idea of using new sensors and new information to paint a new picture of reality is pretty high on their list. I imagine Gosling's big issue is the mass
100% on his own project, the downside? (Score:2)
Gosling leaving? (Score:4, Funny)
So, that means Kate is staying then?
No change (Score:4, Funny)
Too evil: (Score:2)
"Gosling has left the building!"
Re: (Score:2)
Naw, he just jumped ship to a much cooler form of evil: aquatic robots ready to take over the world.
Re: (Score:2)
Robotic sharks. With frickin lasers!
Re: (Score:2)
You must not have had a google+ account. (Note the past tense.)
Follow the money! (Score:2)
It could be he simply realized there was more money in creating off-the-shelf technologies before the Navy does it themselves, and simply contracting out his little data-sniffers for huge sums.
UAVs(Unmanned Aquatic Vehicle), anyone?
Autonomous data-collecting robots. (Score:2)
I don't blame him. The robots sound like an awesome project, IMHO. When I was a kid (say 11 or 12, so mid-1980s) I used to dream of something similar. I drew up all kinds of plans and pictures and routes of autonomous robotic water craft that would run on sea water and traverse the Pacific ocean from my home state to Japan and back.
Were I him, I would be all up in this stuff. Just saying.
Re: (Score:2)
I drew up all kinds of plans and pictures and routes of autonomous robotic water craft that would run on sea water and traverse the Pacific ocean from my home state to Japan and back.
Let me guess: your parents moved in Montana shortly afterwards, amiright?
Re: (Score:2)
No kidding.
Everyone's talking about reasons for leaving Google, as if Google is a bad employer.
Lets put thing in perspective here...
A job at Google would be great as far as large companies go. Good work-life balance, great work conditions, great benefits etc.
But come on, he's going to be working on high-tech robots! Nothing is cooler for a developer (well, most anyway) than robotics!
I dont blame him at all!!
Underwater research, hmm? (Score:2)
I suppose Google hasn't also just started a project codenamed Azorian [wikipedia.org]?
Suspended (Score:2)
Truth is that he was suspended for failing to sufficiently prove he was *the* James Gosling quickly enough.
once you hit it big, you can be this scaterbrained (Score:3)
If I told my parents I was leaving google to go start my own undersea data collecting company, they'd look askance at one another and wonder what type of mid-life crisis i was having. But I guess once you start something like java, you get free rein to do whatever-the-hell crazy-assed thing you want, even if it means leaving a steady job behind, and nobody thinks it's that crazy.
Re: (Score:3)
Er, yes, once you become super famous and renowned, the concept of a "steady job" loses some of its allure, and you can do cool-but-risky things instead if you want to. The parameters of your risk equation change. But note that such behavior is not at all uncommon even amongst the non-famous — I know tons of people who left "secure" jobs with big companies to join startups — though it's easier when you're young (e.g., no family to support), and perhaps somewhat more attractive for the middle-a
Re: (Score:3)
wah
undersea data collecting IS interesting, challenging, something worth working for.
working for Google just to, like, work at Google should be the reasonable choice here? Heck, work is where you spent the very major part of your life, so it better be something you value. I would totally do the same as he's doing. In fact, I would very much like to work for such a company that's actually doing something interesting.
Can you say "Hazard to Navigation"? (Score:2)
A bunch of autonomous boats moving around the ocean at 2.5 knots with no one or nothing on watch seems a bit dangerous to me. I know most of you think there are nothing but container ships on the oceans but there are about 3,000 cruising sailboats with families aboard out there on vessels that are at risk of these sorts of unmanned vessels. These are often in the 30-foot range and seldom have the power to run radar all night. Most of them keep a lookout but I wonder if these "autonomous" boats have navigati
Re: (Score:3)
The "autonomous boats" are very small, and most of the mass is actually a fair distance below the surface, tethered to a surface float. If there's a collision, even with a very small ocean-going sailboat, it seems very likely that the sailboat is going to win...
You can look at Liquid Robotic's [liquidr.com] (brief) Waver Glider specifications page [liquidr.com] for a bit more detail (mostly in this PDF file [liquidr.com]).
Wave Glider (Score:2)
I've met some of the Wave Glider [liquidr.com] people. The things already have an Iridium uplink, and can be given waypoint lists to follow. They generally stay within about 50 meters of the desired track. They're simple, robust, and effective. They've been sent from Hawaii to Monterey Bay, then up to Alaska and back. The only powered moving part is the rudder. See the link above for how they move.
I don't know what they need Gosling for, though. Their present software seems to be quite effective.
Yeah (Score:2)
I'd hate for those robots to be uploading their data into some stupid old server. Thank god they're uploading it into the cloud. That's much better.
Left eh? (Score:3)
Come on its obvious Gosling was forced out to make room for Cmdr Taco
Gone to a DOD Company - U.S. Citizens Only (Score:2)
He's gone to a cool little company: Liquid Robotics - http://liquidr.com/ [liquidr.com]. Check out the careers section and you'll find that only US citizens need apply. Not surprisingly there must be some very interesting DOD applications for the technology. Nothing wrong with that, just a bit disappointing somehow.
An interesting but not unexpected trend (Score:2)
It sounds cliche but sometimes the most-talked-about place in town isn't really the best place in town.
I have observed this among many former colleagues who go to the next big thing (FB, GOOG, etc.) but leave after less than one year.
I note the trend others have noticed that folks who leave MSFT for the most-talked-about place in town actually return to MSFT.
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
It's a startup maybe they are really using the cloud...
Re: (Score:2)
Okay, make that "a cloud". Now it could be anybody's cloud. Happy?
Re: (Score:2)
Nowadays, almost every big provider is using the word "cloud" to offer small to medium companies managed services and they even propose it to bigger corporations. "The cloud" is a lot more convenient for them because it means that you do not know where your data is located.
As for "the cloud is meaningless", well not exactly, it is just less precise. You could say:
-The Ford engine blew up
-The Mercedes-Benz engine blew up
or just: The engine blew up
Same for the cloud:
-The Google cloud
-The Amazon cloud
or just:
Re: (Score:2)