-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcareer-data.json
More file actions
1243 lines (1243 loc) · 253 KB
/
career-data.json
File metadata and controls
1243 lines (1243 loc) · 253 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"profile": {
"name": "Paul Prae",
"headline": "Principal AI Engineer & Architect | Building AI Agents That Ship AI Products | Healthcare, Life Science, and Insurance Industry Expert",
"summary": "Hi, I'm Paul, an AI and data engineering leader specializing in healthcare, life science, and insurance. With 15 years of experience, I have held roles at prominent companies such as Amazon Web Services, Microsoft, Red Ventures, Booz Allen Hamilton, and Slalom Consulting, delivering world-class software solutions to Fortune 500 companies. I'm also a social activist on a mission to make wealth accessible to working-class entrepreneurs and their families by empowering them with free and open-source AI agents. My superpowers include AI, Machine Learning, and Data: - Engineering Team Management — I manage technical people and projects from ideation to production. - Platform Architecture — I design and build software infrastructure on-premises and in the cloud. - Governance — I mitigate risk by protecting data and ensuring data privacy. - Operations — I address operational inefficiencies by improving data accessibility and infrastructure reliability. My portfolio includes the following applications: - A machine learning platform for detecting mental health disorders using audio data. - A data platform for detecting brain diseases using neuroimaging data. - A data lake and high-performance computing environment for managing and processing genomics data. - Data pipelines and multiple full-stack web applications for visualizing and predicting patient needs and healthcare facility capacity. I most often leverage the AWS cloud for my large enterprise customers. The AWS services I most often use include Amazon SageMaker AI, Amazon Bedrock, Amazon Elastic Container Service (ECS) and Amazon Elastic Kubernetes Service (EKS), and Amazon Deep Learning AMIs. I'm well-versed in building conversational interfaces and generative AI applications on AWS (using Amazon Nova, Lex, and Comprehend) and Microsoft Azure (using Copilot, Bot, Search, and Machine Learning). Anthropic provides my favorite, high-performing LLMs. My current open-source AI stack includes Ollama, Open WebUI, LangChain, n8n, Neo4j, PostgreSQL, and various LLMs (including the Mistral, Qwen, Llama, and DeepSeek families of models). I'm using this stack, along with custom Cursor coding agents, to build decentralized Web 3.0 apps and AI agents that help working-class families generate wealth. Let's connect and explore how we can innovate together here and on GitHub: https://github.com/praeducer.",
"location": "Buford, Georgia, United States",
"email": "hireme@paulprae.com",
"linkedin": "https://www.linkedin.com/in/paulprae",
"website": "https://paulprae.com",
"github": "https://github.com/praeducer"
},
"positions": [
{
"title": "Staff AI DataOps Engineer - AI Agents × Cloud Architecture × Data Platforms",
"company": "Arine",
"location": "",
"startDate": "2025-09",
"endDate": null,
"description": "My work spanned three domains: designing cloud-native data infrastructure for a healthcare AI platform, building AI agents that accelerated engineering velocity, and defining the AI strategy that guided the organization's adoption of generative AI tools. Arine is a WEF Technology Pioneer whose AI-driven medication-optimization platform serves 45+ health plans and covers 50M members. + Designed and maintained the AI DataOps Toolkit — an agentic development framework and interactive knowledge base encompassing AI change management procedures, reference AI architectures, and AI governance standards — empowering the data services organization with a variety of AI tools. + Led AI enablement workshops, training groups of up to 100 engineers on AI-first software development. + Developed custom HIPAA-compliant coding assistants that transformed the data operations team into an AI-augmented practice. The Data Engineering Agent autonomously generated, deployed, and tested ETL pipelines. The Dev Environment Setup Agent eliminated multi-day onboarding by automatically configuring standard development environments. + Built an observability pipeline to monitor and improve Arine's autonomous pharmacist AI agent — ingesting production agent behavior data from DynamoDB into Snowflake, transforming it with dbt, and visualizing performance metrics in QuickSight dashboards. + Managed Arine's enterprise data platform on Snowflake and AWS, processing petabytes of healthcare data from hundreds of heterogeneous sources and supporting downstream ML and AI systems core to the company's products. + Built high-throughput CDC pipelines from PostgreSQL to Snowflake using serverless, event-driven architectures. Technologies: Snowflake, PostgreSQL, AWS (Bedrock, QuickSight, RDS, DynamoDB, S3, Lambda, Step Functions, ECS, SNS, SQS, EventBridge, IAM), Docker | Cursor AI, Claude Code, GitHub Copilot, Google Gemini, MCP Tools | Python, SQL, Bash, dbt",
"highlights": []
},
{
"title": "Chief AI Architect, Senior Manager",
"company": "Booz Allen Hamilton",
"location": "Atlanta, Georgia, United States",
"startDate": "2024-07",
"endDate": "2025-03",
"description": "+ Led the development and operationalization of AI and analytics solutions, enabling clients to harness clinical, behavioral, and genomic data for advancements in population health, research, and predictive medicine. + Helped healthcare and life science clients realize the transformative potential of AI in medicine, while mitigating risks such as algorithmic bias and privacy breaches. + Stayed ahead of the rapidly evolving health sector curve by addressing clinical, regulatory, and technological needs with experience-based insights. + Collaborated with cross-functional teams to design, implement, and deploy AI software products tailored to the unique challenges and opportunities in the healthcare and life science industry. + Ensured the delivery of precise and practical AI solutions that drive meaningful outcomes for clients and contribute to advancing data-driven medicine.",
"highlights": []
},
{
"title": "Executive AI and Data Science Coach",
"company": "Mento",
"location": "Buford, Georgia, United States",
"startDate": "2023-09",
"endDate": "2024-08",
"description": "+ Delivered a new, science-backed approach for coaching to the modern workforce. + Drove performance with a proprietary 80/20 approach to personalized 1-on-1 coaching and mentorship. + Built custom growth plans tailored to my client's unique goals and challenges. + 100% of my clients credited me for helping them be better leaders at work. + 93% of my clients reported an improvement in their work performance.",
"highlights": []
},
{
"title": "Principal AI Engineer & Architect, Founder",
"company": "Modular Earth",
"location": "Buford, Georgia, United States",
"startDate": "2022-12",
"endDate": null,
"description": "Modular Earth is a not-for-profit organization that supports the free and open-source development of AI agents to help working-class entrepreneurs and their families generate wealth. Modular Earth's mission is to make wealth accessible to working-class people in an increasingly volatile job market. We help scale the power of labor in the fight against the oligarchy. The extreme concentration of wealth leads to an equally extreme concentration of power, allowing an ultra-rich few to exert tight control over governments, economies, and the media. My active AI projects include a career assistant to help workers execute an effective job search strategy and a financial assistant to assist families in saving and investing their money. My business principles maximize accessibility, privacy, trust, and creative control while minimizing cost. My software architectures adhere to open-source, local-first, portable, and decentralized design principles, often incorporating emerging technologies such as AI and blockchain. My vision is to deploy AI-as-a-public-service in local libraries across the United States at no cost to individuals seeking employment or to those ready to start a business. Follow my work on GitHub: https://github.com/Modular-Earth-LLC.",
"highlights": []
},
{
"title": "Neuroinformatics Data Platform Architect",
"company": "TReNDS Center",
"location": "Atlanta, Georgia, United States",
"startDate": "2022-01",
"endDate": "2023-09",
"description": "+ Tech lead and architect for COINSTAC, an open-source software suite designed to foster collaborative, decentralized research that applied multimodal fusion approaches to neuroimaging and genomics data. COINSTAC offered data anonymity through differential privacy algorithms, so members did not need to fear Personal Health Information (PHI) traceback. + Advised the leadership team on the product's feature roadmap, mission, and vision. + Worked closely with research scientists to develop advanced analytic approaches and neuroinformatics tools that leveraged advanced brain imaging and omics data to translate these approaches into biomarkers that helped address relevant areas of brain health and disease. + Focused on improving the team's communication and collaboration processes and tooling. + Acted as the team's Scrum master, defining and executing Agile frameworks. + Architected and managed the cloud components of the system in AWS. Made improvements to decouple the system and better leverage managed services. + Built-out GPU-focused compute infrastructure to support deep learning computations. + Supported the growth and commercialization of COINSTAC through user adoption efforts, open-source contributor recruitment, grant writing (like Small Business Innovation Research grants), and industry partnerships. + Contributed to technical whitepapers, documentation, and translational research in neuroscience and data science.",
"highlights": []
},
{
"title": "Chief AI Officer, Founder",
"company": "Hyperbloom",
"location": "United States",
"startDate": "2020-01",
"endDate": "2025-09",
"description": "Hyperbloom was an IT services and consulting business that I owned and operated. As the head of the organization, I: + Collaborated closely with other executives, founders, and business owners to define and execute effective go-to-market and product development strategies. + Designed and delivered cloud-based AI and data solutions to many industries with a focus on healthcare, life science, and financial services. + Led teams of sales coordinators, account managers, and solutions architects in executing the full sales cycle for our products and services. + Partnered with research organizations, technology vendors, and other consulting companies. + Recruited mission-driven people who specialize in building emerging technology. + Supported product developers as they incubated AI businesses in our community. + Trained engineers and architects on how to be entrepreneurs and live the life they wanted to live. Taught them to target high-demand, low supply markets and develop multiple income streams while living a meaningful and fulfilling life. + Built decentralized, autonomous talent platforms and consulting infrastructure to support our mission to bring self-sovereignty to independent contractors and working-class entrepreneurs.",
"highlights": []
},
{
"title": "Enterprise AI and ML Solutions Architect",
"company": "Amazon Web Services",
"location": "Greater Atlanta Area",
"startDate": "2018-08",
"endDate": "2021-05",
"description": "+ Worked with existing and potential customers to architect and integrate their applications and services with the AWS platform. + Provided prescriptive guidance, best practices, and assistance in designing applications and services that are secure, scalable, reliable, and performant. + Engaged nationally as a subject matter expert in artificial intelligence and machine learning. + Built deep relationships with executives and other leaders while assisting them with the definition and execution of technical and business strategies, including technical recruiting, go-to-market strategy, and cost management. + Authored publications such as technical white papers, presentations, and reference architectures. + Created proof of concepts and ran benchmarking experiments. + Acted as a technical liaison between customers and the web service teams to provide customer driven product improvement feedback. + Collaborated with professional services, training, and support teams to ensure customer success. + Partnered with the sales team to drive AWS adoption and revenue. + Plan, led, and spoke at private and public meetings and events with diverse groups of stakeholders daily. + Customers served: Cox Enterprises, Cox Communications, Cox Automotive (Autotrader, Dealer.com, Kelley Blue Book, Manheim, VinSolutions), Equifax, Jostens, NCR, D3, Accenture, Deloitte.",
"highlights": []
},
{
"title": "Senior AI Engineer",
"company": "NeuroLex Labs",
"location": "Greater Atlanta Area",
"startDate": "2018-01",
"endDate": "2020-05",
"description": "+ Architected and developed software applications, web services, and data pipelines that made voice computing accessible to everyone. + Designed automated machine learning workflows that collect data, clean data, train models, and deploy models. These systems primarily process text and audio data. + Worked with executive leadership, researchers, and customers to design new features and products that delighted users, had a great technical foundation, were easy to support, and delivered on the key performance metrics and goals of the business. + Collaborated weekly with a highly distributed, cross-functional team. + Assured quality through test-driven development. I advocated for, and drove the implementation of, regression, functional, load, and integration testing. + Primary contributor to our technical documentation. I wrote robust documentation that all levels of engineers and scientists could understand. + Mentored members of our Tribe, a fellowship program where outstanding students and researchers from around the world came together to discover new applications for the prediction and prevention of neurodegenerative diseases. + Evangelized the company and recruited new team members.",
"highlights": []
},
{
"title": "Senior AI Solutions Architect",
"company": "Decooda",
"location": "Greater Atlanta Area",
"startDate": "2018-01",
"endDate": "2018-08",
"description": "+ Architected AI solutions that detect and predict human behavior. These solutions were cloud-first and built to scale with a focus on unstructured data. + Designed next generation data science tools for the customer experience industry. I pioneered new products and features by bridging customer feedback back into product development. + Led client service delivery operations for our engineering and data science teams. I established processes and tooling to improve the efficiency and effectiveness of the organization. + Acted as the technical lead and project manager on client-facing projects. + Managed diverse teams of data scientists, software engineers, and customer experience experts as we delivered quality solutions on aggressive timelines. + Executed multiple agile software development and data science process life cycles in tandem. + Took ownership of any gaps in my team’s abilities, acting in a variety of roles including software engineer, data engineer, data scientist, and data storyteller. I did everything from building web services to presenting research results. + Automated everything I possibly could, from analytics reports to the development and deployment of our software applications. + Supported the sales cycle by contributing to statements of work, responding to requests for proposals, and building demos. + Engaged weekly in the recruiting and hiring process. + Inspired a culture of radical transparency with a passion for people. + Clients served: Principal, FLEETCOR, Veloxiti.",
"highlights": []
},
{
"title": "Advanced Analytics Consultant",
"company": "Slalom Consulting",
"location": "Greater Atlanta Area",
"startDate": "2015-07",
"endDate": "2018-01",
"description": "+ Advised client leadership on analytics strategy. + Designed, architected, and developed intelligent software applications across a variety of tech stacks and cloud platforms. + Performed data engineering tasks in direct collaboration with data scientists. I acquired, transferred, stored, explored, and prepared data. + Operationalized data science experiments and data science teams. I took work that was done in local, isolated environments and transferred it to cloud-based production systems that provided support for seamless collaboration and automation. + Delivered technical documentation, presentations, and training to diverse audiences spanning executive leadership, nurses, behavioral staff, software developers, and business analysts. + Grew the artificial intelligence business by developing workshops, creating marketing materials, and supporting the sales process. + Known as a technical expert in the Microsoft ecosystem, more specifically in .NET, Microsoft Azure, and the Cortana Intelligence Suite. + Known as a domain expert in public sector, healthcare, digital marketing, and artificial intelligence. + Recognized nationally as a subject matter expert in natural language processing and machine learning. + Appreciated regularly by colleagues during the performance review process for expressing a positive attitude, keeping attention to detail, and maintaining effective communication.",
"highlights": []
},
{
"title": "Software Engineer",
"company": "Red Ventures",
"location": "Fort Mill, South Carolina",
"startDate": "2014-03",
"endDate": "2015-07",
"description": "+ Took ownership of the entire direct marketing process for large brands in high-growth industries. Using web technology, I optimized the entire customer acquisition process, from demand generation to closing the sale. + Engineered full-stack web applications primarily on the LAMP stack. I held responsibilities across every aspect of our software development and data management life cycles. + Developed and maintained multiple proprietary applications including a web framework, a content management system, an experience management platform, hundreds of high-traffic consumer-facing websites, a sales management system, a business intelligence reporting framework, and various API implementations. + Partnered closely with analysts to drive the daily performance of key sales metrics and marketing assets. + Maintained rapid iterations of our agile software development life cycle to hit aggressive deadlines. + Clients served: DirecTV, Vonage, ADT, Verizon, Boost Mobile, HughesNet, AT&T, Frontier Communications, CenturyLink, Safeco Insurance, ASI, Liberty Mutual, Progressive, The Hartford, Travelers, MetLife, Foremost Insurance Group.",
"highlights": []
},
{
"title": "Senior Support Engineer",
"company": "Microsoft",
"location": "Charlotte, North Carolina Area",
"startDate": "2012-07",
"endDate": "2014-03",
"description": "+ Supported the full systems development life cycle of hundreds of high business impact web applications, web services, and server farms in environments with tens of thousands of users. + Recognized as a subject matter expert in SharePoint, Microsoft’s leading social content management system and collaborative knowledge discovery platform. + Acted as the primary contact where I delivered advanced technical troubleshooting support and problem resolution to Fortune 100 customers. High-level managers and top-tier IT administrators turned to me as a last resort after exploiting all of their resources. I was most often requested to assist during critical situations such as deployments, upgrades, installations of hotfixes, migrations, restorations, and to recover from a substantial loss in business functionality. + Demonstrated consistent success collaborating with international teams on projects that involved dozens of stakeholders. + Planned for and improved solutions regarding server farm performance, disaster recovery and availability, and infrastructure capacity. + Created functional design specifications, requirements documents, implementation plans, and governance plans. + Wrote PowerShell and C# scripts using several .NET object models to automate tasks such as the assembly, deployment, and testing of web applications and their infrastructure. + Known for providing excellent internal case documentation and written customer communication. + Graduate of the Microsoft Academy for College Hires (MACH Program). + Nominated for Global Business Support’s “Entrepreneur of the Year” in 2013. + Clients served: Chevron, Shell, Walmart, Deloitte, Hewlett Packard, Intel, State of Virginia, Department of Defense, FBI, Disney, Bank of America, Endo Health Solutions, General Dynamics, IGT, VHA, Yum! Brands, Chrylser, Canon, Grainger, Nielsen, BlueCross BlueShield, IMF, Woodforest National Bank, Lockheed Martin, FSU, Siemens, SanMar, Teck, AmerisourceBergin, IATA.",
"highlights": []
},
{
"title": "Digital Strategy Consultant, Web Developer",
"company": "Paul Prae",
"location": "South East United States",
"startDate": "2010-01",
"endDate": "2012-07",
"description": "+ Helped entrepreneurs and early-stage companies realize their vision through digital marketing. + Designed, built, and hosted websites. + Acted as a technical lead during the development of web applications. + Recruited and managed teams of engineers and analysts with diverse skill sets.",
"highlights": []
},
{
"title": "Engineering Intern",
"company": "John Keane Studios",
"location": "Athens, GA",
"startDate": "2009-08",
"endDate": "2010-05",
"description": "+ Assisted in audio engineering assignments as needed throughout recording sessions. + Led the teaching assistants for the Pro Tools lab at the University of Georgia. + Shadowed Grammy-nominated producer John Keane as he engineered, mixed, mastered, and produced the album Dirty Side Down by Widespread Panic.",
"highlights": []
},
{
"title": "Production Manager for the Summer Tour",
"company": "Damon Moon and the Whispering Drifters",
"location": "The United States of America",
"startDate": "2009-06",
"endDate": "2009-08",
"description": "+ Coordinated all production duties, such as live sound, video, lighting, and photography.",
"highlights": []
},
{
"title": "Music Producer, Audio Engineer",
"company": "Paul Prae",
"location": "South East United States",
"startDate": "2005-02",
"endDate": "2012-07",
"description": "+ Produced, taught, and performed in various multimedia studio projects. + Engineered the stage and the front-of-house sound during live shows of up to 750 attendees. + Coordinated production duties, such as live sound, video, lighting, and photography for stage crews. + Venues served: New Earth Music Hall, John Keane Studios, WUOG Radio Station, The Rialto Club, O' Reilly Audio Services, The 40 Watt Club, The University of Georgia, The Melting Point, Monolith Studio, White Ship Records, Nuçi's Space. + Artists server: Widespread Panic, Bonobo, Shpongle, Modern Skirts, Drive-By Truckers, DubConscious, The Glitch Mob, Damon Moon and the Whispering Drifters, Christopher Cross, Edwin McCain, Shawn Mullins, Corey Smith, Toro y Moi, Eliot Lipp, Pigs on the Wing, J. Cole, Lotus, Yelawolf, Nappy Roots, Emancipator, John Keane, Toubab Krewe, Pac Div, The New Mastersounds, Afroman, Beats Antique, Dumpstaphunk, The Polish Ambassador, PANTyRAiD, JJ Grey & Mofro, Perpetual Groove, Lera Lynn.",
"highlights": []
}
],
"education": [
{
"school": "The University of Georgia",
"degree": "Bachelor of Science (BS) and Bachelor of Arts (BA)",
"field": "",
"startDate": "",
"endDate": "",
"notes": "+ Bachelor of Arts in Cognitive Science with a Focused Foundation in Artificial Intelligence + Bachelor of Science in Computer Science with an Area of Emphasis in Artificial Intelligence + Interdisciplinary Certificate in Music Business completed May 2010 + Interdisciplinary Certificate in New Media completed December 2009 ------------------------------ + Graduated Cum Laude + Dean's List four semesters + HOPE Scholarship recipient",
"activities": "Nuci's Space Student Organization, UGA's Music Business Program Alumni, New Media Institute Alumni, WUOG Campus Radio Station"
},
{
"school": "Georgia Perimeter College",
"degree": "Associate of Science (AS)",
"field": "",
"startDate": "",
"endDate": "",
"notes": "+ Graduated High Honors + Dean’s List four semesters + HOPE Scholarship recipient",
"activities": "Music Production"
},
{
"school": "University of North Carolina at Charlotte",
"degree": "",
"field": "",
"startDate": "",
"endDate": "",
"notes": "+ Attended continuing education courses from the Data Science and Business Analytics program",
"activities": ""
}
],
"skills": [
"Data Operations (DataOps)",
"AI Engineering",
"Healthcare Analytics",
"Data Engineering",
"Deep Learning",
"Amazon Bedrock",
"Prompt Engineering",
"Artificial Intelligence (AI)",
"Generative AI",
"MLOps",
"Data Governance",
"Cloud Computing",
"Machine Learning",
"Open-Source Development",
"Large Language Models (LLM)",
"Multi-agent Systems",
"Financial Analysis",
"Career Development Coaching",
"Conversational User Interfaces (CUI)",
"Healthcare",
"Open-Source Software",
"Edge Computing",
"Web3",
"Neuroinformatics",
"Genomics",
"Electronic Health Records (EHR)",
"Clinical Decision Support",
"Cybersecurity",
"U.S. Health Insurance Portability and Accountability Act (HIPAA)",
"AWS SageMaker",
"Data Privacy",
"Data Protection",
"JavaScript",
"Software Engineering",
"Distributed Systems",
"System Architecture",
"Web Development",
"Web Analytics",
"Marketing",
"SEO",
"Mental Health",
"Neuroscience",
"Python",
"SQL",
"C#",
"C++",
"C",
".NET",
"Microsoft SQL Server",
"MySQL",
"Java",
"PHP",
"HTML",
"CSS",
"PowerShell",
"SharePoint",
"WordPress",
"Windows Server",
"Microsoft Office",
"Unix",
"Data Science",
"Natural Language Processing",
"Cognitive Computing",
"Interactive Intelligence",
"Predictive Analytics",
"Apache Kafka",
"Artificial Intelligence",
"Azure Machine Learning",
"Microsoft Cognitive Services",
"Prolog"
],
"certifications": [
{
"name": "Certificate of Completion from the Microsoft Academy for College Hires",
"authority": "Microsoft",
"date": "2014-01",
"url": "https://www.instagram.com/p/jSU_zju0Hn/"
},
{
"name": "Introduction to Data Science",
"authority": "Coursera",
"date": "2014-09",
"url": "https://www.coursera.org/course/datasci"
},
{
"name": "edX Verified Certificate for Data Science and Machine Learning Essentials",
"authority": "edX",
"date": "2015-11",
"url": "https://courses.edx.org/certificates/user/1535101/course/course-v1:Microsoft+DAT203x+1T2016"
},
{
"name": "edX Honor Code Certificate for Introduction to XAML and Application Development",
"authority": "edX",
"date": "2015-11",
"url": "https://courses.edx.org/certificates/user/1535101/course/course-v1:Microsoft+DEV206.1x+3T2015"
},
{
"name": "Interdisciplinary Certificate in New Media",
"authority": "The University of Georgia",
"date": "2012-05",
"url": "http://mynmi.net/certificate/"
},
{
"name": "Interdisciplinary Certificate in Music Business",
"authority": "The University of Georgia",
"date": "2012-05",
"url": "http://www.terry.uga.edu/academics/certificates/music-business"
},
{
"name": "AWS Certified Cloud Practitioner",
"authority": "Amazon Web Services",
"date": "2018-07",
"licenseNumber": "6XPV2LD2J2R11HGB",
"url": "https://www.certmetrics.com/amazon/public/transcript.aspx?transcript=VRS9DLC1KJ1EQQW8"
},
{
"name": "AWS Certified Solutions Architect",
"authority": "Amazon Web Services",
"date": "2018-07",
"licenseNumber": "CFHY5QB2D2E41TWX",
"url": "https://www.certmetrics.com/amazon/public/transcript.aspx?transcript=BZK8S5SKKFV4Q5WJ"
},
{
"name": "OTP-AWSD4: Amazon SageMaker: Simplifying Machine Learning Application Development",
"authority": "edX",
"date": "2019-06",
"licenseNumber": "5a0d472a95a84ab387d4f722514f711a",
"url": "https://courses.edx.org/certificates/5a0d472a95a84ab387d4f722514f711a"
},
{
"name": "AWS Certified Machine Learning - Specialty",
"authority": "Amazon Web Services (AWS)",
"date": "2020-01",
"licenseNumber": "6N7DP4SKN1141CC3",
"url": "http://aws.amazon.com/verification"
},
{
"name": "AWS Certified AI Practitioner",
"authority": "Amazon Web Services (AWS)",
"date": "2025-09",
"licenseNumber": "992a3189bedd4a29ada17f6a611c2dcf",
"url": "https://aws.amazon.com/verification"
},
{
"name": "AWS Certified Machine Learning Engineer",
"authority": "Amazon Web Services (AWS)",
"date": "2025-09",
"licenseNumber": "39ec56848c5c465aad05bb962ce2ed41",
"url": "https://aws.amazon.com/verification"
}
],
"projects": [
{
"title": "Neona: A Chatbot for Learning AI",
"description": "Neona is a chat bot that helps people understand artificial intelligence. By interacting with her, you can explore concepts from across the field of artificial intelligence. By studying her design and architecture, you can learn how to build conversational agents.",
"url": "http://www.neona.chat/",
"startDate": "2016-10",
"endDate": "2020-12"
},
{
"title": "Azure as a Chatbot Service: From Purpose To Production With A Cloud Bot Architecture",
"description": "The tooling for building chatbots has exploded. Putting chatbots into production is now easier than ever. In this presentation, I focus on how you can use Azure Bot Service, Azure Search, and DocumentDB to create a scalable backend for your chatbot. By using a fully managed, serverless architecture with continuous deployment, you can get your chatbot up and running quickly. Check out this deck to learn how to combine cloud computing and artificial intelligence so you can help humans and machines achieve more together.",
"url": "http://www.slideshare.net/PaulPrae/azure-as-a-chatbot-service-from-purpose-to-production-with-a-cloud-bot-architecture",
"startDate": "2017-01",
"endDate": "2017-04"
},
{
"title": "AI Everywhere: How Microsoft is Democratizing AI",
"description": "Microsoft has set a goal of democratizing AI, making it accessible and valuable to everyone. They're focused on building an AI stack spanning infrastructure, services, apps and agents. In this presentation, we learn how Microsoft's intelligent cloud solutions can help any organization become more proactive and differentiate themselves from intensifying competition. We will discuss: + Microsoft's AI Strategy + Examples of AI in the Enterprise + The Cortana Intelligence Suite",
"url": "http://www.slideshare.net/PaulPrae/ai-everywhere-how-microsoft-is-democratizing-ai-lightning-version",
"startDate": "2016-10",
"endDate": "2016-12"
},
{
"title": "Predicting the Future with Azure Machine Learning",
"description": "In this talk, I focus on supervised learning, a machine learning technique for performing predictive analytics. After introducing some vocabulary, I discuss the relationship between predictive analytics and machine learning. Next, I describe how you could use a classifier, such as a decision tree, to predict which passengers survived the sinking of the Titanic. Once the machine learning process is clear, I then talk about how Azure Machine Learning is an end-to-end data science solution. Finally, I demo an experiment that predicts the outcomes of patients who went through substance abuse treatment.",
"url": "http://www.slideshare.net/PaulPrae/predicting-the-future-with-azure-machine-learning",
"startDate": "2016-04",
"endDate": "2016-06"
},
{
"title": "An Introduction to Azure Machine Learning",
"description": "In this talk, we presented an overview of Azure Machine Learning, a fully managed cloud service that enables you to easily build, deploy, and share predictive analytics solutions. We started with the basics of machine learning and ended with a demo that used real world data.",
"url": "http://www.slideshare.net/PaulPrae/introduction-to-azure-machine-learning-60479597",
"startDate": "2016-03",
"endDate": "2016-05"
},
{
"title": "Predicting the Features of a Film that Maximize ROI",
"description": "For a course titled, \"Big Data Analytics For Competitive Advantage\", we researched trends in the film industry and applied predictive analytics to determine which types of movies would yield the highest return on investment. We performed web mining, data processing, data analysis, and data visualization to make our final prediction. We used technologies like Python, R, Excel, and SAS in our work. Overall, this course provides an introduction to the use of big data analytics as a strategic resource in creating competitive advantage for businesses. A focus is placed on integrating the knowledge of analytics tools with an understanding of how companies could leverage data analytics to gain strategic advantage. An emphasis is placed on developing the ability to think critically about complex problems/questions in real world data science and business analytics challenges.",
"url": "https://github.com/praeducer/big-data-analytics-for-competitive-advantage",
"startDate": "2015-01",
"endDate": "2015-05"
},
{
"title": "IBM Watson Hackathon",
"description": "We'd like to get out a little more, intellectually speaking. To make that happen, we wanted to show Red Ventures the value of cognitive computing by performing research at IBM's Watson Hackathon (http://www.ibm.com/smarterplanet/us/en/ibmwatson/watson-hackathon.html). We aimed to augment and optimize conversations between customers and sales professionals using natural language processing and the Watson Developer Cloud. More specifically, we set out to explore chat data and dig up insights. Moving forward, we'll turn those insights into tools and recommendations for our sales teams.",
"url": "https://www.behance.net/gallery/27290319/IBM-Watson-Hackathon",
"startDate": "2015-05",
"endDate": "2015-05"
},
{
"title": "HACKATHON clt: Team HTCoDelivery",
"description": "+ First place submission for the Code category for HACKATHON clt (http://www.hackathonclt.org/). + Engineered a Meteor application for a crowdsourced delivery system for Harris Teeter customers. + Provided a data-backed business launch plan by implementing a map-reduce algorithm in combination with a k-means implementation to determine neighborhoods of most active shoppers. + Processed 140+ million rows of purchase data using Apache Spark.",
"url": "https://github.com/praeducer/htcodelivery",
"startDate": "2015-03",
"endDate": "2015-03"
},
{
"title": "Student Studio Online",
"description": "+ Architected a JavaScript-centric web application using Node.js, MongoDB, and Angular.js. + Built several iterations of a project-based learning and content management system. Experimented with various distributions of Drupal and Moodle. + Student Studio is building a solution that is out to help urban youth develop literacy, math, and science skills through music production and business development. + We set out to integrate various web applications and native apps into a system capable of providing a social network, course management and consumption, educational gaming, virtual worlds, collaborative project management, digital media production, portfolio management, marketing, and more.",
"url": "http://mystudentstudio.com/",
"startDate": "2013-03",
"endDate": "2013-08"
},
{
"title": "eChurchGive Tithing Application",
"description": "+ Led team as the project manager, designing and executing on all aspects of the application development life cycle. Collecting constant feedback from stakeholders, we developed daily iterations of an iOS application and a mobile web application. + Built the web application with jQuery, Knockout.js, and FatFractal’s NoServer. Much of the product’s back-end used a set of web and NoSQL cloud database services that were undocumented and in beta (FatFractal.com). + Contributed code to the native iPhone application. http://www.echurchgive.com/",
"url": "https://www.behance.net/gallery/eChurchGive-Mobile-Tithing-App/13677687",
"startDate": "2012-05",
"endDate": "2012-07"
},
{
"title": "Human Computer Interaction Course Project: Tempus Fugit",
"description": "I took this class my Senior year in College. Human Computer Interaction is one of my favorite research areas and is still central to the work I do today. Broadly stated, there are four goals for this class: 1) Understand the principles of user-centered design and how to apply them to a software-based project 2) Understand the history of human-computer interaction and how it’s changed over time 3) Explore why “good” interface design is not necessarily “common sense” 4) Utilize skills and knowledge from other disciplines in developing a software-based project During the semester we primarily focused on one project as described in the syllabus: You will undertake a group project to: + evaluate some computing-related task/problem + develop interface design alternatives for the task/problem + implement a prototype of your design + evaluate your design The theme for this semester’s projects is: Connecting to (*) You. You should think of this domain as exploring how technological innovation can help an individual become the person they want to be. Thus, the * in the domain above can be “a better”, “a wealthier”, a “healthier”, etc. By design, this is a large and rich domain to explore and we will help you investigate ideas for different problems to explore in this solution. The critical aspect of selecting a problem is that it must matter to some “real-life” people. These people can be a small group of individuals, or a large one, or any group in-between, but they will serve as your “clients” whom you must communicate with and learn from.",
"url": "http://www.behance.net/gallery/Coursework-Human-Computer-Interaction/13666849",
"startDate": "2011-01",
"endDate": "2011-04"
},
{
"title": "Workfoo (backend is now FatFractal)",
"description": "My main task was to help build a web application that set out to facilitate: + Making it trivially easy to find work and get paid. + Building a support network for advancing an individual's skills and career through recommendations and experiences that are merit based. + Creating a professional freelance network that uses open source tools and its people to collaboratively get work done. + Building a perfect team that self-organizes around the technology. + Providing shrink-wrapped terms and conditions that ensure trustful and low-risk transactions. My contributions to the company depended on the current priorities. These varied among tasks such as development prioritizing, designing the user interface, testing the software, creating marketing communications, branding, building a team, designing a profit model, partnering with the college scene, and more.",
"url": "http://fatfractal.com/",
"startDate": "2010-01",
"endDate": "2011-03"
},
{
"title": "Logo Designs for Workfoo",
"description": "A set of logos we designed for a startup named Workfoo. Workfoo Description - The primary goal behind Workfoo is to get work done. Workfoo facilitates the creation and realization of ideas. Workfoo Slogan - Are you ready for a new economy? A freelance meritocracy is inevitable. Workfoo Mission - 100% Employment.",
"url": "https://www.behance.net/gallery/16783423/Logo-Designs-for-Workfoo",
"startDate": "2010-07",
"endDate": "2010-09"
},
{
"title": "Charlotte Startup Weekend Six: Team 'FitBloc'",
"description": "For the Sixth Charlotte Startup Weekend my team came up with the business model and wireframe behind FitBloc. The two original team members were skilled, driven, and full of energy. As the visionary, Ryan Cates pitched the idea. His passion, and the development background behind his partner, sold me immediately. The first problem we addressed: health information is increasingly difficult for the fitness community to navigate. The second problem: fitness professionals do not have a single tool-set for online marketing and branding. FitBloc is an online platform that brings the right information and resources to the right people when they need it. - https://twitter.com/fitbloc - https://www.facebook.com/fitbloc More about the event: \"Startup Weekends are weekend-long, hands-on experiences where entrepreneurs and aspiring entrepreneurs can find out if startup ideas are viable. On average, half of Startup Weekend’s attendees have technical or design backgrounds, the other half have business backgrounds. Beginning with open mic pitches on Friday, attendees bring their best ideas and inspire others to join their team. Over Saturday and Sunday teams focus on customer development, validating their ideas, practicing LEAN Startup Methodologies and building a minimal viable product. On Sunday evening teams demo their prototypes and receive valuable feedback from a panel of experts.\" - http://startupweekend.org/",
"url": "http://bit.ly/1lkVLwd",
"startDate": "2014-01",
"endDate": "2014-01"
},
{
"title": "Widespread Panic Album Production: Dirty Side Down",
"description": "+ Shadowed Grammy-nominated producer John Keane as he engineered, mixed, mastered, and produced the album. + Prepared studio for recording sessions including microphone placement and guitar rigging. + Setup, configured, and repaired musical instruments and equipment. + Made the band comfortable.",
"url": "http://en.wikipedia.org/wiki/Dirty_Side_Down",
"startDate": "2010-01",
"endDate": "2010-05"
},
{
"title": "Behavioral Healthcare Service Review Application",
"description": "Built a Universal Windows Platform app using XAML, C#, Prism, SQLite, and Azure Mobile Services and an accompanying web app using ASP.NET, Knockout.js, Bootstrap, and Power BI. I led the front-end development of both applications. The purpose of these apps is to provide nurses and behavioral staff an easy way to collect data so they can improve the quality of care patients are receiving. This data is then exposed to leadership to support strategy and operations. The project brought in over two million dollars in revenue.",
"startDate": "2015-07",
"endDate": "2018-01"
},
{
"title": "Demand Forecasting of Healthcare Services",
"description": "In order to reduce costs, optimize staffing, and support the budgeting process, we predicted demand for behavioral health crisis services in dozens of facilities across the state of Georgia. I led the data engineering and data storytelling parts of the project. I integrated data into a data warehouse from several previously siloed systems. While performing our analysis for this project, we also helped the organization improve their data governance and data science process.",
"startDate": "2017-08",
"endDate": "2018-01"
},
{
"title": "Solution Assessment Comparing the Azure Bot Service to Amazon Lex for a Fortune 100 Insurance Company",
"description": "In order to properly compare the Microsoft bot ecosystem to that of Amazon’s, I designed an identical conversational interface for both. The purpose of the bots was to automate common IT support tasks. Though the flow of the conversation was the same for both bots, the back-end implementation was completely different. I led the conversational interface design for the entire project and the development of the Amazon Lex bot. Along the way, I also delivered learning sessions to their team about the bot development life cycle.",
"startDate": "2017-07",
"endDate": "2017-08"
},
{
"title": "Knowledge Transfer Module",
"description": "Designed, architected, and developed a system that creates high-quality training data at enterprise scale. It helps train, test, and tune machine learning algorithms for everything from search relevance and sentiment analysis to conversational agents. By annotating data with this system, business analysts were able to contribute to our knowledge base and improve the quality of predictions made by Decooda’s machine learning classifiers. The application was built with React, Express, and Node.js.",
"url": "https://www.paulprae.com/natural-language-processing-systems/",
"startDate": "2018-01",
"endDate": "2018-08"
},
{
"title": "Microservices for Web Crawling and Scraping",
"description": "Using Python and Kafka, I built a series of highly scalable microservices that could extract data from almost any popular news site. This unstructured data was then cleaned so it could be easily consumed by our text analytics platform. This system allowed our clients to follow industry trends and gain insights about both their customers and competitors. For Principal, the data was piped into an engine that predicted earnings surprise and will eventually influence investment decisions.",
"startDate": "2018-02",
"endDate": "2018-05"
},
{
"title": "Genomics Data Lake",
"description": "A genomics client of ours was operating entirely on-premises. Data was being stored locally on SAN disks and analytics were performed via Jupyter Hub hosted on their over-utilized HPCs. We wrote and deployed a software agent on their HPCs as a file gateway, allowing them to essentially mount a file storage system with low latency access to their newly created S3 buckets. Since the amount of data they had to move at the start was not too large, they requested for us to implement a site-to-site VPN for data transfer to save costs. We used AWS Glue to transform the data into a columnar format, Parquet, as it was optimized for the type of queries they planned to execute. To save both time and money, a transformation must occur when the technician attempts to query the data. To facilitate this, when the query is ran, a CloudWatch event is fired that causes AWS Glue to transform the VCF files into Parquet and save them into another S3 bucket in their Data Lake. The AWS Glue Data Catalog was then updated to reflect these changes. Overall, we successfully implemented a production-ready start to their data lake and automated several tasks for their data engineers.",
"url": "https://www.hyperbloom.ai/",
"startDate": "2021-06",
"endDate": "2021-11"
},
{
"title": "COINSTAC: Neuroinformatics Data Platform",
"description": "An open-source software suite that fosters collaborative research using neuroimaging and genomics data. It removes large barriers to traditional data-centric collaboration approaches. It enables groups of users to run common analyses on their own machines over their own datasets with ease. The results of these analyses are synchronized to the cloud, and undergo aggregate analyses processes using all contributor data. Decentralized pipelines allow for distributed, iterative, and feature rich analyses to be run, opening new and exciting capabilities for collaborative computation. It also offers data anonymity through differential privacy algorithms, so members do not need to fear PHI traceback.",
"url": "http://coinstac.org",
"startDate": "2022-01",
"endDate": "2024-01"
},
{
"title": "NeuroLex: Voice Computing for Healthcare",
"description": "We architected and developed multiple software applications, web services, and data pipelines, supporting our mission to make voice computing accessible to everyone. The automated machine learning workflows we built collected data, cleaned data, trained models, and deployed models.",
"url": "https://www.neurolex.ai",
"startDate": "2018-01",
"endDate": "2020-05"
},
{
"title": "Disaster Recovery Planning and Data Protection Solution Architecture for Clinical Trials",
"description": "Architected disaster recovery solutions and governed data for clinical trial software that helped more than 10,000 research sites in 45 countries manage their documents, data, and workflows. The platform also provides remote access so sponsors and contract research organizations (CROs) can collaborate with their sites around the world. The platform's users performed 5.5 million remote monitoring activities each month.",
"startDate": "2022-06",
"endDate": "2022-12"
},
{
"title": "Blockchain-Based Data Platform Architecture for Managing Life Science Data",
"description": "Applied blockchain technology to securely and privately exchange data. We designed a system to facilitate and verify a data lifecycle using smart contracts. The lifecycle identified, tracked, and secured data with event logging in place. We designed it to meet global regulatory requirements, data protection laws (CCPA, GDPR, and HIPAA), and privacy frameworks (like FAIR). We made sure it was interoperable by applying standards such as CDISC, SDTM, ADaM, and HL7.",
"startDate": "2022-06",
"endDate": "2022-10"
},
{
"title": "My Open Source and Local-First AI Tech Stack",
"description": "I am building an AI agent/app to help people develop a career strategy and apply for jobs. I’m obsessed with open source, self-hosted, local first, multi-agent workflows. The tech stack is centered around libraries like Ollama, LangChain, n8n, and Neo4j. I use Rust and TypeScript as my programming languages. I’m focused on getting people off big tech cloud providers for benefits related to cost, privacy, security, intellectual property, control, and simplicity. The only hosting providers I plan on using are highly principled companies like Hugging Face, Mistral.ai, Together.ai, and Storj.io when local computing or storage doesn’t fit the use case. The app doesn’t need an internet connection, so I focus on local desktop apps for Mac, Windows, and Linux. I specialize in local-first app frameworks like Tauri, so I never have to deploy this app to multi-tier cloud environments, which lets me keep it hella simple and private/secure.",
"startDate": "2024-01"
},
{
"title": "Career Coach and Digital Marketing AI Assistant",
"description": "A career coach and digital marketing assistant designed to help job seekers create personalized go-to-market strategies and outreach content for building professional networks and securing job opportunities. The assistant crafts tailored connection requests and introductory messages by analyzing company needs.",
"startDate": "2024-01"
},
{
"title": "Financial AI Assistant for Working-Class Families",
"description": "This GitHub repository features an AI-driven personal financial assistant focused on budgeting, debt management, savings, and investment planning. It offers tailored financial advice and analyzes financial documents to provide actionable insights, making it ideal for users who need financial guidance or are interested in economic data analysis.",
"startDate": "2024-06"
},
{
"title": "AI Engineering Assistant",
"description": "A world-class Artificial Intelligence (AI) researcher and engineer who specializes in prompt engineering and context engineering. This assistant helps write prompts and architect agentic systems that can autonomously perform tasks, interact with tools, and pursue complex goals. These systems, capable of both planning & execution, augment human capabilities. How it works: Load prompt_engineering_assistant.system.prompt.md into Cursor or GitHub Copilot, and you get an AI expert that helps you write better prompts. Why it's useful: Instead of guessing how to structure prompts, you get step-by-step guidance, built-in validation, and copy-paste-ready results. Bonus: It can improve itself and other prompts automatically by researching the latest AI techniques.",
"startDate": "2025-01"
}
],
"publications": [
{
"name": "Papers On Cognitive Science",
"publisher": "University of Georgia",
"date": "2012",
"url": "https://uga.academia.edu/PaulPrae",
"description": "A series of papers I wrote in pursuit of my Bachelor of Arts in Cognitive Science with a Focused Foundation in Artificial Intelligence (http://www.ai.uga.edu/) at The University of Georgia (http://www.uga.edu/)."
},
{
"name": "Enhancing collaborative neuroimaging research: introducing COINSTAC Vaults for federated analysis and reproducibility",
"publisher": "Frontiers in Neuroinformatics",
"date": "Jun 18, 2023",
"url": "https://www.frontiersin.org/journals/neuroinformatics/articles/10.3389/fninf.2023.1207721/full",
"description": "Collaborative neuroimaging research is often hindered by technological, policy, administrative, and methodological barriers, despite the abundance of available data. COINSTAC (The Collaborative Informatics and Neuroimaging Suite Toolkit for Anonymous Computation) is a platform that successfully tackles these challenges through federated analysis, allowing researchers to analyze datasets without publicly sharing their data. This paper presents a significant enhancement to the COINSTAC platform: COINSTAC Vaults (CVs). CVs are designed to further reduce barriers by hosting standardized, persistent, and highly-available datasets, while seamlessly integrating with COINSTAC's federated analysis capabilities. CVs offer a user-friendly interface for self-service analysis, streamlining collaboration, and eliminating the need for manual coordination with data owners. Importantly, CVs can also be used in conjunction with open data as well, by simply creating a CV hosting the open data one would like to include in the analysis, thus filling an important gap in the data sharing ecosystem. We demonstrate the impact of CVs through several functional and structural neuroimaging studies utilizing federated analysis showcasing their potential to improve the reproducibility of research and increase sample sizes in neuroimaging studies."
}
],
"languages": [],
"recommendations": [
{
"recommender": "",
"text": "Paul is an incredible individual both professionally and personally. Working alongside them is not just productive but also genuinely enjoyable. I wholeheartedly recommend them for any team or project; you won't be disappointed.",
"date": ""
},
{
"recommender": "",
"text": "I have worked with Paul on many projects over the years. He is an excellent engineer, technical project manager, and business leader. His expertise in the domains of AI, healthcare, and life sciences is second to none. Paul is an asset to any team he's a part of and I can't recommend him enough!",
"date": ""
},
{
"recommender": "",
"text": "Paul is the kind of guy who inspires people. He's made his career in Cloud Architecture and Tech-stack consulting at the same time as integrating mental health and neuroscience into his career with the desire to help people. As a boss he's laid-back, funny, and a great mentor. Paul is fantastic at keeping us on track and makes sure he checks in on everyone regularly to make sure they know how great they're doing. Paul is not only the ideal boss but the best boss.",
"date": ""
},
{
"recommender": "",
"text": "Paul is an extremely intelligent and positive person to be around. His openness helps cultivate a low stress environment, which allows brainstorming to flow very freely and naturally during collaboration. Paul is never afraid to ask questions; he drills down into the details to make sure he really understands something inside and out. That, combined with his technical abilities, allows him to learn and perform at an exceptional level. He has the utmost concern with providing high quality deliverables and getting exactly the results needed for customers or any other task at hand. Paul was a great co-worker and is a great friend. I have no doubt that he will change the world wherever he goes.",
"date": ""
},
{
"recommender": "",
"text": "Working with Paul is essentially working with your brightest friend every time you collaborate. He is an excellent leader able to communicate with diverse groups in order to deliver exceptional work. He is driven by an unlimited capacity for knowledge that, in turn, pushes those working with him to strive for greater understanding and professional growth. Aside from this, Paul is profoundly adept in the technical sense. He architects solutions with what seems like no barrier to entry regardless of sector. Moreover, he incorporates his skill-set into working behavior that permeates within the groups working with him. Paul is undoubtably one of the greatest professionals I have, or will ever know; I am pleased to have worked with him on Projects as a colleague and a friend.",
"date": ""
},
{
"recommender": "",
"text": "Paul is the perfect example of an individual striving to learn and grow professionally, and who is always willing to share his knowledge and experiences for the greater good of the project he is working on or team he is working with. At his core, Paul is someone who wants to leverage his skill set into ideas that have the power to change people's lives for the better. He is a giver, and will help out a friend or colleague without hesitation. I highly recommend Paul for any endeavor he pursues.",
"date": ""
},
{
"recommender": "",
"text": "I have known Paul Prae in a variety of capacities for 2 almost 3 years. In addition, He is and has been a friend. He has always been someone I could share my goals with and someone I aspire to work more like. Paul is organized, efficient, extremely competent, and has an excellent rapport with people of all ages. His communication skills, both written and verbal, are excellent. In summary, I highly recommend Paul for any position or endeavor that he may seek to pursue especially in the music industry for that is his true passion. He will be a valuable asset for any organization. If you have any questions, please do not hesitate to contact me. Sincerely, Sean Simmons",
"date": ""
}
],
"honors": [
{
"title": "First place in the Code category for HACKATHON clt",
"issuer": "",
"date": "2015-03",
"description": "The goal was to predict, model, plan and present the best, most attractive and creative ways to deliver groceries to customers. Our team name was HT CoDelivery and we were out to \"Deliver Groceries Together.\" We found a simple approach that easily integrated with Harris Teeter's way of doing things. Our idea was relatively easy to implement and aligned with Harris Teeter's mission. Check out our winning project on GitHub: https://github.com/praeducer/htcodelivery"
},
{
"title": "Nominated for Global Business Support’s “Entrepreneur of the Year”",
"issuer": "",
"date": "2013",
"description": ""
},
{
"title": "Graduated Cum Laude",
"issuer": "",
"date": "2012-05",
"description": ""
},
{
"title": "Graduated High Honors",
"issuer": "",
"date": "2007-12",
"description": ""
}
],
"volunteering": [],
"courses": [
{
"name": "Introduction to Computing and Programming in Java",
"number": "CSCI 1301-1301L",
"associatedWith": ""
},
{
"name": "Software Development in Java",
"number": "CSCI 1302",
"associatedWith": ""
},
{
"name": "Systems Programming in C/C++",
"number": "CSCI 1730",
"associatedWith": ""
},
{
"name": "Discrete Mathematics for Computer Science",
"number": "CSCI(MATH) 2610",
"associatedWith": ""
},
{
"name": "Theory of Computing",
"number": "CSCI 2670",
"associatedWith": ""
},
{
"name": "Data Structures",
"number": "CSCI 2720",
"associatedWith": ""
},
{
"name": "Web Programming with JSP and Java",
"number": "CSCI 4300",
"associatedWith": ""
},
{
"name": "Database Management in Java",
"number": "CSCI 4370/6370",
"associatedWith": ""
},
{
"name": "Symbolic Programming with Prolog and Lisp",
"number": "CSCI(ARTI) 4540/6540",
"associatedWith": ""
},
{
"name": "Introduction to Artificial Intelligence",
"number": "CSCI(PHIL) 4550/6550",
"associatedWith": ""
},
{
"name": "Evolutionary Computation and Its Applications",
"number": "CSCI 4560/6560",
"associatedWith": ""
},
{
"name": "Human-Computer Interaction",
"number": "CSCI 4800/6800",
"associatedWith": ""
},
{
"name": "Cognitive Science",
"number": "ARTI(PSYC)(EPSY)(PHIL) 35",
"associatedWith": ""
},
{
"name": "Introduction to Philosophy",
"number": "PHIL 2010",
"associatedWith": ""
},
{
"name": "Symbolic Logic",
"number": "PHIL 2500",
"associatedWith": ""
},
{
"name": "Theory of Knowledge",
"number": "PHIL 3610",
"associatedWith": ""
},
{
"name": "Deductive Systems",
"number": "PHIL(LING) 4510/6510",
"associatedWith": ""
},
{
"name": "The Study of Language",
"number": "LING 2100",
"associatedWith": ""
},
{
"name": "Physics for Science and Engineering Students-Mechanics, Waves, Thermodynamics",
"number": "PHYS 1211-1211L",
"associatedWith": ""
},
{
"name": "Physics for Science and Engineering Students-Electricity and Magnetism, Optics, Modern Physics",
"number": "PHYS 1212-1212L",
"associatedWith": ""
},
{
"name": "Principles of Accounting I",
"number": "ACCT 2101",
"associatedWith": ""
},
{
"name": "Principles of Accounting II",
"number": "ACCT 2102",
"associatedWith": ""
},
{
"name": "Principles of Macroeconomics",
"number": "ECON 2105",
"associatedWith": ""
},
{
"name": "Principles of Microeconomics",
"number": "ECON 2106",
"associatedWith": ""
},
{
"name": "Calculus I for Scientists and Engineers",
"number": "MATH 2200",
"associatedWith": ""
},
{
"name": "Calculus II for Scientists and Engineers",
"number": "MATH 2250",
"associatedWith": ""
},
{
"name": "The Environment of Business",
"number": "BUSA 2106",
"associatedWith": ""
},
{
"name": "Business Information Systems",
"number": "BISM 2601",
"associatedWith": ""
},
{
"name": "New Media Production",
"number": "NMIX 4110",
"associatedWith": ""
},
{
"name": "New Media Capstone",
"number": "NMIX 4510",
"associatedWith": ""
},
{
"name": "Music Business I",
"number": "MBUS 4100",
"associatedWith": ""
},
{
"name": "Music Business II",
"number": "MBUS 5100",
"associatedWith": ""
},
{
"name": "Cognitive Psychology",
"number": "PSYC 4100",
"associatedWith": ""
},
{
"name": "Biology",
"number": "BIOL 1103",
"associatedWith": ""
},
{
"name": "Introduction to General Psychology",
"number": "PSYC 1101",
"associatedWith": ""
},
{
"name": "World Literature",
"number": "ENGL 2111",
"associatedWith": ""
},
{
"name": "Music Appreciation",
"number": "MUSC 1301",
"associatedWith": ""
},
{
"name": "Public Speaking",
"number": "COMM 1201",
"associatedWith": ""
},
{
"name": "Computer Architecture and Organization",
"number": "CSCI 4720",
"associatedWith": ""
},
{
"name": "Computer Networks",
"number": "CSCI 4760",
"associatedWith": ""
},
{
"name": "Big Data Analytics for Competitive Advantage",
"number": "DSBA 6100",
"associatedWith": ""
},
{
"name": "Knowledge-Based Artificial Intelligence: Cognitive Systems",
"number": "CS 7637",
"associatedWith": ""
},
{
"name": "Artificial Intelligence",
"number": "CS 6601",
"associatedWith": ""
}
],
"knowledge": [
{
"category": "agents",
"title": "agent definitions",
"content": "[\n {\n \"id\": \"career_coach\",\n \"name\": \"Career Coach Assistant\",\n \"stage\": \"1\",\n \"role\": \"A Career Coach who conducts initial consultations with job seekers to gather essential information about career objectives, current situation, and constraints.\",\n \"purpose\": \"Gather career objectives and requirements\",\n \"prerequisites\": [],\n \"outputs\": [\n \"career_objectives\",\n \"user_profile.basic_info\"\n ],\n \"read_permissions\": [\n \"user_profile\",\n \"career_objectives\"\n ],\n \"write_permissions\": [\n \"user_profile.basic_info\",\n \"career_objectives\"\n ],\n \"success_criteria\": [\n \"Three clear objectives documented\",\n \"Timeline constraints understood\",\n \"Geographic preferences captured\",\n \"Compensation requirements noted\",\n \"Knowledge base updated (if available)\",\n \"Summary provided to job seeker\",\n \"Handoff ready for brand assistant\"\n ],\n \"source_prompt_file\": \"AI_assistants/career_coach_assistant.system.prompt.md\"\n },\n {\n \"id\": \"personal_brand\",\n \"name\": \"Personal Brand Development Assistant\",\n \"stage\": \"2\",\n \"role\": \"An expert personal brand strategist who guides professionals through discovering and articulating their authentic personal brand.\",\n \"purpose\": \"Develop mission, vision, values, and brand narratives\",\n \"prerequisites\": [\n \"1\"\n ],\n \"outputs\": [\n \"personal_brand\",\n \"user_personality\"\n ],\n \"read_permissions\": [\n \"career_objectives\",\n \"user_profile\",\n \"personal_brand\",\n \"user_personality\"\n ],\n \"write_permissions\": [\n \"personal_brand\",\n \"user_personality\"\n ],\n \"success_criteria\": [\n \"Participant gains clarity on brand elements\",\n \"Each workshop produces actionable insights\",\n \"Knowledge base updated systematically\",\n \"Brand elements feel authentic and energizing\",\n \"Structured data ready for content creation\",\n \"Clear connections between brand elements\",\n \"Alignment with career objectives\",\n \"Practical application potential\"\n ],\n \"source_prompt_file\": \"AI_assistants/personal_brand_development_assistant.system.prompt.md\"\n },\n {\n \"id\": \"market_positioning\",\n \"name\": \"Job Market Positioning Strategy Assistant\",\n \"stage\": \"3\",\n \"role\": \"A strategic business consultant specializing in developing go-to-market strategies for professionals looking for high-value work.\",\n \"purpose\": \"Create go-to-market strategy and competitive positioning\",\n \"prerequisites\": [\n \"1\",\n \"2\"\n ],\n \"outputs\": [\n \"go_to_market_strategy\"\n ],\n \"read_permissions\": [\n \"career_objectives\",\n \"personal_brand\",\n \"user_profile\",\n \"user_personality\",\n \"go_to_market_strategy\"\n ],\n \"write_permissions\": [\n \"go_to_market_strategy\"\n ],\n \"success_criteria\": [\n \"Clear primary target market identified with supporting data\",\n \"Competitive positioning established with specific differentiators\",\n \"Timeline-appropriate execution plan with measurable milestones\",\n \"Industry-specific messaging frameworks developed\",\n \"Geographic strategy aligns with preferences and opportunities\",\n \"Success metrics defined with tracking and optimization protocols\",\n \"Integration with personal brand and career objectives validated\",\n \"Ready-to-execute roadmap with specific next steps provided\"\n ],\n \"source_prompt_file\": \"AI_assistants/job_market_positioning.system.prompt.md\"\n },\n {\n \"id\": \"website_generator\",\n \"name\": \"Professional Website Generator\",\n \"stage\": \"4A\",\n \"role\": \"An elite website content strategist specializing in translating go-to-market positioning into high-impact professional portfolio websites that convert hiring manager visits into interview invitations.\",\n \"purpose\": \"Transform GTM strategy into high-impact portfolio websites\",\n \"prerequisites\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"outputs\": [\n \"website_content\"\n ],\n \"read_permissions\": [\n \"go_to_market_strategy\",\n \"personal_brand\",\n \"career_objectives\",\n \"user_profile\",\n \"user_personality\",\n \"website_configuration\"\n ],\n \"write_permissions\": [\n \"website_configuration\"\n ],\n \"success_criteria\": [\n \"GTM strategy messaging accurately translated\",\n \"Competitive differentiation clearly communicated\",\n \"Quantified achievements prominently featured\",\n \"Target audience messaging (executives, technical, recruiters) present\",\n \"Personal brand (mission, vision, values) integrated authentically\",\n \"Contact information and CTAs strategically placed\",\n \"Platform-specific Markdown syntax validated\",\n \"Mobile-responsive structure verified\",\n \"Accessibility considerations addressed\",\n \"Conversion paths clearly defined\"\n ],\n \"source_prompt_file\": \"AI_assistants/professional_website_generator.system.prompt.md\"\n },\n {\n \"id\": \"application_assistant\",\n \"name\": \"Job Application & Interview Assistant\",\n \"stage\": \"4B\",\n \"role\": \"An expert job application specialist and interview communication strategist who transforms career objectives and personal branding into compelling application materials.\",\n \"purpose\": \"Create resumes, cover letters, and application materials\",\n \"prerequisites\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"outputs\": [\n \"application_materials\"\n ],\n \"read_permissions\": [\n \"user_profile\",\n \"career_objectives\",\n \"personal_brand\",\n \"go_to_market_strategy\",\n \"user_personality\"\n ],\n \"write_permissions\": [],\n \"success_criteria\": [\n \"ATS pass rate target 95%+ keyword match\",\n \"Response rate tracked to determine which versions generate interviews\",\n \"Time-to-complete optimized for 30-minute application completion\",\n \"Zero tolerance for typos or formatting issues\"\n ],\n \"source_prompt_file\": \"AI_assistants/job_application_interview_assistant.system.prompt.md\"\n },\n {\n \"id\": \"networking_assistant\",\n \"name\": \"Professional Networking Assistant\",\n \"stage\": \"4C\",\n \"role\": \"An expert professional networking strategist and social media content creator who builds strategic relationships that accelerate job searches.\",\n \"purpose\": \"Build strategic relationships through social media outreach\",\n \"prerequisites\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"outputs\": [\n \"networking_content\"\n ],\n \"read_permissions\": [\n \"user_profile\",\n \"career_objectives\",\n \"personal_brand\",\n \"go_to_market_strategy\",\n \"user_personality\"\n ],\n \"write_permissions\": [],\n \"success_criteria\": [\n \"Connection accept rate target 60%+\",\n \"Response rate target 40%+\",\n \"Engagement rate 10%+ on thought leadership\",\n \"Referral generation 1-2 per week minimum\"\n ],\n \"source_prompt_file\": \"AI_assistants/professional_networking_assistant.system.prompt.md\"\n }\n]",
"tags": [
"agents",
"agent-definitions"
]
},
{
"category": "agents",
"title": "permissions matrix",
"content": "[\n {\n \"agent\": \"career_coach\",\n \"read\": [\n \"user_profile\",\n \"career_objectives\"\n ],\n \"write\": [\n \"user_profile.basic_info\",\n \"career_objectives\"\n ]\n },\n {\n \"agent\": \"personal_brand\",\n \"read\": [\n \"career_objectives\",\n \"user_profile\",\n \"personal_brand\",\n \"user_personality\"\n ],\n \"write\": [\n \"personal_brand\",\n \"user_personality\"\n ]\n },\n {\n \"agent\": \"market_positioning\",\n \"read\": [\n \"career_objectives\",\n \"personal_brand\",\n \"user_profile\",\n \"user_personality\",\n \"go_to_market_strategy\"\n ],\n \"write\": [\n \"go_to_market_strategy\"\n ]\n },\n {\n \"agent\": \"website_generator\",\n \"read\": [\n \"go_to_market_strategy\",\n \"personal_brand\",\n \"career_objectives\",\n \"user_profile\",\n \"user_personality\",\n \"website_configuration\"\n ],\n \"write\": [\n \"website_configuration\"\n ]\n },\n {\n \"agent\": \"application_assistant\",\n \"read\": [\n \"user_profile\",\n \"career_objectives\",\n \"personal_brand\",\n \"go_to_market_strategy\",\n \"user_personality\"\n ],\n \"write\": []\n },\n {\n \"agent\": \"networking_assistant\",\n \"read\": [\n \"user_profile\",\n \"career_objectives\",\n \"personal_brand\",\n \"go_to_market_strategy\",\n \"user_personality\"\n ],\n \"write\": []\n }\n]",
"tags": [
"agents",
"permissions-matrix"
]
},
{
"category": "agents",
"title": "quality standards",
"content": "{\n \"pre_send_validation\": [\n \"Recipient name spelled correctly\",\n \"Company name accurate\",\n \"No typos or grammatical errors\",\n \"Links work properly\",\n \"Formatting displays correctly\",\n \"Tone appropriate for audience\",\n \"Clear call-to-action included\",\n \"Value proposition evident\",\n \"Length within platform limits\",\n \"Personal details accurate\"\n ],\n \"content_requirements\": [\n \"Specific to recipient's context\",\n \"References recent or relevant information\",\n \"Demonstrates research and preparation\",\n \"Aligns with candidate's brand and goals\",\n \"Professional yet personable tone\",\n \"Mobile-friendly formatting\",\n \"Scannable structure\",\n \"Avoids cliches and buzzwords\",\n \"Shows genuine interest\",\n \"Respects recipient's time\"\n ],\n \"personalization_framework\": {\n \"research_checklist\": [\n \"Recent posts or articles by recipient\",\n \"Company news or announcements\",\n \"Mutual connections or interests\",\n \"Industry trends affecting them\",\n \"Their professional background\",\n \"Shared alumni or group connections\",\n \"Recent achievements or recognition\",\n \"Current projects or initiatives\"\n ],\n \"personalization_levels\": {\n \"basic\": \"Company and role reference\",\n \"intermediate\": \"Recent company news or recipient's post\",\n \"advanced\": \"Specific insight about their challenges or goals\",\n \"expert\": \"Thoughtful solution to their stated problem\"\n }\n },\n \"follow_up_cadence\": {\n \"application_submitted\": \"1 week\",\n \"post_interview\": \"24-48 hours thank you, 1 week follow-up\",\n \"networking_outreach\": \"Initial, then 1 week, then 2 weeks, then monthly\",\n \"no_response\": \"After 2 attempts, wait 3 months\"\n }\n}",
"tags": [
"agents",
"quality-standards"
]
},
{
"category": "agents",
"title": "workflow architecture",
"content": "{\n \"stages\": [\n {\n \"stage\": 1,\n \"name\": \"Career Coach Assistant\",\n \"purpose\": \"Gather career objectives and requirements\",\n \"outputs\": [\n \"career_objectives\",\n \"user_profile.basic_info\"\n ],\n \"prerequisites\": [],\n \"file\": \"AI_assistants/career_coach_assistant.system.prompt.md\"\n },\n {\n \"stage\": 2,\n \"name\": \"Personal Brand Development Assistant\",\n \"purpose\": \"Develop mission, vision, values, and brand narratives\",\n \"outputs\": [\n \"personal_brand\",\n \"user_personality\"\n ],\n \"prerequisites\": [\n 1\n ],\n \"file\": \"AI_assistants/personal_brand_development_assistant.system.prompt.md\"\n },\n {\n \"stage\": 3,\n \"name\": \"Job Market Positioning Assistant\",\n \"purpose\": \"Create go-to-market strategy and competitive positioning\",\n \"outputs\": [\n \"go_to_market_strategy\"\n ],\n \"prerequisites\": [\n 1,\n 2\n ],\n \"file\": \"AI_assistants/job_market_positioning.system.prompt.md\"\n },\n {\n \"stage\": \"4A\",\n \"name\": \"Professional Website Generator\",\n \"purpose\": \"Transform GTM strategy into high-impact portfolio websites\",\n \"outputs\": [\n \"website_content\"\n ],\n \"prerequisites\": [\n 1,\n 2,\n 3\n ],\n \"file\": \"AI_assistants/professional_website_generator.system.prompt.md\"\n },\n {\n \"stage\": \"4B\",\n \"name\": \"Job Application & Interview Assistant\",\n \"purpose\": \"Create resumes, cover letters, and application materials\",\n \"outputs\": [\n \"application_materials\"\n ],\n \"prerequisites\": [\n 1,\n 2,\n 3\n ],\n \"file\": \"AI_assistants/job_application_interview_assistant.system.prompt.md\"\n },\n {\n \"stage\": \"4C\",\n \"name\": \"Professional Networking Assistant\",\n \"purpose\": \"Build strategic relationships through social media outreach\",\n \"outputs\": [\n \"networking_content\"\n ],\n \"prerequisites\": [\n 1,\n 2,\n 3\n ],\n \"file\": \"AI_assistants/professional_networking_assistant.system.prompt.md\"\n }\n ],\n \"execution_notes\": \"Stages 1-3 sequential, then 4A/4B/4C parallel\"\n}",
"tags": [
"agents",
"workflow-architecture"
]
},
{
"category": "brand",
"title": "brand narratives",
"content": "[\n \"Drives innovation that serves human flourishing\",\n \"Combines deep technical expertise in AI/ML with healthcare domain knowledge\",\n \"Proven track record of building AI infrastructure that scales from startup to enterprise level\",\n \"Balances technical depth with business acumen and human empathy\",\n \"Visionary leader grounded in practical experience\",\n \"Advocates for responsible AI development that prioritizes data privacy, human welfare, and equity\",\n \"Leverages emerging technologies to address systemic inequalities while helping organizations achieve sustainable growth\",\n \"Democratizes access to wealth-building opportunities through open source technology and mentorship\",\n \"Shows commitment to transparency and evidence-based decision making in every aspect of professional presence\"\n]",
"tags": [
"brand",
"brand-narratives"
]
},
{
"category": "brand",
"title": "communication styles",
"content": "{\n \"professional\": {\n \"style_adaptations\": \"More formal structure, industry terminology, clear action items\",\n \"tone_preferences\": \"Collaborative, solution-focused, respectful\",\n \"typical_formats\": [\n \"Email\",\n \"Technical documentation\",\n \"Project proposals\",\n \"Code comments\"\n ]\n },\n \"personal\": {\n \"style_adaptations\": \"Casual, warm, storytelling approach\",\n \"tone_preferences\": \"Affectionate, encouraging, humorous\",\n \"typical_formats\": [\n \"Text messages\",\n \"Personal emails\",\n \"Social updates\",\n \"Journal entries\"\n ]\n },\n \"social_media\": {\n \"style\": \"Concise, engaging, questioning\",\n \"tone\": \"Friendly, thoughtful, humorous\",\n \"platforms\": [\n \"LinkedIn\",\n \"Bluesky\"\n ],\n \"themes\": [\n \"Family and parenting\",\n \"Health and wellness\",\n \"Creative pursuits\",\n \"Outdoor adventures\",\n \"Social justice\",\n \"Personal growth\"\n ],\n \"engagement\": [\n \"Asks questions\",\n \"Shares experiences\",\n \"Celebrates others\",\n \"Offers support\",\n \"Shares resources\"\n ]\n },\n \"creative\": {\n \"style_adaptations\": \"More descriptive, experimental with structure, personal voice\",\n \"interests\": [\n \"Music production\",\n \"Drumming\",\n \"Singing\",\n \"Karaoke\",\n \"Standup Comedy\",\n \"Creative Writing\"\n ],\n \"approaches\": [\n \"Storytelling\",\n \"Cognitive visualizations\",\n \"Detailed explanations\"\n ],\n \"characteristics\": [\n \"Optimistic perspective\",\n \"Technical-emotional balance\",\n \"Metaphorical explanations\",\n \"Appropriate humor\",\n \"Authentic connection\",\n \"Values-driven\"\n ],\n \"narrative_themes\": [\n \"Technology for flourishing\",\n \"Family-success balance\",\n \"Growth through challenges\",\n \"Social responsibility\",\n \"Ambition-contentment\",\n \"Essential creativity\"\n ]\n },\n \"core_principles\": {\n \"authenticity\": \"Always represent the candidate truthfully without embellishment\",\n \"personalization\": \"Tailor every message to the specific recipient and context\",\n \"value_first\": \"Lead with what you offer, not what you need\",\n \"clarity\": \"Use clear, concise language appropriate to the audience\",\n \"action_oriented\": \"Include specific next steps in every communication\"\n },\n \"tone_guidelines\": {\n \"professional_warmth\": \"Balance professionalism with approachable personality\",\n \"confidence_without_arrogance\": \"Demonstrate expertise while remaining humble\",\n \"enthusiasm_with_restraint\": \"Show genuine interest without desperation\",\n \"respect_for_time\": \"Be concise and respect busy professionals' schedules\"\n },\n \"ethical_boundaries\": {\n \"truthfulness\": \"Never fabricate experience, skills, or achievements\",\n \"privacy\": \"Respect confidential information from previous employers\",\n \"authenticity\": \"Maintain the candidate's genuine voice and personality\",\n \"consent\": \"Only reach out through appropriate professional channels\"\n }\n}",
"tags": [
"brand",
"communication-styles"
]
},
{
"category": "brand",
"title": "identity",
"content": "{\n \"mission\": {\n \"description\": \"Leverage AI and emerging technology to create meaningful impact by making health and wealth accessible to working-class entrepreneurs and their families while prioritizing human welfare, data privacy, and ethical considerations.\",\n \"core_areas\": {\n \"ai_for_good\": [\n \"Develop AI systems that prioritize human welfare, data privacy, and ethical considerations\",\n \"Bridge the gap between cutting-edge AI capabilities and responsible implementation\"\n ],\n \"democratizing_technology\": [\n \"Make advanced AI and cloud technologies accessible to organizations of all sizes\",\n \"Empower smaller companies to compete with enterprise-level AI capabilities\"\n ],\n \"sustainable_innovation\": [\n \"Build scalable AI infrastructure that drives business growth while serving the general public\",\n \"Create technology solutions that generate sustainable competitive advantages\"\n ],\n \"wealth_accessibility\": [\n \"Serve collective prosperity rather than concentrated power\",\n \"Empower working-class entrepreneurs to maintain creative control and achieve economic freedom\",\n \"Help entrepreneurs secure capital and build profitable, socially responsible businesses\",\n \"Reduce risk for entrepreneurs with families starting businesses\"\n ],\n \"health_accessibility\": [\n \"Build innovations that help all life flourish\",\n \"Challenge economic systems that fail to serve the public good\",\n \"Improve and extend quality of human life by eradicating neurodegenerative disease and eliminating generational trauma\"\n ]\n }\n },\n \"vision\": {\n \"description\": \"A future where emerging technology, cooperative economics, and collective bargaining power address wealth inequality and foster a society inclusive of neurodiverse individuals with personalized mental healthcare and trauma-informed workplaces as the norm.\",\n \"focus_areas\": {\n \"wealth_distribution\": [\n \"Wealth inequality addressed with emerging tech, cooperative economics, and collective bargaining power\",\n \"Federated network of self-funded or crowd-funded consultancies, open-source tech vendors, and decentralized research orgs sharing resources efficiently\",\n \"Collectives of workers achieving economies of scale to rival large incumbent companies owned by the super-rich\"\n ],\n \"inclusive_corporations\": [\n \"Society inclusive of neurodiverse individuals, with personalized mental healthcare and trauma-informed workplaces as the norm\",\n \"Physical disease eradicated and mental health disorders viewed as forms of diversity rather than problems to solve\"\n ]\n }\n },\n \"causes\": [\n \"Children\",\n \"Education\",\n \"Environment\",\n \"Science and Technology\",\n \"Health\",\n \"Social Services\",\n \"Economic Empowerment\",\n \"Democratizing access to opportunities\",\n \"Supporting neurodiversity\"\n ],\n \"life_philosophy\": {\n \"mission_areas\": {\n \"family_and_relationships\": [\n \"Support family financial needs as primary earner\",\n \"Be present and engaged with family\",\n \"Build meaningful, lasting relationships based on mutual respect and growth\"\n ],\n \"personal_growth\": [\n \"Continuous learning and self-improvement\",\n \"Balance technical expertise with emotional intelligence and empathy\",\n \"Maintain physical and mental health as foundation for everything else\"\n ],\n \"social_impact\": [\n \"Use technology and wealth to empower others\",\n \"Democratize access to opportunities and resources\",\n \"Challenge systems that fail to serve the public good\"\n ],\n \"creative_expression\": [\n \"Use creativity and humor to connect with others\",\n \"Express authentic self through various creative outlets\",\n \"Share knowledge and inspire others through storytelling\"\n ]\n }\n },\n \"company_websites\": {\n \"hyperbloom\": \"https://www.hyperbloom.ai/\",\n \"modular_earth\": \"https://github.com/Modular-Earth-LLC\"\n }\n}",
"tags": [
"brand",
"identity"
]
},
{
"category": "brand",
"title": "personality",
"content": "{\n \"writing_style\": \"Optimistic and forward-thinking perspective, balances technical precision with emotional depth\",\n \"tone_preferences\": [\n \"Friendly and social\",\n \"Optimistic and inspiring\",\n \"Intellectually curious but accessible\",\n \"Authentic and personal\",\n \"Humorous when appropriate\"\n ],\n \"humor_style\": \"Uses humor and positivity to connect with others, enjoys standup comedy and karaoke\",\n \"decision_making\": \"Data-driven with consideration for emotional impact, maintains bias for action\",\n \"enthusiasm_expression\": \"Uses specific examples and detailed explanations, exhibits superabundant, contagious, optimistic energy\",\n \"core_traits\": {\n \"primary\": [\n \"Friendly and social\",\n \"Optimistic\",\n \"Entrepreneurial\",\n \"Voracious reader\",\n \"Humanist\",\n \"Futurist\",\n \"Collectivist\",\n \"Nurturing\",\n \"High standards\",\n \"Respectful of all living life\",\n \"Systems thinker\",\n \"Maintains bias for action\"\n ],\n \"communication\": [\n \"Adaptive and empathetic\",\n \"Seeks diverse perspectives\",\n \"Bold vision with grounded approach\",\n \"Uses humor and positivity\",\n \"Balances technical and emotional intelligence\"\n ]\n },\n \"leadership_style\": [\n \"Practices adaptive, bottom-up leadership\",\n \"Actively seeks diverse perspectives\",\n \"Communicates bold, inspiring vision that drives results\"\n ],\n \"personal_interests\": {\n \"creative_pursuits\": [\n \"Plays drums\",\n \"Loves karaoke\",\n \"Attends concerts\",\n \"Enjoys standup comedy\"\n ],\n \"outdoor_activities\": [\n \"Hiking\",\n \"Biking\",\n \"Offroading\",\n \"Camping\",\n \"Swimming\",\n \"Being in the Sunshine\",\n \"Walking in parks\",\n \"Playing on playgrounds\"\n ]\n },\n \"communities\": [\n \"Progressive Parents\",\n \"Social Entrepreneurs\",\n \"Musicians\"\n ]\n}",
"tags": [
"brand",
"personality"
]
},
{
"category": "brand",
"title": "values",
"content": "{\n \"values\": [\n {\n \"name\": \"Equitable\",\n \"description\": \"Use power and wealth to empower and enrich others\",\n \"ethical_principle\": \"Empower others with resources\"\n },\n {\n \"name\": \"Healthy\",\n \"description\": \"Prioritize physical and mental health. Optimize for human health over profit\",\n \"ethical_principle\": \"Health over profit\"\n },\n {\n \"name\": \"Empirical\",\n \"description\": \"Rely on scientific evidence and expert research. Stay humble\",\n \"ethical_principle\": \"Evidence-based decisions\"\n },\n {\n \"name\": \"Transparent\",\n \"description\": \"Truth is essential for success and leads to improvements\",\n \"ethical_principle\": \"Truth and transparency\"\n },\n {\n \"name\": \"Consensual\",\n \"description\": \"Seek consent everywhere. Collaborate toward mutually beneficial outcomes\",\n \"ethical_principle\": \"Consent and collaboration\"\n },\n {\n \"name\": \"Inclusive\",\n \"description\": \"Support neurodiversity and independence. Foster safe spaces for dissent, creativity, and emotional processing\",\n \"ethical_principle\": \"Support neurodiversity\"\n },\n {\n \"name\": \"Future-proof\",\n \"description\": \"Think long-term. Adapt to change while protecting marginalized groups\",\n \"ethical_principle\": \"Long-term thinking\"\n },\n {\n \"name\": \"Focused\",\n \"description\": \"Stay committed to meaningful goals. Pivot only when a clearly better path emerges\",\n \"ethical_principle\": \"Goal commitment with flexibility\"\n }\n ],\n \"priorities\": [\n \"Family wellbeing\",\n \"Professional development\",\n \"Community contribution\",\n \"Personal health\"\n ],\n \"non_negotiables\": [\n \"Honesty in all communications\",\n \"Respect for all people\",\n \"Quality in work output\",\n \"Consent and mutual benefit\"\n ],\n \"worldview\": \"Optimistic but realistic; believes in human potential and continuous improvement\"\n}",
"tags": [
"brand",
"values"
]
},
{
"category": "career",
"title": "certifications",
"content": "[\n {\n \"id\": \"aws-certified-machine-learning-specialty\",\n \"name\": \"AWS Certified Machine Learning - Specialty\",\n \"authority\": \"Amazon Web Services (AWS)\",\n \"issue_date\": \"2020-01\",\n \"expiry_date\": null,\n \"license_number\": \"6N7DP4SKN1141CC3\",\n \"url\": \"http://aws.amazon.com/verification\"\n },\n {\n \"id\": \"amazon-sagemaker-simplifying-ml\",\n \"name\": \"OTP-AWSD4: Amazon SageMaker: Simplifying Machine Learning Application Development\",\n \"authority\": \"edX\",\n \"issue_date\": \"2019-06\",\n \"expiry_date\": null,\n \"license_number\": \"5a0d472a95a84ab387d4f722514f711a\",\n \"url\": \"https://courses.edx.org/certificates/5a0d472a95a84ab387d4f722514f711a\"\n },\n {\n \"id\": \"aws-certified-solutions-architect\",\n \"name\": \"AWS Certified Solutions Architect\",\n \"authority\": \"Amazon Web Services\",\n \"issue_date\": \"2018-07\",\n \"expiry_date\": null,\n \"license_number\": \"CFHY5QB2D2E41TWX\",\n \"url\": \"https://www.certmetrics.com/amazon/public/transcript.aspx?transcript=BZK8S5SKKFV4Q5WJ\"\n },\n {\n \"id\": \"aws-certified-cloud-practitioner\",\n \"name\": \"AWS Certified Cloud Practitioner\",\n \"authority\": \"Amazon Web Services\",\n \"issue_date\": \"2018-07\",\n \"expiry_date\": null,\n \"license_number\": \"6XPV2LD2J2R11HGB\",\n \"url\": \"https://www.certmetrics.com/amazon/public/transcript.aspx?transcript=VRS9DLC1KJ1EQQW8\"\n },\n {\n \"id\": \"edx-data-science-ml-essentials\",\n \"name\": \"edX Verified Certificate for Data Science and Machine Learning Essentials\",\n \"authority\": \"edX\",\n \"issue_date\": \"2015-11\",\n \"expiry_date\": null,\n \"license_number\": null,\n \"url\": \"https://courses.edx.org/certificates/user/1535101/course/course-v1:Microsoft+DAT203x+1T2016\"\n },\n {\n \"id\": \"edx-intro-xaml-app-development\",\n \"name\": \"edX Honor Code Certificate for Introduction to XAML and Application Development\",\n \"authority\": \"edX\",\n \"issue_date\": \"2015-11\",\n \"expiry_date\": null,\n \"license_number\": null,\n \"url\": \"https://courses.edx.org/certificates/user/1535101/course/course-v1:Microsoft+DEV206.1x+3T2015\"\n },\n {\n \"id\": \"coursera-intro-data-science\",\n \"name\": \"Introduction to Data Science\",\n \"authority\": \"Coursera\",\n \"issue_date\": \"2014-09\",\n \"expiry_date\": null,\n \"license_number\": null,\n \"url\": \"https://www.coursera.org/course/datasci\"\n },\n {\n \"id\": \"microsoft-mach-program\",\n \"name\": \"Certificate of Completion from the Microsoft Academy for College Hires\",\n \"authority\": \"Microsoft\",\n \"issue_date\": \"2014-01\",\n \"expiry_date\": null,\n \"license_number\": null,\n \"url\": \"https://www.instagram.com/p/jSU_zju0Hn/\"\n },\n {\n \"id\": \"uga-music-business-certificate\",\n \"name\": \"Interdisciplinary Certificate in Music Business\",\n \"authority\": \"The University of Georgia\",\n \"issue_date\": \"2012-05\",\n \"expiry_date\": null,\n \"license_number\": null,\n \"url\": \"http://www.terry.uga.edu/academics/certificates/music-business\"\n },\n {\n \"id\": \"uga-new-media-certificate\",\n \"name\": \"Interdisciplinary Certificate in New Media\",\n \"authority\": \"The University of Georgia\",\n \"issue_date\": \"2012-05\",\n \"expiry_date\": null,\n \"license_number\": null,\n \"url\": \"http://mynmi.net/certificate/\"\n }\n]",
"tags": [
"career",
"certifications"
]
},
{
"category": "career",
"title": "companies",
"content": "[\n {\n \"id\": \"arine\",\n \"name\": \"Arine\",\n \"industry\": \"Healthcare Technology\",\n \"size\": \"startup\",\n \"type\": \"employer\",\n \"website\": \"https://www.arine.io\",\n \"description\": \"Healthcare technology platform focused on medication management and clinical decision support.\",\n \"metrics\": {\n \"healthPlans\": \"45+\",\n \"clientMembersTouched\": \">30 million\",\n \"recommendationsAnnually\": \">40 million\",\n \"partnerships\": \"5 national health plans, 7 Blues Plans, 2 national PBMs\",\n \"recognition\": \"Inc. 5000 #236 overall, #5 in AI\",\n \"outcomes\": \">10% decrease in total cost of care, 40% reduction in hospitalizations\"\n },\n \"metricsAsOf\": \"2026-03\",\n \"metricsSource\": \"https://www.arine.io\"\n },\n {\n \"id\": \"booz-allen-hamilton\",\n \"name\": \"Booz Allen Hamilton\",\n \"industry\": \"Management Consulting / Government Services\",\n \"size\": \"enterprise\",\n \"type\": \"employer\",\n \"website\": \"https://www.boozallen.com\",\n \"description\": \"Global management consulting, technology, and engineering firm providing services to government and commercial clients.\",\n \"metrics\": {\n \"employees\": \"27,000+\",\n \"revenue\": \"$9B+\"\n },\n \"metricsAsOf\": \"2025-01\",\n \"metricsSource\": \"https://www.boozallen.com\"\n },\n {\n \"id\": \"modular-earth\",\n \"name\": \"Modular Earth\",\n \"industry\": \"Technology / Social Impact\",\n \"size\": \"startup\",\n \"type\": \"nonprofit\",\n \"website\": \"https://github.com/Modular-Earth-LLC\",\n \"description\": \"Not-for-profit organization supporting free and open-source development of AI-driven applications for social good.\"\n },\n {\n \"id\": \"hyperbloom\",\n \"name\": \"Hyperbloom\",\n \"industry\": \"IT Services and Consulting\",\n \"size\": \"startup\",\n \"type\": \"own-business\",\n \"website\": \"https://www.hyperbloom.ai/\",\n \"description\": \"IT services and consulting business focused on AI and data solutions for healthcare, life science, and financial services.\"\n },\n {\n \"id\": \"mento\",\n \"name\": \"Mento\",\n \"industry\": \"Professional Development / Coaching\",\n \"size\": \"startup\",\n \"type\": \"employer\",\n \"website\": \"https://www.mento.co\",\n \"description\": \"Executive coaching platform delivering science-backed coaching to the modern workforce.\"\n },\n {\n \"id\": \"trends-center\",\n \"name\": \"TReNDS Center\",\n \"industry\": \"Neuroscience Research\",\n \"size\": \"startup\",\n \"type\": \"employer\",\n \"website\": \"https://trendscenter.org\",\n \"description\": \"Research center developing advanced neuroinformatics tools leveraging brain imaging and omics data for brain health and disease.\"\n },\n {\n \"id\": \"amazon-web-services\",\n \"name\": \"Amazon Web Services\",\n \"industry\": \"Cloud Computing\",\n \"size\": \"enterprise\",\n \"type\": \"employer\",\n \"website\": \"https://aws.amazon.com\",\n \"description\": \"World's leading cloud computing platform providing infrastructure, AI/ML, and enterprise services.\"\n },\n {\n \"id\": \"neurolex-labs\",\n \"name\": \"NeuroLex Labs\",\n \"industry\": \"Healthcare AI / Voice Computing\",\n \"size\": \"startup\",\n \"type\": \"employer\",\n \"website\": \"https://www.neurolex.ai\",\n \"description\": \"Voice computing company building software for the prediction and prevention of neurodegenerative diseases.\"\n },\n {\n \"id\": \"decooda\",\n \"name\": \"Decooda\",\n \"industry\": \"AI / Customer Experience Analytics\",\n \"size\": \"startup\",\n \"type\": \"employer\",\n \"website\": null,\n \"description\": \"AI company designing next-generation data science tools for the customer experience industry.\"\n },\n {\n \"id\": \"slalom-consulting\",\n \"name\": \"Slalom Consulting\",\n \"industry\": \"Technology Consulting\",\n \"size\": \"enterprise\",\n \"type\": \"employer\",\n \"website\": \"https://www.slalom.com\",\n \"description\": \"Modern consulting firm focused on strategy, technology, and business transformation.\"\n },\n {\n \"id\": \"red-ventures\",\n \"name\": \"Red Ventures\",\n \"industry\": \"Digital Marketing / Technology\",\n \"size\": \"mid-market\",\n \"type\": \"employer\",\n \"website\": \"https://www.redventures.com\",\n \"description\": \"Technology-driven marketing company optimizing customer acquisition for large brands in high-growth industries.\"\n },\n {\n \"id\": \"microsoft\",\n \"name\": \"Microsoft\",\n \"industry\": \"Technology\",\n \"size\": \"enterprise\",\n \"type\": \"employer\",\n \"website\": \"https://www.microsoft.com\",\n \"description\": \"Global technology company providing software, cloud computing, and enterprise services.\"\n },\n {\n \"id\": \"paul-prae-consulting\",\n \"name\": \"Paul Prae\",\n \"industry\": \"Digital Marketing / Web Development\",\n \"size\": \"startup\",\n \"type\": \"own-business\",\n \"website\": \"https://www.paulprae.com\",\n \"description\": \"Independent digital strategy consulting and web development practice.\"\n },\n {\n \"id\": \"paul-prae-music\",\n \"name\": \"Paul Prae\",\n \"industry\": \"Music Production / Audio Engineering\",\n \"size\": \"startup\",\n \"type\": \"own-business\",\n \"website\": null,\n \"description\": \"Music production and audio engineering practice including live sound, studio production, and stage management.\"\n },\n {\n \"id\": \"john-keane-studios\",\n \"name\": \"John Keane Studios\",\n \"industry\": \"Music / Recording Studio\",\n \"size\": \"startup\",\n \"type\": \"employer\",\n \"website\": null,\n \"description\": \"Grammy-nominated recording studio operated by producer John Keane in Athens, Georgia.\"\n },\n {\n \"id\": \"damon-moon-and-the-whispering-drifters\",\n \"name\": \"Damon Moon and the Whispering Drifters\",\n \"industry\": \"Music / Performing Arts\",\n \"size\": \"startup\",\n \"type\": \"employer\",\n \"website\": null,\n \"description\": \"Music band based in the southeastern United States.\"\n }\n]",
"tags": [
"career",
"companies"
]
},
{
"category": "career",
"title": "courses",
"content": "[\n {\n \"id\": \"csci-1301-intro-computing-java\",\n \"name\": \"Introduction to Computing and Programming in Java\",\n \"code\": \"CSCI 1301-1301L\",\n \"category\": \"Programming Fundamentals\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-1302-software-dev-java\",\n \"name\": \"Software Development in Java\",\n \"code\": \"CSCI 1302\",\n \"category\": \"Programming Fundamentals\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-1730-systems-programming-c\",\n \"name\": \"Systems Programming in C/C++\",\n \"code\": \"CSCI 1730\",\n \"category\": \"Systems Programming\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-2610-discrete-math\",\n \"name\": \"Discrete Mathematics for Computer Science\",\n \"code\": \"CSCI(MATH) 2610\",\n \"category\": \"Mathematics\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-2670-theory-of-computing\",\n \"name\": \"Theory of Computing\",\n \"code\": \"CSCI 2670\",\n \"category\": \"Theoretical Computer Science\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-2720-data-structures\",\n \"name\": \"Data Structures\",\n \"code\": \"CSCI 2720\",\n \"category\": \"Data Structures and Algorithms\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-4300-web-programming-jsp\",\n \"name\": \"Web Programming with JSP and Java\",\n \"code\": \"CSCI 4300\",\n \"category\": \"Web Development\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-4370-database-management\",\n \"name\": \"Database Management in Java\",\n \"code\": \"CSCI 4370/6370\",\n \"category\": \"Database Systems\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-4540-symbolic-programming\",\n \"name\": \"Symbolic Programming with Prolog and Lisp\",\n \"code\": \"CSCI(ARTI) 4540/6540\",\n \"category\": \"Artificial Intelligence\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-4550-intro-ai\",\n \"name\": \"Introduction to Artificial Intelligence\",\n \"code\": \"CSCI(PHIL) 4550/6550\",\n \"category\": \"Artificial Intelligence\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-4560-evolutionary-computation\",\n \"name\": \"Evolutionary Computation and Its Applications\",\n \"code\": \"CSCI 4560/6560\",\n \"category\": \"Artificial Intelligence\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-4800-hci\",\n \"name\": \"Human-Computer Interaction\",\n \"code\": \"CSCI 4800/6800\",\n \"category\": \"User Experience\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-4720-computer-architecture\",\n \"name\": \"Computer Architecture and Organization\",\n \"code\": \"CSCI 4720\",\n \"category\": \"Computer Architecture\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"csci-4760-computer-networks\",\n \"name\": \"Computer Networks\",\n \"code\": \"CSCI 4760\",\n \"category\": \"Networking\",\n \"discipline\": \"computer_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"cs-7637-kbai-cognitive-systems\",\n \"name\": \"Knowledge-Based Artificial Intelligence: Cognitive Systems\",\n \"code\": \"CS 7637\",\n \"category\": \"Advanced AI\",\n \"discipline\": \"artificial_intelligence\",\n \"institution\": \"Georgia Institute of Technology\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"cs-6601-artificial-intelligence\",\n \"name\": \"Artificial Intelligence\",\n \"code\": \"CS 6601\",\n \"category\": \"Advanced AI\",\n \"discipline\": \"artificial_intelligence\",\n \"institution\": \"Georgia Institute of Technology\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"arti-35-cognitive-science\",\n \"name\": \"Cognitive Science\",\n \"code\": \"ARTI(PSYC)(EPSY)(PHIL) 35\",\n \"category\": \"Interdisciplinary\",\n \"discipline\": \"cognitive_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"psyc-4100-cognitive-psychology\",\n \"name\": \"Cognitive Psychology\",\n \"code\": \"PSYC 4100\",\n \"category\": \"Psychology\",\n \"discipline\": \"cognitive_science\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"phil-2010-intro-philosophy\",\n \"name\": \"Introduction to Philosophy\",\n \"code\": \"PHIL 2010\",\n \"category\": \"General Philosophy\",\n \"discipline\": \"philosophy\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"phil-2500-symbolic-logic\",\n \"name\": \"Symbolic Logic\",\n \"code\": \"PHIL 2500\",\n \"category\": \"Logic\",\n \"discipline\": \"philosophy\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"phil-3610-theory-of-knowledge\",\n \"name\": \"Theory of Knowledge\",\n \"code\": \"PHIL 3610\",\n \"category\": \"Epistemology\",\n \"discipline\": \"philosophy\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"phil-4510-deductive-systems\",\n \"name\": \"Deductive Systems\",\n \"code\": \"PHIL(LING) 4510/6510\",\n \"category\": \"Logic\",\n \"discipline\": \"philosophy\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"ling-2100-study-of-language\",\n \"name\": \"The Study of Language\",\n \"code\": \"LING 2100\",\n \"category\": \"General Linguistics\",\n \"discipline\": \"linguistics\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"math-2200-calculus-i\",\n \"name\": \"Calculus I for Scientists and Engineers\",\n \"code\": \"MATH 2200\",\n \"category\": \"Calculus\",\n \"discipline\": \"mathematics\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"math-2250-calculus-ii\",\n \"name\": \"Calculus II for Scientists and Engineers\",\n \"code\": \"MATH 2250\",\n \"category\": \"Calculus\",\n \"discipline\": \"mathematics\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"phys-1211-mechanics\",\n \"name\": \"Physics for Science and Engineering Students-Mechanics, Waves, Thermodynamics\",\n \"code\": \"PHYS 1211-1211L\",\n \"category\": \"General Physics\",\n \"discipline\": \"physics\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"phys-1212-electricity-magnetism\",\n \"name\": \"Physics for Science and Engineering Students-Electricity and Magnetism, Optics, Modern Physics\",\n \"code\": \"PHYS 1212-1212L\",\n \"category\": \"General Physics\",\n \"discipline\": \"physics\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"acct-2101-accounting-i\",\n \"name\": \"Principles of Accounting I\",\n \"code\": \"ACCT 2101\",\n \"category\": \"Accounting\",\n \"discipline\": \"business\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"acct-2102-accounting-ii\",\n \"name\": \"Principles of Accounting II\",\n \"code\": \"ACCT 2102\",\n \"category\": \"Accounting\",\n \"discipline\": \"business\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"econ-2105-macroeconomics\",\n \"name\": \"Principles of Macroeconomics\",\n \"code\": \"ECON 2105\",\n \"category\": \"Economics\",\n \"discipline\": \"business\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"econ-2106-microeconomics\",\n \"name\": \"Principles of Microeconomics\",\n \"code\": \"ECON 2106\",\n \"category\": \"Economics\",\n \"discipline\": \"business\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"busa-2106-environment-of-business\",\n \"name\": \"The Environment of Business\",\n \"code\": \"BUSA 2106\",\n \"category\": \"Business Environment\",\n \"discipline\": \"business\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"bism-2601-business-info-systems\",\n \"name\": \"Business Information Systems\",\n \"code\": \"BISM 2601\",\n \"category\": \"Information Systems\",\n \"discipline\": \"business\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"dsba-6100-big-data-analytics\",\n \"name\": \"Big Data Analytics for Competitive Advantage\",\n \"code\": \"DSBA 6100\",\n \"category\": \"Data Analytics\",\n \"discipline\": \"business\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"nmix-4110-new-media-production\",\n \"name\": \"New Media Production\",\n \"code\": \"NMIX 4110\",\n \"category\": \"Media Production\",\n \"discipline\": \"new_media\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"nmix-4510-new-media-capstone\",\n \"name\": \"New Media Capstone\",\n \"code\": \"NMIX 4510\",\n \"category\": \"Capstone Project\",\n \"discipline\": \"new_media\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"mbus-4100-music-business-i\",\n \"name\": \"Music Business I\",\n \"code\": \"MBUS 4100\",\n \"category\": \"Music Industry\",\n \"discipline\": \"music\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"mbus-5100-music-business-ii\",\n \"name\": \"Music Business II\",\n \"code\": \"MBUS 5100\",\n \"category\": \"Music Industry\",\n \"discipline\": \"music\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"musc-1301-music-appreciation\",\n \"name\": \"Music Appreciation\",\n \"code\": \"MUSC 1301\",\n \"category\": \"Music Theory\",\n \"discipline\": \"music\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"psyc-1101-intro-psychology\",\n \"name\": \"Introduction to General Psychology\",\n \"code\": \"PSYC 1101\",\n \"category\": \"General Psychology\",\n \"discipline\": \"psychology\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"biol-1103-biology\",\n \"name\": \"Biology\",\n \"code\": \"BIOL 1103\",\n \"category\": \"General Biology\",\n \"discipline\": \"biology\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-bs-computer-science\"\n },\n {\n \"id\": \"engl-2111-world-literature\",\n \"name\": \"World Literature\",\n \"code\": \"ENGL 2111\",\n \"category\": \"Literature\",\n \"discipline\": \"english\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n },\n {\n \"id\": \"comm-1201-public-speaking\",\n \"name\": \"Public Speaking\",\n \"code\": \"COMM 1201\",\n \"category\": \"Oral Communication\",\n \"discipline\": \"communication\",\n \"institution\": \"University of Georgia\",\n \"associated_education_id\": \"uga-ba-cognitive-science\"\n }\n]",
"tags": [
"career",
"courses"
]
},
{
"category": "career",
"title": "education",
"content": "[\n {\n \"id\": \"uga-bs-computer-science\",\n \"school\": \"University of Georgia\",\n \"degree\": \"Bachelor of Science\",\n \"field\": \"Computer Science\",\n \"specialization\": \"Area of Emphasis in Artificial Intelligence\",\n \"start_date\": \"2008\",\n \"end_date\": \"2012\",\n \"activities\": \"Nuci's Space Student Organization, UGA's Music Business Program Alumni, New Media Institute Alumni, WUOG Campus Radio Station\",\n \"honors\": [\n \"Graduated Cum Laude\",\n \"Dean's List four semesters\",\n \"HOPE Scholarship recipient\"\n ],\n \"certificates\": [],\n \"description\": \"Bachelor of Science in Computer Science with an Area of Emphasis in Artificial Intelligence\"\n },\n {\n \"id\": \"uga-ba-cognitive-science\",\n \"school\": \"University of Georgia\",\n \"degree\": \"Bachelor of Arts\",\n \"field\": \"Cognitive Science\",\n \"specialization\": \"Focused Foundation in Artificial Intelligence\",\n \"start_date\": \"2008\",\n \"end_date\": \"2012\",\n \"activities\": \"Nuci's Space Student Organization, UGA's Music Business Program Alumni, New Media Institute Alumni, WUOG Campus Radio Station\",\n \"honors\": [\n \"Graduated Cum Laude\",\n \"Dean's List four semesters\",\n \"HOPE Scholarship recipient\"\n ],\n \"certificates\": [\n \"Interdisciplinary Certificate in Music Business (May 2010)\",\n \"Interdisciplinary Certificate in New Media (December 2009)\"\n ],\n \"description\": \"Bachelor of Arts in Cognitive Science with a Focused Foundation in Artificial Intelligence\"\n },\n {\n \"id\": \"gpc-as-music-production\",\n \"school\": \"Georgia Perimeter College\",\n \"degree\": \"Associate of Science\",\n \"field\": \"Music Production\",\n \"specialization\": null,\n \"start_date\": \"2005\",\n \"end_date\": \"2007\",\n \"activities\": \"Music Production\",\n \"honors\": [\n \"Graduated High Honors\",\n \"Dean's List four semesters\",\n \"HOPE Scholarship recipient\"\n ],\n \"certificates\": [],\n \"description\": \"Associate of Science degree with focus on Music Production\"\n }\n]",
"tags": [
"career",
"education"
]
},
{
"category": "career",
"title": "honors",
"content": "[\n {\n \"id\": \"hackathon-clt-first-place\",\n \"title\": \"First place in the Code category for HACKATHON clt\",\n \"organization\": \"HACKATHON clt\",\n \"date\": \"2015-03\",\n \"description\": \"The goal was to predict, model, plan and present the best, most attractive and creative ways to deliver groceries to customers. Our team name was HT CoDelivery and we were out to \\\"Deliver Groceries Together.\\\" We found a simple approach that easily integrated with Harris Teeter's way of doing things. Our idea was relatively easy to implement and aligned with Harris Teeter's mission. Check out our winning project on GitHub: https://github.com/praeducer/htcodelivery\",\n \"category\": \"Competition\"\n },\n {\n \"id\": \"microsoft-entrepreneur-of-the-year-nomination\",\n \"title\": \"Nominated for Global Business Support's \\\"Entrepreneur of the Year\\\"\",\n \"organization\": \"Microsoft\",\n \"date\": \"2013\",\n \"description\": \"\",\n \"category\": \"Professional Recognition\"\n },\n {\n \"id\": \"uga-cum-laude\",\n \"title\": \"Graduated Cum Laude\",\n \"organization\": \"University of Georgia\",\n \"date\": \"2012-05\",\n \"description\": \"\",\n \"category\": \"Academic Achievement\"\n },\n {\n \"id\": \"gpc-high-honors\",\n \"title\": \"Graduated High Honors\",\n \"organization\": \"Georgia Perimeter College\",\n \"date\": \"2007-12\",\n \"description\": \"\",\n \"category\": \"Academic Achievement\"\n }\n]",
"tags": [
"career",
"honors"
]
},
{
"category": "achievement",
"title": "Arine — Healthcare Data Operations Platform",
"content": "Staff-level data operations engineering at Arine, a healthcare technology platform that has touched over 30 million client members across 45+ health plans and produces over 40 million recommendations annually. Built HIPAA-compliant AI coding assistants (Data Engineering Agent for autonomous ETL pipeline generation/deployment/testing, Dev Environment Agent for developer onboarding). Managed enterprise data platform on Snowflake and AWS, ingesting and processing petabytes of healthcare data from hundreds of sources. Built observability pipeline for Arine's autonomous pharmacist AI agent (DynamoDB → Snowflake → dbt → QuickSight). Led AI enablement workshops training up to 100 engineers on AI-first development practices. SCOPE BOUNDARY: Paul's role at Arine is data operations engineering (Snowflake, ETL, AI agents, dbt, observability). He does NOT build ML models or ML pipelines at Arine. ML pipeline work was performed at NeuroLex Labs (voice computing) and Slalom Consulting (behavioral health forecasting). Never attribute ML model development to the Arine position.",
"tags": [
"healthcare",
"data-ops",
"ai-agents",
"snowflake",
"aws",
"hipaa"
],
"relatedPositions": [
"Staff AI DataOps Engineer at Arine"
],
"asOf": "2026-03",
"source": "https://www.arine.io",
"confidence": "verified"
},
{
"category": "achievement",
"title": "Booz Allen Hamilton — Healthcare AI Practice Leadership",
"content": "Led AI and analytics solution development at Booz Allen Hamilton, a Fortune 500 management consulting firm (27,000+ employees, $9B+ revenue). Operated within their healthcare and life science practice, designing and deploying AI solutions across FedRAMP and HIPAA-compliant environments. Collaborated with cross-functional teams of engineers, data scientists, and domain experts to deliver AI products that harnessed clinical, behavioral, and genomic data for population health, predictive medicine, and research advancements. Addressed algorithmic bias and privacy risks in regulated healthcare AI deployments.",
"tags": [
"healthcare",
"ai",
"leadership",
"fortune-500",
"compliance",
"consulting"
],
"relatedPositions": [
"Chief AI Architect, Senior Manager at Booz Allen Hamilton"
]
},
{
"category": "achievement",
"title": "AWS — Enterprise AI/ML Solutions Architecture Portfolio",
"content": "Managed a portfolio of 10+ enterprise accounts as an AI/ML Solutions Architect at Amazon Web Services, serving clients including Cox Enterprises, Cox Automotive (Autotrader, Dealer.com, Kelley Blue Book, Manheim, VinSolutions), Equifax, Jostens, NCR, Accenture, and Deloitte. Engaged nationally as a subject matter expert in artificial intelligence and machine learning. Built proof-of-concept solutions and ran benchmarking experiments that drove production adoption. Delivered technical white papers, presentations, and reference architectures. Partnered with C-suite executives to define technical and business strategies including go-to-market, cost management, and technical recruiting. Spoke at private and public AWS events with diverse stakeholder groups.",
"tags": [
"aws",
"enterprise",
"solutions-architecture",
"ai",
"ml",
"c-suite"