latest 20 messages by zero-gravitas

+ [2016-10-27T13:54:26Z] zero-gravitas Question on performance, is `map` more performant at build time than just iterating over a bunch of items and pulling out what I want?
+ [2016-09-21T14:30:32Z] zero-gravitas @cytrinox Sounds like you're doing the right thing. What layout does `Artwork` use? Unlike other templates in Jekyll Layouts can inherit from other templates.
+ [2016-08-20T16:08:28Z] zero-gravitas `layout: blog` vs. `layout: page`
+ [2016-08-20T16:08:02Z] zero-gravitas @su1ts you can just use a different layout for the blog page, yeah
+ [2016-08-20T16:02:49Z] zero-gravitas @su1ts No I meant by removing them from your templates, e.g. a layout that has separate includes for the header and the footer, etc. every time that layout gets called it has to pull in those includes and that adds up to more build time
+ [2016-08-19T22:24:47Z] zero-gravitas @su1ts getting rid of includes is one easy way to speed things up
+ [2016-08-19T21:12:36Z] zero-gravitas ./later tell su1ts In Jekyll 3.someting you can include a `--profile` argument in your build command and that will help you figure out where your build process is getting bogged down
+ [2016-08-19T21:09:21Z] zero-gravitas @su1ts In Jekyll 3.someting you can include a `--profile` argument in your build command and that will help you figure out where your build process is getting bogged down
+ [2016-08-16T16:01:52Z] zero-gravitas ./learn gui is http://www.siteleaf.com
+ [2016-08-15T17:07:18Z] zero-gravitas generate them, and then use them—to be clear
+ [2016-08-15T17:06:31Z] zero-gravitas Anyone know of a plugin that will have Jekyll generate data files?
+ [2016-08-11T16:29:10Z] zero-gravitas will start down the hook path then
+ [2016-08-11T16:25:25Z] zero-gravitas It's my fault I'm sure. Will look at some existing plugins that are close and see if I can figure it out
+ [2016-08-11T16:24:07Z] zero-gravitas yup, I'm sure there's a way to do it, I'm must lost in Ruby to figure it out. Will play with it a bit, thanks.
+ [2016-08-11T16:20:55Z] zero-gravitas maybe efficency is too much to ask from Jekyll/liquid
+ [2016-08-11T16:20:27Z] zero-gravitas well I can just leave it in the template and it will work fine, just figured the smarter way would be to do it once and make it available everywhere
+ [2016-08-11T16:17:27Z] zero-gravitas hmm, if the hook is called each time though, it's the same thing right? I'm only thinking about this because I'm trying to be efficent and want to avoid super long build times. It's a big site as it is
+ [2016-08-11T16:09:46Z] zero-gravitas I have an array of related items that is filterd down and shuffled, rather than do that on every page, I want to do it once and then make the array available on all pages