TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Google Open Sources Its Secret Weapon in Cloud Computing

28 pointsby erooalmost 11 years ago

3 comments

leorockyalmost 11 years ago
Writers at Wired must have some kind of ridiculous policy about titles. An open source &quot;secret weapon&quot;, Docker is the &quot;next big thing&quot; in cloud computing. Every single wired title that makes it HN makes me cringe. Everyone of them. The titles are silly, dishonest, upworthy, linkbait. I&#x27;m going to write an HN extension for chrome that just auto removes wired.com submissions when I load HN, it bothers me that much.<p>I wrote a little chrome extension that removes Wired, the content script is:<p><pre><code> var hn_blacklist = [ &quot;wired.com&quot; ]; $(document).ready(function () { $(&quot;.comhead&quot;).each(function (i, e) { var $e, tr; $e = $(e); hn_blacklist.forEach(function (domain) { if ($e.text().indexOf(domain) !== -1) { tr = $e.closest(&quot;tr&quot;); tr.next().remove(); tr.remove(); } }); }); }); </code></pre> You can add your own domains to it. I created a manifest.json to make this a chrome extension, included jQuery and now it works.
评论 #7874592 未加载
评论 #7874566 未加载
评论 #7875502 未加载
评论 #7874526 未加载
spankaleealmost 11 years ago
Wow, Wired likes to hide the real details in vague hyperlinks.<p>Here&#x27;s the Kubernetes github repo: <a href="https://github.com/GoogleCloudPlatform/kubernetes" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;GoogleCloudPlatform&#x2F;kubernetes</a><p>And here&#x27;s a Google Cloud Platform blog post that announces Docker support in App Enginer, Kubernetes and cAdvisor: <a href="http://googlecloudplatform.blogspot.com/2014/06/an-update-on-container-support-on-google-cloud-platform.html" rel="nofollow">http:&#x2F;&#x2F;googlecloudplatform.blogspot.com&#x2F;2014&#x2F;06&#x2F;an-update-on...</a>
sorenbsalmost 11 years ago
With Mesosphere getting a major investment the other day, docker gaining traction incredibly fast and now this this space will be really interesting to watch the coming years. The basic offering of AWS is being comoditized, but they still have their hosted services and the big community of stuff hosted on AWS as differentiators. But maybe it isn&#x27;t too crazy to speculate that some of those services could be packaged up somehow and deployed on any cloud.