sixcorners

Results 19 comments of sixcorners

Sorry for the late response. Angular has two ways to annotate dependencies for dependency injection. The implicit way is for it to call Function.toString() and read the parameter names from...

To support this I think you would just install the [`java-cacerts`](https://pkgs.alpinelinux.org/package/v3.4/community/x86_64/java-cacerts)package and do a `ln -sf /etc/ssl/certs/java/cacerts $JAVA_HOME/jre/lib/security/cacerts`. This results in different certs in the keystore though by default.

Isn't it easier to do this ``` RUN cd /usr/local/share/ca-certificates \ && curl -so rds-ca-2015-root.crt https://s3.amazonaws.com/rds-downloads/rds-ca-2015-root.pem \ && update-ca-certificates \ && ln -sf /etc/ssl/certs/java/cacerts $JAVA_HOME/jre/lib/security/cacerts ``` If the image worked...

String concatenation? How about not generating getters and setters and putting a @­Data annotation at the top of the generated classes? I've done this in CodeModel. It works fine.

I would want to try.. I want to do a lot of things. I don't know though. The HAR schema I see around on [different](http://www.softwareishard.com/har/viewer/scripts/preview/harSchema.js) [websites](https://github.com/jarib/har/blob/master/schema.json) looks different then what...

When/if I get a project working without Lombok I'll come back here and +1 this or make recommendations.

Could you just make it so that we can choose which tax lots to sell from?

Is it possible to add support? Would it be a good idea to feed it to the @RequestMapping annotation using SpEL?

The way it's implemented here isn't super straightforward.. I felt like I had to logic my way through what happens when the range of the scan is located at different...

Oh ya.. I guess I could also pull out that re.compile call into a constant.