Skip to content
View marcodebe's full-sized avatar
  • E. O. Ospedali Galliera
  • Genova - Italy
Block or Report

Block or report marcodebe

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. dicom-ecg-plot dicom-ecg-plot Public

    Dicom ECG Viewer and Converter. Convert to PDF, PNG, JPG, SVG, ...

    Python 133 70

  2. Example of remote sign using Aruba s... Example of remote sign using Aruba services.The example creates a signed PDF document.
    1
    from zeep import Client
    2
    import sys
    3
    import os
    4
    
                  
    5
    WSDL = 'https://firmaautomatica.aruba.it/ArubaSignService/ArubaSignService?WSDL'
  3. SICP problem on counting change - in... SICP problem on counting change - in python
    1
    """
    2
    How many different ways can we make change of $1.00, given half-dollars,
    3
    quarters, dimes, nickels, and pennies?
    4
    """
    5
    
                  
  4. Ransomware blocklist generator for S... Ransomware blocklist generator for Shorewall (using https://ransomwaretracker.abuse.ch/blocklist/)
    1
    #!/bin/bash
    2
    # Author: Marco De Benedetto <debe@galliera.it>
    3
    #
    4
    # Ransomware blocklist for Shorewall using https://ransomwaretracker.abuse.ch/blocklist/
    5
    #
  5. Flatten list in Python Flatten list in Python
    1
    def flatten(l):
    2
        if isinstance(l, list):
    3
            out = []
    4
            out = flatten(l.pop()) + out
    5
            if l:
  6. tesi-master tesi-master Public

    Tesi del master dei 2° livello in cybersecurity dell'Università di Genova

    TeX