tad3j

Results 23 comments of tad3j

TV widget loads HTML which can't be rendered in React Native directly. Solution is to use WebView and pass [original widget HTML/JS](https://www.tradingview.com/widget/advanced-chart/) as `html` prop (no need to use this...

I'm experiencing the same issue where I just can't get pylint plugin to produce any output, but calling pylint from command line works. - OS: Linux Mint - Plugin version:...

I think I'm noticing similar issue when trying to get column name via `.key`....since Column is typed as string, `.key` can't be called on it resulting ``` class UserModel(Base): __tablename__...

Same issue on Windows with Android, `react-native ^0.61.5`, `react-native-vector-icons ^6.6.0` and `com.android.tools.build:gradle:3.5.3`. I've added reference to `react-native-vector-icons/fonts.gradle` to `app\gradle.build` as per documentation (it's points to my node_modules - monorepo) Fonts...

I have another example of failing self joins, where email is having recovery email (one to many) and forwarding to emails (many to many). Here are the relevant parts of...

I'm looking at the same situation when trying to open DB session per FastAPI request by using `Resource` provider. As a base I've used [example from docs](https://python-dependency-injector.ets-labs.org/examples/fastapi-sqlalchemy.html) and added resource...

I've tried to use `Factory` but since it's not a generator it just opens the session but never closes it (and there is no option since Factory uses return). Could...

@thatguysimon thanks for sharing this, it looked promising so I gave it a try. I had to interact with service/repository layer under `with service.uow:` statement and this seems to allow...

@thatguysimon, I was thinking about it and I somehow didn't like it because I believe `Container` class is actually UOW and by doing that you would be adding a new...

Could #5791 be responsible for this error? `Expected Option definition for accountId in ContractEnvironment` I started getting this today with this new version but it works in old one so...