Mike Slinn

Results 105 comments of Mike Slinn

I hit this problem as well, and I have more than 2 dozen plugins that suffer from this bug. https://www.mslinn.com/jekyll_plugins/index.html

@ashmaroli This pull request has been blocked for 5 months, pending review: https://github.com/jekyll/jekyll/pull/9385

Here is a generic Java enum decoder that might be helpful: ```scala class EnumQuillEncoder[E { val klass = classOf[ClassTag[E]] val method = klass.getDeclaredMethod("valueOf", classOf[String]) val result = method.invoke(klass, row.getString(index)) result.asInstanceOf[E]...

Here is some documentation that should help other Windows users. I am not sure how to offer it via a pull request. The `djv` installation program does not put `djv.com`...

BTW, when DJV is displayed on monitor 1, then the menu selection Window / Fullscreen is used, DJV moves to screen 2 and displays in fullscreen there.

I used sbt-sassify v1.4.6. I'll put a multimodule example together for you tomorrow.

I got most of what I wanted working. [The project is here.](https://github.com/mslinn/play25multiproject/tree/sass) The bottom of the README has a few questions for you.

MixinComposition is an interesting project. Has it been abandoned?

I've been looking at Scalding for only 2 minutes, quickly scanning the `README`, and some issues regarding the first code example jumped out at me: ``` TypedPipe.from(TextLine(args("input"))) .flatMap { line...

@johnynek I probably posted too quickly, after only a brief glance at the docs. Should know better. I just found [Intro to Scalding Jobs](https://github.com/twitter/scalding/wiki/Intro-to-Scalding-Jobs) on the wiki. Perhaps a link...