Skip to content
View Jack-Gledhill's full-sized avatar
๐Ÿ’ก
Got my Master's degree in Doin' Things
๐Ÿ’ก
Got my Master's degree in Doin' Things

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",
            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. jackgledhill.com jackgledhill.com Public

    My personal CV / portfolio website introducing myself and the work I've done

    Svelte 2

  2. robojack robojack Public

    A Discord bot that does cool things in servers I like

    Go 1