Skip to content
View iagoalonsomrf's full-sized avatar

Block or report iagoalonsomrf

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. ibLeDy/timezone-converter ibLeDy/timezone-converter Public

    Whole-day timezone comparison

    Python 13 6

  2. Standardised editor configuration Standardised editor configuration
    1
    root = true
    2
    
                  
    3
    [*]
    4
    end_of_line = lf
    5
    insert_final_newline = true
  3. Best practices for writing Dockerfiles Best practices for writing Dockerfiles
    1
    ARG DEBIAN_FRONTEND=noninteractive
    2
    
                  
    3
    # Tags should be as specific as possible
    4
    FROM ubuntu:jammy-20220815
    5
    
                  
  4. Best practices for writing docker-co... Best practices for writing docker-compose files
    1
    version: "3"  # specify compose spec version
    2
    
                  
    3
    services:
    4
      db:  # define a service name (docker-compose restart db)
    5
        image: postgres:13  # specify an image tag
  5. Example pre-commit config for Python... Example pre-commit config for Python projects
    1
    repos:
    2
      - repo: meta
    3
        hooks:
    4
          - id: check-useless-excludes
    5
    
                  
  6. Example configuration files for Pyth... Example configuration files for Python packages
    1
    [build-system]
    2
    requires = [
    3
        "setuptools",
    4
        "wheel",
    5
    ]