Skip to content
View sigilioso's full-sized avatar
Block or Report

Block or report sigilioso

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

  1. long_polling_example long_polling_example Public

    A simple long-polling example based on Flask-restful and jQuery

    Python 41 12

  2. bernardopires/django-tenant-schemas bernardopires/django-tenant-schemas Public

    Tenant support for Django using PostgreSQL schemas.

    Python 1.4k 425

  3. open-telemetry/opentelemetry-collector-contrib open-telemetry/opentelemetry-collector-contrib Public

    Contrib repository for the OpenTelemetry Collector

    Go 2.6k 2.1k

  4. .dotfiles .dotfiles Public

    Shell 1

  5. Simple XOR encrypt/decrypt Simple XOR encrypt/decrypt
    1
    #!/usr/bin/env python3
    2
    # -*- coding: utf-8 -*-
    3
    import argparse
    4
    from binascii import unhexlify, hexlify
    5
    from itertools import cycle
  6. Python PIL Example: get a thumbnail ... Python PIL Example: get a thumbnail by resizing and cropping an image.
    1
    # -*- coding: utf-8 -*-
    2
    
                  
    3
    import Image
    4
    
                  
    5
    def resize_and_crop(img_path, modified_path, size, crop_type='top'):