Travis Dart

Results 10 comments of Travis Dart

> Is there any progress on this? I have other packages that are now forcing me into installing [email protected]. I don't know what the implications of that are on apollo-link-rest....

The watch() method would an addition to Django Mailbox and would fetch messages from imaplib2 and store the messages in Django. So, rather than change the existing ImapTransport, we should...

It sound like it'd be best to make each 3rd-party transport a Django app. The transport could add itself to the transport registry in the app.py. Honestly, it seems we're...

Somewhat related to #38.

Have you tried importing to PostgreSQL and exporting to CSV? Is that fast enough?

Here's a simpler example. The program below doesn't detect any unused code: ``` def hello_world1(): message = "Hello, world!" # Unused print("Hello, world!") def hello_world2(): message = "Hello, world!" print(message)...

I also find this approach very interesting. Can you share what CFG libraries you have a found so far?

I have this problem, as well. Previously my code was working, and now it is not. I have rolled back the libtmux version back to 0.38.0, which was released before...

This is a minimal example that reproduces this error: ``` FROM python:3.14-alpine RUN apk add --no-cache tmux docker bash --update RUN pip install libtmux==0.46.2 RUN cat

I was able to fix this by using Debian Slim instead of Alpine. Updated Dockerfile: ``` FROM python:3.14-slim RUN apt-get update && apt-get install -y tmux bash WORKDIR /root RUN...