This repository has been archived by the owner on Dec 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtech.html
73 lines (70 loc) · 3.27 KB
/
tech.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville|Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Dosis" rel="stylesheet">
<script src='http://127.0.0.1:9001/js/socket.js'></script>
<title>Mannan Shukla | My Favorite Tech</title>
</head>
<body>
<div class = "wrapper">
<p class = "wordmark"> <a href = "index.html">Mannan Shukla</a></p>
<nav>
<a href = "myself.html" class = "links">About Myself</a>
<a class = "thing">|</a>
<a href = "tech.html" class = "links">My Favorite Tech</a>
<a class = "thing">|</a>
<a href = "ftc.html" class = "links">FTC Portfolio</a>
<a class = "thing">|</a>
<a href = "gallery.html" class = "links"> Gallery </a>
</nav>
</div>
<br>
<br>
<br>
<div class = "wrapper2">
<p class = "largeText">My Favorite Tech:</p>
<p class = "text">This is a collection of some of my favorite tech and what I use.</p>
<ul>
<li class = "text">Laptop: HP EliteBook Folio 9470m</li>
<p class = "smallText">
It is easy to upgrade, works well with Desktop Linux, had a pretty good keyboard and layout,
includes a pointing stick, is in the sweet spot for cheap ram (DDR3) and has enough power for whatever
I throw at it.
</p>
<li class = "text">Operating System: Void Linux</li>
<p class = "smallText">
Void Linux is an extremely minimal and fast distro. It uses runit as an init system rather than systemd
this mitigates the one point of failure and make boot times quick. Its package manager is quite unique and
void surprisingly supports flatpaks. Not to mention it's rolling release, so packages are usually quite recent.
</p>
<li class = "text">Window Manager: i3-gaps</li>
<p class = "smallText">
i3-gaps is my window manager, its tiling which means that floating windows are discouraged, this means no
screen real estate is wasted. Gaps were added to make it easier to tell between different windows. It is highly
configurable, fast and lightweight.
</p>
<li class = "text">Text Editor: Vim</li>
<p class="smallText">
vim is just a meme, that's actually why I use it. Also its included in every linux repo known to man.
</p>
<li class = "text">IEMs: Shure se315</li>
<p class = smallText>
The se315 are tuned to have a more balanced sound compared to the se215, they fit well in the ear and have
very good noise-isolating tips. They were also quite the steal for the price I got them at.
</p>
<li class = "text">Browser: Mozilla Firefox</li>
<p class = "smallText">
The bloated web requires a bloated browser, Chrome is a botnet. That's actually why I use Firefox.
</p>
<li class = "text">Storage Solution: 250GB Kingston a400</li>
<p class = "smallText">
If you find an SSD for $30 you would buy it too, right?
</p>
</ul>
</div>
</body>
</html>