TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Google Open Sources Its Secret Weapon in Cloud Computing

28 点作者 eroo将近 11 年前

3 条评论

leorocky将近 11 年前
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 未加载
spankalee将近 11 年前
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>
sorenbs将近 11 年前
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.