Skip to content

Commit

Permalink
Add post: My horrible career
Browse files Browse the repository at this point in the history
  • Loading branch information
zackproser committed Feb 6, 2024
1 parent 9f0c53e commit d054601
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions src/app/blog/my-horrible-career/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import { ArticleLayout } from '@/components/ArticleLayout'
import { Button } from '@/components/Button'
import Image from 'next/image'
import Link from 'next/link'
import myHorribleCareer from '@/images/my-horrible-career.webp'

import { generateOgUrl } from '@/utils/ogUrl'

export const meta = {
author: "Zachary Proser",
date: "2024-2-06",
title: "My first book credit! My Horrible Career",
description: "What started out as an extended conversation with my mentor about career trajectory became a book!",
image: myHorribleCareer
}

export const metadata = {
openGraph: {
title: meta.title,
description: meta.description,
url: "${process.env.NEXT_PUBLIC_SITE_URL}",
siteName: "Zack Proser portfolio",
images: [
{
url: `${generateOgUrl(meta)}`,
}
]
}
}

export default (props) => <ArticleLayout meta={meta} {...props} />

---

<Link href={"https://bitfieldconsulting.com/golang/my-horrible-career"}>
<Image src={meta.image} alt="I interviewed John Arundel about his horrible career"/>
</Link>

I've [written before](/blog/why-ive-been-successful) about how one of the best things I ever did for my career was to hire
John Arundel as a Golang mentor.

In the time that I've known John, he started out as my Golang programming coach and then became more of a general software development and career mentor.

Today, I feel fortunate to call him a friend.

As we'd have our conversations back and forth on slack and zoom calls, I'd pick his brain about advancing in one's career, finding meaningful work and, as John elegantly puts it, crafting job that you don't need a vacation from.

The more we discussed this, the more John realized there was probably a book here, and that book is now available to the world and titled, ["My Horrible Career"](https://bitfieldconsulting.com/golang/my-horrible-career).

I played a very small role in prompting him with some of the questions I was most curious to know the answers to.

John is a very talented writer, an excellent teacher and mentor and he's generously made this book free, so be sure to head over and download it now!

<Button variant={"green"} href={"https://bitfieldconsulting.com/golang/my-horrible-career"}>Download My Horrible Career</Button>

Binary file added src/images/my-horrible-career.webp
Binary file not shown.

0 comments on commit d054601

Please sign in to comment.