DenisVASI9

Results 8 comments of DenisVASI9

@extremecodetv Зачем думать о типизации если есть языки без типизации. Надо просто питоне

```javascript if (rawValue === undefined) { // Use devDefault values only if NODE_ENV was explicitly set, and isn't 'production' var usingDevDefault = rawNodeEnv && rawNodeEnv !== 'production' && spec.hasOwnProperty('devDefault'); ```...

I end up just using class-transformer because I already have it in my nestjs project ```typescript @Expose() @IsString() @Transform(({ value }) => process.env.NODE_ENV === 'test' ? 'postgresql://testuser:testpassword@localhost:7000/testdb' : value) DATABASE_URL!:...

``` I, [47] Create and populate prefix table W, cql-io: response timeout: 10.20.2.101:9042 I, Monitoring: datacenter1:rack1:10.20.2.101:9042 brig-schema: cql-io: response timeout: 10.20.2.101:9042 ``` what?

I added python myself. After that I wrote an example in c and it doesn't work either. ``` #include int main() { initscr(); /* Start curses mode */ printw("Hello World...

@osresearch What do you think of that?