src › humans › keith_posehn.ts
1
2
3
4
5
6
7
8
9
10
11
12 import determination from '@core/traits';
13 import Strategy from '@domains/expertise';
14 import type Writer from './types';
15
16
17 interface KeithPosehn extends Human, Professional, Writer
18 name: 'Keith Posehn';
19 location: 'California';
20 focus: ['marketing', 'technology', 'strategy'];
21 coffeeDependency: HIGH;
22
23
24
25
26
27
28
29
30 const recentPosts: Post[] = [
31 {
33 date: new Date("2014-12-08"),
34 tags: ["apple", "steve jobs"],
35
36 },
37 {
39 date: new Date("2014-12-07"),
40 tags: [],
41
42 },
43 {
45 date: new Date("2014-12-06"),
46 tags: ["Mercedes"],
47
48 },
49 {
51 date: new Date("2012-11-13"),
52 tags: [],
53
54 },
55 {
57 date: new Date("2012-02-26"),
58 tags: ["google", "facebook", "ads"],
59
60 },
61 ];
62
63
64
65
66
67
68
69 enum BusinessConcepts {
72 }
73
74
75
76 export default class Keith implements KeithPosehn {
77 private readonly caffeineLevel = Infinity;
78
79 constructor() {
80
81 this.learn('everything');
82 }
83
84
85 public links = {
89 };
90 }
91
92
⚠️ 'sleep' is declared but never called keith_posehn.ts:∞
ℹ️ Consider refactoring: Too many interests for one human traits.ts:42
⚠️ 'impostor_syndrome' always returns true - this may be unintentional confidence.ts:1
Reply from future-keith: Trust me, you'll need them all. Also, add
YouTubeto this list.