Cristian Pietrobon

Results 26 comments of Cristian Pietrobon

Hi @Hookyns Currently i'm using Nestjs (node framework) and React as fronted, i know, Nest looks like angular but fortunately is not :) I checked the change but the problem...

Probably the transformer is not working on the project, it could explain the fncType.symbol -> undefined Example code ```ts console.log("TasksService",getType()) ``` ```bash [ERR] tst-reflect: You call getType() method directly. You...

Similar project: https://github.com/knowankit/fullstack-monorepo-boilerplate Yes, it's using a hot reload but i have the same problem building for production/dev. I tried changing the config (typelib and/or inline) inside the tsconfig.base.json **but...

@Hookyns Sorry, life got the best of me. Here the full configured repo: (npm i && npm run dev) https://github.com/CristianPi/fullstack-monorepo-boilerplate i changed the webpack config to disable **transpileOnly** (the root...

The same here: Logs ```bash (base) [cristian@cristian-xxx-fisso ~]$ sunshine [min_threads] -- [6] [fps] -- [[10,30,60,90,120]] [vt_coder] -- [auto] [amd_rc] -- [auto] [vt_realtime] -- [enabled] [key_rightalt_to_key_win] -- [disabled] [resolutions] -- [[...

you can find the example code here: [https://github.com/CristianPi/benchlmdb.git](https://github.com/CristianPi/benchlmdb.git) i extended **node-lmdb/benchmark/index.js** for convenience the results on my machine: ``` getBinary x 1,026,496 ops/sec ±2.00% (87 runs sampled) getBinaryUnsafe x 682,786...

it's a big limitation of nodejs. It **should** be possible to use "string" as buffers (to avoid the overhead and do sorting on fixed size intergers with prefix ect. ect.),...

i solve with this: ``` #!/bin/bash OSK="ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" VMDIR=$PWD OVMF=$VMDIR/firmware #export QEMU_AUDIO_DRV=pa #QEMU_AUDIO_DRV=pa br=mcbridge tp=mctap nw=mcnet cleanup(){ nmcli connection del $br $tp $nw killall dhclient } trap cleanup EXIT #BRIDGED NETWORKING...

@moddie666 I really don't know if the crashes are caused by the qemu/kvm emulation or, more probably, by mac os (clover?), the underlying hardware (i'm using ryzen 3900x). possible ways...

@marcj ok i found the problem: `SaslStartResponse`, `IsMasterResponse` has no field `ok` so this check fails ```typescript if (!message.ok) { this.current.reject(new error_1.MongoError(message.errmsg || 'error', message.code)); } else { this.current.resolve(message); }...