Marc J. Schmidt
Marc J. Schmidt
This makes it compatible with TypeScript 4.8 before this change you get an error: ``` packages/app/node_modules/@oclif/command/lib/command.d.ts:70:31 - error TS2344: Type 'F' does not satisfy the constraint 'Output'. 70 }>(options?: Parser.Input,...
See https://github.com/php-pm/php-pm-httpkernel/commit/4de2a1a8abcc71e87877b5ecf6aadebcf27e7025#diff-4e4aadfdc2edbd7dfe3479c6259178eaR42 Also Stack Builder has been removed since it was never in use. Guess we should adjust this adapter as well. Also the bridge interface has now a new...
**Describe the bug** I run a little Request/Reply benchmark and found it to be very slow with only 7k messages/s. **Reproducing** ```typescript // server const zmq = require("zeromq") export async...
This makes it compatible with TypeScript 4.8 Before this change, you get an error: ``` node_modules/@oclif/parser/lib/index.d.ts:16:52 - error TS2344: Type 'TFlags' does not satisfy the constraint 'OutputFlags'. 16 }>(argv: string[],...
**Describe the bug** I have a table ```sql create table model1 ( id serial primary key, doc jsonb default '{"flag": false}'::jsonb not null ); ``` and I want to insert...
## Problem We are using HogQL in Posthog and extract a/b groups based on an ID. For example (for an experiment with size=2): ``` a = userId % 2 =...
In 1.0.1-alpha.153 there are still some issues where NaN is converted to undefined which leads to lots of issues (union resolves breaks, ORM validation explodes, ...)
I guess https://github.com/hyperopt/hyperopt/commit/9a639fa616a3372c7a519be99dcfc2e783347fa7 broke Python 2 support. My simple code throws an exception: ``` Traceback (most recent call last): File "test7-pots.py", line 141, in print(dot_hyperparameters(space)) File "/Users/marc/bude/hyperopt/hyperopt/graphviz.py", line 40, in...
e.g. https://github.com/epicweb-dev/epic-stack/blob/e70fee5a087954b1818234443ebc49a87b5ca7d0/app/utils/env.server.ts#L60 ```typescript type ENV = ReturnType declare global { var ENV: ENV interface Window { ENV: ENV } } ``` should be avoided as we don't need them at...
```typescript test('query validator withing HttpQuery', async () => { class Controller { @http.GET('do') async do( a: HttpQuery, b: HttpQuery, ) { return { valid: true }; } } const httpKernel...