This is a short description of an email system which allows complex preprocessing and filtering without paying a cent.
What to expect:
- Custom domain
- Unlimited email aliases
- Email monitoring
- Spam protection
- Filtering
| /* | |
| Needed a highlighter working on raw HTML markup text. Got deep into DOM manipulation | |
| This module exports two members: | |
| * highlightDOMFragment: string -> DocumentFragment (f.e. for diffing nodes, el.replaceChildren, el.replaceWith) | |
| * highlightDOMString: string -> string (f.e. for el.innerHTML) | |
| Usage example: | |
| highlightDOMString( | |
| "<div>Highlight this</div>", // HTML markup string (f.e. obtained from el.innerHTML) | |
| "this", // query string (match to highlight in HTML) |
| /* | |
| Unfortunately, the Sizzy AppImage is somewhat closed source and has no permalink. | |
| Therefore it can't be added to any package manager. | |
| To install it with the Nix package manager follow the steps: | |
| - mkdir sizzy && touch sizzy/default.nix | |
| - cp Sizzy-<version>.AppImage sizzy | |
| - echo <content of this file> > sizzy/default.nix | |
| - nix-env -if sizzy/default.nix |
| #!/bin/sh | |
| # FIRST STOP THE zfs-zed SERVICE | |
| systemctl stop zfs-zed | |
| # FORCE UNLOAD ZFS KERNEL MODULES | |
| lsmod | grep zfs | cut -d' ' -f1 | xargs rmmod -f | |
| # NOW ADD THE FOLLOWING TO /etc/nixos/configuration.nix | |
| # |
| #!/usr/bin/env bash | |
| # Settings: DIR to your bitwarden clone | |
| DIR=~/git/bitwarden_rs | |
| # Settings end | |
| # Just some terminal coloring | |
| NC='\033[0m' | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' |
| import React, { Component } from 'react'; | |
| import { tsv } from 'd3-request'; | |
| import { scaleBand, scaleLinear } from 'd3-scale'; | |
| import { max } from 'd3-array'; | |
| import { select, } from 'd3-selection'; | |
| import { axisBottom, axisLeft } from 'd3-axis'; | |
| import { futurize } from 'futurize'; | |
| import { Future } from 'ramda-fantasy'; | |
| import './BarChart.css'; | |
| const read = futurize(Future)(tsv); |