From a5937e5f86a597ab23d39d0e36fa91bc1f29fee4 Mon Sep 17 00:00:00 2001 From: Amolith Date: Fri, 11 Jan 2019 09:14:33 -0500 Subject: [PATCH] various --- _posts/2018-08-12-Formatting-tests.md | 89 --------------------------- _sass/_default.scss | 64 +++++++++++++------ about.html | 12 +++- blog/index.html | 1 + contact.html | 62 +++++++++++++++---- index.html | 7 ++- 6 files changed, 113 insertions(+), 122 deletions(-) delete mode 100644 _posts/2018-08-12-Formatting-tests.md diff --git a/_posts/2018-08-12-Formatting-tests.md b/_posts/2018-08-12-Formatting-tests.md deleted file mode 100644 index 704efec..0000000 --- a/_posts/2018-08-12-Formatting-tests.md +++ /dev/null @@ -1,89 +0,0 @@ ---- -layout: post -title: Formatting Tests -date: 2018-08-11 23:23:16 ---- -# Hello, world! - -* Test bullet one -* Test bullet two - * Test sub-bullet one -* Test bullet three - * Test sub-bullet two - * Test sub-bullet three - -1. Numbered bullet test one - * Sub-bullet test one -2. Numbered bullet test two - * Sub-bullet test two -2. Numbered bullet test three - * Sub-bullet test three - -## Level 2 Header (where formatting tests happen) - -~~testing strikethrough~~ - -*italics* - -**bold** - -***bold and italics*** - -~~***bold, italics, and strikethrough***~~ - -### Level three header test -``` -#!/bin/bash - -# Pick a random wallpaper (ignoring anything starting with .) and set the path equal to ${wp} -WP=$(find ~/Pictures/Wallpapers -not -path '*/\.*' -type f | shuf | head -n1 ) - -# Generate a GTK theme/colour scheme -# Apply the colour scheme to terminals -# Set rxvt's transparency to 75% -wal -gi "$WP" -a 75 - -# Scale the wallpaper (fixes multi-monitor setups) -feh --bg-scale "$WP" - -# Check if the wallpaper is in Favourites -echo $WP | grep "^~/Pictures/Wallpapers/Favourites" &> /dev/null && TEXT="This wallpaper is in Favourites" || TEXT="This wallpaper is not in Favourites" - -# Send notification with variable defined above -notify-send "Wallpaper Changed to $WP" "$TEXT" - -# Apply colours to Steam -wal_steam - -# Open a zenity window and give a GUI for deciding what to do with the wallpaper -VAR=$(zenity --list --text="Decide the fate of this wallpaper" --radiolist --hide-header --column "Select" --column "Option" FALSE "Delete it" FALSE "Add to favourites" TRUE "Do nothing") - -if [ "$VAR" = "Add to favourites" ] -then - cp $WP ~/Pictures/Wallpapers/Favourites - notify-send "Wallpaper has been added to your favourites!" -elif [ "$VAR" = "Delete it" ] -then - notify-send "Wallpaper has been deleted" - rm -rf $WP -else - exit -fi -``` -This script can be found in my repository on [GitLab](https://gitlab.com/Amolith/dotfiles) -#### Level four header test (in which we check quoting) -> It's a dangerous business, Frodo, going out your door. You step onto the Road, and if you don't keep your feet, there's no knowing where you might be swept off to. - -> You need to actively disown your code to make it completely free. It’s not in the public domain just because you released it in the public. Even worse, when using no license, the copyright might behave different depending where you and someone allegedly breaking it lives. It differs from country to country. - -\- p410n3, *[UNLICENSE - cuz I can't be bothered](https://blog.palone.top/detail/news/unlicense-cuz-i-cant-be-bothered/)* - -#### Some definitions -Pellentesque habitant morbi tristique senectus -: Curabitur malesuada lacus ac gravida porttitor - -: Duis sodales feugiat lorem et mollis. -Pellentesque habitant morbi tristique senectus -: Curabitur malesuada lacus ac gravida porttitor -: Duis sodales feugiat lorem et mollis. - diff --git a/_sass/_default.scss b/_sass/_default.scss index a787b77..31675b1 100644 --- a/_sass/_default.scss +++ b/_sass/_default.scss @@ -64,18 +64,6 @@ a { text-decoration: underline; } -.contact { - font-weight: normal; - font-size: 40px; - line-height: 52px; - text-decoration: none; - text-align: center; -} - -.contact:hover { - color: #BEBEBE; -} - p { font-size: 20px; line-height: 32px; @@ -151,6 +139,27 @@ div.card p { background-color: #4f4f4fff; color: #FFFFFF; } +.contact-card { + box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3); + background: #4f4f4fff; + margin: 5px; + transition: 0.3s; + border-radius: 5px; + width: 20%; + text-align: center; +} +div.contact-card h1 { + font-size: 50px; + text-align: center; + line-height: 0px; +} +div.contact-card h2 { + font-size: 17px; + line-height: 27px; +} +.contact-card:hover { + box-shadow: 0 12px 20px 0 rgba(0,0,0,0.5); +} blockquote { letter-spacing: 1px; margin:0px; @@ -246,7 +255,7 @@ strong { /* =Titles */ .page-title { margin-top:100px; - margin-bottom:125px; + margin-bottom:75px; text-align: center; font-family: 'Inconsolata'; } @@ -285,18 +294,24 @@ strong { } .post-teaser { - margin-bottom: 45px; - font-weight: 700; font-family: 'Inconsolata'; } +.post-teaser p { + margin-bottom: 55px; + font-weight: 200; + font-family: 'Open Sans'; + font-size: 15px; + font-style: none; +} + .post-teaser__title { - font-size: 22px; + font-size: 25px; color: $iron; } .post-teaser__date { - font-size: 16px; + font-size: 17px; float: right; vertical-align: middle; color: $cloudy; @@ -379,7 +394,11 @@ strong { #disqus_thread { margin-top: 100px; } - +@media (max-width: 1000px) { + .contact-card { + width: 28%; + } +} @media (max-width: 800px) { /* =Base */ p { @@ -440,14 +459,23 @@ strong { .card { width: 40%; } + .contact-card { + width: 30%; + } } @media (max-width: 620px) { .card { width: 80%; } + .contact-card { + width: 45%; + } } @media (max-width: 400px) { .card { width: 100%; } + .contact-card { + width: 70%; + } } diff --git a/about.html b/about.html index 22137ce..71a2c65 100644 --- a/about.html +++ b/about.html @@ -1,12 +1,18 @@ --- layout: page title: About +description: A little bit about NixNet.xyz, its maintainer Amolith, and some fincancial information permalink: /about/ ---
-

