Added other temp scripts and 'build' directory
parent
a86850f6bb
commit
e72ec77a56
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Build all Blogposts
|
||||||
|
for filename in posts/*.md; do
|
||||||
|
filename= echo $filename | grep "[^\/]+(?=)$"
|
||||||
|
echo $filename
|
||||||
|
cat includes/header.html $filename includes/footer.html > blog/$filename.html
|
||||||
|
done
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
I decided that I wanted to be platform independant, with no-one pulling the strings on what I could, or couldn't say/do.
|
||||||
|
|
||||||
|
I'd been easing off the greater web for a while, but kept coming back for some reason or another. Most of the time being to check up on someone, or something; To see if there were any cools videos, etc.
|
||||||
|
|
||||||
|
My domain name had been sitting vacant for quite some time, and after some *woke* content from a few youtubers, and blogs I was reading at the time. I decided to start up again.
|
||||||
|
|
||||||
|
# Starting out
|
||||||
|
|
||||||
|
I've built websites before, and I was pretty good at making visually appealing websites with CSS. I wanted to focus more on content this time around, like the web should be focussed on.
|
||||||
|
|
||||||
|
From this decision I built a website with a slight focus on semantic markup, as it was a pre-release after all. This site was highly influenced by the design of lukesmith.xyz, you can see that itteration of the site (here)[#link]. I then took it upon myself to research a little about semantic markup, good minimal css practises, and stumble upon *web bloat*, which made me double down on the decision to make a content focussed, small, easily accessible site.
|
||||||
|
|
||||||
|
For example, I want as many people to be able to access and browse my website as possible, regardless of where they live, what their internet is like, and such.
|
||||||
@ -0,0 +1 @@
|
|||||||
|
cat css/meyerweb_reset.css css/stylesheet.css > www/css/style.css
|
||||||
@ -0,0 +1,52 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Aney's Homepage</title>
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
|
<link href="/home/nathan/git/website/www/css/style.css" type="text/css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<div class="main">
|
||||||
|
<h1>Aney</h1>
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
<li><p><a href="/home/nathan/git/website/www/index.html">Home</a></p></li>
|
||||||
|
<li><p><a href="blog.html">Blog</a></p></li>
|
||||||
|
<li><p><a href="tech.html">Equipment</a></p></li>
|
||||||
|
<li><p><a href="https://www.youtube.com/user/AneyOC">Youtube</a></p></li>
|
||||||
|
<li><p><a href="https://www.github.com/aney">Github</a></p></li>
|
||||||
|
<li><p><a href="donate.html">Support</a></p></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="content" class="main">
|
||||||
|
<section>
|
||||||
|
<h2>March</h2>
|
||||||
|
<p><a href="blog/post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||||
|
<p><a href="blog/post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||||
|
<p><a href="blog/post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||||
|
<p><a href="blog/post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>February</h2>
|
||||||
|
<p><a href="blog/post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||||
|
<p><a href="blog/post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>Designed and written with <a href="https://danluu.com/web-bloat/">web bloat</a> in mind.</p>
|
||||||
|
<p>Made with <a href="#">aSite</a> | <a href="https://github.com/Aney/website">Source Code</a></p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Aney's Homepage</title>
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
|
<link href="/home/nathan/git/website/www/css/style.css" type="text/css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<div class="main">
|
||||||
|
<h1>Aney</h1>
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
<li><p><a href="/home/nathan/git/website/www/index.html">Home</a></p></li>
|
||||||
|
<li><p><a href="blog.html">Blog</a></p></li>
|
||||||
|
<li><p><a href="tech.html">Equipment</a></p></li>
|
||||||
|
<li><p><a href="https://www.youtube.com/user/AneyOC">Youtube</a></p></li>
|
||||||
|
<li><p><a href="https://www.github.com/aney">Github</a></p></li>
|
||||||
|
<li><p><a href="donate.html">Support</a></p></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="content" class="main">
|
||||||
|
<article>
|
||||||
|
<h2>Why Windows is ass</h2>
|
||||||
|
<h4>28/06/2020 By Aney</h4>
|
||||||
|
<p>Content, and bloggin system currently doesn't exit. It will however be very basic, and work well with RSS feeds</p>
|
||||||
|
<p>Tags can be filtered, and hopefully generate an RSS feed for specific, authors, tags, etc.</p>
|
||||||
|
</article>
|
||||||
|
<section>
|
||||||
|
<p><a href="#">Last Post: Why deez nuts is big</a></p>
|
||||||
|
<p><a href="#">On my mind, you stay onmamoind: Next Post</a></p>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>Designed and written with <a href="https://danluu.com/web-bloat/">web bloat</a> in mind.</p>
|
||||||
|
<p>Made with <a href="#">aSite</a> | <a href="https://github.com/Aney/website">Source Code</a></p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@ -0,0 +1,205 @@
|
|||||||
|
/* http://meyerweb.com/eric/tools/css/reset/
|
||||||
|
v2.0 | 20110126
|
||||||
|
License: none (public domain)
|
||||||
|
*/
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
font: inherit;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
blockquote, q {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
blockquote:before, blockquote:after,
|
||||||
|
q:before, q:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
html{
|
||||||
|
overflow-y: scroll; /* Invalid? But it works */
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
html,body{
|
||||||
|
background: #282828;
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main{
|
||||||
|
max-width: 960px;
|
||||||
|
padding: 0 1%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Text */
|
||||||
|
h1, h2, h3, h4, h5{
|
||||||
|
color: #98971a;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 0.25em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
color: #a89984;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul p{
|
||||||
|
margin: 0.1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1{
|
||||||
|
font-size: 1.5em;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2{
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3{
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
line-height: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
a{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #458588;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover{
|
||||||
|
color: #b16286;
|
||||||
|
}
|
||||||
|
|
||||||
|
.anchor, .anchor:hover{
|
||||||
|
color: #98971a;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Lists */
|
||||||
|
ul{
|
||||||
|
|
||||||
|
}
|
||||||
|
/* Positions */
|
||||||
|
section, article{
|
||||||
|
margin-bottom: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item{
|
||||||
|
margin-left: 1em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Stuff */
|
||||||
|
.home h2{
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Footer */
|
||||||
|
footer{
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer p{
|
||||||
|
margin: 0;
|
||||||
|
line-height: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Header */
|
||||||
|
header{
|
||||||
|
padding: 0.5em 0;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
background: #98971a;
|
||||||
|
}
|
||||||
|
|
||||||
|
header *{
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h1{
|
||||||
|
display: inline-block;
|
||||||
|
text-align: left;
|
||||||
|
width: 18.5%;
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1.2em;
|
||||||
|
color: #282828;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navigation */
|
||||||
|
nav{
|
||||||
|
text-align: right;
|
||||||
|
display: inline-block;
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul{
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 0;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li p{
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li{
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a{
|
||||||
|
color: #282828;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a:hover{
|
||||||
|
color: #d78821;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-list section{
|
||||||
|
width: 49.5%;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
/* cc241d red
|
||||||
|
d79921 yellow
|
||||||
|
689d6a aqua
|
||||||
|
458588 blue*
|
||||||
|
purple b16286 */
|
||||||
@ -0,0 +1,58 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Aney's Homepage</title>
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
|
<link href="/home/nathan/git/website/www/css/style.css" type="text/css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<div class="main">
|
||||||
|
<h1>Aney</h1>
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
<li><p><a href="/home/nathan/git/website/www/index.html">Home</a></p></li>
|
||||||
|
<li><p><a href="blog.html">Blog</a></p></li>
|
||||||
|
<li><p><a href="tech.html">Equipment</a></p></li>
|
||||||
|
<li><p><a href="https://www.youtube.com/user/AneyOC">Youtube</a></p></li>
|
||||||
|
<li><p><a href="https://www.github.com/aney">Github</a></p></li>
|
||||||
|
<li><p><a href="donate.html">Support</a></p></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="content" class="main">
|
||||||
|
<section>
|
||||||
|
<h2>Help me keep going</h2>
|
||||||
|
<p>I do not expect donations, and will keep doing what I need to, in order to continue what I do. Donatations are however greatly appreciated.</p>
|
||||||
|
<p>A one off, or recurring donation will help me:</p>
|
||||||
|
<ul>
|
||||||
|
<li><p>Keep up my websites</p></li>
|
||||||
|
<li><p>Make videos and other content</p></li>
|
||||||
|
<li><p>Work on open-source projects</p></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Links and Addresses</h2>
|
||||||
|
<p>If you have decided to help me out, please donate with one of the links, or addresses below.</p>
|
||||||
|
<ul>
|
||||||
|
<li><p>Etherium: 0x71d70Cc9FC05e846757B98602797Bcd3EE45A5E8</p></li>
|
||||||
|
<li><p>BAT: If you use <a href="https://brave.com/ane496">Brave Browser</a>, tip with the built in button</p></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>Designed and written with <a href="https://danluu.com/web-bloat/">web bloat</a> in mind.</p>
|
||||||
|
<p>Made with <a href="#">aSite</a> | <a href="https://github.com/Aney/website">Source Code</a></p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@ -0,0 +1 @@
|
|||||||
|
files/cv.pdf
|
||||||
@ -0,0 +1,85 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Aney's Homepage</title>
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
|
<link href="/home/nathan/git/website/www/css/style.css" type="text/css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<div class="main">
|
||||||
|
<h1>Aney</h1>
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
<li><p><a href="/home/nathan/git/website/www/index.html">Home</a></p></li>
|
||||||
|
<li><p><a href="blog.html">Blog</a></p></li>
|
||||||
|
<li><p><a href="tech.html">Equipment</a></p></li>
|
||||||
|
<li><p><a href="https://www.youtube.com/user/AneyOC">Youtube</a></p></li>
|
||||||
|
<li><p><a href="https://www.github.com/aney">Github</a></p></li>
|
||||||
|
<li><p><a href="donate.html">Support</a></p></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="content" class="home main">
|
||||||
|
<section>
|
||||||
|
<h2>I'm Aney.</h2>
|
||||||
|
<p>A self-proclaimed waste, working on becoming an essentialist; and with that learning to use the PC to improve, and create an efficient workflow for my everyday life. </p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>I'm a "Computer Guy"</h2>
|
||||||
|
<p>And have been "professionally" for close to two years now, however I'm aware I know very little about the subject matter.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>I've been working towards simple living</h2>
|
||||||
|
<p>As around three years ago I realised I had far too much stuff, and it was causing lots of hidden stress. I took charge and cleared around 70 t-shirts from my wardrobe, and felt immediately better. After this I reduced my wallet's contents, and then stumbled accross Minimalism Youtube that I used to edumikate myself.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>My goal is to be F.I. and self sufficient</h2>
|
||||||
|
<p>So that I can live without the need of other outside sources, and more importantly, big corporations.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="content-list">
|
||||||
|
<section id="blog-list">
|
||||||
|
<h2>Check my Blog</h2>
|
||||||
|
<p>Full <a href="#">Blog</a> or <a href="#">RSS</a></p>
|
||||||
|
<ul>
|
||||||
|
<li><p><a href="#">Why did I switch to a Thinkpad?</a></p></li>
|
||||||
|
<li><p><a href="#">My minimalism journey</a></p></li>
|
||||||
|
<li><p><a href="#">Help fix the bloated web</a></p></li>
|
||||||
|
<li><p><a href="#">My development setup</a></p></li>
|
||||||
|
<li><p><a href="#">Remove social media</a></p></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id="video-list">
|
||||||
|
<h2>Check my Videos</h2>
|
||||||
|
<p>Hosted on <a href="#">Youtube</a> and Updated when I see fit</p>
|
||||||
|
<ul>
|
||||||
|
<li><p><a href="#">Why did I switch to a Thinkpad?</a></p></li>
|
||||||
|
<li><p><a href="#">My minimalism journey</a></p></li>
|
||||||
|
<li><p><a href="#">Help fix the bloated web</a></p></li>
|
||||||
|
<li><p><a href="#">My development setup</a></p></li>
|
||||||
|
<li><p><a href="#">Remove social media</a></p></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>Designed and written with <a href="https://danluu.com/web-bloat/">web bloat</a> in mind.</p>
|
||||||
|
<p>Made with <a href="#">aSite</a> | <a href="https://github.com/Aney/website">Source Code</a></p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@ -0,0 +1,131 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Aney's Homepage</title>
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
|
<link href="/home/nathan/git/website/www/css/style.css" type="text/css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<div class="main">
|
||||||
|
<h1>Aney</h1>
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
<li><p><a href="/home/nathan/git/website/www/index.html">Home</a></p></li>
|
||||||
|
<li><p><a href="blog.html">Blog</a></p></li>
|
||||||
|
<li><p><a href="tech.html">Equipment</a></p></li>
|
||||||
|
<li><p><a href="https://www.youtube.com/user/AneyOC">Youtube</a></p></li>
|
||||||
|
<li><p><a href="https://www.github.com/aney">Github</a></p></li>
|
||||||
|
<li><p><a href="donate.html">Support</a></p></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="content" class="main">
|
||||||
|
<section>
|
||||||
|
<h2><a id="equipment" class="anchor">Equipment</a></h2>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Laptop - Thinkpad X200</h3>
|
||||||
|
<p>I bought my Thinkpad in June 2020, 12 years after it was released. This was bought to switch to from my Macbook Air 2015 7,2.</p>
|
||||||
|
<ul>
|
||||||
|
<li><p>Debian</p></li>
|
||||||
|
<li><p>Core 2 Duo P8600</p></li>
|
||||||
|
<li><p>4GB DDR3 RAM</p></li>
|
||||||
|
<li><p>250GB SSD</p></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>PC</h3>
|
||||||
|
<p>My PC was intended to be sold once I got the Thinkpad, as that was to be my every-day driver. I am currently still in possesion of it however, for gaming with friends.</p>
|
||||||
|
<ul>
|
||||||
|
<li><p>Windows 10</p></li>
|
||||||
|
<li><p>Ryzen 5 2600X</p></li>
|
||||||
|
<li><p>16GB DDR4 RAM</p></li>
|
||||||
|
<li><p>120GB SSD</p></li>
|
||||||
|
<li><p>Vega 64</p></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Microphone - Blue Yeti</h3>
|
||||||
|
<p>It's good, and it's cheap. I also use a microphone arm with it, and have thrown out the stand. Oop.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Peripherals</h3>
|
||||||
|
<p>The other stuff I use with my laptop/PC</p>
|
||||||
|
<ul>
|
||||||
|
<li><p>Razer Blackwidow Lite, Keyboard</p></li>
|
||||||
|
<li><p>Logitech MX Master, Wireless Mouse</p></li>
|
||||||
|
<li><p>Any old earbuds, so long as they sound okay.</p></li>
|
||||||
|
<li><p>BENQ Monitor. 1600x900, with a monitor stand.</p></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Phone</h3>
|
||||||
|
<p>I used a Huawei P8 Lite 2017. This is purely because it was cheap, and I could afford it. As long as a phone is usable, can be used as a hotspot, and has a solid battery life, that's good for me.</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2><a id="software" class="anchor">Software</a></h2>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Operating System - Debian</h3>
|
||||||
|
<p>Currently I'm running Debian 10 Buster on my daily driver. I went with a minimal install, and try to only include what I need.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Window Manager - dwm</h3>
|
||||||
|
<p>My current window manger is DWM, a tiling wm. It's lightweight, and once you get used to it, it feels better to use than a traditional wm</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Terminal - st</h3>
|
||||||
|
<p>I use st, with a couple of custom keybinds and a gruvbox theme. I use this along with my shell of choice, zsh.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Browser - Brave</h3>
|
||||||
|
<p>This was a tie between ungoogled-chromium and Brave. I opted for Brave due to the BAT tokens.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Music, Video, and Images</h3>
|
||||||
|
<p>I use cmus for music, mpv for video, and feh for images. However, these are rarely used as I've been using Youtube for most consumption.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>News and Downloads</h3>
|
||||||
|
<p>I use newsboat for my rss feeds, and youtube-dl with mpv to watch videos from my feed. I also use transmission for anime downloads.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Email - Gmail</h3>
|
||||||
|
<p>I've not setup an alternative for Gmail yet, so I'm still using Gmail for my emails. I also make use of Google Drive, but have been looking at alternatives.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<h3>Other</h3>
|
||||||
|
<p>For pretty much everything else I use, I recommend looking at my install script (that likely isn't finished/working) <a href="https://github.com/Aney/scripts/blob/master/install.sh">here</a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>Designed and written with <a href="https://danluu.com/web-bloat/">web bloat</a> in mind.</p>
|
||||||
|
<p>Made with <a href="#">aSite</a> | <a href="https://github.com/Aney/website">Source Code</a></p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue