Merge branch 'wip-posts'

main
Stef Dunlap 2022-05-17 22:22:00 -04:00
commit 4020dd2a85
20 changed files with 1153 additions and 6 deletions

View File

@ -1,3 +1,9 @@
baseURL = 'http://example.org/'
baseURL = 'https://kindrobot.ca/'
languageCode = 'en-ca'
title = 'kindrobot.ca'
enableEmoji = true
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true

View File

@ -0,0 +1,202 @@
---
layout: post
title: "Arch on a Lenovo ThinkPad x140e"
slug: arch-thinkpad-x140e
date: 2014-12-26 22:37:00
categories: linux
---
Recently at work I had been virtualizing Arch Linux on a MacBook Pro using
VirtualBox. While there were many perks (easy backups, no hardware issues),
when I left that assignment (and had to give back the Mac), I couldn't justify
spending a grand on a Mac which would spend most of its time running Linux in a
virtual machine, so I set out to find a cheap, modern, Linux compatible laptop.
Ultimately, I landed on the Lenovo Thinkpad x140e which was [certified by
Canonical to run Ubuntu][canonical certification]. Unfortunately, for Arch
Linux, much of the hardware did not work out of the box. This post covers the
modifications I performed to get all of the hardware working including:
- graphics
- network adapters (wired and wireless)
- input devices (trackpad and trackpoint)
- sound
- Fn keys for volume and brightness
<!--more-->
This guide assumes that you've gone through all of the steps in the [Arch
installation guide][arch install]. For what it's worth, this guide is window
manager agnostic (or even atheist if you're just in terminal), though I'm using
[Awesome].
**Graphics**
The integrated Radeon HD 8330 card is supported by the proprietary driver,
`catalyst` (not recommended) or the open source `xf86-video-ati` driver. If
using the latter, also install the `mesa-libgq` for 3D acceleration and
`mesa-vdpau` for accelerated video decoding.
**Internet**
The ethernet card is supported by a driver in the kernel, you'll just need to
install a dhcp client (e.g. [dhcpcd]) to handle getting your computer to talk to
the router.
Wireless is a little tougher, the Broadcom chipset used is not yet supported by
any of the open source drivers, and so you'll need to follow the instructions
for [installing broadcom-wl drivers][wl]. Namely:
1. install `broadcom-wl` from the AUR
2. create a blacklist file named something like `/etc/modprobe.d/wireless.conf`
with the following:
```
blacklist brcm80211
blacklist b43
blacklist ssb
```
3. create a `modules-load.d` file named something like
`/etc/modules-load.d/wireless.conf` with:
```
wl
```
4. restart the machine.
You should then be able to connect to wireless through `wifi-menu` and `netctl`.
**Trackpad and Trackpoint**
I personally am not a fan of the track pad, but if you'd like yours to work
install `xf86-input-synaptics` and
[configure it to your liking][configure synaptics].
Trackpoint should work out of the box, though if you'd like middle button
scrolling, add the file `/etc/X11/xorg.conf.d/20-thinkpad.conf` with:
```
Section "InputClass"
Identifier "Trackpoint Wheel Emulation"
MatchProduct "TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint|ThinkPad USB Keyboard with TrackPoint|USB Trackpoint pointing device"
MatchDevicePath "/dev/input/event*"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "Emulate3Buttons" "false"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
```
and restart.
**Sound**
While the integrated sound card is supported out of the box, the system will
most likely set the wrong default card and so you won't be able to hear
anything, you can correct this by disabling the other sound device (which is
actually just a virtual device exposed by `thinkpad_acpi` to represent the
volume and mute buttons, and is not really needed — see below) by adding a file
`/etc/modprobe.d/alsa-base.conf` with
```
options snd_hda_intel 1 enable=1 index=0
options snd_hda_intel 2 enable=0 index=1
```
and restarting. You'll still need to unmute all the channels using something
like `alsamixer`. Install `alsa-utils` through pacman and use `alsamixer` to
unmute the channels and adjust the volume.
**ACPI Events (volume and brightness keys)**
In the past I've configured the window manager to handle volume and brightness
function keys. However, using the Linux [ACPI daemond][acpid] allows your
machine to handle these keys strokes before you even start X! First install
`acpid` through pacman, and `start` and `enable` `acpid` using `systemctl`.
Next, you'll be making the events for the brightness and volume key presses.
`/etc/acpi/events/bl_d`
```
event=video/brightnessdown
action=/etc/acpi/handlers/bl -
```
`/etc/acpi/events/bl_u`
```
event=video/brightnessup
action=/etc/acpi/handlers/bl +
```
`/etc/acpi/events/vol_u`
```
event=button/volumedown
action=/etc/acpi/handlers/vol -
```
`/etc/acpi/events/vol_d`
```
event=button/volumeup
action=/etc/acpi/handlers/vol +
```
`/etc/acpi/events/mute`
```
event=button/mute
action=/usr/bin/amixer set Master toggle
```
Next make the directory `/etc/acpi/handlers`, in which create the following
files:
`/etc/acpi/events/bl`
```
#!/bin/sh
bl_dev=/sys/class/backlight/radeon_bl0
step=5
case $1 in
-) echo $(($(&lt; $bl_dev/brightness) - $step)) &gt;$bl_dev/brightness;;
+) echo $(($(&lt; $bl_dev/brightness) + $step)) &gt;$bl_dev/brightness;;
esac
```
`/etc/acpi/events/vol`
```
#!/bin/sh
step=5
case $1 in
-) amixer set Master $step-;;
+) amixer set Master $step+;;
esac
```
... and make these files executable with `sudo chmod 755 /etc/acpi/handlers/*`.
_Note that the `vol` handler require `amixer` which is part of the `alsa-utils`
package._
**Conclusion**
That's about it. There's always more to be done, from customizing your wifi to
auto-connect, to setting up external displays, to installing an configuring a
window manager, but after following these steps, all of your hardware should be
up and running properly.
[canonical certification]: http://www.ubuntu.com/certification/hardware/201309-14195/
[arch install]: https://wiki.archlinux.org/index.php/Installation_guide
[Awesome]: https://wiki.archlinux.org/index.php/Awesome
[dhcpcd]: https://wiki.archlinux.org/index.php/dhcpcd
[wl]: https://wiki.archlinux.org/index.php/Broadcom_wireless#broadcom-wl
[configure synaptics]: https://wiki.archlinux.org/index.php/Synaptics
[acpid]: https://wiki.archlinux.org/index.php/acpid

View File

@ -0,0 +1,58 @@
---
layout: post
title: "Getting Candle Wax Off an LCD Monitor"
slug: remove-wax-from-lcd
date: 2015-01-03 22:16:00
categories: life
---
First you might ask, "How does one get wax on their monitor?" A valid question.
In my case, I had a taper candle on my desk, and I blew it out right before bed.
When I awoke, I found a splatter of wax from the candle in the bottom left
corner of my LCD. This post will talk about the steps I took to safely remove
the wax from the monitor without damaging the surface or liquid crystals of the
display.
_Note that this guide is intended for soft-surface LCD monitors (the kind that
are not glass/plastic covered and make distorted colors when you press on the
screen.)_
<!--more-->
**Inspired by Mom**
A tried-and-proven method of removing wax from fabric is to put a paper towel on
top of the stained area and then apply a hot iron onto the paper towel. This
melts the wax which is absorbed into the towel. While this does work wonders on
fabric, there are some hopefully obvious reasons why this is a bad idea with an
LCD screen.
**Steps to Safely Remove Wax**
You will need:
- a hair dryer
- a screen safe cloth
- screen cleaner, glasses cleaner, or distiled water
It's a pretty straight forward process:
1. pre-wet the cloth with the screen safe cleaner (or distiled water)
1. remove the base of the monitor (if possible) and place the monitor flat
on the ground, screen-side up
1. turn on the hair dryer to low and hold tip about three inches from the
surface of the monitor aimed at the wax
1. keep holding the dryer in place for about thirty seconds
1. while still aiming the dryer at the wax, with your other hand, begin wiping
the affected area gently with the moist rag
1. keep wiping the area gently, re-wetting the cloth if it dries out, until all
the wax has been cleared
That's it, pretty simple! Do not rush by turning the dryer up to high or wiping
harder as the LCD screen is fragile and high heat could damage the crystals in
the monitor.

View File

@ -0,0 +1,98 @@
---
layout: post
title: "Connecting to University of Cincinnati's Securewireless with netctl"
slug: uc-netctl
date: 2015-01-13 17:14:00
categories: linux
---
If you've set-up an Arch Linux installation, and you've used `wifi-menu` then
you've used [netctl][netctl] before and didn't even know it. `netctl` is
> ... a CLI-based tool used to configure and manage network connections via
> profiles. It is a native Arch Linux project for network configuration.
I used to think that the `wifi-menu` dialouge was a cute little installer helper
program, but I learned later, that it can be used to automatically generate
profiles in `/etc/netctl` that you can subsequently use to reconnect to network
later with
```bash
# netctl start INTERFACE-SSID
```
... where *INTERFACE* is the name of your wireless interface device (see below)
and *SSID* is the "name" of the network.
I was a little disappointed (but not too shocked) when `wifi-menu` failed to
connect to the University of Cincinnati's `Securewireless` network. This short
guide will discuss the steps needed to connect to `Securewireless` using
`netctl`, and discuss why these extra steps are needed.
<!--more-->
**Connect to Securewireless — _tl;dr_**
Create and edit the file `/etc/netctl/INTERFACE-Securewireless` as root (using
`sudo`). Note that _INTERFACE_ should be the name of your wireless interface.
Use `ip link` to find out what it is. While the interface prefix is not
mandatory, it does help you stay organized, `wifi-menu` adds it by default, and
you'll need it below.
```
Connection='wireless'
Interface=INTERFACE
Security='wpa-configsection'
Description="UC eduroam-like network"
IP='dhcp'
TimeoutWPA=30
WPAConfigSection=(
'ssid="Securewireless"'
'key_mgmt=WPA-EAP'
'identity="UC_USER_NAME"'
'password="UC_CENTRAL_LOGIN_PASSWORD"'
)
```
Where *`INTERFACE`* is your wireless interface as described above,
*`UC_USER_NAME`* is your 6+2 user name without the domain suffix (e.g. smithbb1
**not** smithbb1@mail.uc.edu), and *`UC_CENTRAL_LOGIN_PASSWORD`* is the central
login password that you use for all of your UC services. (Leave in the quotes
around the actual username and password.)
**Details**
The magic is in the `wpa-configsection`/`WPAConfigSection`. This allows you to
step outside of simple WEP/WPA/WPA2 shared passphrase paradigm and set the
security stack exactly how you need as if you were setting up `wpa_supplicant`
by hand. There's a lot you can do here, like connect to an [eduroam][eduroam]
network or use another pre-agreed upon security certificate, but UC's setup is
pretty simple. If you need to see all of the settings you can put in the
WPAConfigSection, see the manual page for `wpa_supplicant` or look at a [sample
wpa_supplicant.conf][wpa_supplicant example].
University of Cincinnati uses WPA Enterprise much like other universities.
According to [UC's IT Handbook (last page)][uc_it_handbook](pdf), `Securewireless`
uses:
* WPA2 Enterprise Security
* Protected Extensible Authentication Protocol (PEAP)
* No enterprise security certificate
Through trial and error, I found the simplest `WPAConfigSection` needed to
successfully connect. `ssid` is set to `Securewireless`, the name of UC's
network. `key_mgmt=WPA-EAP` tells the WPA supplicant to use and `identity` and
`password` through (Protected) Extensible Authentication Protocol to connect to
the network.
I hope that this either helps you connect to `Securewireless` at UC or points
you in the right direction for creating a profile to connect to your WPA
Enterprise network at your school/work.
[netctl]: https://wiki.archlinux.org/index.php/netctl
[eduroam]: https://wiki.archlinux.org/index.php/WPA2_Enterprise#netctl
[wpa_supplicant example]: http://w1.fi/cgit/hostap/plain/wpa_supplicant/wpa_supplicant.conf
[uc_it_handbook]: http://ucdirectory.uc.edu/studentplanner/ITHandbook.pdf

View File

@ -0,0 +1,82 @@
---
layout: post
title: "Idea for Part-time Agile Development Shop"
slug: "part-time-agile"
date: 2015-02-25 10:34:00
categories: life
---
Agile software development is awesome, but there's more to life than writing
code, developing software, and becoming the next successful start-up. People
might like to work part-time so that they can devote the rest of their time to
other things like school, research, theirs kids, or what-have-you in a
sustainable way. Unfortunately part-timer employees at full-time Agile shops can
create friction. Web search "agile part time employee" and you'll see a wash of
people trying to hammer out the problem of how to coordinate fragmented,
part-time, and/or remote teams in an agile work place. The problem, I think, is
that it's not possible, or at least it's very hard. Think: trying to jam a large
rectangular prism through a small circular hole. You might make it work, but
you're probably not going to like it.
But that's only thinking about the problem with the 8 hour work week as a
constant. Read on to see a proposed way to work agile, part-time.
<!--more-->
Agile Buy In
------------
Agile works when everyone buys into it 100%. You're going to partner all the
time, you're going all to test drive your code. You're all going to have small
teams (2-6) working on a sole project that stand-up and retrospect. You're going
to cycle your pairs within your team and the members of your team. Web search
"Agile the Pivotal Way" and watch [any of][AtPW1] [those videos][AtPW2] and
you'll get a good idea of what a well-running 100% agile/XP/alternative
development shop looks like.
[AtPW1]: https://vimeo.com/52923973
[AtPW2]: http://pivotallabs.com/103-agile-the-pivotal-way/
Being Part Time Isn't Lazy
--------------------------
Somehow, we've got it in our heads that working 8 hours a week (or more) at a
single job is needed. However, most people are self-admittedly multi-faceted.
They might want to pursue a graduate degree, learn about another subject
entirely, volunteer, be a Batista at a coffee house, home school their kids. The
exact motivation could be anything, let's merely acknowledge that it could be
awesome to split up your day, and flex your brain and body in different ways
throughout the day.
A Solution
----------
So you can see where the rub is, right? How do you get 100% Agile buy in and
let people work part-time? My proposed solution is to have everyone buy in to a
part-time development cycle. An example of your company's schedule could be
this:
00:00 - 12:00 - Company members live their lives away from work
12:00 - 13:00 - all Company members come to office, have lunch, and chat
13:00 - 13:30 - Company stands up, Company splits into teams
team stands up, split into pairs
13:30 - 18:00 - pairs program
~30 minutes is used in this block for one break big or multiple small breaks
18:00 - XX:XX - reform into Company, have drinks, unwind
XX:XX - 24:00 - Company members live their lives away from work
The formula is (approximately): one hour for lunch, half hour for stand-ups,
four-and-a-half hours for programing (with a half-hours worth of
break time sprinkled in), unwind, and go do whatever. *Optionally* (and I stress
**optionally**) company members can come together before work or after work and
have talks, perform research in groups, just hang out, but the important thing
is it is truly *their time*.
For me, the problem is right now is to find some people (at least one) to start
this crazy idea with. I am thinking of taking the summer and working
(full-time) for an agile shop or coaching a company into getting to agile, so
that I can get into that well-tested full-time agile groove and then in the fall
of 2015 coming together with a person/team form a Company doing part-time agile.
Are you crazy enough to give this a try this with me? Drop me a line:
<apocryphalauthor@gmail.com>.

View File

@ -0,0 +1,47 @@
---
layout: post
title: "Hexaflexago: the friendly hexaflexagon template generator"
slug: hexaflexago
date: 2017-05-25 12:05:00
categories: projects
---
I was originally turned on to [hexaflexagons] while watching a [video by
vihart]. Ive since become a tad obsessed. My partner, [Jane Meredith], and I
created [Hexaflexago], a hexaflexagon template generator.
[![Hexaflexago screenshot](/images/hexaflexago.png)](http://hexaflexago.motevets.com/)
# Features
- Generates a printable trihexaflexagon template
- Upload up the three images; Hexaflexago splices them into the template for
you
# Technical Notes
Written with:
- React.js using [create-react-app]
- the vanilla [SVG standard]
# Whats Next?
There are some improvements Id like to make to Hexaflexago eventually.
- enable users to crop added images *(currently Hexaflexago letterboxes images
that are not regular hexagons)*
- add documentation on how to fold the hexaflexagon template
- support adding six images to make hexahexaflexagons
Im also currently working with [Littoral Press] to make hexaflexagon business
cards. Heres a prototype:
![Hexaflexagon business cards](/images/hexaflexagon_business_cards.jpg)
[Jane Meredith]: https://jane.biz/
[hexaflexagons]: http://vihart.com/hexaflexagons/
[video by vihart]: https://www.youtube.com/watch?v=VIVIegSt81k
[Hexaflexago]: http://hexaflexago.motevets.com/
[create-react-app]: https://github.com/facebook/create-react-app
[Littoral Press]: http://littoralpress.com/
[SVG standard]: https://developer.mozilla.org/en-US/docs/Web/SVG

View File

@ -0,0 +1,34 @@
---
layout: post
title: "🦆.to"
slug: duck-dot-to
date: 2017-05-25 12:05:00
categories: projects
---
[![un moment](/images/duck_loading.png)](http://🦆.to)
Though ICANN has disallowed emojis in domain names<sup>[1]</sup>, some ccTLD (country code top-level domain) registrars have gone rouge and permit (and even encourage) the purchase of emoji domains. One of the first ccTLDs to do this was .ws which is the TLD for Samoa. Normally when a new ccTLD announces that they are selling emoji domains, the single emoji domains sell out fast. When I found that .to was selling emoji domains, almost every single emoji domain was gone when I got there. Luckily there's nothing stopping you from registering emoji domains for emoji that haven't been implemented by most phones and OSes yet. This is how I came to own 🦆.to.
I waited for a while for most people to have 🦆 on their emoji keyboard, but even well after that, I didn't know what to do with my new domain. One weekend, I had some spare time, and decided to make what I thought would be a temporary parking space, but which turned out to be a labor of love that I am very proud to introduce to you here.
[🦆.to] first brings up a loading screen with an adorable animated duck and then shows a random duck GIF from [giphy.com].
[![Ce n'est pas un canard.](/images/ducks.gif)](http://🦆.to)
Some things that I personally learned in this project are:
- registering an emoji domain using [punycode]
- using the new-ish [`fetch` API] to [make asynchronous API calls to the giphy API](https://github.com/motevets/duck/blob/78bd1ea492fc5018307e4c7b7d6647a762023f7f/index.html#L13)
- making a modest responsive web page by:
- using [`vmin`] to [scale the font size](https://github.com/motevets/duck/blob/78bd1ea492fc5018307e4c7b7d6647a762023f7f/index.html#L74)
- setting the [`viewport`] so that the site looks consistent on mobile browsers without using media queries
[1]: https://features.icann.org/ssac-advisory-use-emoji-domain-names
[giphy.com]: http://giphy.com
[🦆.to]: http://🦆.to/
[`fetch` API]: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
[`vmin`]: https://css-tricks.com/simple-little-use-case-vmin/
[`viewport`]: https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag
[punycode]: https://en.wikipedia.org/wiki/Punycode

View File

@ -0,0 +1,52 @@
---
layout: post
title: "mintwise"
slug: "mintwise"
date: 2020-06-08 12:05:00
categories: projects
---
[![mintwise logo](/images/mintwise_logo.svg)][mintwise]
So imagine this scenario: you move in with your partner and you want to start splitting rent, utilities, groceries, dining out, vacation expenses, home goods expenses, etc. "Don't worry," you say, "there's an app for that, [Splitwise]!"
Great! Now all you have to do is comb through all of your credit card expenses at the end of the month and put them in Splitwise... and put the right date... and the right category...
"No problem," you say, "I'll just put in the expenses into the Splitwise app as I pay for them." Well, except you forget to put a few expenses in at the time you're purchasing them. Now it's the end of the month, and you're still going through your credit card statement _and_ deduping the ones you've already put in.
"There has to be a better way," you say, "I know! I'm a software engineer. If there's anything I'm good at, it's over engineering a solution to a minor annoyance!"
Enter **[mintwise]**, a command line interface to pull the transactions from all of your credit cards out of [Mint] and put them into [Splitwise]. Mint is a free<sup>1</sup> webapp that aggregates all of the transactions from all of your provided financial institutions to show you a snapshot of your finances. It also employs machine learning to categorize your expenses, to help you track how you're spending your money. Because I already use Mint, I thought it would be convenient if I could export selected expenses from Mint into Splitwise. Unfortunately, Mint does not have a public API, but luckily, there's an open-source Javascript SDK for scraping your transactions off of the Mint webapp, [pepper-mint]. On the other hand, Splitwise _does_ have [a public API][splitwise-api], so once I had a way to export all of my credit card transactions from Mint, importing them into Splitwise was straightforward.
## Some ways that this was totally over engineered
mintwise offers the following features:
- shows you your expenses one-by-one and allows you to select whether or not you want to split them
- automatically translates Mint categories into Splitwise categories (if it doesn't know the mapping, it'll ask you and then save it)
- allows you to specify a date range from which to pull expenses
- lets you specify which accounts are in Canadian dollars (because thats something [Mint doesn't track for some reason][mint-usd-cad])
- offers alternate import experience where you export your Mint transactions as a CSV, and use that to import transactions into Splitwise
While I didn't write any tests for mintwise, in order to make it easier to refactor, I used type checking in Node.js using [Flow's comment syntax] (so that I didn't have to introduce Webpack to strip out annotations.) I also tried my hand at using the MVC (Model, View, Controller) pattern for a CLI app.
## Conclusion
In the end, I have probably spent way more time writing mintwise than I ever would have manually entering expenses into Splitwise. My partner has a much simpler solution, just use one credit card for shared expenses.
However, I had a really good time working on mintwise. When I am working my day job, I have to be careful not to fall in the trap of over engineering a solution and pushing back the deliverable from what the team estimated. So it's nice to come home, put on my cowboy hat, and ride off into the sunset.
[Try out mintwise for yourself.][mintwise]
-----------
1: Mint is provided for free from Intuit, who makes money by [anonymizing, packing up, and selling your financial data to third parties][mint-business-strategy].
[Splitwise]: https://splitwise.com
[mintwise]: https://github.com/motevets/mintwise
[Mint]: https://mint.com
[mint-business-strategy]: https://www.investopedia.com/articles/personal-finance/082216/how-mintcom-makes-money-intu.asp
[pepper-mint]: https://github.com/dhleong/pepper-mint
[splitwise-api]: https://dev.splitwise.com/#introduction
[mint-usd-cad]: https://www.reddit.com/r/PersonalFinanceCanada/comments/4vom5o/mint_with_usd_and_cad_accounts/
[Flow's comment syntax]: https://flow.org/en/docs/types/comments/

View File

@ -5,7 +5,7 @@
<title>{{ block "title" . }}
{{ .Site.Title }}
{{ end }}</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="/style.css">
</head>
<body>
<!-- Code that all your templates share, like a header -->

View File

@ -0,0 +1,10 @@
{{ define "main" }}
<main id="main">
<div>
<h1 id="title">{{ .Title }}</h1>
{{ range .Pages }}
{{ .Render "summary"}}
{{ end }}
</div>
</main>
{{ end }}

View File

@ -0,0 +1,9 @@
{{ define "main" }}
<main id="main">
<div>
<h1 id="title">{{ .Title }}</h1>
{{.Content}}
</div>
</main>
{{ end }}

View File

@ -0,0 +1,12 @@
{{ define "main" }}
<article class="post">
<header>
<h2><a href='{{ .Permalink }}'> {{ .Title }}</a> </h2>
<div class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }} - {{ .FuzzyWordCount }} Words </div>
</header>
{{ .Summary }}
<footer>
<a href='{{ .Permalink }}'><nobr>Read more →</nobr></a>
</footer>
</article>
{{ end }}

View File

@ -13,10 +13,17 @@
<div class="homepage-content">
{{.Content}}
</div>
<hr/>
<div>
{{ range first 10 .Site.RegularPages }}
{{ .Render "summary"}}
{{ end }}
<ul class="homepage-posts">
{{ range first 10 .Site.RegularPages }}
<li>
<div class="post">
<a href="{{ .Permalink }}">{{ .Title }}</a> <span class="date">{{ .Date.Format "02 Jan 2006" }}</span>
</div>
</li>
{{ end }}
</ul>
</div>
<hr/>
<div id="tilde_ring" style="background-color:slategray; text-align:center; border-radius:10px;">

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 578 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 KiB

View File

@ -0,0 +1,398 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="184.44705mm"
height="66.061737mm"
viewBox="0 0 184.44705 66.061737"
version="1.1"
id="svg8"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="mintwise_logo.svg">
<defs
id="defs2">
<marker
inkscape:stockid="TriangleOutS"
orient="auto"
refY="0.0"
refX="0.0"
id="marker6689"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path6687"
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.2)" />
</marker>
<marker
inkscape:stockid="TriangleOutS"
orient="auto"
refY="0.0"
refX="0.0"
id="TriangleOutS"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path5446"
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.2)" />
</marker>
<marker
inkscape:stockid="Tail"
orient="auto"
refY="0.0"
refX="0.0"
id="Tail"
style="overflow:visible"
inkscape:isstock="true">
<g
id="g5346"
transform="scale(-1.2)"
style="stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1">
<path
id="path5334"
d="M -3.8048674,-3.9585227 L 0.54352094,0"
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" />
<path
id="path5336"
d="M -1.2866832,-3.9585227 L 3.0617053,0"
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" />
<path
id="path5338"
d="M 1.3053582,-3.9585227 L 5.6537466,0"
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" />
<path
id="path5340"
d="M -3.8048674,4.1775838 L 0.54352094,0.21974226"
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" />
<path
id="path5342"
d="M -1.2866832,4.1775838 L 3.0617053,0.21974226"
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" />
<path
id="path5344"
d="M 1.3053582,4.1775838 L 5.6537466,0.21974226"
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" />
</g>
</marker>
<marker
inkscape:stockid="TriangleOutL"
orient="auto"
refY="0.0"
refX="0.0"
id="TriangleOutL"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path5440"
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path5313"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path5301"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path5316"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="78.044816"
inkscape:cy="109.9509"
inkscape:document-units="mm"
inkscape:current-layer="g5772"
showgrid="false"
inkscape:snap-bbox="false"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:window-width="1920"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:snap-page="true"
inkscape:snap-nodes="false"
inkscape:snap-grids="false"
inkscape:snap-to-guides="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-11.725705,-45.280089)">
<g
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1"
id="logo-stroke"
transform="matrix(0.26458333,0,0,0.26458333,28.290311,46.042169)" />
<g
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1"
id="sw"
transform="matrix(0.26458333,0,0,0.26458333,145.76963,48.952586)">
<g
id="logo/primary"
transform="translate(10,0.5)">
<g
id="g3791">
<polygon
style="stroke:#ffffff;stroke-width:25"
id="bg"
points="0.89361702,47.520842 84.44585,0 168,47.520842 168,175.1066 0.89361702,175.1066 " />
<path
style="fill:#1cc29f"
inkscape:connector-curvature="0"
d="M 63.800562,106.80721 83.980817,95.381101 -1.1914894e-4,47.828009 V 94.788644 C 6.2933277,91.461774 14.222689,89.729979 23.301838,89.729979 c 19.768,0 32.278639,8.233624 40.498724,17.077231"
id="Fill-1" />
<path
style="fill:#1cc29f"
inkscape:connector-curvature="0"
d="m 26.747983,172.35345 c 8.411915,0 14.754213,-2.43293 14.754213,-8.65431 0,-6.35576 -8.13549,-8.78985 -18.201192,-11.22395 -7.493276,-1.88254 -16.0934465,-3.77092 -23.30076570213,-7.33267 v 12.06531 C 6.0673021,166.80983 16.133004,172.35345 26.747983,172.35345"
id="Fill-4" />
<polygon
style="fill:#52595f"
id="Fill-6"
points="167.96163,142.93314 167.96163,47.828126 83.980698,95.381218 " />
<polygon
style="fill:#ace4d6"
id="Fill-9"
points="83.980698,95.380283 167.96044,47.82836 83.980698,0.27526873 -0.00023829787,47.82836 " />
<path
style="fill:#373b3f"
inkscape:connector-curvature="0"
d="M 83.980221,95.379582 63.799966,106.80686 42.168477,119.0568 c -5.52732,-4.31079 -12.557107,-7.42031 -19.004256,-7.42031 -7.860255,0 -11.858893,2.56731 -11.858893,7.30229 0,5.477 5.470127,8.08755 13.049191,10.2038 1.590638,0.44405 3.268255,0.86823 5.013787,1.29008 16.684426,3.92167 39.021277,8.92541 39.021277,31.37214 0,4.71278 -1.011574,9.40919 -3.227745,13.69427 H 167.95997 v -32.5664 z"
id="Fill-12" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
d="m 29.368306,130.43278 c -1.745532,-0.42185 -3.423149,-0.84603 -5.013787,-1.29008 -7.579064,-2.11625 -13.049191,-4.7268 -13.049191,-10.20381 0,-4.73497 3.998638,-7.30228 11.858893,-7.30228 6.447149,0 13.476936,3.10952 19.004256,7.42031 L 63.799966,106.80698 C 55.578689,97.963369 43.069243,89.728577 23.301243,89.728577 c -9.080341,0 -17.0073196,1.731795 -23.30076640426,5.059834 v 48.144379 2.20973 C 7.2066043,148.70427 15.807966,150.59148 23.301243,152.47402 c 10.06451,2.43527 18.201191,4.86819 18.201191,11.22512 0,6.22138 -6.343489,8.65431 -14.754213,8.65431 -10.61617,0 -20.6818721,-5.54362 -26.74774440426,-15.14562 v 18.29136 H 65.161838 c 2.216171,-4.28508 3.227745,-8.9815 3.227745,-13.69427 0,-22.44673 -22.336851,-27.45165 -39.021277,-31.37214"
id="Fill-14" />
</g>
</g>
<g
id="g5276"
transform="translate(-5.4847019,-14.142136)">
<g
transform="translate(5.9924604,210.70379)"
id="assets/wordmark/primary"
style="fill:#ffffff">
<g
id="Group-16">
<path
style="fill:#52595f;fill-opacity:1"
id="Combined-Shape"
d="m 4.9807,31.0602 c -2.066,-0.6 -3.727,-1.38 -4.98,-2.34 l 2.201,-4.88 c 1.199,0.88 2.625,1.587 4.279,2.12 1.652,0.534 3.307,0.8 4.959,0.8 1.842,0 3.201,-0.273 4.08,-0.82 0.881,-0.546 1.32,-1.274 1.32,-2.18 0,-0.667 -0.259,-1.221 -0.779,-1.66 -0.519,-0.44 -1.187,-0.793 -2,-1.061 -0.814,-0.265 -1.914,-0.559 -3.301,-0.879 -2.133,-0.506 -3.879,-1.013 -5.24,-1.52 -1.359,-0.507 -2.525,-1.32 -3.5,-2.44 -0.973,-1.12 -1.459,-2.614 -1.459,-4.48 0,-1.627 0.44,-3.1 1.32,-4.42 0.879,-1.32 2.205,-2.366 3.981,-3.14 1.771,-0.773 3.939,-1.161 6.5,-1.161 1.785,0 3.531,0.214 5.238,0.641 1.707,0.427 3.201,1.04 4.481,1.84 l -2,4.92 c -2.586,-1.466 -5.174,-2.2 -7.76,-2.2 -1.815,0 -3.154,0.294 -4.02,0.88 -0.867,0.586 -1.3,1.36 -1.3,2.32 0,0.96 0.5,1.674 1.5,2.139 1,0.468 2.527,0.928 4.58,1.381 2.132,0.507 3.88,1.014 5.24,1.52 1.359,0.507 2.525,1.307 3.5,2.4 0.972,1.094 1.461,2.574 1.461,4.44 0,1.6 -0.447,3.06 -1.342,4.38 -0.893,1.32 -2.232,2.367 -4.02,3.14 -1.787,0.773 -3.959,1.16 -6.519,1.16 -2.213,0 -4.354,-0.3 -6.42,-0.9 z m 37.3203,-6 c 1.027,-1.08 1.541,-2.526 1.541,-4.34 0,-1.813 -0.514,-3.26 -1.541,-4.34 -1.025,-1.08 -2.34,-1.62 -3.939,-1.62 -1.6,0 -2.915,0.54 -3.94,1.62 -1.027,1.08 -1.541,2.527 -1.541,4.34 0,1.814 0.514,3.26 1.541,4.34 1.025,1.08 2.34,1.62 3.94,1.62 1.599,0 2.914,-0.54 3.939,-1.62 z m 2.6,-14.04 c 1.64,0.92 2.927,2.214 3.861,3.88 0.934,1.667 1.4,3.607 1.4,5.82 0,2.214 -0.466,4.153 -1.4,5.819 -0.934,1.667 -2.221,2.96 -3.861,3.881 -1.639,0.92 -3.459,1.38 -5.459,1.38 -2.746,0 -4.907,-0.866 -6.481,-2.6 v 10.04 h -6.24 v -29.28 h 5.961 v 2.48 c 1.547,-1.866 3.799,-2.8 6.76,-2.8 2,0 3.82,0.46 5.459,1.38 z m 9.419,20.4604 v -29.68 h 6.24 v 29.68 z m 12.04,0 v -21.52 h 6.24 v 21.52 z m 0.32,-25.52 c -0.719,-0.667 -1.08,-1.493 -1.08,-2.481 0,-0.986 0.361,-1.813 1.08,-2.48 0.721,-0.666 1.654,-1 2.801,-1 1.146,0 2.08,0.32 2.798,0.961 0.721,0.64 1.081,1.439 1.081,2.399 0,1.04 -0.36,1.901 -1.081,2.58 -0.718,0.68 -1.652,1.021 -2.798,1.021 -1.147,0 -2.08,-0.334 -2.801,-1 z M 92.2795,30.44 c -0.613,0.454 -1.365,0.794 -2.26,1.021 -0.892,0.225 -1.834,0.339 -2.82,0.339 -2.559,0 -4.539,-0.653 -5.94,-1.96 -1.4,-1.306 -2.099,-3.226 -2.099,-5.76 v -9.32 h -3.32 V 9.961 h 3.32 V 5.2 h 6.24 v 4.761 h 5.359 v 4.799 h -5.359 V 24 c 0,0.907 0.233,1.607 0.699,2.1 0.467,0.493 1.127,0.74 1.981,0.74 0.986,0 1.826,-0.266 2.519,-0.8 z m 38.3183,-20.4794 -7.801,21.52 h -6 l -4.84,-13.361 -5,13.361 h -6 l -7.759,-21.52 h 5.88 l 5.081,14.56 5.279,-14.56 h 5.279 l 5.121,14.56 5.24,-14.56 z m 2.9202,21.52 v -21.52 h 6.24 v 21.52 z m 0.32,-25.52 c -0.719,-0.667 -1.08,-1.493 -1.08,-2.481 0,-0.986 0.361,-1.813 1.08,-2.48 0.721,-0.666 1.654,-1 2.801,-1 1.146,0 2.08,0.32 2.799,0.961 0.72,0.64 1.08,1.439 1.08,2.399 0,1.04 -0.36,1.901 -1.08,2.58 -0.719,0.68 -1.653,1.021 -2.799,1.021 -1.147,0 -2.08,-0.334 -2.801,-1 z m 13.7188,25.1796 c -1.707,-0.44 -3.066,-0.993 -4.08,-1.66 l 2.08,-4.481 c 0.961,0.615 2.121,1.115 3.48,1.5 1.36,0.388 2.694,0.58 4,0.58 2.641,0 3.961,-0.652 3.961,-1.96 0,-0.612 -0.361,-1.052 -1.08,-1.319 -0.72,-0.266 -1.828,-0.493 -3.32,-0.681 -1.76,-0.265 -3.215,-0.573 -4.361,-0.919 -1.147,-0.346 -2.139,-0.96 -2.979,-1.84 -0.84,-0.88 -1.26,-2.133 -1.26,-3.76 0,-1.36 0.393,-2.566 1.18,-3.62 0.785,-1.053 1.934,-1.873 3.44,-2.46 1.505,-0.586 3.287,-0.88 5.339,-0.88 1.52,0 3.034,0.167 4.541,0.5 1.506,0.334 2.752,0.794 3.739,1.38 l -2.078,4.44 c -1.895,-1.066 -3.961,-1.6 -6.202,-1.6 -1.334,0 -2.334,0.186 -3,0.56 -0.666,0.373 -1,0.854 -1,1.44 0,0.667 0.36,1.134 1.08,1.4 0.721,0.267 1.868,0.52 3.44,0.76 1.76,0.294 3.201,0.606 4.32,0.94 1.121,0.333 2.094,0.94 2.92,1.82 0.826,0.88 1.24,2.107 1.24,3.68 0,1.333 -0.4,2.52 -1.199,3.56 -0.801,1.04 -1.967,1.847 -3.5,2.42 -1.535,0.573 -3.353,0.86 -5.461,0.86 -1.787,0 -3.533,-0.221 -5.24,-0.66 z m 25.6016,-15.58 c -0.961,0.8 -1.547,1.894 -1.76,3.28 h 10.6 c -0.215,-1.36 -0.801,-2.446 -1.76,-3.26 -0.961,-0.813 -2.135,-1.22 -3.521,-1.22 -1.413,0 -2.6,0.4 -3.559,1.2 z m 14.6,6.92 h -16.282 c 0.295,1.334 0.987,2.387 2.08,3.16 1.094,0.774 2.454,1.16 4.081,1.16 1.121,0 2.113,-0.167 2.98,-0.5 0.867,-0.333 1.674,-0.86 2.42,-1.58 l 3.32,3.6 c -2.027,2.32 -4.986,3.48 -8.881,3.48 -2.425,0 -4.572,-0.473 -6.439,-1.42 -1.867,-0.946 -3.307,-2.26 -4.32,-3.94 -1.014,-1.68 -1.52,-3.586 -1.52,-5.72 0,-2.106 0.5,-4.007 1.5,-5.7 1,-1.693 2.373,-3.013 4.121,-3.96 1.746,-0.946 3.699,-1.42 5.86,-1.42 2.105,0 4.013,0.453 5.72,1.359 1.705,0.908 3.045,2.207 4.02,3.901 0.972,1.693 1.459,3.66 1.459,5.9 0,0.08 -0.039,0.64 -0.119,1.68 z"
inkscape:connector-curvature="0" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5240"
d="m 53.632287,428.56295 c -2.567283,-0.43089 -5.770311,-1.59366 -7.062797,-2.56395 -0.43421,-0.32596 -0.417643,-0.42849 0.339834,-2.10321 0.437962,-0.96829 0.895346,-2.01384 1.016409,-2.32345 l 0.220115,-0.56292 1.207819,0.73837 c 2.079115,1.27102 4.189733,1.83823 7.337893,1.972 3.21213,0.1365 4.702275,-0.23162 5.610235,-1.3859 0.756707,-0.962 0.67461,-2.34766 -0.186689,-3.15099 -1.009529,-0.94158 -1.301695,-1.05428 -5.745242,-2.21623 -4.661186,-1.21886 -5.852859,-1.69395 -7.372626,-2.93929 -1.733308,-1.42031 -2.21986,-2.57574 -2.222012,-5.27664 -0.0016,-2.04946 0.07186,-2.40586 0.747759,-3.62615 1.860777,-3.35951 5.461106,-4.96566 10.993453,-4.90428 3.226043,0.0358 5.877686,0.59528 8.058335,1.7003 l 1.288236,0.6528 -0.40338,0.94209 c -0.22186,0.51815 -0.635977,1.53871 -0.920262,2.26791 -0.284284,0.72921 -0.593406,1.32583 -0.686937,1.32583 -0.09353,0 -0.658213,-0.23585 -1.254848,-0.52412 -2.018276,-0.97512 -4.994233,-1.57362 -7.105192,-1.42893 -3.121458,0.21395 -4.632806,1.30488 -4.632806,3.34408 0,1.63271 0.985645,2.2324 5.656854,3.44178 6.646575,1.72081 8.603412,2.74272 9.834304,5.1357 1.410728,2.74261 0.611819,6.67899 -1.797259,8.85545 -1.274662,1.15158 -3.635984,2.25033 -5.627294,2.61844 -1.689869,0.31239 -5.465191,0.31824 -7.293902,0.0113 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5242"
d="m 72.784843,421.63018 v -14.52094 h 2.904188 2.904189 v 1.29265 1.29266 l 0.806933,-0.78893 c 1.386551,-1.35561 2.83238,-1.89172 5.406899,-2.00489 2.870769,-0.1262 4.546538,0.32252 6.69475,1.79261 1.741893,1.19203 2.937825,2.74771 3.783399,4.92148 0.442246,1.13691 0.567691,1.9938 0.581881,3.97475 0.02085,2.91084 -0.417755,4.5248 -1.800512,6.62539 -1.784766,2.7113 -4.479997,4.1525 -8.068137,4.31421 -2.814329,0.12683 -4.631962,-0.36129 -6.134508,-1.64742 l -1.018167,-0.87151 v 5.07044 5.07044 H 75.8153 72.784843 Z m 13.43301,1.84967 c 1.222199,-0.36618 2.843127,-1.9441 3.277568,-3.19061 0.507625,-1.45649 0.383219,-4.27598 -0.242745,-5.5015 -1.698846,-3.32601 -5.927887,-4.16328 -8.64227,-1.71099 -1.28809,1.16371 -1.899068,2.78474 -1.861348,4.9385 0.07259,4.14497 3.500992,6.65339 7.468795,5.4646 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5244"
d="m 100.3115,413.67523 v -14.64721 h 3.03046 3.03045 v 14.64721 14.64721 h -3.03045 -3.03046 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5246"
d="m 112.43333,417.71584 v -10.6066 h 3.03046 3.03046 v 10.6066 10.6066 h -3.03046 -3.03046 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5248"
d="m 113.47416,403.39443 c -2.321,-1.14341 -2.3533,-4.55429 -0.0544,-5.74311 1.16269,-0.60125 3.30911,-0.50913 4.34265,0.18637 2.15531,1.45039 1.65515,4.7651 -0.86298,5.71919 -1.02614,0.3888 -2.44267,0.32161 -3.42528,-0.16245 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5250"
d="m 129.78219,428.21033 c -1.59411,-0.56861 -2.84528,-1.60436 -3.61424,-2.99197 l -0.72891,-1.31534 -0.0794,-6.12405 -0.0794,-6.12405 h -1.75151 -1.75151 v -2.27284 -2.27284 h 1.76777 1.76777 v -2.39911 -2.39912 h 2.90418 2.90419 v 2.39912 2.39911 h 2.77792 2.77792 v 2.27284 2.27284 h -2.7962 -2.79621 l 0.0814,5.25214 c 0.0931,6.00296 0.19886,6.36725 2.00655,6.90885 0.87538,0.26227 1.22161,0.24845 2.15123,-0.0858 0.60936,-0.21912 1.15517,-0.32198 1.21291,-0.22856 0.38636,0.62514 1.39602,3.71722 1.29757,3.97378 -0.36468,0.95035 -6.00497,1.46523 -8.05207,0.73504 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5252"
d="m 143.17592,417.90006 c -2.05087,-5.72661 -3.72709,-10.49725 -3.72494,-10.60142 0.002,-0.10417 1.23678,-0.1894 2.74361,-0.1894 h 2.73967 l 2.49991,7.19734 c 1.37494,3.95853 2.56768,7.19733 2.65052,7.19733 0.0828,0 1.32248,-3.2388 2.75474,-7.19733 l 2.60412,-7.19734 h 2.55722 2.55723 l 2.5173,7.19399 c 1.38452,3.9567 2.588,7.1955 2.6744,7.19734 0.1394,0.003 0.87424,-1.96658 4.40363,-11.80282 l 0.9288,-2.58851 h 2.64272 c 1.45349,0 2.60484,0.0965 2.55854,0.21452 -0.0463,0.11799 -1.77866,4.89096 -3.84969,10.6066 l -3.76551,10.39208 h -2.94482 -2.94482 l -2.36781,-6.56599 c -1.3023,-3.6113 -2.43991,-6.56599 -2.52802,-6.56599 -0.0881,0 -0.93387,2.07397 -1.87945,4.60882 -0.94558,2.53485 -2.05422,5.48955 -2.46365,6.56599 l -0.7444,1.95717 -2.94522,-0.005 -2.94521,-0.005 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5254"
d="m 179.60847,417.71584 v -10.6066 h 3.03046 3.03046 v 10.6066 10.6066 h -3.03046 -3.03046 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5256"
d="m 180.64931,403.39443 c -1.68472,-0.82996 -2.28731,-2.93022 -1.3036,-4.54356 1.30335,-2.13756 5.02879,-2.18101 6.50331,-0.0758 0.55602,0.79383 0.49576,2.67909 -0.11218,3.50906 -1.05935,1.44627 -3.37829,1.95237 -5.08753,1.11034 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5258"
d="m 193.87688,428.10821 c -0.97227,-0.25121 -2.35422,-0.71314 -3.07099,-1.02651 l -1.30323,-0.56978 0.90206,-1.93579 c 1.12951,-2.42392 1.14649,-2.44191 1.8668,-1.97964 2.01128,1.2908 7.60261,2.01157 9.47551,1.22149 0.99398,-0.41931 1.51997,-1.51991 1.10075,-2.30324 -0.38207,-0.71391 -0.90208,-0.88881 -4.5855,-1.54235 -4.8739,-0.86475 -6.43698,-1.60719 -7.54942,-3.58585 -0.80855,-1.43815 -0.82984,-3.88746 -0.0469,-5.39896 0.71552,-1.38138 2.25988,-2.67155 4.03986,-3.37491 1.77953,-0.70318 6.29996,-0.97603 8.70899,-0.52566 1.79228,0.33506 4.47797,1.2543 4.47797,1.53268 0,0.1024 -0.40545,1.06371 -0.90099,2.13624 -0.71789,1.55379 -0.98731,1.9167 -1.32582,1.78588 -2.38211,-0.9206 -3.62143,-1.18122 -5.64761,-1.18763 -3.05491,-0.01 -4.54223,0.85951 -4.14934,2.42487 0.22221,0.88539 1.05452,1.22848 4.60634,1.89878 4.09688,0.77317 5.29367,1.18841 6.46092,2.24167 1.29403,1.16767 1.71563,2.15917 1.70856,4.01824 -0.0103,2.70944 -1.53269,4.7079 -4.48516,5.88768 -2.02062,0.80742 -7.65269,0.96231 -10.28277,0.28279 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
<path
transform="translate(-45.924008,-397.01765)"
inkscape:connector-curvature="0"
id="path5260"
d="m 219.46225,428.20381 c -4.34591,-1.19696 -7.36635,-4.48442 -8.08064,-8.79502 -0.89939,-5.42761 2.58681,-10.76814 7.96379,-12.19982 0.71529,-0.19045 2.24165,-0.34762 3.39193,-0.34927 6.43621,-0.009 10.88468,4.44378 10.90813,10.91927 l 0.006,1.70464 h -8.21088 -8.21088 l 0.39559,0.94702 c 0.92958,2.22533 2.94934,3.42211 5.79837,3.43574 2.01461,0.01 3.41614,-0.37931 4.62713,-1.28411 l 0.83906,-0.62691 0.63839,0.59503 c 0.35111,0.32727 1.08489,1.12618 1.63061,1.77537 l 0.99223,1.18034 -1.44376,1.03385 c -2.09039,1.4969 -4.08069,2.04012 -7.37339,2.01246 -1.47851,-0.0124 -3.22084,-0.16929 -3.87186,-0.34859 z m 8.63355,-12.34432 c 0,-0.0487 -0.12934,-0.47488 -0.28742,-0.94702 -0.74471,-2.22426 -2.60273,-3.55454 -4.99618,-3.57708 -1.84882,-0.0174 -3.03343,0.39621 -4.00259,1.39758 -0.72907,0.7533 -1.57295,2.33835 -1.57295,2.95445 0,0.1711 1.86557,0.26065 5.42957,0.26065 2.98626,0 5.42957,-0.0399 5.42957,-0.0886 z"
style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" />
</g>
</g>
</g>
</g>
<g
id="g4371"
transform="matrix(0.78086208,0,0,0.78086208,-556.19328,59.324167)">
<g
transform="translate(3.1797752)"
id="g1165">
<g
id="g4417">
<g
transform="matrix(2.3453744,0,0,2.3453744,727.37608,2.1513774)"
id="Wordmark-12">
<path
inkscape:connector-curvature="0"
d="M 22.8,6.7 C 21.9,6.7 21.1,7.2 20.6,7.9 20.2,7.1 19.3,6.7 18.4,6.7 17.5,6.8 16.8,7.2 16.3,7.9 v 0 -1 h -1.8 v 6.9 h 1.9 V 10 c 0,-0.8 0.5,-1.7 1.4,-1.7 0.6,0 1.1,0.5 1.2,1.2 v 4.2 h 1.9 V 10 c -0.1,-0.8 0.5,-1.6 1.3,-1.7 0,0 0,0 0,0 h 0.1 c 0.9,0 1.1,0.8 1.1,1.6 v 3.8 h 1.9 V 9.5 C 25.4,8.1 24.4,6.9 23.1,6.7 v 0 z m 4.4,7.1 H 29 V 6.9 H 27.1 Z M 34.6,6.7 C 33.7,6.8 33,7.2 32.5,7.9 v 0 -1 h -1.8 v 6.9 h 1.9 V 10 C 32.5,9.2 33.2,8.4 34,8.3 v 0 c 0.9,0 1.2,0.8 1.2,1.6 v 3.8 H 37 V 9.5 C 37.2,8.2 36.3,6.9 34.9,6.7 Z m 8.2,1.7 V 6.9 H 41.1 V 5 H 39.2 V 6.9 H 38 v 1.5 h 1.2 v 3 c 0,1.1 0.3,2.5 2.3,2.5 0.4,0 0.8,-0.1 1.2,-0.2 v -1.5 c -0.3,0.1 -0.5,0.1 -0.8,0.1 -0.5,0 -0.8,-0.4 -0.8,-1 v -3 z"
id="mint-3" />
</g>
<g
transform="matrix(2.5700935,0,0,2.5700935,724.11766,3.7544174)"
id="_Group_2">
<path
style="fill:#189e7d"
inkscape:connector-curvature="0"
d="M 5.7,13.3 11.4,9.5 C 11.3,8.7 11.1,7.9 10.8,7.2 l -5.2,3.4 z"
class="st0"
id="_Path_6" />
<path
style="fill:#45cae6"
inkscape:connector-curvature="0"
d="M 5.7,10.7 10.9,7.3 C 10.6,6.6 10.3,5.9 9.9,5.3 L 5.7,8 Z"
class="st1"
id="_Path_7" />
<path
style="fill:#0ac775"
inkscape:connector-curvature="0"
d="m 5.7,13.3 v 2.7 0 c 3.5,-2.3 5.7,-3.3 5.7,-6.1 V 9.5 Z"
class="st2"
id="_Path_8" />
<path
style="fill:#0ac775"
inkscape:connector-curvature="0"
d="M 7.2,1.6 C 6.5,0.8 5.9,0.2 5.7,0 V 0 8 L 9.9,5.2 C 9.5,4.6 9.1,4 8.7,3.4 8.3,2.8 7.7,2.1 7.2,1.6"
class="st2"
id="_Path_9" />
<path
style="fill:#a6ed5f"
inkscape:connector-curvature="0"
d="M 5.7,10.7 V 0 C 5,0.7 0,5.9 0,9.9 0,12.8 2.3,13.7 5.7,16 Z"
class="st3"
id="_Path_10" />
</g>
</g>
</g>
</g>
<g
id="g5772"
transform="matrix(0.91213157,0,0,0.91213157,37.493849,7.953608)">
<path
inkscape:connector-curvature="0"
id="path5292"
d="M 62.553851,84.172301 H 113.98707"
style="fill:none;stroke:#000000;stroke-width:3.21370983;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6689)" />
<circle
r="5.302053"
cy="78.851875"
cx="89.713661"
id="path5294"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<style
id="style2"
type="text/css">
.st0{fill:#189E7D;}
.st1{fill:#45CAE6;}
.st2{fill:#0AC775;}
.st3{fill:#A6ED5F;}
.st4{fill:#FFFFFF;}
</style>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -2,16 +2,41 @@ body {
background-color: DarkSlateGray;
color: Gainsboro;
font-family: courier;
max-width: 650px;
max-width: 700px;
margin-left: 100px;
}
a {
color: LightGray;
}
img {
max-width: 100%;
}
li {
margin-bottom: .5em;
}
#title {
display: inline;
}
span.subtitle {
font-style: italic;
}
ul.homepage-posts {
padding-left: 1em;;
}
ul.homepage-posts .post {
display: flex;
justify-content: space-between;
margin-bottom: 1em;
}
ul.homepage-posts .post a {
width: 75%;
}
ul.homepage-posts .post .date{
width: 20%;
text-align: right;
}