Nick Howes

Results 19 comments of Nick Howes

I think the problem is that dragging and dropping of the friends isn't working. Where @theARE refers to dragging them next to the aspect title, it's just the browser's default...

@madmaze - that change fixed it for me, thanks.

@theARE - I had that problem until I remembered to start the socket server, that seemed to make viewing others' messages work.

@theARE - yep, the README file! Running script/server starts both a webserver and the socket server, but there's also instructions for starting them separately.

@theARE - Not sure then, but some combination of that, serving on port 80 with a proper hostname, and doing rake db:reset sorted it out for me. (Actually, if it's...

> What I wanted was something like a map with an else block Other than requiring a dot to call `.getOrElse` I think the idiomatic Scala is pretty close to...

I was thinking about refactoring into something that ran once per SourceSet, as a separate task after all AbstractCompile tasks had run and pulling all their combined classpath and class...

Yep I think that's how the Kotlin compiler handles mixed source. I tried adding `src/main/java` as a sourceroot to the AspectJ action, but then it also tries (and fails) to...

``` import io.freefair.gradle.plugins.aspectj.* tasks.named("compileJava") { configure { enabled.set(false) } } ``` etc.