summaryrefslogtreecommitdiff
path: root/index.html
blob: 887574b317927119f086e8452de2e4afd11b7288 (plain)
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
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width">
    <title>Anna Knörr</title>
</head>

<body >
    <p>Hi, my name is Anna. I'm currently a graduate student in theoretical physics at <a href="https://perimeterinstitute.ca/people/anna-knorr">Perimeter Institute</a> in Waterloo, Canada.<p>
    <p> So far, I've moved around a bit: born in Austria, toddler years on Huntington Beach in sunny California, junior school near Munich, middle school in the little German city with the
    <a href="https://www.visit-burghausen.com/en">longest castle in the world</a>. Sixth Form wearing a tie near London, couple of months learning 中文 in Shanghai. Bachelor's degree in physics from ETH
    in Zurich. It's been a journey and it's all but over. I am thankful for this privilege and try to put the things I've learned on this road to good use.</p>
    <p> A good conversation with a stranger, a smile from a person I care about, a round of yoga to feel my neurons tingle and a dose of 100% dark chocolate. Beautiful day. I try to not take life too seriously,    which seems to make me focus with intense amusement on the projects that fill my life. Oh, and it's likely you'll find me in a handstand.</p>
    <p>You can contact me here: <a href = "an.kn@protonmail.ch">an.kn@protonmail.ch</a></p>

<div align = "center">
<img width = "250" src = "img/AK_Profile.jpg">
</div>

<button id="Button!">Button</button>

    <h4> Sustainability Projects:</h4>
    <ul>
        <li><a href="https://ssc.ethz.ch/">SSC (Student Sustainability Commission, ETH Zurich)</a></li>
        <li><a href="https://www.phys.ethz.ch/the-department/sustainability/nhw2021.html">Sustainability Week @DPHYS 2021</a></li>
        <li><a href="https://www.phys.ethz.ch/news-and-events/internal-news/d-phys-intern/2021/06/klima-ich-habe-keine-zeit-gilt-nicht.html">Physicists for Sustainability Interview</a></li>
    </ul>
    <h4> Fun with Math: </h4>
    <ul>
        <li><a href="https://golem.ph.utexas.edu/category/2021/08/cospans_and_computation_part_1.html#more">A Socratic Dialogue on Category Theory</a></li>
    </ul>
    <h4> Some magazines I have produced: </h4>
    <ul>
        <li><a href="https://vmp.ethz.ch/secure/documents/brave.pdf"> Brave New EarTH</a></li>
        <li><a href="https://vmp.ethz.ch/secure/documents/hitchhiker.pdf">The Hitchhiker's Guide to the ETH</a></li>

        <li><a href="https://vmp.ethz.ch/secure/documents/kunterbunt.pdf"> KUNTERBUNT</a></li>
        <li><a href="https://ssc.ethz.ch/assets/earth_magazine.pdf"> the EarTH Magazin - Edition "Cooperation"</a></li>
    </ul>

    <div class="collapsible-wrapper">
            <h3 class="collapsible">Papers</h3>
    </div>
    <div class="collapsible-content">
            <ul class="projectlist">
                <li>
                    Addario-Berry, L., <b>Brandenberger, A. M.</b>, Hamdan, J. and Kerriou, C. <a
                        href="https://arxiv.org/pdf/2105.03195.pdf" target="_blank">Universal height and width bounds for random trees</a>. 
                        arXiv:2105.03195 [math.PR] (2020). Submitted May 2021.
                </li>
            </ul>
    </div>
</body>

    <h4>Online Whiteboard</h4>
    <input type="text" id="whiteboard_name" placeholder="Whiteboard name">
    <input type="text" id="user_name" placeholder="Username">
    <button id="Whitebord_button" onclick="redirect_whiteboard()">Open whiteboard</button>

<script>
    function redirect_whiteboard() {
        let user = document.getElementById("user_name").value;
        let id = document.getElementById("whiteboard_name").value;
        window.location = "https://kobert.dev/whiteboard/?whiteboardid=" + id + "&username=" + user;
    }
</script>

</html>