Skip to content
View tiagoncardoso's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Goiânia, GO, Brazil
  • 02:22 (UTC -03:00)

Highlights

  • Pro

Block or report tiagoncardoso

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
tiagoncardoso/README.md

Tiago Cardoso

👨🏻‍💻 ❤️ Tech Lover, life lover, challenger lover

👨🏻‍💻 About me

  • 🌱 I’m currently learning Golang
  • 💬 Ask me about Software Development, Software Architecture, Linux
  • 📫 How to reach me tiago.mncardoso@gmail.com

🔥 Languages & Frameworks & Tools & Abilities 🔥


angular aws azure bash bootstrap css3 cypress docker elasticsearch express firebase gcp git go grafana graphql html5 java javascript jenkins jest kafka kibana kubernetes linux mariadb materialize mongodb mssql mysql nestjs nginx nodejs oracle php postgresql postman python rabbitMQ redis sass spring sqlite symfony tailwind typescript vuejs vuetify webpack


⚡ Stats ⚡












👨‍💻 Repositories 👨‍💻




















Pinned Loading

  1. Go Fuzzing tests Go Fuzzing tests
    1
    func FuzzCalculateTotalCost(f *testing.F) {
    2
    	seed := []float64{-1, -25, 10, 1050, 15421.2}
    3
    	
    4
    	for _, amount := range seed {
    5
    		f.Add(amount)
  2. Go Liskov substitution principle exa... Go Liskov substitution principle example
    1
    import (
    2
    	"fmt"
    3
    	"math"
    4
    )
    5
    
                  
  3. Go chunk file reading Go chunk file reading
    1
    import(
    2
    	"os"
    3
    	"bufio"
    4
    )
    5
    
                  
  4. Go Http multiplexer Go Http multiplexer
    1
    import "net/http"
    2
    
                  
    3
    func main() {
    4
    	mux := http.NewServeMux()
    5
    	mux.HandleFunc("/", HomeHandler)