summaryrefslogtreecommitdiff
path: root/index.html
blob: 875260ea4cd5301dbfde530e087e4d18c66fd438 (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>subh.space</title>
    <style>
        :root {
            --bg-outer: #1d2021;
            --bg-inner: #282828;
            --fg: #ebdbb2;
            --gray: #928374;
            --yellow: #fabd2f;
            --aqua: #8ec07c;
            --blue: #83a598;
            --red: #fb4934;
            --line: #3c3836;
        }

        body {
            background-color: var(--bg-outer);
            color: var(--fg);
            font-family: 'Iosevka Nerd Font Propo'; 
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        header {
            padding: 2.5rem 1rem;
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        header a {
            color: var(--aqua);
            text-decoration: none;
            font-weight: bold;
        }

        header a:hover {
            text-decoration: underline;
        }

        .container {
            background-color: var(--bg-inner);
            width: 90%;
            max-width: 750px;
            padding: 3rem;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        h1 {
            color: var(--yellow);
            font-size: 2.2rem;
            margin-top: 0;
            margin-bottom: 1.5rem;
        }

        p {
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

        a {
            color: var(--blue);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        pre {
            background-color: var(--bg-outer);
            padding: 1rem;
            border-radius: 4px;
            border: 1px solid var(--line);
            overflow-x: auto;
            margin: 1.5rem 0;
        }

        code {
            color: var(--blue);
            font-size: 0.9rem;
            word-break: break-all;
            white-space: pre-wrap;
        }

        h2 {
            color: var(--yellow);
            font-size: 1.5rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }

        .list-container {
            display: flex;
            flex-direction: column;
        }

        .list-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px dotted var(--line);
            text-decoration: none;
        }

        .list-item:first-child {
            border-top: 1px dotted var(--line);
        }

        .list-item:hover {
            background-color: #32302f;
        }

        .item-title {
            color: var(--aqua);
        }

        .item-date {
            color: var(--gray);
            font-size: 0.9rem;
        }

        footer {
            margin: 3rem 0;
            color: var(--gray);
            font-size: 0.85rem;
            text-align: center;
        }
    </style>
</head>
<body>

    <header>
        <a href="#">home</a>
        <a href="https://git.subh.space">git</a>
        <a href="https://github.com/5epi0l">github</a>
        <a href="https://notes.subh.space">notes</a>
        <a href="https://www.hackthebox.com">hackthebox</a>
        <a href="https://search.subh.space">search</a>
    </header>

    <main class="container">
        <h1>Hi, I’m subh</h1>

        <p>
        A 20-year old interested in <strong>Linux</strong>, <strong>Computer Security</strong> and <strong>philosophy</strong>. In my spare time, I like to read philosophy, tinker with my system and self-host stuff and write about them incase i forget how to do them in the future, and also to serve as minimal tutorials for anyone interested in the same. 
        </p>
        <p>If you're also one of those soyboys who use proprietary software, you should start transitioning to FOSS and self-hosting. It is good for your privacy (even if you have nothing to hide) and also a good learning exercise. At the end of the day, it is always advantageous to be in control of your data.</p>

        <p>Become based, self-host your own shit.</p>
        <p>Reach out to me at <a href="mailto:subh@subh.space">subh@subh.space</a></p>

        <p>Incase you're not a big fan of mail, drop a text on session.</p>
        
        <pre><code class="language-shell"># Account ID 
054290431f91025e295290b3dd7136d8c290a174ed07292411669bfe605934f46e</code></pre>

        <p>You can find my public key <a href="https://git.subh.space/subh-space.git/plain/pubkey.txt">here.</a></p>

        <h2>Stuff</h2>

        <div class="list-container">
            <a href="stuff/mullvad-dot.html" class="list-item">
                <span class="item-title">DNS over TLS (DoT) on linux with mullvad</span>
                <span class="item-date">2026-04-14</span>
            </a>
            <a href="stuff/usb-notif-linux.html" class="list-item">
                <span class="item-title">USB notifications with udev</span>
                <span class="item-date">2026-04-14</span>
            </a>
            <a href="stuff/luks-encryption.html" class="list-item">
                <span class="item-title">Drive encryption with LUKS and cryptsetup</span>
                <span class="item-date">2026-04-14</span>
            </a>
            <a href="stuff/dnsforge-dot-mac.html" class="list-item">
                <span class="item-title">DNS over TLS (DoT) on mac with dnsforge</span>
                <span class="item-date">2026-04-14</span>
            </a>
            <a href="stuff/searxng-docker.html" class="list-item">
                <span class="item-title">Self-Hosting searxNG with Docker</span>
                <span class="item-date">2026-04-16</span>
            </a>
        </div>
    </main>

    <footer>
        © 2026 subh.space
    </footer>

</body>
</html>