Live data from Hacker News

Viewing profile — piercey4

piercey4

HN member
Joined
Sun, Jan 31, 2016, 11:21 PM UTC
HN karma
68
Public activity
38 items

About piercey4

No profile information was provided.

Recent public activity

  1. comment
    Comment #45869057

    FYI in an actual editor the syntax highlighting works. In the (new) website it's using a different highlighter which has issues. Will be fixed soon!

  2. comment
    Comment #45862874

    Marko can! It's "define" tag lets you create reusable templates in your reusable templates. https://markojs.com/docs/reference/core-tag#define

  3. story
  4. story
  5. story
  6. story
  7. story
  8. story
  9. story
  10. story
  11. story
  12. story
  13. story
  14. story
  15. story
  16. comment
    Comment #11890739

    Caching can easily be shared, @rill/loader works perfectly for my needs. For everything else you are more or less correct. However like i've mentioned Rill works perfectly fine as …

  17. comment
    Comment #11889639

    I mention my inspiration here: https://github.com/rill-js/rill/issues/12 . There are some other interesting frameworks that have come up while I was developing Rill such as https:/…

  18. comment
    Comment #11889414

    As I have mentioned to others here and is mentioned in the Rill README the goal of Rill is provide a bare minimum of abstractions over the browser to encourage code sharing and cod…

  19. comment
    Comment #11889380

    The way that I typically setup my apps is to have two parts of the server. Typically something like: ``` if (!process.browser) app.use(require('./api')) ``` Where the api is your t…

  20. comment
    Comment #11889128

    What I use to handle state transfer from the server to the client is @rill/session along side @rill/loader. Check them out and feel free to ask me any questions (here or in the git…

  21. comment
    Comment #11888272

    I agree with you 100%. You can take this hammer and use it like a axe. But that's not the goal. My personal setup has been to still separate my api (although still written in Rill)…

  22. comment
    Comment #11886708

    I use both but personally prefer Isomorphic because in most cases the code isn't actually universal, it has to be translated (shimmed, transpired, etc) between environments. If the…

  23. comment
    Comment #11886639

    Yeah it's not a perfect word to describe what's going on. I think the loose definition I posted at the beginning of the article works well though.

  24. comment
    Comment #11886532

    Great question. I personally use @rill/session along side @rill/loader. Basically on the initial page load @rill/session asks the server for the current session then for the rest o…

  25. story