Skip to content
View irwinby's full-sized avatar
☁️
Somewhere in the clouds...
☁️
Somewhere in the clouds...
Block or Report

Block or report irwinby

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
irwinby/README.md

Hi 👋, I am a passionate software engineer with experience building distributed systems. I enjoy building software solutions using software design principles such as clean architecture, domain-driven design and test-driven development. I improve my software engineering skills by practicing and correcting my mistakes in each new iteration. This is my way to becoming a true expert. 👀

You can learn more about me by cheaking out my open source projects and contributing to my life by taking your own steps to improve our planet. 💙

If you want to contact me:
Email 📧 / LinkedIn 🔗

Pinned

  1. Dockerfile template for creating a D... Dockerfile template for creating a Docker image for the Go application
    1
    FROM --platform=$BUILDPLATFORM golang:1.18-buster as builder
    2
    
                  
    3
    WORKDIR /go/src/github.com/{ORGANIZATION_NAME}/{REPOSITORY_NAME}
    4
    
                  
    5
    COPY go.* .
  2. pre-commit hooks for the Go application pre-commit hooks for the Go application
    1
    repos:
    2
      - repo: https://github.com/pre-commit/pre-commit-hooks
    3
        rev: v4.1.0
    4
        hooks:
    5
          - id: trailing-whitespace
  3. GolangCI config for the Go application GolangCI config for the Go application
    1
    run:
    2
      timeout: 3m
    3
      go: "1.18"
    4
    
                  
    5
    linters:
  4. An example of GitHub Actions for the... An example of GitHub Actions for the Go application
    1
    name: "[lint, test, build]"
    2
    
                  
    3
    on: [push, pull_request]
    4
    
                  
    5
    jobs: