Mahmoud Almontasser
Mahmoud Almontasser
I have create a rate limit middleware and it works for Controllers, is there a way to apply the middleware for generecController?
```typescript @genericController() @Entity() export class Country extends EntityBase { @Column({ nullable: false, unique: true }) name!: String; @Column({ nullable: false }) flagCode!: string; @api.readonly() @api.writeonly() @api.hideRelations() @genericController() @OneToMany(() => City,...
Hello I tried to run the reporting functionality on my both epson printers, the L800 and L200 models, and in the both test reports they kinda fail, the program freezes...
When summing the higher two bytes with the lower two bytes, that results sometimes to an overflow, meaning the result is bigger than 0xffff (16 bit). This way we keep...