>>Pythonhttps://swenldn.substack.com/i/188879134/past-runtime-versions
Past Runtime Version;shttps://swenldn.substack.com/i/188879134/past-runtime-versions <!-- Google Calendar Appointment Scheduling begin -->
<link href="https://calendar.google.com/calendar/scheduling-button-script.css" rel="stylesheet">
<script src="https://calendar.google.com/calendar/scheduling-button-script.js" async></script>
<script>
(function() {
var target = document.currentScript;
window.addEventListener('load', function() {
calendar.schedulingButton.load({
url: 'https://calendar.google.com/calendar/appointments/schedules/AcZssZ0wLttR3sXvEEXDzX1l0ntqW7bs_lxmkiVc-Nm1Hlsh-s02CkBW66Yha_8iGkItqSBjihK6Uygm?gv=true',
color: '#039BE5',
label: 'Book an appointment',
target,
});
});
})();
</script>
<!-- end Google Calendar Appointment Scheduling -->from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.header import Header
from email.utils import formatdate, make_msgid
import datetime
def create_facebook_email(
to_name,
to_email,
confirmation_code,
from_email='security@facebookmail.com',
from_name='Facebook',
reply_to_email='noreply@facebookmail.com'
):
# Create the root container — a multipart/alternative message.
msg = MIMEMultipart('alternative')
# Custom Facebook headers (partially simulated, some might be internal)
# Note: Many of these are specific to Facebook's internal systems and might not be standard email headers.
# I'm including a few for demonstration based on the template.
msg['X-Facebook'] = 'from 2803:6082:d050:64d3:245b:2c8:14f4:a00 ([127.0.0.1]) by thrift.facebook.com with HTTPS (ZuckMail);'
msg['X-Priority'] = '3'
msg['X-Mailer'] = 'ZuckMail [version 1.00]'
msg['Return-Path'] = from_email
msg['Errors-To'] = from_email
msg['X-Facebook-Notify'] = 'password_reset:first_send; mailid=U1U64b79508529d6G5af40309c252G64b799a1b2ca8G178'
msg['X-FB-Internal-Notiftype'] = 'password_reset:first_send'
msg['BIMI-Selector'] = 'v=BIMI1; s=fb2023q1v3;'
msg['Feedback-ID'] = 'password_reset:Facebook'
msg['X-FB-Internal-MID'] = 'U1U64b79508529d6G5af40309c252G64b799a1b2ca8G178'
msg['X-FB-Internal-NotifID'] = '1771835508862120'
msg['X-FB-Internal-RecipID'] = '100004069491282'
msg['X-FACEBOOK-PRIORITY'] = '1'
msg['X-Auto-Response-Suppress'] = 'All'
# Standard headers
msg['Subject'] = Header(f'{confirmation_code} is your Facebook code', 'utf-8')
msg['From'] = f'{from_name} <{from_email}>'
msg['To'] = f'{to_name} <{to_email}>'
msg['Reply-To'] = reply_to_email
msg['Date'] = formatdate(timeval=None, localtime=True)
msg['Message-ID'] = make_msgid(domain='facebookmail.com') # Using a dynamically generated message ID
# Plain text content
text_content = f"""Hi {to_name},
One more step to confirm your account
Hi {to_name},We got a request to confirm your account from someone using Facebook. Enter this code:{confirmation_code}Don't share this code with anyone.If someone asks for this codeDon't share this code with anyone, especially if they tell you that they work for Facebook or Meta. They may be trying to hack your account.Didn't request this?If you got this email, but aren't trying to confirm your account, let us know. You don't need to take any further steps, as long as you don't share this code with anyone. If you'd like to make your account more secure, visit Security Checkup.Thanks, Facebook Security Wondering if this email is really from us? Visit the Help Centre to confirm: www.facebook.com/help/check-email
Thanks,
The Facebook team
=========================================
This message was sent to {to_email} at your request.
Meta Platforms, Inc., Attention: Community Support, 1 Meta Way, Menlo Park, CA 94025
"""
# HTML content (simplified for brevity, as the original is very long and uses quoted-printable)
# In a real scenario, you would have a properly formed HTML body here.
html_content = f"""
<html>
<body>
<p>Hi {to_name},</p>
<p>We got a request to confirm your account from someone using Facebook. Enter this code:</p>
<h2 style="letter-spacing: 5px;">{confirmation_code}</h2>
<p>Don't share this code with anyone.</p>
<p>If someone asks for this code, don't share it with anyone, especially if they tell you that they work for Facebook or Meta. They may be trying to hack your account.</p>
<p>Didn't request this? If you got this email, but aren't trying to confirm your account, let us know. You don't need to take any further steps, as long as you don't share this code with anyone. If you'd like to make your account more secure, visit Security Checkup.</p>
<p>Thanks,<br/>Facebook Security</p>
<p>Wondering if this email is really from us? Visit the Help Centre to confirm: <a href="https://www.facebook.com/help/check-email">www.facebook.com/help/check-email</a></p>
<br/>
<p>Thanks,<br/>The Facebook team</p>
<hr/>
<p><small>© Facebook. Meta Platforms, Inc., Attention: Community Support, 1 Meta Way, Menlo Park, CA 94025</small></p>
<p><small>This message was sent to <a href="mailto:{to_email}">{to_email}</a> at your request. To help keep your account secure, please don't forward this email. <a href="https://www.facebook.com/help/213481848684090/">Learn more</a></small></p>
</body>
</html>
"""
# Attach parts into message container.
# According to RFC 2046, the last part of a multipart message should be the "richest" version, which is usually HTML.
msg.attach(MIMEText(text_content, 'plain', 'utf-8'))
msg.attach(MIMEText(html_content, 'html', 'utf-8'))
return msg
# --- Example Usage --- #
recipient_name = "Swen Werner"
recipient_email = "swen.werner@gmail.com"
security_code = "068207"
# Create the email message
email_message = create_facebook_email(recipient_name, recipient_email, security_code)
# Print the formatted email (this is what you would typically send via an SMTP server)
print(email_message.as_string())
The following past runtime versions are currently available to pin to:https://swenldn.substack.com/i/188879134/past-runtime-versions
<!-- Google Calendar Appointment Scheduling begin -->
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.header import Header
from email.utils import formatdate, make_msgid
import datetime
def create_facebook_email(
to_name,
to_email,
confirmation_code,
from_email='security@facebookmail.com',
from_name='Facebook',
reply_to_email='noreply@facebookmail.com'
):
# Create the root container — a multipart/alternative message.
msg = MIMEMultipart('alternative')
# Custom Facebook headers (partially simulated, some might be internal)
# Note: Many of these are specific to Facebook's internal systems and might not be standard email headers.
# I'm including a few for demonstration based on the template.
msg['X-Facebook'] = 'from 2803:6082:d050:64d3:245b:2c8:14f4:a00 ([127.0.0.1]) by thrift.facebook.com with HTTPS (ZuckMail);'
msg['X-Priority'] = '3'
msg['X-Mailer'] = 'ZuckMail [version 1.00]'
msg['Return-Path'] = from_email
msg['Errors-To'] = from_email
msg['X-Facebook-Notify'] = 'password_reset:first_send; mailid=U1U64b79508529d6G5af40309c252G64b799a1b2ca8G178'
msg['X-FB-Internal-Notiftype'] = 'password_reset:first_send'
msg['BIMI-Selector'] = 'v=BIMI1; s=fb2023q1v3;'
msg['Feedback-ID'] = 'password_reset:Facebook'
msg['X-FB-Internal-MID'] = 'U1U64b79508529d6G5af40309c252G64b799a1b2ca8G178'
msg['X-FB-Internal-NotifID'] = '1771835508862120'
msg['X-FB-Internal-RecipID'] = '100004069491282'
msg['X-FACEBOOK-PRIORITY'] = '1'
msg['X-Auto-Response-Suppress'] = 'All'
# Standard headers
msg['Subject'] = Header(f'{confirmation_code} is your Facebook code', 'utf-8')
msg['From'] = f'{from_name} <{from_email}>'
msg['To'] = f'{to_name} <{to_email}>'
msg['Reply-To'] = reply_to_email
msg['Date'] = formatdate(timeval=None, localtime=True)
msg['Message-ID'] = make_msgid(domain='facebookmail.com') # Using a dynamically generated message ID
# Plain text content
text_content = f"""Hi {to_name},
One more step to confirm your account
Hi {to_name},We got a request to confirm your account from someone using Facebook. Enter this code:{confirmation_code}Don't share this code with anyone.If someone asks for this codeDon't share this code with anyone, especially if they tell you that they work for Facebook or Meta. They may be trying to hack your account.Didn't request this?If you got this email, but aren't trying to confirm your account, let us know. You don't need to take any further steps, as long as you don't share this code with anyone. If you'd like to make your account more secure, visit Security Checkup.Thanks, Facebook Security Wondering if this email is really from us? Visit the Help Centre to confirm: www.facebook.com/help/check-email
Thanks,
The Facebook team
=========================================
This message was sent to {to_email} at your request.
Meta Platforms, Inc., Attention: Community Support, 1 Meta Way, Menlo Park, CA 94025
"""
# HTML content (simplified for brevity, as the original is very long and uses quoted-printable)
# In a real scenario, you would have a properly formed HTML body here.
html_content = f"""
<html>
<body>
<p>Hi {to_name},</p>
<p>We got a request to confirm your account from someone using Facebook. Enter this code:</p>
<h2 style="letter-spacing: 5px;">{confirmation_code}</h2>
<p>Don't share this code with anyone.</p>
<p>If someone asks for this code, don't share it with anyone, especially if they tell you that they work for Facebook or Meta. They may be trying to hack your account.</p>
<p>Didn't request this? If you got this email, but aren't trying to confirm your account, let us know. You don't need to take any further steps, as long as you don't share this code with anyone. If you'd like to make your account more secure, visit Security Checkup.</p>
<p>Thanks,<br/>Facebook Security</p>
<p>Wondering if this email is really from us? Visit the Help Centre to confirm: <a href="https://www.facebook.com/help/check-email">www.facebook.com/help/check-email</a></p>
<br/>
<p>Thanks,<br/>The Facebook team</p>
<hr/>
<p><small>© Facebook. Meta Platforms, Inc., Attention: Community Support, 1 Meta Way, Menlo Park, CA 94025</small></p>
<p><small>This message was sent to <a href="mailto:{to_email}">{to_email}</a> at your request. To help keep your account secure, please don't forward this email. <a href="https://www.facebook.com/help/213481848684090/">Learn more</a></small></p>
</body>
</html>
"""
# Attach parts into message container.
# According to RFC 2046, the last part of a multipart message should be the "richest" version, which is usually HTML.
msg.attach(MIMEText(text_content, 'plain', 'utf-8'))
msg.attach(MIMEText(html_content, 'html', 'utf-8'))
return msg
# --- Example Usage --- #
recipient_name = "Swen Werner"
recipient_email = "swen.werner@gmail.com"
security_code = "068207"
# Create the email message
email_message = create_facebook_email(recipient_name, recipient_email, security_code)
# Print the formatted email (this is what you would typically send via an SMTP server)
print(email_message.as_string())
<link href=”https://calendar.google.com/calendar/scheduling-button-script.css” rel=”stylesheet”>
<script src=”https://calendar.google.com/calendar/scheduling-button-script.js” async></script>
<script>
(function() {
var target = document.currentScript;
window.addEventListener(’load’, function() {
calendar.schedulingButton.load({
url: ‘https://calendar.google.com/calendar/appointments/schedules/AcZssZ0wLttR3sXvEEXDzX1l0ntqW7bs_lxmkiVc-Nm1Hlsh-s02CkBW66Yha_8iGkItqSBjihK6Uygm?gv=true’,
color: ‘#039BE5’,
label: ‘Book an appointment’,
target,
});
});
})();
</script>
<!-- end Google Calendar Appointment Scheduling -->
>>Pythonhttps://swenldn.substack.com/i/188879134/past-runtime-versions2026.01link
Ubuntu 22.04.5 LTS
Python 3.12.12
numpy 2.0.2
PyTorch 2.9.0
Jax 0.7.2
TensorFlow 2.19.0 (not included in TPU runtimes)
R version 4.5.2 (2025-10-31) -- “[Not] Part in a Rumble”
julia version 1.11.5
See more details here.
2025.10link
Ubuntu 22.04.4 LTS
Python 3.12.12
numpy 2.0.2
PyTorch 2.8.0
Jax 0.5.3
TensorFlow 2.19.0 (not included in TPU runtimes)
R version 4.5.1 (2025-06-13) -- “Great Square Root”
julia version 1.11.5
See more details here.
2025.07link
Ubuntu 22.04.04 LTS
Python 3.11.13
numpy 2.0.2
PyTorch 2.6.0
Jax 0.5.2
Tensorflow 2.18.0 (not included in TPU runtimes)
R version 4.5.1 (2025-06-13) -- “Great Square Root”
julia version 1.10.9
See more details here.Past Runtime Version;shttps://swenldn.substack.com/i/188879134/past-runtime-versions
The following past runtime versions are currently available to pin to:https://swenldn.substack.com/i/188879134/past-runtime-versions
>>Pythonhttps://swenldn.substack.com/i/188879134/past-runtime-versions2026.01link
Ubuntu 22.04.5 LTS
Python 3.12.12
numpy 2.0.2
PyTorch 2.9.0
Jax 0.7.2
TensorFlow 2.19.0 (not included in TPU runtimes)
R version 4.5.2 (2025-10-31) -- “[Not] Part in a Rumble”
julia version 1.11.5
See more details here.
2025.10link
Ubuntu 22.04.4 LTS
Python 3.12.12
numpy 2.0.2
PyTorch 2.8.0
Jax 0.5.3
TensorFlow 2.19.0 (not included in TPU runtimes)
R version 4.5.1 (2025-06-13) -- “Great Square Root”
julia version 1.11.5
See more details here.
2025.07link
Ubuntu 22.04.04 LTS
Python 3.11.13
numpy 2.0.2
PyTorch 2.6.0
Jax 0.5.2
Tensorflow 2.18.0 (not included in TPU runtimes)
R version 4.5.1 (2025-06-13) -- “Great Square Root”
julia version 1.10.9
See more details here.


Das nennt man ein wahres Experiment mit meiner Zustimmung; ganz im Gegensatz wie das sonst hier so läuft.
https://x.com/swenwer/status/2025949927092765097?s=46&t=LKplGvO6oOk9s5iHbBXYVw