Skip to content
View petersellars's full-sized avatar
🏡
Working from Home
🏡
Working from Home

Organizations

@catosplace

Block or report petersellars

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
petersellars/README.md
package main

import "fmt"

type TechRadar struct {
    url string
}

type Technologies struct {
    languages []string
    platforms []string
    tools     []string
}

type PersonalInfo struct {
    name         string
    currentFocus string
    mytechradar  TechRadar
    technologies Technologies
}

func main() {
    me := PersonalInfo{
        name:         "Peter Sellars",
        currentFocus: "Improving the development experience and process",
        mytechradar: TechRadar{
            url: "https://petersellars.github.io/techradar/",
        },
        technologies: Technologies{
            languages: []string{"Go"},
            platforms: []string{"AWS","Node.js"},
            tools:     []string{"Docker","Terraform","Terragrunt"},
    }

    fmt.Println(me)
}

metrics workflow Static Badge

Pinned Loading

  1. dotfiles dotfiles Public

    Personal dotfiles for customization of environments

    Shell

  2. techradar techradar Public

    Forked from bdargan/techradar

    Build your own Technology Radar. Inspired by ThoughtWorks Technology Radar.

    HTML

  3. base-repo-template base-repo-template Public

    A Base Repository Template

  4. catosplace-go-libs/blueprint-repo catosplace-go-libs/blueprint-repo Public

    Go Library used to create a new repository from a blueprint repository

    Go

  5. catosplace-devcontainers/engineering-base catosplace-devcontainers/engineering-base Public

    Catosplace Engineering Base Container

    Dockerfile

  6. catosplace-devcontainers/devboxes catosplace-devcontainers/devboxes Public

    Collection of Jetify Devboxes

    Shell