Rüdiger Busche

Results 75 comments of Rüdiger Busche

Hi the FileSystemExperimentLoader is still immature and subject to change, if it is possible for you I would prefer that you install the development version directly from github using `pip...

There is already a dataclass template https://github.com/koxudaxi/datamodel-code-generator/blob/7fa641f9694afeac7dd5a6164df2e12270f580a4/datamodel_code_generator/model/template/pydantic/dataclass.jinja2 Unfortunately, I wasn't able to figure out how to use it with the command line. Would be awesome if @koxudaxi could provide some...

> This version number should be incremented each time you make changes to the chart and its templates, including the app version. I am not sure, but this advise seems...

A colleague of mine came up with the idea to pass ```hcl resource "helm_release" "my_release" { values = [ ..., yamlencode({ dummy: uuid() }) ] } ``` This way the...

Do you mean for cases when you don't have login credentials, but just have access to vpn? I would be highly interested as well, as this is the case in...

Ok our university is providing access via https://proquestcombo.safaribooksonline.com/ instead of oreily learning. The cookies that I get from the site do not really seem to match with what you would...

I have the same problem, based on the readme, I though setting TS_NODE_BASEURL should be the solution, but this has also no effect for me.

Actually I got it to work now using TS_NODE_BASEURL. I have a layout like ``` src/ myscript.ts mymodule.ts tsconfig.json ``` and im my tsconfig.json ```json "compilerOptions": { "outDir": "dist", "baseUrl":...

@afonsomatos Forgot to change `outdir` it was still set to `lib` instead of `dist`. Fixed it now, let me know if this helps.

Maybe I can combine this PR with another question. I first started by writing a naive implementation of the pseudocode from the paper ![image](https://user-images.githubusercontent.com/8550270/51373609-d93b4180-1b00-11e9-84b8-25cbb7ff8cab.png) The function ended up looking like...