Jonathan Vargas

Results 70 comments of Jonathan Vargas

Do you know how to add Fastapi Dependencies on socketio endpoints similar to default Fastapi websockets?

Thanks @kosciej16 @yezz123 I am going to check your links

Hello @Floskinner you can try with [this configuration](https://amritb.github.io/socketio-client-tool/#eyJsaXN0ZW4iOlsiaGV5IiwidGVzdCIsIm1lc3NhZ2UiXSwiZW1pdCI6WyJuZXdfdXNlciIsImRpc2Nvbm5lY3QiLCJuZXdfdXNlciIsInRlc3QiLCJzb2NrZXRpby1jbGllbnQiLCJzb2NrZXRpby1jbGllbnQtYWNrIl0sImNvbmZpZyI6IntcInBhdGhcIjogXCIvd3Mvc29ja2V0LmlvXCIsIFwiZm9yY2VOZXdcIjogdHJ1ZSwgXCJyZWNvbm5lY3Rpb25BdHRlbXB0c1wiOiAzLCBcInRpbWVvdXRcIjogMjAwMCwgXCJ0cmFuc3BvcnRzXCI6IFtcIndlYnNvY2tldFwiLCBcInBvbGxpbmdcIiwgXCJmbGFzaHNvY2tldFwiXX0ifQ==) at client side. `"transports": ["websocket", "polling", "flashsocket"]` did it work in my case

Hello guys I had similar problem but I was missing to add THREE. This code using hooks and BIRDS EFFECT worked for me. import React, { useState, useEffect, useRef }...

Hello I am facing also an odd behavior. I am using React with THREE; the first load it just render a part, but when I reload the page, it loads...

Hello @hoetmaaiers did you solve this issue. Also do you know how to change 'choose file' and 'no files selected' ?? I am planning to use 'Select your photo' instead

Hello, @ahopkins One question relates to context. I was doing some testing with app.ctx I see the context is independent for each worker. Is there any way to have a...

Thanks, @johnziebro your solution made it really simple also with custom queries. ` query = select(User).where(and_(User.role_id == role.id, or_(col(User.first_name).contains(name), col(User.last_name).contains(name)))).order_by(User.first_name)`

You can find a sample here https://github.com/jonra1993/fastapi-alembic-sqlmodel-async. It can help others trying to create an async setup with SQLModel.