Skip to content

Instantly share code, notes, and snippets.

View jkolyer's full-sized avatar

Jonathan Kolyer jkolyer

  • Dev Crew 9000
  • San Francisco
View GitHub Profile
@jkolyer
jkolyer / bill-gates.json
Created June 7, 2023 19:31
B. Gates linkedin
{
"public_identifier": "williamhgates",
"profile_pic_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/person/williamhgates/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230607%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230607T192537Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=3f4ff785703876021c8e08e0368b340d7c2332ded69daec11a308b0968c48eaa",
"background_cover_image_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/person/williamhgates/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230607%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230607T192537Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=65f8fc1df5c599a76baaf0a406dd8b89beee01dd596392b0b8159caf6ce6309b",
"first_name": "Bill",
"last_name": "Gates",
"full_name": "Bill Gates",
"follower_count": 34710476,
"occupation": "Co-chair at Bill & Melinda Gates Foundation",
"headline": "Co-chair, Bill & Melinda Gates Foundation",
{
"public_identifier": "williamhgates",
"profile_pic_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/person/williamhgates/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230607%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230607T192537Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=3f4ff785703876021c8e08e0368b340d7c2332ded69daec11a308b0968c48eaa",
"background_cover_image_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/person/williamhgates/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230607%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230607T192537Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=65f8fc1df5c599a76baaf0a406dd8b89beee01dd596392b0b8159caf6ce6309b",
"first_name": "Bill",
"last_name": "Gates",
"full_name": "Bill Gates",
"follower_count": 34710476,
"occupation": "Co-chair at Bill & Melinda Gates Foundation",
"headline": "Co-chair, Bill & Melinda Gates Foundation",
@jkolyer
jkolyer / block-kit-types.ts
Created June 20, 2021 16:10
Slack Block Kit typescript types
export enum BlockTypeEnum {
section = 'section',
actions = 'actions',
divider = 'divider',
image = 'image',
context = 'context',
input = 'input',
header = 'header',
}
@jkolyer
jkolyer / .eslintrc.js
Created November 9, 2020 07:03
Typescript CRA eslintrc file
module.exports = {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"