Skip to content
View jsigler47's full-sized avatar

Block or report jsigler47

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. Handle redis events with Python Handle redis events with Python
    1
    import redis
    2
    def main():
    3
        r = redis.Redis(host=REDIS_HOST, port=REDIS_PORT, db=0)
    4
        p = r.pubsub()
    5
        p.subscribe("EVENT_NAME_1", "EVENT_NAME_2", "EVENT_NAME_N")
  2. Download large file with python and ... Download large file with python and requests
    1
    import io
    2
    import requests
    3
    def _download_large_file(url):
    4
    	try:
    5
    		in_mem_file = io.BytesIO()
  3. soft-delete-example soft-delete-example Public

    Test the difference in Typeorm softDelete and softRemove method

    TypeScript

  4. typeorm-upsert-testing typeorm-upsert-testing Public

    TypeScript

  5. Ubuntu-Setup Ubuntu-Setup Public

    Ansible playbook to manage home server "LlamaServer"

    Shell

  6. rss-monitor rss-monitor Public

    A python script to get basic info from an RSS feed

    Python