<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: wycats</title><link>https://news.ycombinator.com/user?id=wycats</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 24 Apr 2026 18:53:06 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=wycats" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by wycats in "Bitwarden CLI compromised in ongoing Checkmarx supply chain campaign"]]></title><description><![CDATA[
<p>As one of the original authors of Cargo, I agree. lockfiles are for apps and CLIs are apps. QED.</p>
]]></description><pubDate>Fri, 24 Apr 2026 00:14:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=47883938</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=47883938</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47883938</guid></item><item><title><![CDATA[New comment by wycats in "Starbeam – A library for building reactive data systems"]]></title><description><![CDATA[
<p>Certainly!</p>
]]></description><pubDate>Mon, 02 May 2022 19:03:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=31239379</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=31239379</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31239379</guid></item><item><title><![CDATA[New comment by wycats in "Starbeam – A library for building reactive data systems"]]></title><description><![CDATA[
<p>A little more context: I've been working on the design of this reactivity system in some form since roughly 2018 as part of the Ember framework.<p>The original design of the reactivity system made its way into Ember Octane as the "auto-tracking" system, and was fairly exhaustively documented (as originally designed) by @pzuraq in his excellent series on reactivity[1]. He also gave a talk summarizing the ideas at EmberConf 2020[2] after Octane landed.<p>Unfortunately, there's no good way to use the auto-tracking system without the Ember templating engine and all of the baggage that implies. But there's nothing about the reactivity system that is fundamentally tethered to Ember or its templating system in any way!<p>For various practical reasons, Tom, Chirag and I had a need to build reusable chunks of reactive code[3] that work across many frameworks. We liked the foundation of the auto-tracking system enough to extract its ideas into a new library, decoupling the auto-tracking reactivity system from Ember.<p>PS. In case you're wondering, I expect Ember to ultimately migrate to Starbeam, once it's in solid production shape and the dust is shaken off.<p>[1]: <a href="https://www.pzuraq.com/blog/what-is-reactivity" rel="nofollow">https://www.pzuraq.com/blog/what-is-reactivity</a><p>[2]: <a href="https://www.youtube.com/watch?v=HDBSU2HCLbU" rel="nofollow">https://www.youtube.com/watch?v=HDBSU2HCLbU</a><p>[3]: I would have called them "components", but that would make it seem like they have something to do with creating reactive output DOM, which is not what I mean.</p>
]]></description><pubDate>Mon, 02 May 2022 19:03:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=31239373</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=31239373</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31239373</guid></item><item><title><![CDATA[New comment by wycats in "Starbeam – A library for building reactive data systems"]]></title><description><![CDATA[
<p>Hey! Owner of the original repo here :)<p>Like @tomdale, I'm surprised to see this on the front page of Hacker News!<p>I have been working on more detailed documentation about the overall model. It's also still in flux (and not ready for release ), but you can check it out at <a href="https://wycats.github.io/starbeam-docs/" rel="nofollow">https://wycats.github.io/starbeam-docs/</a>.</p>
]]></description><pubDate>Mon, 02 May 2022 18:10:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=31238658</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=31238658</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31238658</guid></item><item><title><![CDATA[New comment by wycats in "Ember.js Octane Edition"]]></title><description><![CDATA[
<p>You're absolutely right. We took a lot of inspiration from the MobX API design.<p>One thing worth calling out: MobX requires you to mark getters as `@computed`:<p><pre><code>  class OrderLine {
      @observable price = 0
      @observable amount = 1

      @computed get total() {
          return this.price * this.amount
      }
  }

</code></pre>
The equivalent Octane class:<p><pre><code>  class OrderLine {
    @tracked price = 0
    @tracked amount = 1

    get total() {
      return this.price * this.amount
    }
  }
</code></pre>
This is more important than it looks. The fact that you don't need to decorate the getter also means that you can break up a computation that uses tracked properties into smaller functions without needing to think about how the smaller pieces should be written. You just use functions.<p>Here's what happens when you try to add methods with arguments to MobX:<p><pre><code>  import { observable } from "mobx"
  import { computedFn } from "mobx-utils"

  class Todos {
    @observable todos = []

    getAllTodosByUser = computedFn(function getAllTodosByUser(userId) {
      return this.todos.filter(todo => todo.user === userId))
    })
  }