At the moment, all the sites I host are running on netcup GmbH's 500 G8 VPS. I pay $6.10/mo in lump sums of $36.60 every six months. The domain nixnet.xyz is registered with gandi.net and it renews at $13.63/yr. I use Gandi because they have WHOIS privacy by default, every domain comes with two inboxes and unlimited aliases for both. One is amolith@nixnet.xyz and the other uses my real name rather than my pseudonym.

-

I accept donations only on Liberapay (so far) and how much I make from it is below. All of the money will go back to this site and the services I host, whether that means renewing the domain, upgrading the VPS, or some other cost. I won't keep any of it for myself.

- +

NixNet

+

NixNet.xyz is a network of websites and services hosted by the pseudonymous Amolith (me). The main reason I'm hosting these sites is because I like to be in control of my own data where feasible. The easiest way to accomplish this is to host the services I use. I make them public and and maintain them simply because I want to. The Linux and FLOSS community has completely changed my life and I feel like this is a small way I can do my part and give back.

+
+

Finance

+

At the moment, all the sites I host are running on netcup GmbH's 500 G8 VPS. I pay $6.10/mo in lump sums of $36.60 every six months. The domain nixnet.xyz is registered with gandi.net and it renews at $13.63/yr. I use Gandi because they have WHOIS privacy by default, every domain comes with two inboxes and unlimited aliases for both. One is amolith@nixnet.xyz and the other uses my real name rather than my pseudonym.

+

I only accept donations on Liberapay (so far) and how much I make from it is below. All of the money will go back to this site and the services I host, whether that means renewing the domain, upgrading the VPS, or some other cost. I won't keep any of it for myself.

+ +
diff --git a/blog/index.html b/blog/index.html index feae834..0286d82 100644 --- a/blog/index.html +++ b/blog/index.html @@ -13,6 +13,7 @@ sitemap: +

{{ post.description }}

{% endfor %} diff --git a/contact.html b/contact.html index bb6f69f..b54dbf2 100644 --- a/contact.html +++ b/contact.html @@ -2,26 +2,66 @@ layout: page title: Contact subtitle: Where to find me +description: Various ways to contact me permalink: /contact/ ---

These are some of my more public accounts; feel free to contact me at any of them!

-
- - - - - - - + -
+
+
+

-I also have Briar, Keybase, Signal, and I'm on Wire as @amolith. I can be found on the IRC server Freenode with the nick amolith and Jabber/XMPP at amolith@member.fsf.org. +I also have Briar and Signal if we meet IRL, Keybase, and I'm on Wire as @amolith. I can be found on the IRC server Freenode with the nick amolith and Jabber/XMPP at amolith@nixnet.xyz.

Despite the many ways to contact me, email is and always will be my most preferrered method (as well as the most reliable).

-

If you email me, please be sure to encrypt it with my GPG key +

If you email me, please be sure to encrypt it with my GPG key.

diff --git a/index.html b/index.html index 39448da..d35d820 100644 --- a/index.html +++ b/index.html @@ -35,9 +35,14 @@ priority: 0.9

PrivateBin

-

PrivateBin is a minimalist and open source pastebin that has zero knowledge of pasted data. Everything is encrypted and decrypted in-browser using 256bit AES in Galois Counter mode.

+

PrivateBin is a minimalist and open source pastebin that has zero knowledge of pasted data. Everything is encrypted and decrypted in-browser using 256bit AES in Galois Counter mode. It has many privacy-respecting features.

+
+

RSS-Bridge

+

RSS-Bridge is an application that generates feeds for sites that do not normally supports it. There are 179 bridges videos from YouTube playlists, channels, and searches, new Bandcamp releases by tag, and many others!

+ +

Jabber/XMPP

Jabber/XMPP is a set of open technologies for instant messaging, multi-party chat, voice and video calls, and collaboration.XMPP stands for the Extensible Messaging and Presence Protocol.