Nick Sinclair
Nick Sinclair
@kamilmysliwiec Yep, I'll submit one in the next couple days
in `app/server.py` change lines 15-16 ```python self.cap.set(3, 640) self.cap.set(4, 480) ``` 640 = width 480 = height If you want them to be environment variables, do something like ```python import...
If your problem is with "0 cars detected", change this line ```python R = [r for r in R if r[0] in ['car', 'bus']] ``` to ```python R = [r...
Hey @ppurwar, not sure if this is still relevant to you, but I've posted my implementation/modifications which make the SPP compatible with tf.keras. See #26
Not supporting pagination is a bit of a deal breaker tbh. I like Typeorm but lacking real pagination is a pretty big issue. Been trying to fix this for a...
@juiceo Have you tried this without the constructor? Stabbing in the dark a little bit here, but because decorators often modify the constructor, sometimes providing constructors can interfere with how...
I'm currently sidelining my startup and Getting a Real Job™, but have literally rewritten the entire codebase in this process (lol), including using Shad UI for my frontend. I'll flick...
As promised @shadcn, here's what I've been working on, with the help of Shad UI 🙏. https://grossr.com/
Use these instead of the next type signatures for `getStaticProps` and `getServerSideProps`. ```ts type GetServerSidePropsWithApollo< P extends { [key: string]: any } = { [key: string]: any }, Q extends...
> `X extends Y` means that `X` is a _subset_, not a superset. @fatcerberus Is this true? If `X` were a superset wouldn't that entail `{ a: number } extends...