Daniel Carvalho Liedke

Results 36 comments of Daniel Carvalho Liedke

https://github.com/replit/kaboom/blob/master/src/kaboom.ts

Updated compiled version for your watch was sent by email. This project is no longer active. Thank you.

Hello, are you enabling MTP when watch is connected to PC with USB cable? I have same setup and it works fine here without any drivers

>Can the app be used on an Epix Gen2 pro without Garmin Express? Yes, I use with the same device, Garmin Express is required if you want to change activity...

Oh, did you try another computer? Soft reset the watch? https://support.garmin.com/en-US/?faq=Wkf9e0fPST0gP0KoM63DK9#:~:text=Try%20a%20different%20USB%20port,using%20a%20PowerShare%20USB%20port.

Good news, I changed activity name with Connect IQ mobile and it worked 😃😃 ![Screenshot_20240908_145721_Connect IQ.jpg](https://github.com/user-attachments/assets/e2c448c8-5450-4e72-9fd4-0489161d5884)

If I comment the two lines with await it works. It is chatgpt.isLoaded() and chatgpt.sidebar.isLoaded() that is not working: // Init UI flags //await Promise.race([chatgpt.isLoaded(), new Promise(resolve => setTimeout(resolve, 5000))])...

These is working code for chatgpt.isLoaded() and chatgpt.sidebar.isLoaded() methods in chatgpt.js library that should be updated. Thanks! ``` await Promise.race([isLoaded(), new Promise(resolve => setTimeout(resolve, 5000))]) // initial UI loaded await...