> Authentication-Results: spamfilter01.heinlein-hosting.de (amavisd-new); > dkim=pass (2048-bit key) header.d=autodesk.com
For this DKIM-Signature:
> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autodesk.com; > h=from:subject:mime-version:list-unsubscribe:content-type:reply-to: > cc:content-type:from:subject:to; > s=s11; bh=...
MTA:
> Received: from ec2-3-8-140-122.eu-west-2.compute.amazonaws.com (unknown) > by geopod-ismtpd-13 (SG) with ESMTP id n5WDORJ6Taauv7FuUNA9Ug
I wonder if just their DKIM selector got stolen or someone owned their AWS accounts as well?
Yes I'm just some rando from the Internet, and things might have changed since I've left, but I have my faith in that guy.
I was there in their earlier years. Ecosia set the standard for me what an ethical company should be like.
And hey odiroot ;)
In any case, I'd be interested in seeing an audit of Nix on Mac OS. Especially if there is a flaw in how `nix develop` and related commands work.
Nix allows me to override most of that, and I can share home manager config with my Debian workstation.
import time
import argparse
def main(mins):
print(f"Starting pomodoro timer: {mins} minutes.")
for m in range(mins, 0, -1):
secs = 60
for s in range(secs, 0, -1):
print(f"{m-1}:{s-1} ", end='\r')
time.sleep(1)
print("Timer finished - take a break!\a")
time.sleep(2)
print("\a")
time.sleep(2)
print("\a")
time.sleep(2)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Pomodoro Timer.")
parser.add_argument("mins", type=int, help="minutes to time.")
args = parser.parse_args()
main(args.mins)