Created
October 14, 2019 20:38
-
-
Save alexfinnarn/7025a92e56c41b82d07455bf0ef993d3 to your computer and use it in GitHub Desktop.
Example payload for Slack Block Kit Builder
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
{ | |
"blocks": [ | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "Hello, all! It's time for me to make an attempt at wowing you so much you want to put some money in my pockets. I'm an experienced web developer working with *Drupal/PHP/JS* for most of my career but more recently also *React/React Native/Vue/Laravel* work. I'd love to join your team of talented engineers and help you ship robust and well-tested code." | |
} | |
}, | |
{ | |
"type": "divider" | |
}, | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "*Review My Resume*\n I've been a web developer for six years working on projects ranging from running *Drupal PaaS of 1000+ sites* for the University of Colorado to building and maintaining a CI pipeline for better deployments. I can handle whatever task is thrown my way and will be a great addition to your team!" | |
} | |
}, | |
{ | |
"type": "actions", | |
"elements": [ | |
{ | |
"type": "button", | |
"text": { | |
"type": "plain_text", | |
"text": ":scroll: Resume", | |
"emoji": true | |
}, | |
"value": "My Resume", | |
"url": "https://docs.google.com/document/d/1Mzh7GlrSqm3O-jEiVncVtu88lBtTqiHPMAGlWCMYd5s/edit?usp=sharing" | |
} | |
] | |
}, | |
{ | |
"type": "divider" | |
}, | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "*Read My Thoughts*\n While I work, I like to jot down notes and turn those into blog posts. I've fixed many unnoticed bugs and solidified my understanding of topics due to my blogging habit, and I even have an article or two *featured on Medium's JavaScript section* to boot. I can add great technical content to your company blog that will help to attract all the cool devs :ok_hand:" | |
} | |
}, | |
{ | |
"type": "actions", | |
"elements": [ | |
{ | |
"type": "button", | |
"text": { | |
"type": "plain_text", | |
"text": ":book: Blog", | |
"emoji": true | |
}, | |
"value": "My Resume", | |
"url": "https://medium.com/@alexfinnarn" | |
} | |
] | |
}, | |
{ | |
"type": "divider" | |
}, | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "*Grok My GitHub*\n I love open source and hope you do too. I have *over 500+ contributions* to open source repositories across GitHub over the last year. Recently, I've been working on a React Native open source exercise app that I put up on the Play Store going from knowing nothing about Android/React Native to an app in alpha testing in a few weeks time. Learning on the job? No problemo :muscle:" | |
} | |
}, | |
{ | |
"type": "actions", | |
"elements": [ | |
{ | |
"type": "button", | |
"text": { | |
"type": "plain_text", | |
"text": ":computer: GitHub", | |
"emoji": true | |
}, | |
"value": "My Resume", | |
"url": "https://github.com/alexfinnarn" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment