-
Notifications
You must be signed in to change notification settings - Fork 31
/
config.ts
639 lines (629 loc) · 22.5 KB
/
config.ts
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
import type { SiteConfig } from '$src/types/Config';
const config: SiteConfig = {
title: 'Alicia Sykes',
description: '',
source: 'https://github.com/lissy93/my-website',
baseUrl: 'https://as93.net',
initialFeeds: [{ label: 'Notes', url: 'https://raw.githubusercontent.com/Lissy93/feeds/main/blog.atom' }],
additionalFeeds: [
{ label: 'Notes', url: 'https://notes.aliciasykes.com/feed' },
{
label: 'Dev.to',
url: 'https://raw.githubusercontent.com/Lissy93/feeds/main/dev-to.atom',
},
{
label: 'BlogSpot',
url: 'https://raw.githubusercontent.com/Lissy93/feeds/main/blogger.atom',
},
{
label: 'GitHub',
url: 'https://raw.githubusercontent.com/Lissy93/feeds/main/github.atom',
},
{
label: 'StackOverflow',
url: 'https://raw.githubusercontent.com/Lissy93/feeds/main/stackoverflow.atom',
},
// { label: 'Twitter', url: 'https://raw.githubusercontent.com/Lissy93/feeds/main/twitter.atom' },
{
label: 'Reddit',
url: 'https://raw.githubusercontent.com/Lissy93/feeds/main/reddit.atom',
},
{
label: 'Mastodon',
url: 'https://raw.githubusercontent.com/Lissy93/feeds/main/mastodon.atom',
},
{
label: 'YouTube',
url: 'https://raw.githubusercontent.com/Lissy93/feeds/main/youtube.atom',
},
],
routeLinks: [
{ label: 'Home', route: '/', color: 'var(--accent-1, #ff0099)' },
{
label: 'Blog',
route: '/blog',
color: 'var(--accent-2, #b45eff)',
description: 'Published articles, notes, tutorials and updates',
},
{
label: 'Projects',
route: '/projects',
color: 'var(--accent-3, #01c0f0)',
description: 'Personal projects and open source work',
},
{
label: 'Contact',
route: '/contact',
color: 'var(--accent-1, #ff0099)',
description: 'Social profile links, GPG keys and contact form',
},
{
label: 'About',
route: '/about',
color: 'var(--accent-4, #1de691)',
description: 'Bio and professional experience',
},
],
footerInfo: {
author: 'Alicia Sykes',
authorSite: 'https://github.com/lissy93',
license: 'MIT',
licenseLink: '',
copyright: true,
},
githubUser: 'lissy93',
defaultTheme: 'callisto',
defaultLanguage: 'en',
colorSchemes: {
dark: {
// background: '#101010',
// foreground: '#fafafa',
// 'dimmed-text': '#808080',
// 'card-background': '#1b1b1b',
// 'card-border': '1px solid #2a2a2a',
// 'code-background': '#333',
// accent: '#01c0f0',
// 'accent-1': '#ff0099',
// 'accent-2': '#b45eff',
// 'accent-3': '#01c0f0',
// 'accent-4': '#1de691',
// 'home-accent-background': '#2a3367',
// 'home-accent-foreground': 'var(--foreground)',
},
light: {
// background: '#ededed',
// foreground: '#2a3367',
// 'card-background': '#F8F8FF',
// 'card-border': '1px solid #0000001a',
// 'home-accent-background': '#2a3367',
// 'home-accent-foreground': 'var(--foreground)',
// 'home-animated-gradient-outer': '#ffe7f500',
// 'home-animated-gradient-inner': '#ff8ed05c',
},
callisto: {
// background: '#020617',
// foreground: '#dcdcdc',
// 'dimmed-text': '#8892b0',
// 'card-background': '#0b1021',
// 'card-border': '1px solid #ffffff1a',
// 'accent-1': '#00ccb4',
// 'accent-2': '#00ccb4',
// 'accent-3': '#00ccb4',
// 'accent-4': '#00ccb4',
// 'voronoi-background': '#0a192f',
// 'home-accent-background': '#fff',
// 'home-tile-background': '#0B1021',
// 'home-animated-gradient-outer': '#0361f700',
// 'home-animated-gradient-inner': '#2e2d40',
},
},
workExperience: [
{
company: 'AND.Digital',
companyUrl: 'https://and.digital/',
companyLogo: 'https://and.digital/favicon.ico',
jobTitle: 'Principle Engineer',
datesWorked: 'August 2022 - Present',
responsibilities: 'As a member of the Practice Group within Hamilton Club, '
+ 'I work across several client projects, ensuring that '
+ 'code quality, maintainability and security are top notch. '
+ 'I\'m responsible for training up our developers, helping them gain '
+ 'the skills necessary to best support our clients. '
+ 'I\'m always up for trying out new tech, so that I\'m in a good position '
+ 'to choose the best tech stacks on a per-client basis.',
projectType: 'Clients',
projects: [
{ name: 'International SOS', logo: 'https://i.ibb.co/WgKKMFQ/Isos.jpg', description: '', },
{ name: 'Frasers Group', logo: 'https://i.ibb.co/sQcvxmG/Frasers.png', description: '', },
{ name: 'Lloyds Bank', logo: 'https://i.ibb.co/GCSDPCq/Lloyds-bank.jpg', description: '', },
],
technologies: [ 'TypeScript', 'React Native', 'Azure' ],
},
{
company: 'Galaxy',
companyUrl: 'https://galaxy.com/',
companyLogo: 'https://i.ibb.co/fX2rF84/galaxy-digital.png',
jobTitle: 'VP Frontend Engineer',
datesWorked: 'Jan 2021 - July 2022',
responsibilities: 'Worked on real-time React-based Web3 trading application',
technologies: [ 'React', 'StoryBook', 'Cypress', 'web3js',],
},
{
company: 'Freelance',
companyUrl: 'https://aliciasykes.com/',
companyLogo: 'https://i.ibb.co/Dt6kGFQ/brick.png',
jobTitle: 'Full-Stack Developer',
datesWorked: 'February 2019 - Jan 2021',
responsibilities: '',
projectType: 'Projects',
projects: [
{ name: 'Futr.AI', logo: 'https://i.ibb.co/SyjxvhT/Futr-ai.png', description: '', },
{ name: 'Shell', logo: 'https://i.ibb.co/7r1K9cb/Shell.png', description: '', },
{ name: 'Shell Recharge', logo: 'https://i.ibb.co/BBdP2Wh/Shell-recharge.jpg', description: '' },
{ name: 'Machine Max', logo: 'https://i.ibb.co/XzXTKWF/machine-max.png', description: '', },
{ name: 'Ctemplar', logo: 'https://i.ibb.co/2Sg6G3s/Ctemplar.png', description: '', },
],
technologies: [ 'React', 'React Native', 'TypeScript', 'GraphQL', 'GCP' ],
},
{
company: 'Accenture',
companyUrl: 'https://www.accenture.com/',
companyLogo: 'https://i.ibb.co/kcCKDF1/accenture.png',
jobTitle: 'Software Developer',
datesWorked: 'June 2014 - February 2019',
responsibilities: ''
+ 'After joining as an associate, I had the opportunity to work on a range of exciting client projects, '
+ 'each with their own challenges, his helped me to develop my skills and knowledge in a variety of areas. '
+ 'Over time I worked my way up to a senior role, where I could actively deliver high quality solutions to clients.',
projectType: 'Clients',
projects: [
{ name: 'E.ON', logo: 'https://i.ibb.co/4PcVN4B/Eon.png', description: '', },
{ name: 'B&Q', logo: 'https://i.ibb.co/F79xSDK/Bandq.jpg', description: '', },
{ name: 'Boots', logo: 'https://i.ibb.co/SnPtC8t/Boots.jpg', description: '', },
{ name: 'TK Maxx', logo: 'https://i.ibb.co/MBkQVs1/tkmaxx.jpg', description: '', },
{ name: 'Vodafone', logo: 'https://i.ibb.co/Zh1SwbR/Vodafone.png', description: '', },
{ name: 'UKI Innovation Center', logo: 'https://i.ibb.co/1JX4Q9Y/Accenture-innovation.jpg', description: '', },
],
technologies: [ 'C#', 'Angular', 'Node', 'AWS' ],
},
{
company: 'University of Oxford',
companyUrl: 'https://www.ox.ac.uk/',
companyLogo: 'https://i.ibb.co/QYmLPTX/oxford-uni.jpg',
jobTitle: 'Intern',
datesWorked: 'June 2013 - September 2013',
responsibilities: 'Worked on developing a Java application which would calculate the most '
+ 'effective mg of antimalarial drug, per kg or patient body weight, to prevent vaccine resistance building up. '
+ 'Involved dealing with millions of patient records, which were often in varying formats and units.',
projectType: 'Projects',
projects: [
{ name: 'WWARN', logo: 'https://i.ibb.co/1R657nh/Wwarn.jpg', description: '', },
],
technologies: [ 'Java', 'apachetomcat', 'junit', 'gradle' ],
},
{
company: 'British Army',
companyUrl: 'https://www.army.mod.uk/',
companyLogo: 'https://i.ibb.co/gv6mbKw/Army.jpg',
jobTitle: 'Soldier',
datesWorked: '',
responsibilities: '',
projectType: 'Regiments',
projects: [
{ name: 'Signals', logo: 'https://i.ibb.co/F5mhzkr/Signals.png', description: '', },
{ name: 'Oxford UOTC', logo: 'https://i.ibb.co/ZMH1TWq/ouotc.jpg', description: '', },
{ name: 'Intelligence Corps', logo: 'https://i.ibb.co/svn2XLq/mi.jpg', description: '', },
],
},
],
projectComplimentaryData: [
{
name: 'AdGuardian-Term',
thumbnail: 'https://i.ibb.co/wgJDXs2/adguardian-banner-2.png',
},
{
name: 'aliciasykes.com',
thumbnail: 'https://repository-images.githubusercontent.com/165275206/a5fc1f00-f206-11e9-9f21-6e5f696368e7',
},
{
name: 'all-the-countries',
thumbnail: 'https://repository-images.githubusercontent.com/331389984/ab3f8a8b-a3bc-493c-9f0c-b119ec1575af',
},
{
name: 'anti-theft-charge',
thumbnail: 'https://i.ibb.co/LZfDXR9/Screenshot-from-2023-10-29-23-51-27.png',
},
{
name: 'awesome-privacy',
language: 'astro',
thumbnail: 'https://repository-images.githubusercontent.com/512269935/6b38d78e-6e4d-484e-bbc8-e0dd81c97e0a',
},
{
name: 'brewfile',
thumbnail: 'https://i.ibb.co/N9c30xT/lissy93-brewfile-banner.png',
},
{
name: 'bug-bounties',
thumbnail: 'https://raw.githubusercontent.com/Lissy93/bug-bounties/main/web/public/banner.png',
},
{
name: 'cheat-code',
thumbnail: 'https://i.ibb.co/3BJNCpg/cheatcode.png',
},
{
name: 'cso',
thumbnail: 'https://github.com/Lissy93/cso/blob/HEAD/public/banner.png?raw=true',
language: 'Solid',
},
{
name: 'dashy',
featured: true,
thumbnail: 'https://repository-images.githubusercontent.com/343078060/82f850a2-b1af-4e9f-9245-c92700d74856',
},
{
name: 'docker-tcpdump',
thumbnail: 'https://i.ibb.co/RQyX8kL/docker-tcp-dump.png',
},
{
name: 'dotfiles',
thumbnail: 'https://i.ibb.co/YyrcjsH/Screenshot-from-2023-12-10-18-19-26.png',
},
{
name: 'email-comparison',
language: 'lit',
thumbnail: 'https://i.ibb.co/f8ZfxmW/email-comparison-screenshot.png',
},
{
name: 'espanso-config',
thumbnail: 'https://repository-images.githubusercontent.com/362820466/b1ef9380-a909-11eb-9d34-2aaf94ed5d95',
},
{
name: 'git-into-open-source',
thumbnail: 'https://i.ibb.co/Jm8gpBN/git-into-opensource-banner.png',
},
{
name: 'happy-app',
thumbnail: 'https://repository-images.githubusercontent.com/94193652/5880b180-f208-11e9-9ab5-9f4b86f46017',
},
{
name: 'hasami-shogi',
thumbnail: 'https://i.ibb.co/vvpw9Yg/upscaled-hasami.jpg',
},
{
name: 'lissy93',
language: 'markdown',
thumbnail: 'https://i.ibb.co/TkqZmZ9/Screenshot-from-2023-10-29-23-48-30.png',
},
{
name: 'minesweper',
thumbnail: 'https://repository-images.githubusercontent.com/19034001/6fff26ca-21ea-4381-bf66-8ceb67bd047a',
},
{
name: 'minimal-terminal-prompt',
thumbnail: 'https://i.ibb.co/hMMPqPr/minimal-terminal-prompt.png',
},
{
name: 'my-website',
thumbnail: 'https://i.ibb.co/ZhMTxmR/my-website-banner-image.png',
},
{
name: 'OLD_AdGuardian-Term',
thumbnail: 'https://i.ibb.co/BykbdjF/Screenshot-from-2023-06-03-22-57-07.png',
},
{
name: 'personal-security-checklist',
language: 'qwik',
thumbnail: 'https://i.ibb.co/mTvmYGJ/personal-security-checklist.png',
},
{
name: 'portainer-templates',
thumbnail: 'https://i.ibb.co/J2g5Czy/portainer-templates-banner.png',
},
{
name: 'revision-quizzes',
thumbnail: 'https://i.ibb.co/JvCGbYf/revision-quizzes-screenshot.png',
},
{
name: 'sentiment-analysis',
thumbnail: 'https://i.ibb.co/ysLpBCn/sentiment-analysis-png.png',
},
{
name: 'twitter-sentiment-visualisation',
thumbnail: 'https://i.ibb.co/W0f10Vv/sentiment-sweep-grid.png',
},
{
name: 'usermonkey',
thumbnail: 'https://i.ibb.co/hLj9HfR/user-monkey.png',
},
{
name: 'web-check',
language: 'react',
thumbnail: 'https://i.ibb.co/mSz2H3n/web-check-banner.png',
},
{
name: 'who-dat',
thumbnail: 'https://github.com/Lissy93/who-dat/blob/main/public/who-dat.png?raw=true',
},
],
postComplimentaryData: [
{
postRef: '50 ways to bring in extra cash as a developer',
thumbnail: 'https://i.ibb.co/DDQBHvL/developer-side-hustles.png',
},
{
postRef: 'CLI tools you cant live without',
thumbnail: 'https://i.ibb.co/F4THZ2T/cli-tools-banner.png',
},
{
postRef: '20 git commands',
thumbnail: 'https://i.ibb.co/yqtrTTS/git-commands-banner.png',
},
{
postRef: 'useful css resources',
thumbnail: 'https://i.ibb.co/CMxy3tz/css-resources-2.png',
},
{
postRef: 'my top 50 windows apps',
thumbnail: 'https://i.ibb.co/nmPRGgp/open-source-windows-apps.png',
},
{
postRef: 'my top 50 android apps',
thumbnail: 'https://i.ibb.co/cc8WP4K/App-icons-banner-medium.png',
},
{
postRef: 'pimping up your duckduckgo',
thumbnail: 'https://i.ibb.co/6XYydtq/Duck-Duck-Go-Themes.png',
},
{
postRef: 'custom styling for listed',
thumbnail: 'https://i.ibb.co/dMh1y13/listed-dark.png',
},
{
postRef: 'fun with realtime data',
thumbnail: 'https://i.ibb.co/HqJ77Mf/Fun-with-live-data-banner.png',
},
{
postRef: 'fave youtube chanels',
thumbnail: 'https://i.ibb.co/185MLZq/youtube-channels-banner.png',
},
{
postRef: 'top 25 raspberry pi projects',
thumbnail: 'https://i.ibb.co/LP1wZtc/Top-Raspberry-Pi-Projects.png',
},
{
postRef: 'using espanso to boost efficiency',
thumbnail: 'https://i.ibb.co/6W1Bqyz/espanso-config-banner.png',
},
{
postRef: 'hello world',
thumbnail: 'https://i.ibb.co/0rfWV1f/DSCN0566-1.jpg',
},
{
postRef: 'dashy a selfhosted homelab dashboard',
thumbnail: 'https://i.ibb.co/c6kTRch/dashy-theme.png',
},
{ postRef: '', thumbnail: '' },
],
contact: {
name: 'Alicia Sykes',
email: 'alicia@omg.lol',
website: 'https://aliciasykes.com',
socials: {
Twitter: 'Lissy_Sykes',
GitHub: 'Lissy93',
'Dev.to': 'Lissy93',
Mastodon: '@Lissy93',
LinkedIn: 'in/AliciaSykes',
Instagram: 'liss.sykes',
YouTube: 'AliciaSykes',
Reddit: 'lissy93',
StackOverflow: '979052/alicia',
KeyBase: 'AliciaSykes',
Facebook: 'Liss.Sykes',
PeerList: 'alicia',
CodersRank: 'lissy93',
'OMG.lol': 'alicia',
},
socialButtonLimit: 6,
mailerConfig: {
service_id: 'gmail',
template_id: 'website-contact-form',
user_id: 'user_K6F041q1dQvz8SJLSOZCR',
template_params: {},
},
pgpKeyLink: 'https://keybase.io/aliciasykes/pgp_keys.asc?fingerprint=0688f8d34587d954e9e51fb8fedb68f55c0283a7',
pgpPublicKey: `-----BEGIN PGP PUBLIC KEY BLOCK-----
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
mFFVmpQe2X/qgZBVVYC+LjpxNEMt6w==
=dpLK
-----END PGP PUBLIC KEY BLOCK-----
`,
},
about: {
intro: 'Just your average dev...',
bio: [
"I'm Alicia, a London-based software engineer.",
`I have a particular interest in privacy-respecting software, as well as security.
I've carried out a few audits, and authored the initial versions of
<a href="https://github.com/Lissy93/personal-security-checklist">Personal Security Checklist</a>
and <a href="https://github.com/Lissy93/awesome-privacy">Awesome Privacy</a>.`,
`I enjoy going to (<a href="https://notes.aliciasykes.com/p/0s5s3uOtKj">and sometimes winning!</a>) hackathons.
And if you're London-based, you'll probably have bumped into me at a tech meetup.`,
`I love Linux, and (imo) have a neat
<a href="https://github.com/lissy93/dotfiles">dotfiles setup</a> which I'm always tweaking.
And I have a small homelab, that I'm using to learn more about system administration,
and host my own services to (attempt to) escape big tech.
I made <a href="https://github.com/Lissy93/dashy">dashboard app</a> for it.
`,
`For work, I'm a principal software engineer at <a href="https://and.digital/">AND.Digital</a>,
where I work across various client projects, help to upskill and mentor junior and mid-level
developers and ensure that the code we're delivering is the best it can be.`,
`Away from the keyboard, I like sports, hanging out with friends, and going to Church.`,
],
picture: 'https://i.ibb.co/svxHFMD/alicia-sykes-3.jpg',
},
techStack: {
backend: [
{
language: 'Rust',
projects: ['AdGuardian-Term'],
},
{
language: 'Go',
projects: ['who-dat', 'go-apod', 'OLD_AdGuardian-Term'],
},
{
language: 'Node',
projects: ['twitter-sentiment-visualisation', 'quick-example-of-testing-in-nodejs'],
},
{
language: 'Python',
projects: ['portainer-templates', 'gh-trending-no-cors', 'tfl-lift-availability-dash', 'pax'],
},
{
language: 'Java',
projects: ['Minesweper', 'AlternativeVoteSystem', 'TuneSender', 'TreasureHunt'],
},
{
language: 'PHP',
projects: [ 'revision-quizzes', 'intern-magnet', 'usermonkey' ],
},
],
frontend: [
{
language: 'Vue',
projects: ['dashy', 'all-the-countries', 'alicia-sykes-website', 'tfl-lift-availability-dash'],
},
{
language: 'Svelte',
projects: ['my-website', 'cheat-code'],
},
{
language: 'React',
projects: ['web-check'],
},
{
language: 'Solid',
projects: ['cso'],
},
{
language: 'Angular',
projects: ['happy-app', 'realtime-speech-analytics'],
},
{
language: 'Astro',
projects: ['git-into-open-source'],
},
{
language: 'D3',
projects: ['twitter-sentiment-visualisation', 'happy-app', 'realtime-speech-analytics'],
},
{
language: 'Alpine',
projects: ['who-dat'],
},
{
language: 'CoffeeScript',
projects: ['sentiment-analysis'],
},
{
language: 'HTML',
projects: ['repo-badge-maker ', 'bullet-convertor', 'md-toc-generator', 'email-extractor', 'cyber-defence-presentation', 'web-dev-school', 'md-cv-maker'],
},
],
mobile: [
{
language: 'Swift',
projects: ['hasami-shogi', 'Spotter'],
},
{
language: 'Kotlin',
projects: ['anti-theft-charge'],
},
{
language: 'Flutter',
projects: ['nfu'],
},
{
language: 'Android',
projects: ['Minesweper', 'anti-theft-charge', 'TuneSender', 'TreasureHunt', 'got-home-safe', 'Study-Time'],
},
// {
// language: 'React Native',
// projects: [''],
// },
],
other: [
{
language: 'Bash',
projects: ['minimal-terminal-prompt'],
},
{
language: 'Docker',
projects: ['docker-tcpdump', 'dashy'],
},
{
language: 'Config',
projects: ['dotfiles', 'espanso-config', 'conky-system-stats-widget', 'Brewfile'],
},
{
language: 'Markdown',
projects: ['personal-security-checklist', 'awesome-privacy'],
},
],
},
techStackExtras: {
devOps: [
'Ansible', 'Kubernetes', 'Prometheus', 'GitHubActions', 'Grafana',
],
cloud: [
'Netlify', 'Vercel', 'Cloudflare', 'Azure', 'AWS', 'GCP',
],
databases: [
'PostgreSQL', 'SQLite', 'Redis','MySQL', 'MongoDB',
],
testing: [
'Jest', 'Puppeteer', 'Enzyme', 'Cypress',
],
security: [
'Nmap', 'OWASPZAP', 'BurpSuite', 'Wireshark',
],
},
plausible: {
scriptSrc: 'https://no-track.as93.net/js/script.js',
domain: 'aliciasykes.com',
},
};
export default config;