revlis.nl
Stash of notes about OSS, OSes, virtualization, dev hobby projects &c
February 14, 2020 — 14:35
Author: silver Category: other Comments: Off
Ever wanted to move that pesky cursor on an iPhone (without Touch 3D), for example in your browsers address bar? Apparently you can press and hold the space bar on the on screen keyboard. Or, as Apple puts it:
Turn your keyboard into a trackpad
- Touch and hold the Space bar with one finger until the keyboard turns light gray.
- Move the insertion point by dragging around the keyboard.
From: https://support.apple.com/guide/iphone/type-and-edit-text-iph3c50f96e/ios (bottom of page)
May 5, 2018 — 11:40
Author: silver Category: other Comments: Off
Here are some worthy organizations to donate money to:
Organization | Donate link | Origin | Payment method(s) | |
---|---|---|---|---|
Debian | debian.org/donations | US | PayPal (€ and $) | |
BitsOfFreedom | bof.nl/doneren | NL | CreditCard, iDEAL, PayPal (€) | |
Archive.org | archive.org/donate | US | CreditCard, PayPal ($) | |
LetsEncrypt | letsencrypt.org/donate | US | PayPal ($) | |
OSTIF | ostif.org/donate-to-ostif | US | Patreon, PayPal ($) | |
LinuxMint | linuxmint.com/donors.php | FR | PayPal (€ and $) | |
Pi-hole | pi-hole.net/donate | US | CreditCard, PayPal ($) | |
FR | ||||
VideoLAN | videolan.org/contribute.html | FR | PayPal (€ and $) | |
SLPro | slproweb.com/products | US | PayPal ($) | |
US | ||||
Slackware | patreon.com/slackwarelinux paypal.com/paypalme/volkerdi | US | PayPal, Patreon ($) | |
ASF | donate.apache.org | US | CreditCard, PayPal (€ and $) | |
Vim *** | vim.org/sponsor iccf-holland.org/donate.html | NL | PayPal (€) | |
EFF | supporters.eff.org/donate | US | CreditCard, PayPal ($) | |
cURL | curl.se/donation.html | US | CreditCard, PayPal ($) |
* removed, does not benefit firefox
** removed, does not benefit wikipedia.com
*** €10+ to “register” as vim user (note: “sponsor” benefits children in Uganda)
November 26, 2016 — 23:39
Author: silver Category: other Comments: Off
Prevent email-spoofing, phishing and spam by setting these DNS TXT Records.
Send Policy Framework (SPF):
domain.com. IN TXT "v=spf1 a mx include:domain.com ~all"
DomainKeys Identified Mail (DKIM):
Generate public/private key with opendkim-tools.
$ opendkim-genkey --bits=2048 --domain=domain.com --verbose
Use the private key for your mailserver, eg postfix.
Use public key for the TXT record (“1234+ABc/dEF
"):
_domainkey.domain.com. IN TXT "o=-" default._domainkey.domain.com. IN TXT "v=DKIM1; g=*; k=rsa; p=1234+ABc/dEF;"
Domain-based Message Authentication, Reporting and Conformance (DMARC):
_dmarc.domain.com IN TXT "v=DMARC1; p=reject; rua=mailto:[email protected]; ruf=mailto:[email protected]"
Testing:
- http://pastebin.com/kqGX2NGH (
dkim_verify.pl
) - https://mxtoolbox.com
- https://www.mail-tester.com
You must be logged in to post a comment.