295 lines
15 KiB
HTML
295 lines
15 KiB
HTML
<!doctype html>
|
||
<!-- https://html.spec.whatwg.org/multipage/syntax.html#the-doctype -->
|
||
<!-- https://html.spec.whatwg.org/multipage/dom.html#attr-lang -->
|
||
<!-- https://www.rfc-editor.org/info/bcp47 -->
|
||
<html lang='en-US'>
|
||
<head>
|
||
<!-- Metadata
|
||
|
||
<meta> is a void element and its starting tag should not end with a /-character
|
||
Correct: <meta charset='utf-8'>
|
||
Wrong: <meta charset='utf-8'/>
|
||
|
||
See: https://html.spec.whatwg.org/multipage/semantics.html#the-meta-element
|
||
See: https://html.spec.whatwg.org/multipage/syntax.html#syntax-start-tag
|
||
See: https://html.spec.whatwg.org/multipage/syntax.html#void-elements
|
||
-->
|
||
<meta charset='utf-8'>
|
||
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||
<meta name='author' content='Marvin Elsen'>
|
||
<meta name='description' content='The software and hardware Marvin Elsen uses.'>
|
||
<meta name='keywords' content='marvin elsen,marvin,elsen'>
|
||
<meta name='referrer' content='no-referrer'>
|
||
<meta name='robots' content='index,follow'>
|
||
<meta name='color-scheme' content='light dark'>
|
||
<meta name='theme-color' content='rgb(0, 130, 255)' media='(prefers-color-scheme: light)'>
|
||
<meta name='theme-color' content='rgb(0, 130, 255)' media='(prefers-color-scheme: dark)'>
|
||
<meta property='og:title' content='The tools I use'>
|
||
<meta property='og:type' content='website'>
|
||
<meta property='og:url' content='https://marvinelsen.com/uses/'>
|
||
<meta property='og:image' content='https://marvinelsen.com/images/opg.jpg'>
|
||
<meta property='og:site_name' content='Marvin Elsen’s Website'>
|
||
<meta property='og:description' content='The software and hardware Marvin Elsen uses.'>
|
||
<meta property='og:locale' content='en_US'>
|
||
|
||
<link href='/css/styles.css' rel='stylesheet'>
|
||
<link rel='icon' type='image/svg+xml' href='/favicon.svg'>
|
||
<link rel='icon' type='image/png' sizes='32x32' href='/favicon-32x32.png'>
|
||
<link rel='icon' type='image/png' sizes='16x16' href='/favicon-16x16.png'>
|
||
|
||
<title>Uses | Marvin Elsen</title>
|
||
</head>
|
||
|
||
<body>
|
||
<div id='wrapper'>
|
||
<header id='banner'>
|
||
<h1>Marvin Elsen’s Web Space</h1>
|
||
</header>
|
||
|
||
<nav>
|
||
<header>
|
||
<h2>Navigation<span class='vr'></span><span class='chinese' lang='zh-TW'>目錄</span></h2>
|
||
</header>
|
||
<ul>
|
||
<li><a href='/#about'>About</a></li>
|
||
<li><a href='/#contact'>Contact</a></li>
|
||
<li><a href='/#skills'>Skills</a></li>
|
||
<li><a href='https://gitea.marvinelsen.com/marvinelsen/'>Projects</a></li>
|
||
<li><a href='/now'>Now</a></li>
|
||
<li><a href='/uses'>Uses</a></li>
|
||
</ul>
|
||
</nav>
|
||
|
||
<main>
|
||
<article>
|
||
<header>
|
||
<h2>Uses</h2>
|
||
</header>
|
||
<section id='introduction'>
|
||
<header>
|
||
<h3>Introduction</h3>
|
||
</header>
|
||
<p>
|
||
Curious about the digital tools in my arsenal? You're in the right spot: this is my <a href='https://uses.tech'>uses</a> page. My software choices
|
||
reflect a meticulous selection process. I'm not one to simply go with the flow; instead, I rigorously research
|
||
and trial every tool before it earns a spot in my workflow. My preference leans towards flexible, tailorable,
|
||
and keyboard-centric <abbr title='Free, Libre, and Open-Source Software'>FLOSS</abbr>, with a pronounced
|
||
inclination for text/<abbr title='Command-Line Interface'>CLI</abbr>
|
||
interfaces. A heads-up for those looking for Windows suggestions: my realm is exclusively Linux, so you might
|
||
find that area a tad sparse.
|
||
</p>
|
||
</section>
|
||
<section id='disclaimer'>
|
||
<header>
|
||
<h3>Disclaimer</h3>
|
||
</header>
|
||
<p>
|
||
This list is not endorsed by, directly affiliated with, associated with, or in any other way officially
|
||
connected with, maintained, authorized or sponsored by any other product, service, brand, company or person. All
|
||
product, service, brand and company names as well as related names, marks, emblems and images are the registered
|
||
trademarks of their original owners. The use of any trade name or trademark is for identification and reference
|
||
purposes only and does not imply any association with the trademark holder of their product brand.
|
||
</p>
|
||
</section>
|
||
<section id='software'>
|
||
<header>
|
||
<h3>Software</h3>
|
||
</header>
|
||
<table>
|
||
<caption>
|
||
Software that I use
|
||
</caption>
|
||
<thead>
|
||
<tr>
|
||
<th scope='col'>Category</th>
|
||
<th scope='col'>Tool</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>Web browser</td>
|
||
<td><a href='https://vivaldi.com'>Vivaldi</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Text editor</td>
|
||
<td><a href='https://neovim.io'>Neovim</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Terminal emulator</td>
|
||
<td><a href='https://wezfurlong.org/wezterm/'>WezTerm</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Shell</td>
|
||
<td><a href='https://fishshell.com'>fish</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Color scheme</td>
|
||
<td><a href='https://catppuccin.com'>Catppuccin</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Programming font</td>
|
||
<td><a href='https://typeof.net/Iosevka/'>Iosevka</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Note-taking</td>
|
||
<td><a href='https://logseq.com'>Logseq</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Flashcards</td>
|
||
<td>
|
||
<ul>
|
||
<li><a href='https://apps.ankiweb.net'>Anki</a></li>
|
||
<li><a href='https://github.com/ankidroid/Anki-Android'>AnkiDroid</a></li>
|
||
</ul>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>Password manager</td>
|
||
<td>
|
||
<ul>
|
||
<li><a href='https://keepassxc.org'>KeePassXC</a></li>
|
||
<li><a href='https://www.keepassdx.com'>KeePassDX</a></li>
|
||
</ul>
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</section>
|
||
<section id='hardware'>
|
||
<header>
|
||
<h3>Hardware</h3>
|
||
</header>
|
||
<table>
|
||
<caption>
|
||
Hardware I use
|
||
</caption>
|
||
<thead>
|
||
<tr>
|
||
<th scope='col'>Category</th>
|
||
<th scope='col'>Tool</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>Smartphone</td>
|
||
<td>
|
||
<ul>
|
||
<li>
|
||
<a href='https://www.samsung.com/us/smartphones/galaxy-a32-5g/'>Samsung Galaxy A32 5G</a>
|
||
</li>
|
||
<li><a href='https://www.apple.com/shop/buy-iphone/iphone-14'>iPhone 14</a></li>
|
||
</ul>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>Keyboard</td>
|
||
<td>
|
||
<a href='https://www.logitech.com/en-us/products/keyboards/k860-split-ergonomic.920-009166.html'
|
||
>Logitech Ergo K860</a
|
||
>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>Mouse</td>
|
||
<td>
|
||
<a href='https://www.logitech.com/en-us/products/mice/mx-vertical-ergonomic-mouse.910-005447.html'
|
||
>Logitech MX Vertical</a
|
||
>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>Monitor</td>
|
||
<td><a href='https://pcmonitors.info/reviews/philips-328e1ca/'>Philips 328E1CA</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Watch</td>
|
||
<td><a href='https://www.casio.com/us/watches/casio/product.F-91W-1/'>Casio F-91W</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Electric kettle</td>
|
||
<td>
|
||
<a href='https://fellowproducts.com/products/stagg-ekg-electric-pour-over-kettle'
|
||
>Fellow Stagg EKG</a
|
||
>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>Pens</td>
|
||
<td>
|
||
<ul>
|
||
<li>Uni-ball Signo Broad UM-153 (1.0mm)</li>
|
||
<li>Pilot G-2 (0.7mm)</li>
|
||
<li>Pilot Juice up (0.5mm)</li>
|
||
</ul>
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</section>
|
||
<section id='darts'>
|
||
<header>
|
||
<h3>Darts</h3>
|
||
</header>
|
||
<table>
|
||
<caption>
|
||
Darts equipment I use
|
||
</caption>
|
||
<thead>
|
||
<tr>
|
||
<th scope='col'>Category</th>
|
||
<th scope='col'>Tool</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>Board</td>
|
||
<td><a href='https://granboards.com/product/gran-board-3s-green/'>Granboard 3s Green</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Barrel</td>
|
||
<td>
|
||
<a
|
||
href='https://www.one80dart.com/index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=1086&virtuemart_category_id=26&Itemid=125&lang=en'
|
||
>One80 Chameleon Lapis Lazuli</a
|
||
>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>Soft tips</td>
|
||
<td><a href='https://l-style.info/product/tip/p-lip'>L-style Premium Lippoint</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Steel tips</td>
|
||
<td><a href='https://l-style.info/product/tip/hardlip'>L-style Hard Lip</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Shaft</td>
|
||
<td><a href='https://l-style.info/product/shaft/lshaft'>L-style L-Shaft Lock Straight 260</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Flight</td>
|
||
<td><a href='https://l-style.info/product/flight/pro/l1'>L-style L-Flight PRO L1 [Standard]</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Wallet</td>
|
||
<td><a href='https://www.target-darts.co.uk/takoma-knox-grey-darts-wallet'>Takoma Knox Grey</a></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</section>
|
||
</article>
|
||
</main>
|
||
|
||
<footer>
|
||
Created and maintained by
|
||
<address>
|
||
<a href='mailto:www@marvinelsen.com'>Marvin Elsen</a>
|
||
</address>
|
||
<br>
|
||
Last updated:
|
||
<time datetime='2024-08-31'>2024-08-31</time>
|
||
</footer>
|
||
</div>
|
||
</body>
|
||
</html>
|