Zeno Wu

Results 34 comments of Zeno Wu
trafficstars

On a related matter, it seems that `mdb_env_set_mapsize` should be exposed to change the default size. I went back to lower level library because of this limitation. Not sure if...

Ah I see, somehow I missed it. Thanks for pointing that out. Probably the local doc does not work that well for me.. Also btw, the online doc is missing...

I ended up doing something really simple with a custom composite actions in our repo. In case others find it useful. It does not support restore-keys yet, but it shouldn't...

Thanks for responding. Passing as string doesn't pass the type check too, string doesn't conform to object. Probably need to use `any`.

Could you please report which version of sbt you're using? Since this plugin is not pushed for the latest version of sbt, I guess.

Try adding the snoatype SNAPSHOT repository to your sbt plugin project. The plugin has not been tested towards 0.13 so it now stays in snapshot.

Like this ``` scala resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/" addSbtPlugin("com.github.shivawu" %% "sbt-maven-plugin" % "0.1.3-SNAPSHOT") ```

I just found out a fundamental design error, which causes this issue (messy template) and also related to #142 and #151. That is, the ParamValue class, should not try to...

Yes, please share your working branch and I'll take a look, then we can find the best way to do this.

What do you think of this [commit](https://github.com/shivawu/topcoder-greed/commit/c528859c210808086a12e621269d2c053fe494d3)? It basically separate the ParamValue and ParamValueList, and the templates are still the same. The new data template engine solves the problem of...