forked from vbaraku/SYSTRON
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpeople.html
More file actions
110 lines (94 loc) · 4.37 KB
/
people.html
File metadata and controls
110 lines (94 loc) · 4.37 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
---
layout: page
title: About the SYSTRON Lab
background: "/img/systron-team.jpg"
---
<!-- Escapes page container -->
</div></div></div>
<div class="container-fluid red-banner mx-auto text-center">
<section role="region" aria-labelledby="about-us" class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<h2 id="about-us">Who We Are</h2>
<p>
The SYSTRON Lab is an established research laboratory with a multidisciplinary team of around 20 researchers, focused on advancing secure, resilient, and intelligent distributed systems for future digital infrastructure. Our work addresses key UK and global priorities across telecommunications, IoT, edge-cloud systems, AI-native networking, Internet governance, and cyber security, with a strong emphasis on interoperable, deployable, sustainable, and societally relevant solutions.
</p>
<h2>What We Research</h2>
<p>
We tackle fundamental challenges facing modern networked systems, including scalability under uncertainty, trust and security in open and autonomous systems, machine-speed automation, and resilience across heterogeneous and interconnected environments. Our research integrates foundational methods with experimental validation, ensuring that new ideas are rigorously tested against real-world constraints and contribute to both scientific understanding and practical capability.
</p>
<h2>Our Collaborations</h2>
<p>
We work closely with industry partners, standards bodies, and national and international research programmes, contributing to areas such as 5G/6G security, Open RAN, zero-trust and zero-touch network management, edge intelligence, and sustainable digital systems. Through these collaborations, we translate research outcomes into economic, societal, and policy impact, supporting the UK's leadership in secure digital infrastructure and future communications.
</p>
<h2>Our Aims</h2>
<p>
Alongside research excellence, Systron Lab is committed to capacity building, skills development, and inclusive research practice, supporting doctoral and postdoctoral researchers and fostering interdisciplinary collaboration. We aim to create an open, supportive environment where researchers at all career stages can thrive, while delivering trusted, adaptive, and resilient systems by design that have impact beyond academia.
</p>
</div>
</div>
</section>
</div>
<div class="col-lg-8 col-md-10 mx-auto">
{% assign people = site.people | sort: "priority" | reverse %} {% for person in
people %} {% if person.former %}{% continue %}{% endif %}
<article class="people-preview">
<div class="row">
<div class="col-md-3">
{% if person.photo %}
<img
class="img-thumbnail img-fluid border border-0 rounded-circle"
src="{{ person.photo | prepend: site.baseurl | replace: '//', '/' }}"
/>
{% else %}
<img
class="img-thumbnail img-fluid border border-0 rounded-circle"
src="/img/people/placeholder.png"
/>
{% endif %}
</div>
<div class="col-md-9">
<h2 class="people-title">
<span>{{ person.name }}</span
><span style="float: right">
{% if person.site %}
<a href="{{ person.site }}" target="_blank" rel="noopener noreferrer">
<i
style="color: #609732"
class="fas fa-external-link-alt"
aria-hidden="true"
></i>
</a>
{% endif %}</span
>
</h2>
<h3 class="people-subtitle">{{ person.role }}</h3>
<p>{{ person.content | strip_html }}</p>
</div>
</div>
</article>
<hr />
<br />
{% endfor %}
<article class="people-preview">
<h2 class="people-title text-center">Former Members</h2>
<ul class="list-group">
{% for person in people %} {% if person.former %}
<li class="list-group-item">
<h4>
<span>{{ person.name }} ({{ person.role }})</span> {% if person.site %}
<span style="float: right">
<a href="{{ person.site }}" target="_blank" rel="noopener noreferrer">
<i
style="color: #609732"
class="fas fa-external-link-alt"
aria-hidden="true"
></i>
</a>
</span>
{% endif %}
</h4>
</li>
{% endif %} {% endfor %}
</ul>
</article>