Skip to content

Instantly share code, notes, and snippets.

View fragoulis's full-sized avatar

Yannis Fragoulis fragoulis

View GitHub Profile
@fragoulis
fragoulis / go_validator_cheatsheet_creator.go
Created July 3, 2023 14:22
Go validator cheatsheet creator
package main
import (
"fmt"
"github.com/go-playground/validator/v10"
)
func main() {
validator := validator.New()
@fragoulis
fragoulis / interview.md
Last active April 2, 2024 07:31
Interview

The interview

  • introductions - 5 minutes
  • discussion - 45 minutes
  • q&a - 10 mintues

The goal

  • to build a team of go developers that will work closely with the biostrand development team to develop their product
@fragoulis
fragoulis / gist:27448e3bc68aced21512e98aa75ce868
Last active October 24, 2024 13:14
Code review best practices

In a nutshell

  • Pull Requests should be small and easy to review.

  • Pull Requests should have a clean description and clean title, a helpful and structured description.

  • Rebase and merge is the preferred way to merge to main to achieve a clean and linear git commit history.

Introduction