Skip to content

Commit 1615885

Browse files
Initial commit
0 parents  commit 1615885

File tree

8 files changed

+109
-0
lines changed

8 files changed

+109
-0
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Hugo output
2+
/public/
3+
/resources/
4+
5+
# Hugo cache
6+
.hugo_build.lock
7+
hugo_stats.json
8+
9+
# OS files
10+
.DS_Store
11+
Thumbs.db
12+
13+
# IDEs
14+
.vscode/
15+
16+
# Log and temp files
17+
*.log
18+
*.tmp

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/PaperMod"]
2+
path = themes/PaperMod
3+
url = https://github.com/adityatelange/hugo-PaperMod

.hugo_build.lock

Whitespace-only changes.

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

content/project.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
+++
2+
date = '2025-06-16T20:46:09+01:00'
3+
draft = true
4+
title = 'Project'
5+
layout = "page"
6+
+++
7+
8+
This MSc group project is a collaboration between UCL and IBM focused on using AI - particularly Large Language Models (LLMs) — to assist in the modernisation of legacy software systems.
9+
10+
Details TBD

content/team.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
+++
2+
date = '2025-06-16T20:44:48+01:00'
3+
draft = false
4+
title = 'Team'
5+
layout = "page"
6+
+++
7+
8+
We are a team of MSc Software Systems Engineering students at University College London, working with IBM on LLM-driven software refactoring.
9+
10+
## Meet the Team
11+
### Abhaya Ghimire
12+
Software engineer focused on Python and JavaScript, with a strong grasp of full-stack development.
13+
[🔗 GitHub](https://github.com/Abhayaghmr11) | [💼 LinkedIn](https://www.linkedin.com/in/abhaya-raj-ghimire-0579b2228)
14+
### Avinash Mallick
15+
DevOps and systems engineer with expertise in high-performance computing and C#.
16+
[🔗 GitHub](https://github.com/avimallick) | [💼 LinkedIn](https://www.linkedin.com/in/avinash-mallick-b272b6214/)
17+
### Maoquin Lei
18+
DevOps specialist with deep Python knowledge and a focus on automation and infrastructure.
19+
[🔗 GitHub](https://github.com/ucabm57)
20+
### Vamsi Mukkamala
21+
AI/ML engineer experienced in applied machine learning and workflow analysis.
22+
[🔗 GitHub](https://github.com/vmc99) | [💼 LinkedIn](https://www.linkedin.com/in/vmc99/)
23+
### Gavriel Neuman
24+
Research-oriented engineer working at the intersection of AI and software systems.
25+
[🔗 GitHub](https://github.com/Gneuman99)
26+
### Andrei Constantin
27+
Team lead and engineer specialising in the .NET ecosystem and backend architecture.
28+
[🔗 GitHub](https://github.com/Andrei-Constantin-Programmer) | [💼 LinkedIn](https://linkedin.com/in/andrei-constantin-developer)
29+
30+
## University
31+
32+
**University College London (UCL)**
33+
Department of Computer Science
34+
[MSc Software Systems Engineering](https://www.ucl.ac.uk/prospective-students/graduate/taught-degrees/software-systems-engineering-msc)

hugo.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
baseURL = 'https://Andrei-Constantin-Programmer.github.io/ibm-ucl-blog/'
2+
languageCode = 'en-gb'
3+
title = 'IBM x UCL: LLM-Based Legacy Code Refactoring'
4+
theme = "PaperMod"
5+
defaultContentLanguage = "en"
6+
enableInlineShortcodes = true
7+
8+
[params]
9+
mainSections = ["posts"]
10+
ShowBreadCrumbs = true
11+
ShowReadingTime = true
12+
ShowPostNavLinks = true
13+
ShowCodeCopyButtons = true
14+
defaultTheme = "auto"
15+
16+
[pagination]
17+
pagerSize = 5
18+
19+
[[menu.main]]
20+
name = "Home"
21+
url = "/"
22+
weight = 1
23+
24+
[[menu.main]]
25+
name = "Posts"
26+
url = "/posts"
27+
weight = 2
28+
29+
[[menu.main]]
30+
name = "Project"
31+
url = "/project"
32+
weight = 3
33+
34+
[[menu.main]]
35+
name = "Team"
36+
url = "/team"
37+
weight = 4
38+

themes/PaperMod

Submodule PaperMod added at 5a46517

0 commit comments

Comments
 (0)