adding the files for the website (in its current state)
This commit is contained in:
parent
11535f5ad6
commit
a6acacb3c1
17 changed files with 415 additions and 1 deletions
|
@ -1,2 +1,5 @@
|
|||
# personal-website
|
||||
this is the git repo for my personal website :3 ( hosted at [qhri.net](https://qhri.net/) )
|
||||
|
||||
the content of the website (and this git repo) is licensed under [cc-by-nc-sa-4.0](/LICENSE), with the following exceptions:
|
||||
|
||||
- [atkinson hyperlegible](https://brailleinstitute.org/freefont), under the [atkinson hyperlegible font license](/src/font/atkinson_hyperlegible_font_license.txt)
|
95
src/css.css
Normal file
95
src/css.css
Normal file
|
@ -0,0 +1,95 @@
|
|||
@font-face {
|
||||
font-family: atkinsonhyperlegible;
|
||||
src: url('/font/Atkinson-Hyperlegible-Regular-102a.woff2') format('woff2');
|
||||
}
|
||||
@font-face {
|
||||
font-family: atkinsonhyperlegible;
|
||||
src: url('/font/Atkinson-Hyperlegible-Bold-102a.woff2') format('woff2');
|
||||
font-weight: bold;
|
||||
}
|
||||
@font-face {
|
||||
font-family: atkinsonhyperlegible;
|
||||
src: url('/font/Atkinson-Hyperlegible-Italic-102a.woff2') format('woff2');
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: atkinsonhyperlegible;
|
||||
src: url('/font/Atkinson-Hyperlegible-BoldItalic-102a.woff2') format('woff2');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
:root {
|
||||
--bg-color: #ecdfec;
|
||||
--font-color: #333333;
|
||||
--pre-border-color: #1a1a1a;
|
||||
--link-color: #2b58de;
|
||||
--link-color-visited: #6047eb;
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
--bg-color: #1f131f;
|
||||
--font-color: #cccccc;
|
||||
--pre-border-color: #333333;
|
||||
--link-color: #577AE4;
|
||||
--link-color-visited: #8775EF;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--bg-color);
|
||||
}
|
||||
|
||||
p, h1, ul, h1, h2, h3 {
|
||||
color: var(--font-color);
|
||||
font-family: atkinsonhyperlegible, Verdana, sans-serif;
|
||||
}
|
||||
|
||||
p, ul {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
code {
|
||||
background-color: #1a1a1a;
|
||||
color: #e6e6e6;
|
||||
font-size: 22px;
|
||||
border-style: solid;
|
||||
border-width: 5px;
|
||||
border-color: var(--pre-border-color);
|
||||
overflow: scroll;
|
||||
text-wrap: nowrap;
|
||||
display: block;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline dashed;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: var(--link-color-visited);
|
||||
}
|
||||
|
||||
.center_text {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#pagewrap {
|
||||
width: 800px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 800px) {
|
||||
#pagewrap {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
p, ul {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
|
BIN
src/emoji/boyflux_flag.webp
Normal file
BIN
src/emoji/boyflux_flag.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 460 B |
BIN
src/emoji/genderflux_flag.webp
Normal file
BIN
src/emoji/genderflux_flag.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 436 B |
BIN
src/emoji/girlflux_flag.webp
Normal file
BIN
src/emoji/girlflux_flag.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 414 B |
BIN
src/emoji/heart_girlflux.webp
Normal file
BIN
src/emoji/heart_girlflux.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
18
src/emoji/index.html
Normal file
18
src/emoji/index.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>qhri/emoji</title>
|
||||
<link rel="stylesheet" href="/css.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div id="pagewrap">
|
||||
<p><a href="..">back</a></p>
|
||||
<h1>emoji</h1>
|
||||
<p>genderflux, girlflux, and boyflux flags (based on <a href="https://mutant.tech/">mutant standard</a>, <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">license</a>)</p>
|
||||
<img width="64" src="/emoji/genderflux_flag.webp" alt="Genderflux flag emoji"> <img width="64" src="/emoji/girlflux_flag.webp" alt="Girlflux flag emoji"> <img width="64" src="/emoji/boyflux_flag.webp" alt="Boyflux flag emoji">
|
||||
<p>girlflux heart flag (based on <a href="https://github.com/ZoeBijl/QueerCats">queercats</a>, <a href="https://creativecommons.org/public-domain/cc0/">license</a>)</p>
|
||||
<img width="64" src="/emoji/heart_girlflux.webp" alt="Girlflux flag heart emoji">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
BIN
src/font/Atkinson-Hyperlegible-Bold-102a.woff2
Normal file
BIN
src/font/Atkinson-Hyperlegible-Bold-102a.woff2
Normal file
Binary file not shown.
BIN
src/font/Atkinson-Hyperlegible-BoldItalic-102a.woff2
Normal file
BIN
src/font/Atkinson-Hyperlegible-BoldItalic-102a.woff2
Normal file
Binary file not shown.
BIN
src/font/Atkinson-Hyperlegible-Italic-102a.woff2
Normal file
BIN
src/font/Atkinson-Hyperlegible-Italic-102a.woff2
Normal file
Binary file not shown.
BIN
src/font/Atkinson-Hyperlegible-Regular-102a.woff2
Normal file
BIN
src/font/Atkinson-Hyperlegible-Regular-102a.woff2
Normal file
Binary file not shown.
65
src/font/atkinson_hyperlegible_font_license.txt
Normal file
65
src/font/atkinson_hyperlegible_font_license.txt
Normal file
|
@ -0,0 +1,65 @@
|
|||
ATKINSON HYPERLEGIBLE FONT LICENSE
|
||||
Copyright © 2020, Braille Institute of America, Inc., https://www.brailleinstitute.org/freefont with
|
||||
Reserved Typeface Name Atkinson Hyperlegible Font.
|
||||
|
||||
GENERAL
|
||||
|
||||
Copyright Holder allows the Font to be used, studied, modified and redistributed freely as long as it
|
||||
is not sold by itself. The Font, including any derivative works, may be bundled, embedded,
|
||||
redistributed and/or sold with any software or other work provided that the Reserved Typeface Name
|
||||
is not used on, in or by any derivative work. The Font and derivatives, however, cannot be released
|
||||
under any other type of license. The requirement for the Font to remain under this license does not
|
||||
apply to any document created using the Font or any of its derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical writer or other person who
|
||||
contributed to the Font Software.
|
||||
"Copyright Holder" refers to Braille Institute of America, Inc.
|
||||
"Font" refers to the Atkinson Hyperlegible Font developed by Copyright Holder.
|
||||
"Font Software" refers to the set of files released by Copyright Holder under this license. This may
|
||||
include source files, build scripts and documentation.
|
||||
"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or
|
||||
in whole -- any of the components of the Original Version, by changing formats or by porting the
|
||||
Font Software to a new environment.
|
||||
"Original Version" refers to the collection of the Font Software components as distributed by
|
||||
Copyright Holder.
|
||||
"Reserved Typeface Name" refers to the name Atkinson Hyperlegible Font.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software,
|
||||
to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of
|
||||
the Font Software, subject to the following conditions:
|
||||
1) Neither the Font Software nor any of its individual components, in Original Version or Modified
|
||||
Version, may be sold by itself.
|
||||
2) The Original Version or Modified Version of the Font Software may be bundled, redistributed
|
||||
and/or sold with any other software, provided that each copy contains the above copyright notice
|
||||
and this license. These can be included either as stand-alone text files, human-readable headers
|
||||
or in the appropriate machine-readable metadata fields within text or binary files as long as those
|
||||
fields can be easily viewed by the user.
|
||||
3) No Modified Version of the Font Software may use the Reserved Typeface Name unless explicit
|
||||
written permission is granted by Copyright Holder. This restriction only applies to the primary font
|
||||
name as presented to the users.
|
||||
4) The name of Copyright Holder or the Author(s) of the Font Software shall not be used to promote,
|
||||
endorse or advertise any Modified Version or any related software or other product, except:
|
||||
(a) to acknowledge the contribution(s) of Copyright Holder and the Author(s); or
|
||||
(b) with the prior written permission of Copyright Holder.
|
||||
5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under
|
||||
this license, and must not be distributed under any other license.
|
||||
|
||||
TERMINATION
|
||||
|
||||
This license shall immediately terminate and become null and void if any of the above conditions
|
||||
are not met.
|
||||
|
||||
DISCLAIMER
|
||||
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
|
||||
TRADEMARK OR OTHER RIGHT. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT,
|
||||
INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT
|
||||
OR OTHERWISE, ARISING FROM, OUT OF THE USE OF OR INABILITY TO USE THE FONT
|
||||
SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
|
29
src/guides/fedora-silverblue-mullvad/index.html
Normal file
29
src/guides/fedora-silverblue-mullvad/index.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>qhri/guides/fedora-silverblue-mullvad</title>
|
||||
<link rel="stylesheet" href="/css.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div id="pagewrap">
|
||||
<p><a href="..">back</a></p>
|
||||
<h1>installing mullvad vpn on immutable fedora linux desktops</h1>
|
||||
<p>open your terminal emulator of choice and go to the directory where all the repositories are:</p>
|
||||
<code>$ cd /etc/yum.repos.d</code>
|
||||
<p>get the repo file from mullvad (replace "stable" with "beta" in the url if you want the beta repo):</p>
|
||||
<code>$ sudo wget https://repository.mullvad.net/rpm/stable/mullvad.repo</code>
|
||||
<p>you can now install mullvad vpn:</p>
|
||||
<code>$ rpm-ostree install mullvad-vpn</code>
|
||||
<p>restart your computer so the changes take effect:</p>
|
||||
<code>$ systemctl reboot</code>
|
||||
<p>mullvad vpn is now installed on your system, but it needs a system service to work. go to this directory:</p>
|
||||
<code>$ cd /usr/lib/systemd/system</code>
|
||||
<p>enable the mullvad daemon service so it autostarts when you open your computer:</p>
|
||||
<code>$ systemctl enable mullvad-daemon.service</code>
|
||||
<p>and start the service so you can begin using the vpn:</p>
|
||||
<code>$ systemctl start mullvad-daemon.service</code>
|
||||
<p>configure your settings as you wish from there!</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
22
src/guides/firefox-custom-search/index.html
Normal file
22
src/guides/firefox-custom-search/index.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>qhri/guides/firefox-custom-search</title>
|
||||
<link rel="stylesheet" href="/css.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div id="pagewrap">
|
||||
<p><a href="..">back</a></p>
|
||||
<h1>enabling custom search engines on firefox</h1>
|
||||
<p>enter the text below in firefox's search/url bar:</p>
|
||||
<code>about:config</code>
|
||||
<p>in the text field that says "search preference name", enter the text below:</p>
|
||||
<code>browser.urlbar.update2.engineAliasRefresh</code>
|
||||
<p>make sure "boolean" is selected and press the + button on the right. it should automatically set the preference to true. if it doesn't, press the toggle button on the right (looks like 2 arrows pointing opposite directions)</p>
|
||||
<p>now go to firefox's search settings. you can get to it by putting the text below in the search bar:</p>
|
||||
<code>about:preferences#search</code>
|
||||
<p>the table with all of your search engines should now have a new button below it that says "add"</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
16
src/guides/index.html
Normal file
16
src/guides/index.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>qhri/guides</title>
|
||||
<link rel="stylesheet" href="/css.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div id="pagewrap">
|
||||
<p><a href="..">back</a></p>
|
||||
<h1>guides i made for myself and you might also find useful maybe</h1>
|
||||
<p><a href="/guides/fedora-silverblue-mullvad/">installing mullvad vpn on immutable fedora linux desktops</a></p>
|
||||
<p><a href="/guides/firefox-custom-search/">enabling custom search engines on firefox</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
40
src/index.html
Normal file
40
src/index.html
Normal file
|
@ -0,0 +1,40 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>qhri</title>
|
||||
<link rel="stylesheet" href="/css.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div id="pagewrap">
|
||||
<p>
|
||||
hi im qhri :3<br>
|
||||
<br>
|
||||
they/she • bi • trans • girlflux<br>
|
||||
<br>
|
||||
links: <a href="https://pronouns.cc/@qhri">pronouns.cc</a> • <a href="https://sharkey.qhri.net/@qhri">fedi</a> (@qhri@sharkey.qhri.net) • <a href="https://bsky.app/profile/qhri.net">bluesky</a> (@qhri.net) • <a href="https://listenbrainz.org/user/CreativeUsername/">listenbrainz</a> • <a href="https://www.last.fm/user/qhri">last.fm</a> • <a href="https://www.discogs.com/user/creativusername/collection">discogs</a> • <a href="https://bandcamp.com/qhri">bandcamp</a><br>
|
||||
<br>
|
||||
interests:<br>
|
||||
</p>
|
||||
<ul>
|
||||
<li>music</li>
|
||||
<ul>
|
||||
<li>metal</li>
|
||||
<li>alt/indie</li>
|
||||
<li><a href="/music/">music i like</a></li>
|
||||
</ul>
|
||||
<li>open-source software</li>
|
||||
<li>smosh (mostly post-defy)</li>
|
||||
<li>dropout</li>
|
||||
<li>object shows</li>
|
||||
</ul>
|
||||
<p>
|
||||
<a href="/guides/">guides i made for myself and you might also find useful maybe</a><br>
|
||||
<br>
|
||||
<a href="/emoji/">emoji</a><br>
|
||||
<br>
|
||||
this website uses the <a href="https://brailleinstitute.org/freefont">atkinson hyperlegible</a> font (<a href="/font/atkinson_hyperlegible_font_license.txt">license</a>)
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
126
src/music/index.html
Normal file
126
src/music/index.html
Normal file
|
@ -0,0 +1,126 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>qhri/music</title>
|
||||
<link rel="stylesheet" href="/css.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div id="pagewrap">
|
||||
<p><a href="..">back</a></p>
|
||||
<h1>music i like</h1>
|
||||
<p>
|
||||
i'm especially a fan of extreme metal with classical/symphonic influences<br>
|
||||
<br>
|
||||
exmortus is my favorite metal band of all time ever. i love all their albums (except beyond the fall of time, it sucks. like i see the vision but it was not executed well). probably their best overall album is the sound of steel<br>
|
||||
<br>
|
||||
gloire eternelle by first fragment is literally the most beautiful metal album i have ever heard. literally go listen to it right now. stop reading this and go listen to it. right at this very moment<br>
|
||||
<br>
|
||||
also dehumanaut is pretty good and their guitarist/bassist is trans so like. shoutout<br>
|
||||
<br>
|
||||
the band that got me into alt/indie stuff has since been exposed for some very bad stuff, so i wont be talking about them here<br>
|
||||
<br>
|
||||
i like stuff from good kid, phoneboy, idkhow, the happy fits, and a bunch of other artists that i only know like one song from. also ive been getting into billie eilish lately<br>
|
||||
</p>
|
||||
<h2>list</h2>
|
||||
<h3>playlist (max one track per release)</h3>
|
||||
<ul>
|
||||
<li><a href="https://www.youtube.com/playlist?list=PLVsNxU_BtjNilHtyFLoagaUHm-NDV1Dg1">youtube</a> / <a href="https://music.youtube.com/playlist?list=PLVsNxU_BtjNilHtyFLoagaUHm-NDV1Dg1">youtube music</a></li>
|
||||
<li><a href="https://tidal.com/browse/playlist/8b3490e1-bd17-42ff-8e2e-b1503ca7ed40">tidal</a> (missing first fragment - fake repentance, haunt - burst into flame, iconoclasm - running the gauntlet)</li>
|
||||
<li><a href="https://open.spotify.com/playlist/4DRtPdy6Q0FsifbH4Ba2Sh">spotify</a> (missing the same songs as tidal)</li>
|
||||
</ul>
|
||||
<h3>list</h3>
|
||||
<p>artists in alphabetical order, releases in chonological order<br>
|
||||
mb = musicbrainz, ma = metal archives, bc = bandcamp, od = odesli/song.link/album.link<br>
|
||||
🏳️‍🌈 / 🏳️‍⚧️ = artists i know to be queer/trans or have queer/trans members (feel free to point out any i've missed!)<br>
|
||||
<br>
|
||||
formats:</p>
|
||||
<ul>
|
||||
<li><b>artist name</b> [genre] (links)
|
||||
<ul><li><i>release name</i> [release type] (links)</li></ul>
|
||||
</li>
|
||||
<li><b>artist name</b> [genre] - <i>release name</i> [release type] (links)</li></ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li><b>archspire</b> [technical death metal] (<a href="https://musicbrainz.org/artist/89c3e96a-9dfe-4264-8995-4e5f9b0fb358">mb</a>, <a href="https://www.metal-archives.com/bands/Archspire/3540326229">ma</a>, <a href="https://archspire.bandcamp.com/">bc</a>)
|
||||
<ul>
|
||||
<li><i>relentless mutation</i> [album] (<a href="https://musicbrainz.org/release-group/2a52e0ea-2388-413d-a1e6-6c1635bfee51">mb</a>, <a href="https://www.metal-archives.com/albums/Archspire/Relentless_Mutation/659582">ma</a>, <a href="https://archspire.bandcamp.com/album/relentless-mutation">bc</a>, <a href="https://album.link/i/1244257785">od</a>)</li>
|
||||
<li><i>bleed the future</i> [album] (<a href="https://musicbrainz.org/release-group/bc9d1313-b269-45a0-8424-9717ffa77a8b">mb</a>, <a href="https://www.metal-archives.com/albums/Archspire/Bleed_the_Future/968430">ma</a>, <a href="https://archspire.bandcamp.com/album/bleed-the-future">bc</a>, <a href="https://album.link/us/i/1574759854">od</a>)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>arctic monkeys</b> [indie rock] - <i>whatever people say i am, that's what i'm not</i> [album] (<a href="https://musicbrainz.org/release-group/6c9c4985-3628-3070-b956-b538f30c9bea">mb</a>, <a href="https://album.link/us/i/111153953">od</a>)</li>
|
||||
<li><b>billie eilish</b> 🏳️‍🌈 [alternative pop] (<a href="https://musicbrainz.org/artist/f4abc0b5-3f7a-4eff-8f78-ac078dbce533">mb</a>)
|
||||
<ul>
|
||||
<li><i>dont smile at me</i> [ep] (<a href="https://musicbrainz.org/release-group/406e4a2d-d632-40bc-8119-78f895a3f3c1">mb</a>, <a href="https://album.link/us/i/1440898929">od</a>)</li>
|
||||
<li><i>when we all fall asleep, where do we go?</i> [album] (<a href="https://musicbrainz.org/release-group/72375978-a9a1-4254-b957-85565c716b7e">mb</a>, <a href="https://album.link/us/i/1450695723">od</a>)</li>
|
||||
<li><i>happier than ever</i> [album] (<a href="https://musicbrainz.org/release-group/3ac5236a-3bd8-44c6-ab60-69b013594ae6">mb</a>, <a href="https://album.link/i/1564530719">od</a>)</li>
|
||||
<li><i>hit me hard and soft</i> [album] (<a href="https://musicbrainz.org/release-group/02a544b3-0459-42c7-bd9c-047162e7b67a">mb</a>, <a href="https://album.link/us/i/1739659134">od</a>)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>bullet for my valentine</b> [metalcore] - <i>venom</i> [album] (<a href="https://musicbrainz.org/release-group/aa3e90c1-8105-4264-bc09-eb6a0234e26e">mb</a>, <a href="https://bulletformyvalentinerock.bandcamp.com/album/venom">bc</a>, <a href="https://album.link/i/1008315269">od</a>)</li>
|
||||
<li><b>burned in effigy</b> [neoclassical melodic death metal] - <i>rex mortem</i> [album] (<a href="https://musicbrainz.org/release-group/d4c90ab9-d8af-4a7d-8013-9323ace93bd2">mb</a>, <a href="https://www.metal-archives.com/albums/Burned_in_Effigy/Rex_Mortem/998173">ma</a>, <a href="https://burnedineffigy.bandcamp.com/album/rex-mortem">bc</a>, <a href="https://album.link/us/i/1597177257">od</a>)</li>
|
||||
<li><b>dehumanaut</b> 🏳️‍⚧️ [melodic death thrash metal] - <i>dust in the giant's hand</i> [album] (<a href="https://musicbrainz.org/release-group/27107b0e-00e1-45af-9822-01918f168ea2">mb</a>, <a href="https://www.metal-archives.com/albums/Dehumanaut/Dust_in_the_Giant%27s_Hand/850994">ma</a>, <a href="https://dehumanaut.bandcamp.com/album/dust-in-the-giants-hand">bc</a>, <a href="https://album.link/us/i/1514820031">od</a>)</li>
|
||||
<li><b>drottnar</b> [technical black metal] - <i>stratum</i> [album] (<a href="https://musicbrainz.org/release-group/ec5eb536-2289-4cf9-862b-92434d6347d5">mb</a>, <a href="https://www.metal-archives.com/albums/Drottnar/Stratum/355348">ma</a>, <a href="https://drottnar.bandcamp.com/album/stratum">bc</a>, <a href="https://album.link/us/i/993727859">od</a>)</li>
|
||||
<li><b>equipment</b> [pop punk/alt rock/emo] - <i>wet mulch</i> [track] (<a href="https://musicbrainz.org/recording/ac6414a1-58bd-432a-97c9-0ff1df9c770b">mb</a>, <a href="https://equipment.bandcamp.com/track/wet-mulch">bc</a>, <a href="https://song.link/us/i/1481686291">od</a>)</li>
|
||||
<li><b>exmortus</b> [neoclassical death thrash metal] (<a href="https://musicbrainz.org/artist/16166071-7ec8-4a13-9b6a-3207aa9a2adc">mb</a>, <a href="https://www.metal-archives.com/bands/Exmortus/23401">ma</a>, <a href="https://exmortus-band.bandcamp.com/">bc1</a>, <a href="https://exmortus.bandcamp.com/">bc2</a>, <a href="https://exmortus-official.bandcamp.com/">bc3</a>)
|
||||
<ul>
|
||||
<li><i>in hatred's flame</i> [album] (<a href="https://musicbrainz.org/release-group/be0e92e9-6f2b-398b-b39a-896a8cdf469a">mb</a>, <a href="https://www.metal-archives.com/albums/Exmortus/In_Hatred%27s_Flame/202568">ma</a>, <a href="https://exmortus-band.bandcamp.com/album/in-hatreds-flame">bc</a>, <a href="https://album.link/us/i/550298632">od</a>)</li>
|
||||
<li><i>slave to the sword</i> [album] (<a href="https://musicbrainz.org/release-group/9b4baa2a-3648-45fe-9fa9-befbd88f1591">mb</a>, <a href="https://www.metal-archives.com/albums/Exmortus/Slave_to_the_Sword/400838">ma</a>, <a href="https://exmortus-official.bandcamp.com/album/slave-to-the-sword">bc</a>, <a href="https://album.link/us/i/786156286">od</a>)</li>
|
||||
<li><i>ride forth</i> [album] (<a href="https://musicbrainz.org/release-group/e5542006-cc61-47f4-8cac-6c33ec68bfe0">mb</a>, <a href="https://www.metal-archives.com/albums/Exmortus/Ride_Forth/544962">ma</a>, <a href="https://exmortus-official.bandcamp.com/album/ride-forth">bc</a>, <a href="https://album.link/us/i/1052078703">od</a>)</li>
|
||||
<li><i>the sound of steel</i> [album] (<a href="https://musicbrainz.org/release-group/b1e38c0e-ca8b-46a8-8416-696347ba48b9">mb</a>, <a href="https://www.metal-archives.com/albums/Exmortus/The_Sound_of_Steel/704109">ma</a>, <a href="https://exmortus-official.bandcamp.com/album/the-sound-of-steel">bc</a>, <a href="https://album.link/t/85660484">od</a>)</li>
|
||||
<li><i>necrophony</i> [album] (<a href="https://musicbrainz.org/release-group/d89309bc-b8c9-4352-81ca-95a02bc29a55">mb</a>, <a href="https://www.metal-archives.com/albums/Exmortus/Necrophony/1130507">ma</a>, <a href="https://album.link/us/i/1677294916">od</a>)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>first fragment</b> [neoclassical technical death metal] (<a href="https://musicbrainz.org/artist/906ece92-a4c2-4444-9e0d-48ee3ca1e601">mb</a>, <a href="https://www.metal-archives.com/bands/First_Fragment/3540325573">ma</a>, <a href="https://firstfragmentqc.bandcamp.com/">bc</a>)
|
||||
<ul>
|
||||
<li><i>the afterthought ecstasy</i> [ep] (<a href="https://musicbrainz.org/release-group/a261d7c5-4c12-495b-b62e-3be42d571adc">mb</a>, <a href="https://www.metal-archives.com/albums/First_Fragment/The_Afterthought_Ecstasy/302475">ma</a>, <a href="https://firstfragmentqc.bandcamp.com/album/the-afterthought-ecstasy">bc</a>)</li>
|
||||
<li><i>gloire éternelle</i> [album] (<a href="https://musicbrainz.org/release-group/3006bcd9-e2a5-4280-88b9-49102f5940f3">mb</a>, <a href="https://www.metal-archives.com/albums/First_Fragment/Gloire_%C3%A9ternelle/957831">ma</a>, <a href="https://uniqueleaderrecords.bandcamp.com/album/gloire-ternelle">bc</a>, <a href="https://album.link/us/i/1568199645">od</a>)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>fleshgod apocalypse</b> [symphonic technical death metal] - <i>agony</i> [album] (<a href="https://musicbrainz.org/release-group/c276875e-0ec6-4d90-94cd-25e4e196ed5d">mb</a>, <a href="https://www.metal-archives.com/albums/Fleshgod_Apocalypse/Agony/310240">ma</a>, <a href="https://fleshgodapocalypse.bandcamp.com/album/agony">bc</a>, <a href="https://album.link/us/i/1456954597">od</a>)</li>
|
||||
<li><b>good kid</b> [indie pop/rock] (<a href="https://musicbrainz.org/artist/adab38f4-297d-4af8-9450-4e84697240e7">mb</a>, <a href="https://goodkid.bandcamp.com/">bc</a>)
|
||||
<ul>
|
||||
<li><i>good kid</i> [ep] (<a href="https://musicbrainz.org/release-group/2fdce47f-2034-4f84-8313-fd11a6695eac">mb</a>, <a href="https://goodkid.bandcamp.com/album/good-kid-ep">bc</a>, <a href="https://album.link/i/1522559243">od</a>)</li>
|
||||
<li><i>good kid 2</i> [ep] (<a href="https://musicbrainz.org/release-group/01a694b6-c531-4cfe-832e-20e5df8e2527">mb</a>, <a href="https://goodkid.bandcamp.com/album/good-kid-2">bc</a>, <a href="https://album.link/us/i/1535818794">od</a>)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>the happy fits</b> [indie rock] (<a href="https://musicbrainz.org/artist/6ea62ebc-6372-4850-bb37-e21f0e7e7f14">mb</a>, <a href="https://thehappyfits.bandcamp.com/">bc</a>)
|
||||
<ul>
|
||||
<li><i>so alright, cool, whatever</i> [track] (<a href="https://musicbrainz.org/recording/a15a24e8-8567-47d3-9135-fbbdbfb96316">mb</a>, <a href="https://thehappyfits.bandcamp.com/track/so-alright-cool-whatever">bc</a>, <a href="https://song.link/us/i/1537097658">od</a>)</li>
|
||||
<li><i>heart of a dancer</i> [track] (<a href="https://musicbrainz.org/recording/aa9416ec-3a11-4657-b7ef-de116c699320">mb</a>, <a href="https://thehappyfits.bandcamp.com/track/heart-of-a-dancer">bc</a>, <a href="https://song.link/us/i/1537097663">od</a>)</li>
|
||||
<li><i>go dumb</i> [track] (<a href="https://musicbrainz.org/recording/b6bd17c6-bb85-4c8b-8f1d-a55ca9946a32">mb</a>, <a href="https://thehappyfits.bandcamp.com/track/go-dumb">bc</a>, <a href="https://song.link/us/i/1648186063">od</a>)</li>
|
||||
<li><i>hold me down</i> [track] (<a href="https://musicbrainz.org/recording/fdbe782c-5470-4fd3-8fa8-6cb97a2b4c72">mb</a>, <a href="https://thehappyfits.bandcamp.com/track/hold-me-down">bc</a>, <a href="https://song.link/us/i/1648186943">od</a>)</li>
|
||||
<li><i>what could be better</i> [track] (<a href="https://musicbrainz.org/recording/5e77a35a-be82-4f23-980e-5c290f6070c4">mb</a>, <a href="https://thehappyfits.bandcamp.com/track/what-could-be-better">bc</a>, <a href="https://song.link/us/i/1648187512">od</a>)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>haunt</b> [heavy metal] - <i>burst into flame (original 2018 version)</i> [album] (<a href="https://musicbrainz.org/release-group/4e81f7d7-b88e-4db9-8f6e-c9b4347608ea">mb</a>, <a href="https://www.metal-archives.com/albums/Haunt/Burst_into_Flame/712153">ma</a>)</li>
|
||||
<li><b>hellripper</b> [blackened speed metal] - <i>black arts & alchemy</i> [ep] (<a href="https://musicbrainz.org/release-group/a3b4f183-1c6e-4e42-8b63-86230b4a4eda">mb</a>, <a href="https://www.metal-archives.com/albums/Hellripper/Black_Arts_%26_Alchemy/768059">ma</a>, <a href="https://hellripper-uk.bandcamp.com/album/black-arts-alchemy">bc</a>, <a href="https://album.link/us/i/1716716158">od</a>)</li>
|
||||
<li><b>hippo campus</b> [indie rock/pop] - <i>baseball</i> [track] (<a href="https://musicbrainz.org/recording/4ff469b3-7e41-4369-acba-78022c65d171">mb</a>, <a href="https://hippocampusband.bandcamp.com/track/baseball">bc</a>, <a href="https://song.link/us/i/1276768140">od</a>)</li>
|
||||
<li><b>iconoclasm</b> [crossover thrash metal] - <i>iconoclasm</i> [album] (<a href="https://musicbrainz.org/release-group/628c68c6-6d11-47a2-a8b7-9570a0c0d442">mb</a>, <a href="https://www.metal-archives.com/albums/Iconoclasm/Iconoclasm/531143">ma</a>)</li>
|
||||
<li><b>i dont know how but they found me</b> [indie pop] (<a href="https://musicbrainz.org/artist/91ae77d8-3bb5-4e59-98a7-532ac0f2825d">mb</a>, <a href="https://idkhow.bandcamp.com/">bc</a>)
|
||||
<ul>
|
||||
<li><i>1981 extended play</i> [ep] (<a href="https://musicbrainz.org/release-group/4b3ca98a-ed83-4cad-b07d-9768c2b8a06e">mb</a>, <a href="https://idkhow.bandcamp.com/album/1981-extended-play">bc</a>, <a href="https://album.link/t/97876619">od</a>)</li>
|
||||
<li><i>razzmatazz</i> [album] (<a href="https://musicbrainz.org/release-group/e9f1a6ec-9fc2-4a08-8fc4-700d3c2b92d9">mb</a>, <a href="https://idkhow.bandcamp.com/album/razzmatazz">bc</a>, <a href="https://album.link/t/158720756">od</a>)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>krallice</b> [avant-garde black metal] - <i>krallice</i> [album] (<a href="https://musicbrainz.org/release-group/ad74ea33-c745-3f9b-9659-d6c6a498bc95">mb</a>, <a href="https://www.metal-archives.com/albums/Krallice/Krallice/204209">ma</a>, <a href="https://krallice.bandcamp.com/album/krallice">bc</a>, <a href="https://album.link/i/1147068714">od</a>)</li>
|
||||
<li><b>metallica</b> [thrash/heavy metal] - <i>kill 'em all</i> [album] (<a href="https://musicbrainz.org/release-group/f44f4f73-a714-31a1-a4b8-bfcaaf311f50">mb</a>, <a href="https://www.metal-archives.com/albums/Metallica/Kill_%27Em_All/538">ma</a>, <a href="https://album.link/s/0vNBQof86Lv5gLuf26ML7o">od</a>)</li>
|
||||
<li><b>the moderates</b> [indie rock/pop] - <i>strange town</i> [track] (<a href="https://musicbrainz.org/recording/05981fb7-3f0e-46fb-959b-59a6da816dfa">mb</a>, <a href="https://moderates.bandcamp.com/album/colour">bc</a>, <a href="https://song.link/us/i/674045477">od</a>)</li>
|
||||
<li><b>one flew west</b> [alt/pop punk] - <i>semi kinda right</i> [track] (<a href="https://musicbrainz.org/recording/156c25e1-4591-470e-ab06-1847efb8be37">mb</a>, <a href="https://oneflewwest.bandcamp.com/track/semi-kinda-right">bc</a>, <a href="https://song.link/us/i/1755045928">od</a>)</li>
|
||||
<li><b>phoneboy</b> [indie pop] - <i>phoneboy</i> [album] (<a href="https://musicbrainz.org/release-group/03145ccc-4cb9-4633-8a94-f93f3f97df41">mb</a>, <a href="https://album.link/us/i/1679647514">od</a>)</li>
|
||||
<li><b>the rare occasions</b> [indie rock/pop] - <i>backwards</i> [track] (<a href="https://musicbrainz.org/recording/7e791365-7e76-4bae-a496-253eee2d15cd">mb</a>, <a href="https://therareoccasions.bandcamp.com/track/backwards">bc</a>, <a href="https://song.link/us/i/1378366638">od</a>)</li>
|
||||
<li><b>saint motel</b> [indie pop/rock] (<a href="https://musicbrainz.org/artist/5c2593bc-1621-4c4d-821b-b7bb6ff213b5">mb</a>, <a href="https://saintmotel.bandcamp.com/">bc</a>)
|
||||
<ul>
|
||||
<li><i>you do it well</i> [track] (<a href="https://musicbrainz.org/recording/c7b89319-f46d-4d96-a38c-7821bca02a87">mb</a>, <a href="https://saintmotel.bandcamp.com/track/you-do-it-well">bc</a>, <a href="https://song.link/us/i/856418521">od</a>)</li>
|
||||
<li><i>hands up robert</i> [track] (<a href="https://musicbrainz.org/recording/a7a1e788-24f1-40cd-99ba-55ec3031367e">mb</a>, <a href="https://saintmotel.bandcamp.com/track/hands-up-robert">bc</a>, <a href="https://song.link/us/i/856418524">od</a>)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>skeletonwitch</b> [blackened melodic death thrash metal] - <i>beyond the permafrost</i> [album] (<a href="https://musicbrainz.org/release-group/c1443263-256a-35f5-920d-77b5ba70bf04">mb</a>, <a href="https://www.metal-archives.com/albums/Skeletonwitch/Beyond_the_Permafrost/170513">ma</a>, <a href="https://skeletonwitch.bandcamp.com/album/beyond-the-permafrost">bc</a>, <a href="https://album.link/t/42732789">od</a>)</li>
|
||||
<li><b>the strokes</b> [indie rock] - <i>the modern age</i> [track] (<a href="https://musicbrainz.org/recording/51e15585-2a4d-4243-b1d6-32ec4fda85ff">mb</a>, <a href="https://song.link/us/i/266376973">od</a>)</li>
|
||||
<li><b>two door cinema club</b> [indie rock] - <i>what you know</i> [track] (<a href="https://musicbrainz.org/recording/cadde50b-8c42-4a16-af00-185fcc3827f4">mb</a>, <a href="https://song.link/us/i/1771711274">od</a>)</li>
|
||||
<li><b>vitrified entity</b> 🏳️‍⚧️ [neoclassical technical death metal] - <i>eternal vitreous dissolve</i> [album] (<a href="https://musicbrainz.org/release-group/19f567fb-b2d7-4358-a0e1-9d0c254d7912">mb</a>, <a href="https://www.metal-archives.com/albums/Vitrified_Entity/Eternal_Vitreous_Dissolve/966896">ma</a>, <a href="https://vitrifiedentity.bandcamp.com/album/eternal-vitreous-dissolve">bc</a>, <a href="https://album.link/us/i/1587212515">od</a>)</li>
|
||||
<li><b>yngwie malmsteen</b> [neoclassical heavy metal] - <i>rising force</i> [album] (<a href="https://musicbrainz.org/release-group/fc834265-1dd4-3af6-9192-25a3188a1ff2">mb</a>, <a href="https://www.metal-archives.com/albums/Yngwie_Malmsteen/Rising_Force/313">ma</a>, <a href="">od</a>)</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue