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

Organizations

@midlane-dev

Block or report marc-mrt

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. 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.