-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
471 lines (444 loc) · 31.1 KB
/
index.html
File metadata and controls
471 lines (444 loc) · 31.1 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jake Rutherford - Research Engineer</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.min.js"></script>
<style>
.portrait-container {
position: relative;
width: 500px;
height: 500px;
overflow: hidden;
border-radius: 50%;
}
.portrait {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(100%);
transition: filter 0.3s ease;
}
.portrait:hover {
filter: grayscale(0%);
}
#particles-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
}
</style>
</head>
<body class="bg-gray-900 text-white font-mono">
<canvas id="particles-canvas"></canvas>
<div class="fixed inset-0 z-[-2]">
<div class="relative h-full w-full bg-slate-950">
<div class="absolute bottom-0 left-0 right-0 top-0 bg-[linear-gradient(to_right,#4f4f4f2e_1px,transparent_1px),linear-gradient(to_bottom,#4f4f4f2e_1px,transparent_1px)] bg-[size:14px_24px] [mask-image:radial-gradient(ellipse_60%_50%_at_50%_0%,#000_70%,transparent_100%)]"></div>
</div>
</div>
<nav class="p-6">
<div class="max-w-6xl mx-auto flex justify-end items-center">
<div class="space-x-6">
<a href="#work" class="hover:text-gray-300">Work</a>
<a href="#about" class="hover:text-gray-300">About</a>
<a href="#contact" class="hover:text-gray-300">Contact</a>
</div>
</div>
</nav>
<header class="py-20 px-6">
<div class="max-w-6xl mx-auto flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 mb-8 md:mb-0">
<h1 class="text-6xl font-bold mb-4">Jake Rutherford</h1>
<p class="text-xl text-gray-400 mb-8">A Senior Researcher at vLex and the University of Oxford.</p>
<div class="flex space-x-4 mb-8">
<a href="https://linkedin.com/in/jake-rutherford/" target="_blank" rel="noopener noreferrer" class="text-white hover:text-gray-300 transition-colors">
<i class="fab fa-linkedin fa-2x "></i>
</a>
<a href="https://github.com/JakeRutherford/" target="_blank" rel="noopener noreferrer" class="text-white hover:text-gray-300 transition-colors">
<i class="fab fa-github fa-2x"></i>
</a>
<a href="mailto:jakerutherford@outlook.com" class="text-white hover:text-gray-300 transition-colors">
<i class="fas fa-envelope fa-2x"></i>
</a>
</div>
<a href="#contact" class="bg-white text-gray-900 px-6 py-3 rounded-full font-semibold hover:bg-gray-200 transition duration-300">Let's talk</a>
</div>
<!-- <div class="md:w-1/2 flex justify-center">
<div class="relative w-[170px] h-[350px] rounded-full overflow-hidden">
<img src="portrait-removebg.png" alt="Jake Rutherford" class="w-full h-full object-cover filter grayscale hover:filter-none transition-all duration-300">
<div class="absolute bottom-0 left-0 right-0 h-1/2 bg-gradient-to-t from-gray-900 to-transparent pointer-events-none"></div>
</div>
</div> -->
</div>
</header>
<main class="py-20 px-6">
<div class="max-w-6xl mx-auto">
<section id="about" class="mb-20">
<div class="mx-auto max-w-2xl text-center">
<h2 class="text-3xl font-bold tracking-tight text-white sm:text-4xl">About me</h2>
<p class="mt-2 text-lg leading-8 text-gray-400">Highly skilled and open to collaboration.</p>
</div>
<div class="mx-auto mt-10 grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 border-t border-gray-700 pt-10 sm:mt-16 sm:pt-16 lg:mx-0 lg:max-w-none md:grid-cols-2">
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold mb-4"><i class="fas fa-user-tie text-4xl mr-4 text-white"></i>Professional Profile</h3>
<p class="text-gray-400 mb-2">Senior Research Engineer with a focus on solving complex problems in natural language processing and network science.</p>
<p class="text-gray-400">I have a strong background in developing AI-powered solutions for legal, climate, and music industries.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold mb-4"><i class="fas fa-lightbulb text-4xl text-white mr-4"></i>Current Interests</h3>
<div class="space-y-3">
<div class="flex items-start">
<i class="fas fa-toolbox text-blue-200 mt-1 mr-3"></i>
<p class="text-gray-400">Integrating AI technologies into specialised domains.</p>
</div>
<div class="flex items-start">
<i class="fas fa-project-diagram text-yellow-200 mt-1 mr-3"></i>
<p class="text-gray-400">Developing innovative applications of knowledge graphs.</p>
</div>
<div class="flex items-start">
<i class="fas fa-robot text-red-200 mt-1 mr-3"></i>
<p class="text-gray-400">Foundational research in information retrieval and language modelling.</p>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="py-24 sm:py-32">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div class="mx-auto max-w-2xl text-center">
<h2 class="text-3xl font-bold tracking-tight text-white sm:text-4xl">Projects</h2>
<p class="mt-2 text-lg leading-8 text-gray-400">Innovative solutions in AI, legal tech, and data science.</p>
</div>
<div class="mx-auto mt-10 grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 border-t border-gray-700 pt-10 sm:mt-16 sm:pt-16 lg:mx-0 lg:max-w-none lg:grid-cols-2">
<!-- vLex -->
<div class="flex flex-col h-full bg-gray-800 p-6 rounded-lg bg-gray-800 p-6 rounded-lg">
<div class="flex items-center gap-x-4 text-xs">
<span class="text-gray-500">2024 - Present</span>
<span class="relative z-10 rounded-full px-3 py-1.5 font-medium text-gray-300 bg-gray-700 hover:bg-gray-600">AI Research</span>
</div>
<h3 class="mt-3 text-lg font-semibold leading-6 text-white group-hover:text-gray-300">
<a href="https://vlex.com/products/vincent-ai" class="hover:underline">
vLex: Legal Research and Workflows with Vincent AI
</a>
</h3>
<div class="flex-grow flex flex-col justify-between mt-5">
<div>
<p class="text-sm leading-6 text-gray-400">Developing Vincent AI, vLex's cutting-edge legal AI assistant.</p>
</div>
<div class="mt-6">
<a href="https://vlex.com/products/vincent-ai" class="inline-block px-4 py-2 bg-white text-gray-900 rounded-full text-sm font-semibold hover:bg-gray-200 transition-colors">
<i class="fas fa-external-link-alt mr-2"></i>Learn more
</a>
</div>
</div>
<div class="mt-6 flex flex-col sm:flex-row items-center">
<img src="vlex-logo.png" alt="vLex Logo" class="h-20 w-auto mb-2 sm:mb-0 sm:mr-2">
<span class="text-sm text-gray-400 text-center sm:text-left">Your ultimate legal platform.</span>
</div>
</div>
<!-- CLARA -->
<div class="flex flex-col h-full bg-gray-800 p-6 rounded-lg bg-gray-800 p-6 rounded-lg">
<div class="flex items-center gap-x-4 text-xs">
<span class="text-gray-500">2023 - Present</span>
<span class="relative z-10 rounded-full text-gray-300 bg-gray-700 hover:bg-gray-600 px-3 py-1.5 font-medium text-gray-300">AI Research</span>
</div>
<h3 class="mt-3 text-lg font-semibold leading-6 text-white group-hover:text-gray-300">
<a href="https://clara-research.com/" class="hover:underline">
CLARA: AI-Powered Climate Litigation Research
</a>
</h3>
<div class="flex-grow flex flex-col justify-between mt-5">
<div>
<p class="text-sm leading-6 text-gray-400">Leading the development of an AI-powered chatbot for climate litigation research, utilising RAG and LLMs at the University of Oxford.</p>
</div>
<div class="mt-6">
<a href="https://clara-research.com/" class="inline-block px-4 py-2 bg-white text-gray-900 rounded-full text-sm font-semibold hover:bg-gray-200 transition-colors">
<i class="fas fa-external-link-alt mr-2"></i>Try it
</a>
</div>
</div>
<div class="mt-6 flex flex-col sm:flex-row items-center">
<img src="oxford-logo.png" alt="University of Oxford Logo" class="h-20 w-auto mb-2 sm:mb-0 sm:mr-2">
<span class="text-sm text-gray-400 text-center sm:text-left">In collaboration with the University of Oxford</span>
</div>
</div>
</div>
</div>
</section>
<section id="work" class="py-24 sm:py-32">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div class="mx-auto max-w-2xl text-center">
<h2 class="text-3xl font-bold tracking-tight text-white sm:text-4xl">Career Timeline</h2>
<p class="mt-2 text-lg leading-8 text-gray-400">Roles I have had over the years.</p>
</div>
<div class="mx-auto mt-10 max-w-2xl border-t border-gray-700 pt-10 sm:mt-16 sm:pt-16 lg:mx-0 lg:max-w-none">
<div class="relative">
<!-- Timeline line -->
<div class="absolute left-0 -ml-0.5 md:left-1/2 top-0 h-full w-1 bg-white md:ml-0 md:transform md:-translate-x-1/2"></div>
<!-- Timeline items -->
<div class="mb-8 flex flex-col md:flex-row justify-between items-start md:items-center w-full right-timeline">
<div class="order-1 w-full md:w-5/12 hidden md:block"></div>
<div class="z-20 flex items-center order-1 bg-white shadow-xl w-8 h-8 md:w-12 md:h-12 rounded-full absolute left-0 -ml-4 md:ml-0 md:left-1/2 md:-translate-x-1/2">
<i class="fas fa-balance-scale text-sm md:text-xl text-gray-900 mx-auto"></i>
</div>
<div class="order-1 bg-gray-800 rounded-lg shadow-xl w-full md:w-5/12 px-6 py-4 ml-0 md:ml-0">
<h3 class="mb-3 font-bold text-gray-400 text-lg">vLex</h3>
<h4 class="mb-3 font-bold text-white text-xl">Senior Research Engineer</h4>
<h4 class="mb-3 font-bold text-gray-400 text-sm">05/2024 - Present</h4>
<p class="text-sm text-gray-300 mb-3">Founding engineer of vLex's Legal AI R&D team, focusing on integrating AI technologies into legal solutions.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-brain mr-1"></i> NLP
</span>
<span class="bg-green-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-balance-scale mr-1"></i> Legal AI
</span>
<span class="bg-yellow-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-project-diagram mr-1"></i> Knowledge Graphs
</span>
<span class="bg-orange-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-cogs mr-1"></i> MLOps
</span>
<span class="bg-red-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-robot mr-1"></i> RAG
</span>
</div>
</div>
</div>
<div class="mb-8 flex flex-col md:flex-row-reverse justify-between items-start md:items-center w-full left-timeline">
<div class="order-1 w-5/12 hidden md:block"></div>
<div class="z-20 flex items-center order-1 bg-white shadow-xl w-8 h-8 md:w-12 md:h-12 rounded-full absolute left-0 -ml-4 md:ml-0 md:left-1/2 md:-translate-x-1/2">
<i class="fas fa-university text-sm md:text-xl text-gray-900 mx-auto"></i>
</div>
<div class="order-1 bg-gray-800 rounded-lg shadow-xl w-full md:w-5/12 px-6 py-4 md:mr-0">
<h3 class="mb-3 font-bold text-gray-400 text-lg">University of Oxford</h3>
<h4 class="mb-3 font-bold text-white text-xl">Researcher</h4>
<h4 class="mb-3 font-bold text-gray-400 text-sm">09/2023 - Present (part-time)</h4>
<p class="text-sm text-gray-300 mb-5">Leading the development of an AI-powered chatbot for climate litigation research, utilising RAG and LLMs.</p>
<a href="https://clara-research.com/" class="inline-block px-4 py-2 bg-white text-gray-900 rounded-full text-sm font-semibold hover:bg-gray-200 transition-colors mb-5">
<i class="fas fa-external-link-alt mr-2"></i>Try it
</a>
<div class="flex flex-wrap gap-2">
<span class="bg-red-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-robot mr-1"></i> RAG
</span>
<span class="bg-blue-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-brain mr-1"></i> NLP
</span>
<span class="bg-teal-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-globe-americas mr-1"></i> Climate Research
</span>
<span class="bg-orange-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-cogs mr-1"></i> MLOps
</span>
</div>
</div>
</div>
<div class="mb-8 flex flex-col md:flex-row justify-between items-start md:items-center w-full right-timeline">
<div class="order-1 w-5/12 hidden md:block"></div>
<div class="z-20 flex items-center order-1 bg-white shadow-xl w-8 h-8 md:w-12 md:h-12 rounded-full absolute left-0 -ml-4 md:ml-0 md:left-1/2 md:-translate-x-1/2">
<i class="fas fa-briefcase text-sm md:text-xl text-gray-900 mx-auto"></i>
</div>
<div class="order-1 bg-gray-800 rounded-lg shadow-xl w-full md:w-5/12 px-6 py-4">
<h3 class="mb-3 font-bold text-gray-400 text-lg">Mishcon de Reya</h3>
<h4 class="mb-3 font-bold text-white text-xl">Data Scientist</h4>
<h4 class="mb-3 font-bold text-gray-400 text-sm">05/2022 - 05/2024</h4>
<p class="text-sm text-gray-300 mb-3">Revolutionised music rights workflows, built knowledge graphs, and implemented advanced record linkage systems. Advanced MLOps practices and collaborated on end-to-end ML applications.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-yellow-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-project-diagram mr-1"></i> Knowledge Graphs
</span>
<span class="bg-pink-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-link mr-1"></i> Record Linkage
</span>
<span class="bg-indigo-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-eye mr-1"></i> Computer Vision
</span>
<span class="bg-blue-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-brain mr-1"></i> NLP
</span>
<span class="bg-orange-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-cogs mr-1"></i> MLOps
</span>
</div>
</div>
</div>
<div class="mb-8 flex flex-col md:flex-row-reverse justify-between items-start md:items-center w-full left-timeline">
<div class="order-1 w-5/12 hidden md:block"></div>
<div class="z-20 flex items-center order-1 bg-white shadow-xl w-8 h-8 md:w-12 md:h-12 rounded-full absolute left-0 -ml-4 md:ml-0 md:left-1/2 md:-translate-x-1/2">
<i class="fas fa-landmark text-sm md:text-xl text-gray-900 mx-auto"></i>
</div>
<div class="order-1 bg-gray-800 rounded-lg shadow-xl w-full md:w-5/12 px-6 py-4 md:mr-0">
<h3 class="mb-3 font-bold text-gray-400 text-lg">Government Digital Service</h3>
<h4 class="mb-3 font-bold text-white text-xl">Data Scientist</h4>
<h4 class="mb-3 font-bold text-gray-400 text-sm">08/2021 - 05/2022</h4>
<p class="text-sm text-gray-300 mb-3">Enhanced GOV.UK's content connectivity and user feedback analysis. Applied advanced NLP techniques and graph algorithms to improve digital services.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-yellow-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-project-diagram mr-1"></i> Knowledge Graphs
</span>
<span class="bg-blue-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-brain mr-1"></i> NLP
</span>
<span class="bg-fuchsia-200 text-gray-700 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-users mr-1"></i> Community Detection
</span>
</div>
</div>
</div>
</div>
</section>
<section id="blogs" class="py-24 sm:py-32">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div class="mx-auto max-w-2xl text-center">
<h2 class="text-3xl font-bold tracking-tight text-white sm:text-4xl">Blogs</h2>
<p class="mt-2 text-lg leading-8 text-gray-400">Writings about me and my work.</p>
</div>
<div class="mx-auto mt-10 grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 border-t border-gray-700 pt-10 sm:mt-16 sm:pt-16 lg:mx-0 lg:max-w-none lg:grid-cols-2">
<article class="flex max-w-xl flex-col items-start justify-between bg-gray-800 p-6 rounded-lg bg-gray-800 p-6 rounded-lg">
<div class="flex items-center gap-x-4 text-xs">
<time datetime="2025-09-08" class="text-gray-500">08 September, 2025</time>
<a href="#" class="relative z-10 rounded-full px-3 py-1.5 font-medium text-gray-300 bg-gray-700 hover:bg-gray-600">vLex</a>
</div>
<div class="group relative">
<h3 class="mt-3 text-lg font-semibold leading-6 text-white group-hover:text-gray-300">
<a href="https://vlex.com/news/People-Behind-Vincent-Jake-Rutherford">
<span class="absolute inset-0"></span>
The People Behind Vincent
</a>
</h3>
<p class="mt-5 line-clamp-3 text-sm leading-6 text-gray-400">The People Behind Vincent is a new series designed to shine a light on the talented people driving innovation at vLex. First up is Senior Research Engineer, Jake Rutherford. Discover what drew him to legal tech, surprising facts, and his thoughts on the future.</p>
</div>
<div class="relative mt-8 flex items-center gap-x-4">
<img src="portrait-removebg.png" alt="Jake Rutherford" class="h-10 w-10 rounded-full bg-gray-800">
<div class="text-sm leading-6">
<p class="font-semibold text-white">
<a href="https://vlex.com/news/People-Behind-Vincent-Jake-Rutherford">
<span class="absolute inset-0"></span>
Jake Rutherford
</a>
</p>
<p class="text-gray-400">Senior Research Engineer</p>
</div>
</div>
</article>
<article class="flex max-w-xl flex-col items-start justify-between bg-gray-800 p-6 rounded-lg bg-gray-800 p-6 rounded-lg">
<div class="flex items-center gap-x-4 text-xs">
<time datetime="2025-03-24" class="text-gray-500">24 March, 2025</time>
<a href="#" class="relative z-10 rounded-full px-3 py-1.5 font-medium text-gray-300 bg-gray-700 hover:bg-gray-600">University of Oxford</a>
</div>
<div class="group relative">
<h3 class="mt-3 text-lg font-semibold leading-6 text-white group-hover:text-gray-300">
<a href="https://www.smithschool.ox.ac.uk/news/climate-law-new-ai-tool-produces-fast-accurate-reports-fossil-fuel-company-activities">
<span class="absolute inset-0"></span>
Climate Law: New AI Tool Produces Fast, Accurate Reports on Fossil Fuel Company Activities
</a>
</h3>
<p class="mt-5 line-clamp-3 text-sm leading-6 text-gray-400">A new open access AI tool created by researchers at the University of Oxford's Sustainable Law Programme produces reports on the historical activities of fossil fuel companies in response to user prompts.</p>
</div>
<div class="relative mt-8 flex items-center gap-x-4">
<img src="portrait-removebg.png" alt="Jake Rutherford" class="h-10 w-10 rounded-full bg-gray-800">
<div class="text-sm leading-6">
<p class="font-semibold text-white">
<a href="https://www.smithschool.ox.ac.uk/news/climate-law-new-ai-tool-produces-fast-accurate-reports-fossil-fuel-company-activities">
<span class="absolute inset-0"></span>
Jake Rutherford
</a>
</p>
<p class="text-gray-400">Researcher</p>
</div>
</div>
</article>
<article class="flex max-w-xl flex-col items-start justify-between bg-gray-800 p-6 rounded-lg bg-gray-800 p-6 rounded-lg">
<div class="flex items-center gap-x-4 text-xs">
<time datetime="2022-05-16" class="text-gray-500">1 June, 2022</time>
<a href="#" class="relative z-10 rounded-full px-3 py-1.5 font-medium text-gray-300 bg-gray-700 hover:bg-gray-600">Civil Service</a>
</div>
<div class="group relative">
<h3 class="mt-3 text-lg font-semibold leading-6 text-white group-hover:text-gray-300">
<a href="https://gds.blog.gov.uk/2022/05/16/intern-to-data-scientist-the-civil-services-innovative-tech-talent-pipeline/">
<span class="absolute inset-0"></span>
Intern to Data Scientist: the Civil Service's Innovative Tech Talent Pipeline
</a>
</h3>
<p class="mt-5 line-clamp-3 text-sm leading-6 text-gray-400">Exploring my journey from intern to data scientist in the UK Civil Service, highlighting the innovative approaches to nurturing tech talent in government.</p>
</div>
<div class="relative mt-8 flex items-center gap-x-4">
<img src="portrait-removebg.png" alt="Jake Rutherford" class="h-10 w-10 rounded-full bg-gray-800">
<div class="text-sm leading-6">
<p class="font-semibold text-white">
<a href="https://gds.blog.gov.uk/author/jake-rutherford-data-scientist-government-digital-service/">
<span class="absolute inset-0"></span>
Jake Rutherford
</a>
</p>
<p class="text-gray-400">Data Scientist</p>
</div>
</div>
</article>
</div>
</div>
</section>
</div>
</main>
<footer id="contact" class="py-12 px-6">
<div class="max-w-6xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-8">Contact</h2>
<p class="text-gray-400 mb-4">Interested in working together? Let's connect!</p>
<a href="mailto:jakerutherford@outlook.com" class="bg-white text-gray-900 px-6 py-3 rounded-full font-semibold hover:bg-gray-200 transition duration-300">Get in touch</a>
<p class="mt-8">© 2025 Jake Rutherford. All rights reserved.</p>
</div>
</footer>
<script>
const canvas = document.getElementById('particles-canvas');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
class Particle {
constructor() {
this.x = Math.random() * canvas.width;
this.y = canvas.height + Math.random() * 200;
this.size = Math.random() * 2 + 1;
this.speedY = Math.random() * 1 + 0.5;
}
update() {
this.y -= this.speedY;
if (this.y < 0) {
this.y = canvas.height + Math.random() * 200;
this.x = Math.random() * canvas.width;
}
}
draw() {
ctx.fillStyle = 'rgba(255, 255, 255, 0.3)';
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fill();
}
}
const particles = [];
const particleCount = 20;
for (let i = 0; i < particleCount; i++) {
particles.push(new Particle());
}
function animate() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
for (const particle of particles) {
particle.update();
particle.draw();
}
requestAnimationFrame(animate);
}
animate();
window.addEventListener('resize', () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
});
</script>
</body>
</html>