Viewing profile — piercey4
piercey4
HN member- Joined
- Sun, Jan 31, 2016, 11:21 PM UTC
- HN karma
- 68
- Public activity
- 38 items
- HN profile
- View on Hacker News ↗
About piercey4
No profile information was provided.
Recent public activity
-
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!
-
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
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
-
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 …
-
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:/…
-
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…
-
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…
-
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…
-
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)…
-
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…
-
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.
-
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…
- story