-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (71 loc) · 4.28 KB
/
Copy pathindex.html
File metadata and controls
78 lines (71 loc) · 4.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Albert Weng | ACO PhD Student at Georgia Tech</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Albert Weng</h1>
<img src="image.png" align="right" alt="Image of Albert" style="width: calc(var(--responsive-width) * 0.3); margin: 0px 0px 0px calc(var(--responsive-width) * 0.025);">
<p>I am a second year PhD student in Computer Science at the Georgia Institute of Technology, in the <a href="https://aco.gatech.edu/">Algorithms, Combinatorics, and Optimization</a> program. I am fortunate to be advised by <a href="https://jvdbrand.com">Jan van den Brand.</a></p>
<p>Previously, I was an undergrad at the University of Washington and worked with <a href="https://homes.cs.washington.edu/~shayan/">Shayan Oveis Gharan.</a></p>
<p>My research interests lie broadly in convex optimization, combinatorial optimization, and theoretical computer science. I am especially interested in the analysis of interior point methods.</p>
<p>I help organize the <a href="https://sites.google.com/view/aco-student-seminar-gatech/home">ACO Student Seminar</a>. Please feel free to reach out if you are interested in giving a talk!</p>
<p id="random-text"></p>
<script>
const sentences = [
" dealing into yakuman.",
" breaking my combo in rhythm games.",
" at my piano, playing some of Chopin's latest hits.",
" meticulously planning my bike rides to occur on the rainiest day possible.",
" trying to figure out what the word \"combinatorial\" means.",
"."
];
// vibe coded
const REFRESH_LIMIT = 10; // Number of consecutive refreshes to trigger
const TIME_WINDOW_MS = 5000; // Max time between refreshes (5 seconds)
// Get stored count and last visit time
let refreshCount = parseInt(localStorage.getItem('refreshCount') || '0', 10);
let lastVisit = parseInt(localStorage.getItem('lastVisit') || '0', 10);
let now = Date.now();
// Check if last visit was within 5 seconds
if (now - lastVisit <= TIME_WINDOW_MS) {
refreshCount++;
} else {
refreshCount = 1; // Reset count if too much time passed
}
// Save the updated count and timestamp
localStorage.setItem('refreshCount', refreshCount);
localStorage.setItem('lastVisit', now);
// Show alternate text if limit reached
if (refreshCount >= REFRESH_LIMIT) {
document.getElementById("random-text").innerHTML = `Outside of research I might find you. <span style="font-size:0.7em;">You have clicked refresh 10 times in a row! Thank you for your interest in my antics.</span>`;
} else {
document.getElementById("random-text").innerText = "Outside of research you might find me" + sentences[Math.floor(Math.random() * sentences.length)];
}
</script>
<h2>Recent/Selected Publications</h2>
<ul>
<li><em>Adaptive Matrix Sparsification and Applications to Empirical Risk Minimization</em> <br>Yang P. Liu, Richard Peng, Colin Tang, Albert Weng, Junzhao Yang<br><i>In Submission</i> [<a href="https://arxiv.org/abs/2512.02003">Arxiv</a>] [<a href="erm.pdf">Slides</a>]</li>
</ul>
<ul>
<li><em>Computing Flows in Subquadratic Space</em> <br>Jan van den Brand, Zhao Song, Albert Weng<br><i>ICALP 2026</i> [<a href="https://arxiv.org/abs/2605.09547">Arxiv</a>]<!--[<a href="#">Slides</a>]--></li>
</ul>
<h2>Teaching</h2>
<ul>
<li>TA for Algorithms at GT [Fall 2025]</li>
<li>TA for Algorithms at UW [Fall 2022-Spring 2024] (head TA in final 2 terms)</li>
</ul>
<h2>Other</h2>
<ul>
<li>Reviewer for: JACM, STOC 2026, SOSA 2026</li>
</ul>
<h2>Contact</h2>
You can reach me at albweng@gatech.edu.
</body>
</html>