-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f0c53e
commit d054601
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.