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

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Matthieu Pignolet @ puffer.fish</title>
    <meta content="Matthieu Pignolet @ puffer.fish" property="og:title" />
    <meta content="Personal website of Matthieu Pignolet on puffer.fish" property="og:description" />
    <meta content="https://puffer.fish/~matthieu" property="og:url" />
    <meta content="https://puffer.fish/~matthieu/haibara.png" property="og:image" />
    <meta content="#00f" data-react-helmet="true" name="theme-color" />

    <link rel="stylesheet" href="98.css">
    <style>
        .surface {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            width: 100vw;
        }

        .window {
            width: 50%;
        }

        .bottom {
            width: 100%;
            margin-top: auto;
        }

        .window-body {
            height: 100%;
            display: flex;
            flex-direction: column;

            word-wrap: break-word;
        }

        a {
            text-decoration: none;
        }
    </style>
</head>

<body class="surface">

    <div class="window">
        <div class="title-bar">
            <div class="title-bar-text">Matthieu Pignolet</div>
            <div class="title-bar-controls">
                <button aria-label="Minimize"></button>
                <button aria-label="Maximize"></button>
                <button aria-label="Close"></button>
            </div>
        </div>
        <div class="window-body">
            <p>Welcome ! I'm Matthieu Pignolet</p>
            <p>
                Currently studying networking & programming, I inspire to excell in my various projects.
                I'm currently the network & system administrator for Pufferfish.
            </p>
            <p>
                I really enjoy opensource software such as Linux, OpenLDAP, MIT Kerberos, Proxmox and many other,
                I also enjoy solutions that are scale able, such as containers, Kubernetes and other cloud technologies
            </p>
            <p>
                I daily run Linux (Fedora 42 at this time) on a Lenovo ThinkPad P15 Gen 2i
            </p>
            <p>
                Feel free to follow me on other foss platforms listed below.
            </p>

            <div class="bottom">

                <a href="mailto:matthieu@puffer.fish">
                    <button>
                        PufferFish email
                    </button>
                </a>


                <a rel="me" href="https://mastodon.puffer.fish/@matthieu">
                    <button>
                        Mastodon
                    </button>
                </a>
                <a rel="me" href="https://forgejo.puffer.fish/matthieu">
                    <button>
                        Forgejo
                    </button>
                </a>

                <a rel="me" href="https://github.com/MatthieuCoder">
                    <button>
                        GitHub
                    </button>
                </a>
                <a href="gpg.asc">
                    <button>
                        GPG Key
                    </button>
                </a>

                <a href="LICENSES">
                    <button>
                        View website licenses
                    </button>
                </a>
            </div>
        </div>

</body>

</html>