Removed the pages from the home directory
parent
e72ec77a56
commit
bc85c8cbe0
@ -1,52 +0,0 @@
|
||||
<!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="css/style.css" type="text/css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<div class="main">
|
||||
<h1>Aney</h1>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><p><a href="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="post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||
<p><a href="post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||
<p><a href="post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||
<p><a href="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="post.html">28/06/2020 Blog title here, look it's here, the heading of the post</a></p>
|
||||
<p><a href="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>
|
||||
@ -1,200 +0,0 @@
|
||||
/* 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: 2em;
|
||||
text-align: center;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
h2{
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
h3{
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
/* 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 */
|
||||
@ -1,59 +0,0 @@
|
||||
<!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="css/meyerweb_reset.css" type="text/css" rel="stylesheet">
|
||||
<link href="css/stylesheet.css" type="text/css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<div class="main">
|
||||
<h1>Aney</h1>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><p><a href="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>
|
||||
@ -1,85 +0,0 @@
|
||||
<!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="css/style.css" type="text/css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<div class="main">
|
||||
<h1>Aney</h1>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><p><a href="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>
|
||||
@ -1,45 +0,0 @@
|
||||
<!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="css/style.css" type="text/css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<div class="main">
|
||||
<h1>Aney</h1>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><p><a href="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>
|
||||
|
||||
<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>
|
||||
@ -1,132 +0,0 @@
|
||||
<!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="css/meyerweb_reset.css" type="text/css" rel="stylesheet">
|
||||
<link href="css/stylesheet.css" type="text/css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<div class="main">
|
||||
<h1>Aney</h1>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><p><a href="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>320GB HDD</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