1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2025-02-25 15:50:05 +00:00

Compare commits

..

No commits in common. "7e6b979fdc9ed4144357b2bf35e018c0cd6019bd" and "10af13bd1d634e84c1a97f69b24a889939595e55" have entirely different histories.

3 changed files with 4 additions and 32 deletions

View file

@ -28,5 +28,8 @@ tasks:
cd seirdy.one
export PATH=~/bin:$PATH
# quick health + ip check
sh scripts/connectivity-check.sh
curl -6 --proto "=https" --proto-default https --http2 -siSL --tlsv1.3 --cert-status 'seirdy.one/ip'
echo
curl -4 --proto "=https" --proto-default https --http2 -sSL --tlsv1.3 --cert-status 'seirdy.one/ip'
echo
bmake deploy-prod deploy-onion

View file

@ -1,14 +0,0 @@
---
title: "Irrevocable consent"
date: 2023-06-15T11:39:21-07:00
syndicatedCopies:
- title: 'The Fediverse'
url: 'https://pleroma.envs.net/notice/AWixDJSQJPt824CMZE'
---
When I use my legal rights to request an organization to delete my data...
1. Do they also un-teach their ML models everything they learned from my data?
2. Can they infer the missing information from that model without storing it?
3. Do they also have data that isn't currently attributed to me, but can be attributed to me in the future?
These are rhetorical questions because you can probably guess the answers. Simple data deletion is a cop-out from the impossible task of un-learning. Consent isn't as meaningful if it isn't fully revocable.

View file

@ -1,17 +0,0 @@
#!/bin/sh
set -e -u
alias curl_cmd='curl --proto "=https" --proto-default https --http2 -siSL --tlsv1.3 --cert-status'
ipv6_success=1
ipv4_success=1
curl_cmd -6 'seirdy.one/ip' || ipv6_success=0
echo
curl_cmd -4 'seirdy.one/ip' || ipv4_success=0
echo
if [ "$ipv6_success" = 0 ] && [ "$ipv4_success" = 0 ]; then
echo "Failed to connect"
exit 1
fi