Skip to content
View marc-mrt's full-sized avatar

Block or report marc-mrt

Report abuse

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

Report abuse

Pinned Loading

  1. marc-mrt.github.io marc-mrt.github.io Public

    My personnal website.

    CSS

  2. infrastructure-modules infrastructure-modules Public

    A collection of terraform modules that I iterate on and use.

    HCL

  3. A python utility script that'll nuke... A python utility script that'll nuke an S3 bucket's objects and their versions
    1
    #!/bin/python3
    2
    import boto3
    3
    import argparse
    4
    
                  
    5
    s3 = boto3.resource('s3')
  4. A javascript snippet to fetch a grav... A javascript snippet to fetch a gravatar (https://gravatar.com) image based on an email as per their requirements.
    1
    const crypto = require("crypto");
    2
    
                  
    3
    /**
    4
     * gravatar will generate an image using the standard defined in https://fr.gravatar.com/site/implement/images/.
    5
     * @param {string} email an email that will be used to generate the gravatar image.