Skip to content
View Jack-Gledhill's full-sized avatar
๐Ÿ’ก
Got my bachelor's degree in doing stuff
๐Ÿ’ก
Got my bachelor's degree in doing stuff

Organizations

@constellation-net

Block or report Jack-Gledhill

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

Hello, World! ๐Ÿ‘‹๐Ÿป

package jack

import (
    "github.com/Jack-Gledhill/experiences"
    "github.com/Jack-Gledhill/life"
    "github.com/Jack-Gledhill/locations"
)

var (
    Me = life.SoftwareEngineer{
        Name:              "Jack Gledhill",
        FavouriteLanguage: "Golang",
        Socials: map[string]string{
            "Discord":     "@jacktek",
            "Website":     "https://jackgledhill.com",
            "GitHub":      "https://github.com/Jack-Gledhill",
            "LinkedIn":    "https://www.linkedin.com/in/jackgledhill",
            "Stack Share": "https://stackshare.io/Jack-Gledhill/all-my-skills",
            "Steam":       "https://steamcommunity.com/id/dovahtek",
            "Apple Music": "https://music.apple.com/profile/jackgledhill",
            "Ko-Fi":       "https://ko-fi.com/jackgledhill",
            "Patreon":     "https://patreon.com/jgledhill",
        },
    }
    Education = []life.Education{
        {
            Name:   "University of Sheffield",
            Course: "BEng Software Engineering",
            URL:    "https://sheffield.ac.uk",
            Email:  "[email protected]",
            Year:   0,
        },
    }
    Experience = []life.Experience{
        {
            Name:     "HackSheffield 9",
            Location: locations.Sheffield,
            Type:     experiences.Hackathon,
            Role:     "Technical Lead",
            URL:      "https://hacksheffield.uk",
        },
        {
            Name:     "Sheffield CompSoc",
            Location: locations.Sheffield,
            Type:     experiences.Society,
            Role:     "First Year Representative",
            URL:      "https://shefcompsoc.uk",
        },
        {
            Name:     "Digital Zest",
            Location: locations.Scarborough,
            Type:     experiences.Employment,
            Role:     "Software Engineer",
            URL:      "https://digitalzest.co.uk",
        },
        {
            Name:     "Streamcord",
            Location: locations.Remote,
            Type:     experiences.Employment,
            Role:     "Software Engineer",
            URL:      "https://streamcord.io",
        },
    }
    Projects = []life.Project{
        {
            Name:        "Constellation",
            Description: "My Kubernetes homelab that runs various Open Source software, some of my own projects, and a bunch of game servers.",
            URL:         "https://github.com/constellation-net",
        },
        {
            Name:        "RoboJack",
            Description: "A Discord bot I wrote to do a few laborious things for me, using Discord's interaction tools as a replacement for a UI.",
            URL:         "https://github.com/Jack-Gledhill/robojack",
        },
    }
)

func init() {
    // Recover from panics
    defer func() {
        if recover() != nil {
            Me.TellSelf("There there, everything will be OK :)")
        }
    }()

    Me.DoStuff()
}

Pinned Loading

  1. constellation-net/ansible constellation-net/ansible Public

    Ansible inventory and playbook for configuring all of Constellation's nodes

    Jinja

  2. constellation-net/cluster constellation-net/cluster Public

    Kubernetes manifests to be deployed to Constellation by FluxCD

    Shell