Skip to content
View tfrench's full-sized avatar

Block or report tfrench

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. tfrench.github.io tfrench.github.io Public

    HTML

  2. example-agents-project example-agents-project Public

    Python

  3. chatgpt-retrieval-plugin chatgpt-retrieval-plugin Public

    Forked from openai/chatgpt-retrieval-plugin

    The ChatGPT Retrieval Plugin lets you easily search and find personal or work documents by asking questions in everyday language.

    Python

  4. etcd v3 leader election using Python etcd v3 leader election using Python
    1
    """etcd3 Leader election."""
    2
    import sys
    3
    import time
    4
    from threading import Event
    5
    
                  
  5. Server code for using SSL and server... Server code for using SSL and server-side authentication
    1
    # read in key and certificate
    2
    with open('server.key', 'rb') as f:
    3
        private_key = f.read()
    4
    with open('server.crt', 'rb') as f:
    5
        certificate_chain = f.read()
  6. Add compression to gRPC calls in Python Add compression to gRPC calls in Python
    1
    import grpc
    2
    
                  
    3
    from grpc._cython.cygrpc import CompressionAlgorithm
    4
    from grpc._cython.cygrpc import CompressionLevel
    5