1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import json

x = {
    'pic': 'https://elliotwaite.com/img/elliotwaite.jpg',
    'name': 'Elliot Waite',
    'username': 'elliotwaite',
    'bio': 'AI research at @AstraAI',
    'work_history': [
        {
            'company': 'Astra AI',
            'url': 'astraai.com',
            'role': 'Founder',
            'when': '2019 - Present'
        },
        {
            'company': 'Google',
            'url': 'google.com',
            'role': 'Software Engineer',
            'when': '2015 - 2017'
        },
        {
            'company': 'Jee Juh',
            'url': 'jeejuh.com',
            'role': 'Co-Founder',
            'when': '2006 - 2015'
        }
    ],
    'likes': [
        'AI',
        'Coding',
        'Math',
        'Physics',
        'Fitness',
        'Gymnastics',
        'Music',
        'Minimalism',
        'Nature',
        'Space',
        'Elon Musk',
        'Richard Feynman',
        'Bruce Lee',
        'Baba Hari Dass'
    ],
    'links': [
        {
            'label': 'YouTube',
            'url': 'youtube.com/@elliotwaite'
        },
        {
            'label': 'Twitter',
            'url': 'twitter.com/elliotwaite'
        },
        {
            'label': 'GitHub',
            'url': 'github.com/elliotwaite'
        },
        {
            'label': 'Instagram',
            'url': 'instagram.com/elliotwaite/'
        },
        {
            'label': 'LinkedIn',
            'url': 'linkedin.com/in/elliotwaite/'
        }
    ]
}

s = 'import json\n\nx = %s\n\ns = %r\nprint(s %% (json.dumps(x, indent=4).replace(\'"\', "\'"), s))\n'
print(s % (json.dumps(x, indent=4).replace('"', "'"), s))