Skip to content
View pedronhamirre's full-sized avatar

Highlights

  • Pro

Block or report pedronhamirre

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

Design. Develop. Deploy.

Website

package main

import "fmt"

type Developer struct {
	Name      string
	LinkedIn  string
	Website   string
	Email     string
	SkilledIn []string
}

func main() {
	me := Developer{
		Name:     "Pedro Nhamirre",
		LinkedIn: "https://www.linkedin.com/in/pedronhamirre",
		Website:  "https://www.pedronhamirre.tech",
		Email:    "pedrooliv62@gmail.com",
		SkilledIn: []string{
			"AI",
			"Docker",
			"Git",
			"GitHub",
			"HTML/CSS",
			"Java",
			"JavaScript",
			"Linux",
			"Next.js",
			"Node.js",
			"Python",
			"React",
			"RESTful APIs",
			"Software Architecture",
			"Spring Framework",
			"SQL",
			"TypeScript",
		},
	}

	fmt.Printf("Developer: %s\nStatus: %s\nSkills: %v\n", me.Name, me.Status, me.SkilledIn)
}

Popular repositories Loading

  1. spring-file-storage spring-file-storage Public

    Spring Boot REST API for uploading, storing, and serving files with validation and metadata management.

    Java 1

  2. pedronhamirre pedronhamirre Public

  3. License-Insight-Scraper-API License-Insight-Scraper-API Public

    A program developed to collect information about driver's licenses from a specific website using web scraping techniques.

    Python