Skip to content
View CezarGarrido's full-sized avatar
๐Ÿ 
Working from home
๐Ÿ 
Working from home

Block or report CezarGarrido

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

Hi there ๐Ÿ‘‹

package main

import (
	"play.ground/profile"
)

func main() {
	me := profile.NewBio("Cezar G.B")
	stack := profile.NewStack(
		[]string{"Go", "Elixir", "Java", "C", "Javascript"},
		[]string{"Postgres", "Mysql", "SQLite", "MongoDB", "DynamoDB", "Cassandra"},
		[]string{"RabbitMQ", "AWS", "Vue.js"},
		[]string{"Docker", "Kubernetes", "Elm", "Haskell"},
	)
	_ = me
	_ = stack
}
-- go.mod --
module play.ground
-- profile/profile.go --
package profile

type Bio struct {
	Name string
}
type Stack struct {
	languages []string
	databases []string
	misc      []string
	ongoing   []string
}
func NewBio(name string) *Bio {
	return &Bio{name}
}
func NewStack(languages, databases, misc, ongoing []string) *Stack {
	return &Stack{languages, databases, misc, ongoing}
}

Popular repositories Loading

  1. airbnb-go airbnb-go Public

    Simple Airbnb clone written in golang

    JavaScript 3 3

  2. cuco_robots cuco_robots Public

    Crawler para captura de dados da UEMS

    Dart 2

  3. sqllogs sqllogs Public

    Golang sql log queries

    Go 2

  4. simple_migrate simple_migrate Public

    A simple golang migration manager, database/sql

    Go 1

  5. ListaPersonalizadaFireMonkey ListaPersonalizadaFireMonkey Public

    Exemplo de como criar uma Lista com Retangulos, em Delphi firemonkey.

    Pascal

  6. webpack_config webpack_config Public

    Config vuejs webpack

    JavaScript