</code></pre>
And Octane:<p><pre><code>  import { tracked } from "@glimmer/tracking";

  class Todos {
    @tracked todos = [];

    getAllTodosByUser(userId) {
      return this.todos.filter(todo => todo.user === userId))
    }
  }
</code></pre>
The rule in Octane is: "mark any reactive property as @tracked, and use normal JavaScript for derived properties". That's pretty cool!</p>
]]></description><pubDate>Sat, 21 Dec 2019 01:34:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=21848974</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=21848974</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21848974</guid></item><item><title><![CDATA[New comment by wycats in "Ember.js Octane Edition"]]></title><description><![CDATA[
<p>And on top of that, the fact that we use a simple reactivity primitive under the hood[1][2] means that we have been able to transition from an API designed for 2012-era two-way bindings to a unidirectional data-flow model with minimal disruption, and with free interoperability between code written with the two APIs (even in the same object).<p>This also means that we can design new functionality (like Octane's modifiers, and other upcoming reactive APIs) without worrying about how the parts of the system will work together.<p>[1]: <a href="https://github.com/glimmerjs/glimmer-vm/blob/master/guides/04-references.md" rel="nofollow">https://github.com/glimmerjs/glimmer-vm/blob/master/guides/0...</a><p>[2]: <a href="https://github.com/glimmerjs/glimmer-vm/blob/master/guides/05-validators.md" rel="nofollow">https://github.com/glimmerjs/glimmer-vm/blob/master/guides/0...</a></p>
]]></description><pubDate>Sat, 21 Dec 2019 01:27:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=21848942</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=21848942</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21848942</guid></item><item><title><![CDATA[New comment by wycats in "Ember.js Octane Edition"]]></title><description><![CDATA[
<p>I think that's probably a good change to the default. Today, `ember build` is analogous to `ember s`, and most people deploy to production with `ember-cli-deploy`.<p>But that's not a good enough reason :)<p>Thanks for surfacing this!</p>
]]></description><pubDate>Sat, 21 Dec 2019 01:22:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=21848919</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=21848919</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21848919</guid></item><item><title><![CDATA[New comment by wycats in "Ember.js Octane Edition"]]></title><description><![CDATA[
<p>You got that right.<p>We got a lot of inspiration from the React ecosystem, both in terms of component design (the root element is just another element) and composition.<p>Those changes played out differently in the context of Ember, because of the way our APIs work, but the core ideas are sound, and I'm happy that the React community paved the way.</p>
]]></description><pubDate>Sat, 21 Dec 2019 01:04:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=21848836</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=21848836</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21848836</guid></item><item><title><![CDATA[New comment by wycats in "Ember.js Octane Edition"]]></title><description><![CDATA[
<p>You're not alone! The Ember core team broadly agrees with this goal.<p>With Octane, we focused on landing broad ergonomic improvements in a compatible release of Ember.<p>At the same time, we've been working on updating the way that Ember builds JavaScript so that it can make better use of tree shaking and code splitting tools in modern bundlers. That project is called Embroider[1] and it currently builds substantial Ember codebases.<p>Wrapping up Embroider and shipping it by default is a substantial part of the work we have planned for 2020[2].<p>Also, now that Octane idioms fully replace the need for Ember's original object model (designed in 2012!), I would expect it to become an optional feature, meant to be used primarily as a transition path. When combined with tree shaking, that should substantially change the default byte size of Ember.<p>It's too early to say exactly how that will shake out (no pun intended), but it's a big priority for the Ember community next year.<p>[1]: <a href="https://github.com/embroider-build/embroider" rel="nofollow">https://github.com/embroider-build/embroider</a><p>[2]: <a href="https://github.com/emberjs/rfcs/blob/2018-2019-roadmap/text/0519-2019-2020-roadmap.md" rel="nofollow">https://github.com/emberjs/rfcs/blob/2018-2019-roadmap/text/...</a></p>
]]></description><pubDate>Sat, 21 Dec 2019 00:51:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=21848769</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=21848769</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21848769</guid></item><item><title><![CDATA[Ember.js Octane Edition]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.emberjs.com/2019/12/20/octane-is-here.html">https://blog.emberjs.com/2019/12/20/octane-is-here.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=21848107">https://news.ycombinator.com/item?id=21848107</a></p>
<p>Points: 187</p>
<p># Comments: 75</p>
]]></description><pubDate>Fri, 20 Dec 2019 22:55:20 +0000</pubDate><link>https://blog.emberjs.com/2019/12/20/octane-is-here.html</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=21848107</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21848107</guid></item><item><title><![CDATA[New comment by wycats in "Graphiti: Stylish Graph APIs"]]></title><description><![CDATA[
<p>Ultimately, the value prop of a tool like Graphiti or GraphQL is independent of the exact details of the wire format.<p>Graphiti uses JSON:API[1] under the hood as its protocol, which is a language-independent protocol with a wide variety of clients[2], and is now built-in to Drupal[3].<p>I designed JSON:API in ~ 2013 with a narrow purpose: to describe a protocol for incrementally communicating with server-side graphs over HTTP.<p>By incremental, I mean the possibility of fetching exactly the data you need at first, but then slowly filling in more data over time as a user interacts with an application.<p>URLs are a great "internet pointer", so when I was looking for a way to link fetched data with other not-yet-fetched data, URLs were the natural answer. On the other hand, a lot of REST APIs at the time didn't have a good way to eagerly send a whole bunch of graphy data down at once.<p>JSON:API's concept of linkage supports both models: a type/id pair for data the client already knows about and a URL for data it doesn't. You can even combine the two, to enable incremental refreshing of a piece of data that you fetched as part of the first request (simply by hitting the URL).<p>JSON:API was designed to work well with many kinds of client-side approaches, including ORMs. This meant using a composite key of type/id to identify records and not just a single ID. Over time, this has become a best practice for other tools in the space[4][5]<p>OData exists in a similar space as JSON:API, but JSON:API is much more tightly focused on the problem of incrementally fetching a graph of data from the server into the client. Focus is good :)<p>[1]: <a href="https://jsonapi.org/" rel="nofollow">https://jsonapi.org/</a>
[2]: <a href="https://jsonapi.org/implementations/" rel="nofollow">https://jsonapi.org/implementations/</a>
[3]: <a href="https://www.drupal.org/project/jsonapi" rel="nofollow">https://www.drupal.org/project/jsonapi</a>
[4]: <a href="https://graphql.org/learn/queries/" rel="nofollow">https://graphql.org/learn/queries/</a>
[5]: <a href="https://levelup.gitconnected.com/basics-of-caching-data-in-graphql-7ce9489dac15" rel="nofollow">https://levelup.gitconnected.com/basics-of-caching-data-in-g...</a></p>
]]></description><pubDate>Tue, 23 Apr 2019 18:50:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=19731605</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=19731605</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19731605</guid></item><item><title><![CDATA[New comment by wycats in "Graphiti: Stylish Graph APIs"]]></title><description><![CDATA[
<p>> It doesn't appear to solve some or the 2 major headaches graphQL is great at solving: * clients choosing how much data they need. On a desktop on broadband client, I want details of a list of entities, while on a mobile app with limited screen space and less bandwidth, I just need the skinny details like title and summary.<p>JSON:API solves this problem through sparse fieldsets[1]. Graphiti clarifies the spec by allowing sparse fieldsets at any level of nesting. As the original author and a current editor of the spec, I think we should adopt this extension into the spec proper.<p>> * pooling requests to multiple domains into a single request<p>JSON:API operates against a logical "graph in the sky", just like GraphQL. Graphiti makes it possible to mix and match database queries with other services and even plain Ruby objects[2].<p>One nice thing about this approach is that you still get to make database queries that take advantage of indexes and other database optimizations organically and by default. GraphQL's field-based approach can often result in a lot of extraneous database queries in the service of a homogenous server API that is based on fields.<p>(In my experience working with GraphQL APIs, I've seen a lot of performance issues that could only be debugged as "why is this field slow" that could have benefited a lot from making a big chunk of the query against a SQL database, directly using decades of optimizations around query planning).<p>[1]: <a href="https://jsonapi.org/format/#fetching-sparse-fieldsets" rel="nofollow">https://jsonapi.org/format/#fetching-sparse-fieldsets</a>
[2]: <a href="https://www.graphiti.dev/cookbooks/without-activerecord" rel="nofollow">https://www.graphiti.dev/cookbooks/without-activerecord</a></p>
]]></description><pubDate>Tue, 23 Apr 2019 18:40:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=19731489</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=19731489</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19731489</guid></item><item><title><![CDATA[New comment by wycats in "Skylight, a Ruby profiler, free for open source applications"]]></title><description><![CDATA[
<p>I split my time between Ruby, JavaScript (mostly with TypeScript) and Rust, with occasional Java and devops work. Of those, JavaScript (with TypeScript) is my predominant language at the moment, but the mix changes pretty often.<p>Skylight's stack is Rust and Ruby for the agent, Rails for the backend, Java for our data processing pipeline (essentially a custom data store) and Ember for virtually the entire front end. The graphs in Skylight are Ember components written in d3.<p>I still think that Rails is a great choice for most web apps, since (to this day) it provides an extremely productive baseline for building account management and working with third-party integrations, which turn out to be a surprising percentage of the total code (and an even higher percentage of backend code changes) in even an ambitious project like Skylight.<p>I also think it's reasonable to use something like Java or Rust for any heavy data-crunching your app might do, but I think people over-estimate which aspects of their application are truly performance and efficiency critical.</p>
]]></description><pubDate>Sat, 10 Feb 2018 05:00:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=16345974</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=16345974</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16345974</guid></item><item><title><![CDATA[New comment by wycats in "Skylight, a Ruby profiler, free for open source applications"]]></title><description><![CDATA[
<p>The short answer is no.<p>We work differently than other similar products, in that we rely heavily on aggregation, both for presenting useful data in the UI and also to keep our backend scalable. We don't keep around particular aspects of individual requests. Individual requests are essentially only used as "data points" to build statistical models about your app/endpoints. For example, any SQL queries are parsed and sanitized on <i>your</i> server before they are sent to us[1].<p>That probably sounds more involved than it actually is in practice – you can see it for yourself on the dashboards for The Odin Project[2] and the Homebrew formula browser[3]. The bottom line is that there is no way to get from the aggregated data back to an individual request.<p>[1] <a href="https://www.skylight.io/support/faqs#security" rel="nofollow">https://www.skylight.io/support/faqs#security</a><p>[2] <a href="https://oss.skylight.io/app/applications/g0gJSNnzYAws/recent/6h/endpoints" rel="nofollow">https://oss.skylight.io/app/applications/g0gJSNnzYAws/recent...</a><p>[3] <a href="https://oss.skylight.io/app/applications/jut3BrkJo722/recent/6h/endpoints" rel="nofollow">https://oss.skylight.io/app/applications/jut3BrkJo722/recent...</a></p>
]]></description><pubDate>Sat, 10 Feb 2018 04:34:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=16345903</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=16345903</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16345903</guid></item><item><title><![CDATA[New comment by wycats in "Skylight, a Ruby profiler, free for open source applications"]]></title><description><![CDATA[
<p>For clarity, we also support almost all Rack-based frameworks in Ruby (including Sinatra):<p><a href="https://www.skylight.io/support/advanced-setup" rel="nofollow">https://www.skylight.io/support/advanced-setup</a><p>We should probably update our copy to clarify this point in the prominent places where it isn't already clear.</p>
]]></description><pubDate>Fri, 09 Feb 2018 21:07:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=16343834</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=16343834</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16343834</guid></item><item><title><![CDATA[New comment by wycats in "Skylight, a Ruby profiler, free for open source applications"]]></title><description><![CDATA[
<p>For slightly more context, I wrote the first lines of Rust code for Skylight as a spike at the end of 2013, and joined the Rust core team more than a year later. :)<p>I was largely inspired by a blog post in June 2013 by Patrick Walton: Removing Garbage Collection From the Rust Language[1]<p>[1]: <a href="http://pcwalton.github.io/blog/2013/06/02/removing-garbage-collection-from-the-rust-language/" rel="nofollow">http://pcwalton.github.io/blog/2013/06/02/removing-garbage-c...</a></p>
]]></description><pubDate>Fri, 09 Feb 2018 20:59:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=16343782</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=16343782</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16343782</guid></item><item><title><![CDATA[New comment by wycats in "Programming with a love of the implicit"]]></title><description><![CDATA[
<p>> Preferring implicit code is optimization for the first person writing the code while making it harder to understand, debug, and update.<p>I feel that this argument has been repeated so often that it's almost understood axiomatically: nobody thinks about what it means anymore, it just "seems true".<p>I posted Aaron Turon's (of the Rust core team) article that touches on these topics elsewhere in the thread (<a href="https://news.ycombinator.com/item?id=14280908" rel="nofollow">https://news.ycombinator.com/item?id=14280908</a>), but this topic desperately needs a better definition of "implicitness".<p>Virtually nobody thinks that C programming is "too implicit" because it's "optimizing for the writer over the reader," and similarly, garbage collection is an extremely implicit mechanism that is widely accepted, including by some of the strongest EIBTI proponents.<p>On the other hand, as a strong proponent of abstraction and implicitness in many contexts, I was extremely supportive of (and helped champion) Rust's explicit error handling through the Result type.<p>I like Aaron's "reasoning footprint" rubric because it gives us a way to debate this topic without "implicit" defined in the eye of the beholder. Importantly, it allows us, as a community, to broadly accept changes like garbage collection and control-flow constructs without repeatedly rehashing the same old bumper-sticker debates that mar every generation of programming.</p>
]]></description><pubDate>Sat, 06 May 2017 16:37:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=14281023</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=14281023</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14281023</guid></item><item><title><![CDATA[New comment by wycats in "Programming with a love of the implicit"]]></title><description><![CDATA[
<p>Since this thread is somewhat rehashing the old arguments ("you write once, but read many times, therefore EIBTI"), it might be worth reading a more modern take on the topic by Aaron Turon of the Rust core team in his essay about the Rust language ergonomics initiative[1].<p>> But this, in my opinion, is a misdiagnosis of the problem, one that throws out the baby with the bathwater. The root issue is instead: how much information do you need to confidently understand what a particular line of code is doing, and how hard is that information to find? Let’s call this the reasoning footprint for a piece of code. The pitfalls above come from the reasoning footprint getting out of hand, rather than implicitness per se.<p>> Does readability then demand that we minimize the reasoning footprint? I don’t think so: make it too small, and code becomes hopelessly verbose, making it difficult to read by forcing too much information into view at all times. What we want is a sweet spot, where routine or easy to find details can be left out, but relevant or surprising information is kept front and center.<p>[1]: <a href="https://blog.rust-lang.org/2017/03/02/lang-ergonomics.html" rel="nofollow">https://blog.rust-lang.org/2017/03/02/lang-ergonomics.html</a></p>
]]></description><pubDate>Sat, 06 May 2017 16:14:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=14280908</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=14280908</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14280908</guid></item><item><title><![CDATA[New comment by wycats in "The Glimmer VM: Boots Fast and Stays Fast"]]></title><description><![CDATA[
<p>Also, this particular format is the "wire format", which is the compact representation that we compile templates into to send to the client.<p>The client then compiles that representation into flat opcodes, in part by specializing the template based on runtime information (like the exact identity of the components in question).<p>The runtime opcodes are binary (128-bits apiece at the moment) and optimized for reasonably fast iteration. The wire format is, as chadhietala1 said, not as flat or compact as it could be, but still much more compact than our earlier representations (or the representations of competing rendering engines).<p>We plan to improve the wire format representation in the near future.</p>
]]></description><pubDate>Fri, 07 Apr 2017 05:01:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=14057242</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=14057242</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14057242</guid></item><item><title><![CDATA[New comment by wycats in "The Book of Esther and the Jewish Festival Purim"]]></title><description><![CDATA[
<p>I grew up as an Orthodox Jew and virtually all of the stories of the bible are heavily illustrated in many forms, both recently and in ancient times.<p>The fact that the Megilla doesn't contain the name of God <i>is</i> an interesting phenomenon and the source of a lot of commentary, but not for this reason.</p>
]]></description><pubDate>Wed, 15 Mar 2017 23:51:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=13881047</link><dc:creator>wycats</dc:creator><comments>https://news.ycombinator.com/item?id=13881047</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13881047</guid></item></channel></rss>