Tomas Valenta
Tomas Valenta
Hey, I'm the other guy trying the implement this flow. Just a few clarifying questions about the flow you proposed: > 1. User clicks sign in from your Electron app...
> I'm not too experienced with Electron myself, can you tell me what's the URL origin for a typical Electron context? Is it just localhost? During the development, the Electron...
I haven't tried it yet, but from the docs, it looks pretty straightforward. Here are the links if you want to take a look: https://www.electronjs.org/docs/api/protocol https://www.electronjs.org/docs/api/app#appsetasdefaultprotocolclientprotocol-path-args I will check if...
I have updates @smithki! The custom protocols for Electron are working - we can serve the packaged app from `devbook://`, and `magic-sdk` recognizes the domain. I tested it on both...
No worries, for now, we can make do with the browser tab approach. Just ping this thread when you have it ready.
I would really like to see this PR merged - @CompuIves do you plan to handle this in the near future or should I open a separate PR/somehow get permission...
This is a problem with `filesystem` permissions — we don't expose user and use `root` for fs operations by default (so you have access to all files). When you then...
With testing code loop: ```py import logging import time from dotenv import load_dotenv from e2b import Sandbox load_dotenv() logging.basicConfig(level=logging.DEBUG) def run_code(code, num): template_id = "code-interpreter" binary = "python3" filepath =...
After looking at the looks it looks like the whole sandbox becomes unresponsive after the process starts — the second filesystem write is not executed when we try to do...
I want to test this in JS too, to check if this is not some problem with WS/connection implementation.