Tadej Stanic

Results 5 comments of Tadej Stanic

I have the same error. Even the typescript definition file doesn't have all Universe's pub methods defined: ``` export enum Cell { Dead, Alive, } export class Universe { free():...

The root of this problem is in this block of code: ``` impl Universe { fn get_index(&self, row: u32, column: u32) -> usize { (row * self.width + column) as...

I'd evaluate these three ideas from the perspective, which one can give `lunatic` the traction that is much needed to attract more developers to be involved. WebAssembly standardization is a...

I have the same problem. My `yml` is: ``` app: port: 3006 db: dbHost: ${DB_HOST:'localhost'} ``` And my ConfigModule looks like: ``` export const ConfigModule = TypedConfigModule.forRoot({ schema: Config, load:...

Oh, I had the wrong configuration then. It should be `"${DB_HOST:-localhost}" instead `"${DB_HOST:'localhost'}". And then, I was also missing `ignoreEnvironmentVariableSubstitution: false`. Didn't know the default is `true`. My bad and...