Blink and you'll miss them: 6-day certificates are here!

By Scott Helme

What a great way to start 2026! Let's Encrypt have now made their short-lived certificates available, so you can go and start using them right away.

It wasn't long ago when the announcement came that by 2029, all certificates will be reduced to a maximum of

Weekly Update 487

By Troy Hunt

Presently sponsored by: Report URI: Guarding you from rogue JavaScript! Don’t get pwned; get real-time alerts & prevent breaches #SecureYourSite

I thought Scott would cop it first when he posted about what his solar system really cost him last year. "You're so gonna get that stupid AI-slop response from some people", I joked. But no, he got other stupid responses instead! And I got the AI-slop

Weekly Update 486

By Troy Hunt

Presently sponsored by: Report URI: Guarding you from rogue JavaScript! Don’t get pwned; get real-time alerts & prevent breaches #SecureYourSite

I’m in Oslo! Flighty is telling me I’ve flown in or out of here 43 times since a visit in 2014 set me on a new path professionally and, many years later, personally. It’s special here, like a second home that just feels…

International Station

Welcome to the International Space Station Exclamation Point!

Keycloak's Bug Bounty Program on YesWeHack

By Alexander Schwartz

As a Cloud Native Computing Foundation (CNCF) project, Keycloak is the open-source IAM backbone for countless applications. This is your chance to secure a core piece of the cloud-native ecosystem in this public bug bounty program!.

We are proud to be part of this EU sponsored initiative. Projects like ours fuel a lot of public and private infrastructure in the EU and worldwide. Thank you for choosing our project for this initiative to help us to improve and provide secure services to our users!

Logo of Keycloak and Yes We Hack.

  •  

Setting Up Keycloak as a Credential Issuer with OpenID4VCI

By Rodrick Awambeng, Forkim Enjeckayang, Ingrid Kamga, Bertrand Ogen

Before configuring Keycloak, it is helpful to understand its role in decentralized identity ecosystems. As a verifiable credential issuer, Keycloak can issue digitally signed credentials using the OpenID for Verifiable Credential Issuance (OpenID4VCI) protocol, allowing relying parties (also known as verifiers) to independently verify them without contacting the issuer.

Keycloak implements OpenID4VCI, enabling the issuance of verifiable credentials (VCs) as digital proofs of identity or attributes. Configuring this functionality requires consistent setup across the realm, clients, and issuable credentials (client scopes).

For example, consider the following scenario: The Keycloak OAuth SIG team wants to issue verifiable membership credentials to its members, including their name and email, which can later be presented at onsite or virtual events as proof of active membership.

At the time of writing this blog, Keycloak’s support for OpenID4VCI is still experimental. This guide uses the Keycloak 26.5.0 release. The feature is under active development and is expected to be promoted to preview in the future.

Introduction to OpenID4VCI & OpenID4VP

OpenID4VCI is a protocol developed by the OpenID Foundation that extends the OAuth 2.0 framework to support the secure and interoperable issuance of Verifiable Credentials (VCs). VCs are digital, tamper-evident representations of information, such as identity attributes or qualifications, which can be cryptographically verified without needing to contact the issuer at verification time.

While this guide primarily focuses on OpenID for Verifiable Credential Issuance (OpenID4VCI), the overall trust architecture also includes OpenID for Verifiable Presentations (OpenID4VP), which governs how holders present credentials to verifiers. Together, these protocols enable decentralized identity ecosystems in which users (holders) retain control of their data and can share it selectively with verifiers.

Triangle of trust or Issuer-Holder-Verifier model
Figure 1. Triangle of trust or Issuer-Holder-Verifier model

In this model:

  • Issuer ↔ Holder interactions are governed by OpenID4VCI, covering credential issuance.

  • Holder ↔ Verifier interactions are governed by OpenID4VP, covering credential presentation and verification.

From a privacy perspective, this separation of concerns is fundamental. By decoupling credential issuance from credential presentation, issuers are unable to track where, when, or how a holder uses their credentials. This architecture prevents correlation and profiling, and ensures that users remain in control of how their data is shared.

Why Use OpenID4VCI

The primary motivations for adopting OpenID4VCI include:

  • Interoperability: Builds on established OpenID Connect (OIDC) standards, simplifying integration with existing identity providers.

  • Privacy and Security: Supports selective disclosure (e.g., proving age without revealing birthdate) and offline verification.

  • Compliance: Aligned with regulations like eIDAS 2.0.

  • Efficiency: Leverages OIDC mechanisms to streamline issuance while maintaining trust in the "triangle of trust" model (Issuer-Holder-Verifier).

Verifiable Credential Formats

OpenID4VCI supports multiple credential formats, which define how verifiable credentials are encoded and issued.

  • SD-JWT VC – Selective Disclosure JSON Web Token Verifiable Credential

  • JWT VC – JSON Web Token Verifiable Credential

  • mDL/mdoc – Mobile driver’s license / mobile document format

These formats allow issuers to provide portable, verifiable digital proofs that support selective disclosure and offline verification in decentralized identity ecosystems.

Keycloak currently supports both SD-JWT VC and JWT VC for issuance. mDL/mdoc, which is part of the OpenID4VCI specification, is expected to be supported in the future.

Concrete Use-Cases Enabled by OpenID4VCI

Verifiable credentials open a variety of real-world applications. Examples include:

  • Governments or non-government organisations issuing digital identity cards or driver’s licenses that citizens can present when booking hotels, opening bank accounts, or accessing public services, while revealing only the information necessary for the transaction (e.g., age or residency) without exposing full personal details.

  • City councils issuing verifiable birth certificates that universities and hospitals can validate without a central lookup.

  • Universities issuing digital diplomas that employers can instantly verify for authenticity.

  • Companies issuing employee badges as verifiable credentials for office access or remote authentication.

  • Event organizers issuing verifiable tickets that can be validated offline.

  • Professional associations issuing membership credentials such as in our OAuth SIG example for verifying access to gated resources or conference venues.

  • Digital movie or event tickets that are tamper-evident and can be verified offline.

These examples illustrate the variety of situations where verifiable credentials remove the need for direct communication between verifier and issuer while preserving trust.

Key Flows in OpenID4VCI

OpenID4VCI defines two primary flows for credential issuance: the Authorization Code Flow and the Pre-Authorized Code Flow. These flows determine how a wallet (holder’s application) obtains an access token to request a VC from the issuer.

Authorization Code Flow

The Authorization Code Flow is interactive and requires the holder to authenticate and consent at the issuer’s authorization endpoint. It is ideal for scenarios where explicit user approval is required, or additional claims must be collected.

Steps:

  1. The Wallet sends an Authorization Request to the Issuer’s Authorization Endpoint, requesting credentials.

  2. The Issuer authenticates the User and requests consent for the issuance.

  3. The User provides credentials and grants consent.

  4. The Issuer returns an Authorization Code to the Wallet.

  5. The Wallet exchanges the code at the Issuer Token Endpoint for an Access Token.

  6. The Issuer returns the Access Token to the Wallet.

  7. The Wallet requests the Verifiable Credential from the Issuer Credential Endpoint using the Access Token.

  8. The Issuer returns the VC to the Wallet.

Credential issuance via Authorization Code Flow
Figure 2. Credential issuance via Authorization Code Flow

Pre-Authorized Code Flow

The Pre-Authorized Code Flow is non-interactive. The issuer pre-authenticates and authorizes the user, providing a pre-authorized code (often via QR code). It is faster and suitable for pre-approved credential issuance.

Steps:

  1. The Issuer provides a Pre-Authorized Code to the Wallet (e.g., via QR code or link).

  2. The Wallet exchanges the code at the Issuer Token Endpoint for an Access Token.

  3. The Issuer returns the Access Token to the Wallet.

  4. The Wallet requests the Verifiable Credential from the Issuer Credential Endpoint using the Access Token.

  5. The Issuer returns the VC to the Wallet.

Credential issuance via Pre-Authorized Code Flow
Figure 3. Credential issuance via Pre-Authorized Code Flow

Now that we have covered the technical flows, the rest of this guide walks through configuring Keycloak to issue verifiable credentials using the Pre-Authorized Code Flow, including realm, client scope, and client-level setup.

Configuring Keycloak for OpenID4VCI

OpenID4VCI in Keycloak is offered via the feature flag oid4vc-vci, which consequently needs to be enabled at startup.

--features=oid4vc-vci

That said, we now assume that you have a running Keycloak instance with the oid4vc-vci feature flag enabled.

Beyond enabling the feature flag, the following configuration steps need to be taken consistently, in accordance with your use case:

  • Configure OpenID4VCI at the realm level

  • Configure an issuable verifiable credential (as a dedicated client scope)

  • Enable and configure OpenID4VCI at the client level

Because some configurations are not yet supported via the Keycloak Admin Console, we may often use the Admin REST API to communicate required configurations.

Configuring OpenID4VCI at the realm level

Let’s assume you have already created a realm named oauth-sig-realm to represent the OAuth SIG group, and that a couple of users have also been created in this realm, each with a password assigned, to represent members of the group.

In addition, any user who is intended to create credential offers must be granted the built-in credential-offer-create role. This role is provided by the OpenID4VCI extension and does not need to be created manually. Assigning it ensures that only authorized users can generate credential offers, maintaining the security of the issuance process.

Screenshot: Realm and Users
Figure 4. Screenshot: Realm and Users

The behavior of OpenID4VCI across the entire realm can be modulated via realm attributes. On the Admin Console, find the OID4VCI Attributes section under the Realm Settings > Tokens tab.

Screenshot: OID4VCI Attributes
Figure 5. Screenshot: OID4VCI Attributes

Sensible defaults apply out of the box, but for the sake of this demo, we would want, for instance, to increase the value of Pre-Authorized Code Lifespan to 3 minutes so that the issuance flow expires less quickly. To learn more about the Nonce Lifetime and other realm attributes for OpenID4VCI, please refer to the main Keycloak documentation.

Lastly, because EC cryptography is highly encouraged in the OpenID4VC ecosystem, we also invite you to add a P-256 Elliptic Curve key pair to the realm’s set of keys under Realm Settings > Keys > Providers. This will later enable configuring the signing of issued VCs with algorithm ES256.

Screenshot: Adding ECDSA Key Provider
Figure 6. Screenshot: Adding ECDSA Key Provider

Configuring an issuable verifiable credential (as a dedicated client scope)

Different credential types can be configured for issuance depending on what data the credential should embed, what format it should have, or other criteria. Each credential type is configured as a dedicated client scope of protocol type "OpenID for Verifiable Credentials".

We will configure our membership credential to be issued as an SD-JWT credential carrying a user’s first name, last name, and email. Each claim to be added to the credential requires a corresponding protocol mapper from the User Model to the credential. Other fields such as the time of issuance or a unique identifier for the credential are supported via other types of protocol mappers.

Since we will be using the Admin REST API to configure the client scope, we first need to obtain a valid Admin Token from the master realm to authorize our requests.

ADMIN_TOKEN=$(curl -s -X POST "http://<keycloak.instance>/realms/master/protocol/openid-connect/token" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "username=<admin-username>" \
  -d "password=<admin-password>" \
  -d "grant_type=password" \
  -d "client_id=admin-cli" | jq -r '.access_token' )
echo "Admin Token obtained: $ADMIN_TOKEN"

Now, let’s proceed with adding the membership credential type as a dedicated client scope using the Admin REST API.

curl -X POST "http://<keycloak.instance>/admin/realms/oauth-sig-realm/client-scopes" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $ADMIN_TOKEN" \
  -d '{
    "name": "membership-credential",
    "protocol": "oid4vc",
    "attributes": {
      "include.in.token.scope": "true",
      "vc.format": "dc+sd-jwt",
      "vc.verifiable_credential_type": "https://credentials.example.com/oauth-sig-membership",
      "vc.credential_signing_alg": "ES256",
      "vc.display": "[{\"name\": \"OAuth SIG Membership\", \"locale\":\"en\"}]",
      "vc.credential_build_config.token_jws_type": "dc+sd-jwt"
    },
    "protocolMappers": [
      {
        "name": "given_name-mapper",
        "protocol": "oid4vc",
        "protocolMapper": "oid4vc-user-attribute-mapper",
        "config": {
          "claim.name": "given_name",
          "userAttribute": "firstName",
          "vc.display": "[{\"name\":\"Given Name\",\"locale\":\"en\"}]"
        }
      },
      {
        "name": "family_name-mapper",
        "protocol": "oid4vc",
        "protocolMapper": "oid4vc-user-attribute-mapper",
        "config": {
          "claim.name": "family_name",
          "userAttribute": "lastName",
          "vc.display": "[{\"name\":\"Family Name\",\"locale\":\"en\"}]"
        }
      },
      {
        "name": "email-mapper",
        "protocol": "oid4vc",
        "protocolMapper": "oid4vc-user-attribute-mapper",
        "config": {
          "claim.name": "email",
          "userAttribute": "email",
          "vc.display": "[{\"name\":\"Email\",\"locale\":\"en\"}]"
        }
      },
      {
        "name": "iat-mapper",
        "protocol": "oid4vc",
        "protocolMapper": "oid4vc-issued-at-time-claim-mapper",
        "config": {
          "claim.name": "iat",
          "truncateToTimeUnit": "HOURS",
          "valueSource": "COMPUTE"
        }
      }
    ]
  }'

Commenting on the above configuration:

  • The vc.format attribute defines the credential format (e.g. dc+sd-jwt).

  • The vc.verifiable_credential_type attribute defines the value of the vct claim inside the credential.

  • The vc.credential_signing_alg attribute specifies the cryptographic algorithm used to sign the credential.

  • All vc.display entries are intended to be used by a wallet to display intelligible descriptions.

To learn more about other used or available configuration attributes, please refer to the main Keycloak documentation.

Verify that the client scope was created successfully by checking the Admin Console under Client Scopes.

Additionally, check the Credential Issuer Metadata Endpoint by navigating to Realm Settings, toggling the Verifiable Credentials option, and saving the changes. Once done, the endpoint will be listed, allowing you to verify that the newly created credential type appears among the issuable credentials, as shown below.

Enable Verifiable Credentials in Realm Settings
Figure 7. Screenshot: Enable Verifiable Credentials in Realm Settings

The credential type should appear in the metadata like the following:

{
  // ...
  "credential_configurations_supported": {
    "membership-credential": {
      "id": "membership-credential",
      "format": "dc+sd-jwt",
      "scope": "membership-credential",
      "cryptographic_binding_methods_supported": [
        "jwk"
      ],
      "credential_signing_alg_values_supported": [
        "ES256"
      ],
      "vct": "https://credentials.example.com/oauth-sig-membership",
      // ...
    }
  }
  // ...
}

Enabling OpenID4VCI at the client level

Next, let’s create a new client in the oauth-sig-realm realm to represent an application that members of the OAuth SIG will use to request and receive their membership credentials. We will name this client oauth-sig-client and configure it as a standard OpenID Connect client.

During client creation, make sure to check the Direct Access Grants box, as we will use the Resource Owner Password Credentials flow to obtain a user access token in a later step. All other fields are left unchanged.

Screenshot: Client Creation
Figure 8. Screenshot: Client Creation

One important point to note is that clients must explicitly enable OpenID4VCI to be able to use it. Navigate to the Advanced tab of the oauth-sig-client client and toggle the Enable OID4VCI switch under the OpenID for Verifiable Credentials section.

Screenshot: Enable OID4VCI on Client
Figure 9. Screenshot: Enable OID4VCI on Client

Finally, we need to assign the previously created membership-credential client scope to the oauth-sig-client client. To do this, navigate to the Client Scopes tab of the oauth-sig-client client and add membership-credential as an Optional Client Scope.

Assigning membership-credential client scope to the client
Figure 10. Screenshot: Assigning membership-credential client scope to the client

Obtaining a User Access Token

Before obtaining the user access token, ensure that the user has the credential-offer-create role, as only users with this role can create credential offers.

With the client configured and the user’s password set, we can now request a user access token. This token will later be used to authorize the credential offer request.

USER_TOKEN=$(curl -s -X POST "http://<keycloak.instance>/realms/oauth-sig-realm/protocol/openid-connect/token" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "username=<user-username>" \
  -d "password=<user-password>" \
  -d "grant_type=password" \
  -d "client_id=oauth-sig-client" | jq -r '.access_token' )
echo "User Access Token obtained: $USER_TOKEN"

Now that we have a user access token issued to the user with the credential-offer-create role, we can use it to request a credential offer from the issuer in the next step.

Retrieving a credential offer to start the issuance flow

For Pre-Authorized Code flows, OpenID4VCI issuance can be initiated by retrieving a credential offer from Keycloak at the Credential Offer Endpoint. The endpoint requires a valid user access token and the username of the target user for whom the pre-authorized offer will be generated. In our case, we will be using the same user for both credential offer creation and retrieval.

curl -X GET "http://<keycloak.instance>/realms/oauth-sig-realm/protocol/oid4vc/credential-offer-uri?credential_configuration_id=membership-credential&type=qr-code&username=<username>" \
  -H "Authorization: Bearer $USER_TOKEN" \
  --output credential-offer-qr.png
Replace <username> with the user you created earlier. The QR code image is saved as credential-offer-qr.png. Open this file and use your wallet to redeem the credential.

With the query parameter type=qr-code, the endpoint returns a direct binary representation of the QR code image. If omitted, the endpoint returns JSON, which requires extra steps to construct the QR code from the offer data.

QR Code Generation Overview
Figure 11. QR Code Generation Overview

Upon scanning the QR code with a compatible wallet, a membership credential is issued to the requesting user.

⚠️ Wallet Compatibility Notice

Keycloak implements the final OpenID4VCI specification and includes a limited Draft-15 compatibility patch with partial support.

Tested Draft-15 wallets that work with the compatibility patch:

Wallet Compatibility

Heidi Wallet

✅ Works via Draft-15 compatibility patch

Valera Wallet

✅ Works via Draft-15 compatibility patch

Lissi Wallet

✅ Works via Draft-15 compatibility patch

Full support requires wallets providers to implement the final OpenID4VCI specification.
Screenshot: Lissi Wallet Test
Figure 12. Screenshot: Lissi Wallet Test

Before You Go

In this blog post, we have illustrated how to set up Keycloak for issuing verifiable credentials over OpenID4VCI, using a simple scenario of issuing membership credentials to members of the Keycloak’s OAuth SIG group. We covered the necessary configuration steps at the realm, client scope, and client levels, and demonstrated how to retrieve a credential offer to initiate the issuance flow.

If you are looking into streamlining this configuration process for OpenID4VCI in Keycloak, take a look at our OID4VCI Deployment project, which provides solid examples for both the pre-authorization and authorization code flows. You may also find the Keycloak Playground OID4VCI demo useful as a hands-on demo.

Feedback & Discussion

We’d love to hear your thoughts on this guide! You can provide feedback or ask questions through:

Your input will help us to improve the OpenID4VCI experience in Keycloak.

Important Note on OpenID4VCI Development Status

OpenID4VCI support in Keycloak is still under active development. The instructions and configuration options described in this blog post are based on Keycloak 26.5.0 and may change in future Keycloak versions as the feature evolves.

If you want to explore the latest updates to the OID4VCI feature, you can use the latest Keycloak nightly release. However, be aware that the instructions in this blog post may not work with that version.

Amazon trademark issue

By [email protected] (RevK)

I have done another video on this.

It is not the really tedious one hour 45 minute video, or even the heavily edited 28 minute video.

It is the 9 minute summary - enjoy.

This is extracted subtitles, not perfect, but a good start...

Hi. Well, firstly, for those that have 
 been following, my cold has nearly 
 cleared up, but I do apologize that I 
 will almost certainly end up coughing at 
 some point during this. 
 Also, I'm letting you know I'm sparing 
 you from a really tedious video. 
 I had a chat, online chat with Amazon 
 yesterday and I recorded it. I recorded 
 the chat window. I recorded me and audio 
 and so on and put it all together and 
 edited an hour and 45 minutes of online 
 chat down to 28 minutes. That took me a 
 while 
 and then I decided no, that was actually 
 too tedious, too boring. Even though it 
 was meant to sort of highlight how 
 tedious and boring it is dealing with 
 Amazon, I decided no, even that was too 
 tedious. It was mostly me typing and you 
 can see in the chat window and I didn't 
 even narrate what I was typing. So it 
 was interspersed with some rants but 
 that was it. So 
 I've spared you that but I thought I'd 
 do a summary. So 
 I've mentioned the issue with Amazon. 
 It's very straightforward. We've been 
 selling product for years. It's called 
 Facin. It works with Din air 
 controllers. Hence the similar name. 
 And Amazon got a letter from Dacin 
 saying it's bit trademark. Amazon pulled 
 the listing froze 200 stock that we had 
 in Amazon and we've been battling with 
 them for months now. 
 Last month, December the 3rd, 
 went around circles with them. They kept 
 saying, "Well, you need to to appeal." I 
 said, "Well, we've been through the 
 appeal and you just keep asking for more 
 information. There is no resolution. 
 We've given up appealing. The matter's 
 now closed. We're not going to appeal 
 anymore. Send them back." And the 
 comment then was, "Well, we're holding 
 them for 36 days." Now, I did suggest 
 that they pay me rent for that, but they 
 didn't understand that. Holding them for 
 36 days, but after 36 days, you can have 
 them back. And it was very clear on 
 that. 
 So, I got pissed off, 
 but I decided I'll play their game. They 
 clearly said I'll have them back in 36 
 days. 
 It's been about 40 days now. So I 
 chatted with them yesterday and this was 
 the hour and 45 minute chat and it's 
 like speaking to a brick wall. 
 The the person I'm speaking to just 
 doesn't understand the concept. He's 
 saying well you need to appeal. I said 
 tried appealing. We've given up on that. 
 We need to send these documents. But 
 there aren't any documents to send. 
 They're not going to send any documents. 
 Just send them back. 
 At one point he's like well if you send 
 the documents how can we send them back? 
 And he's sort of like put them in a box 
 with our address on them. Put them in 
 the post. It's not complicated. 
 But he just, you know, he's got a mental 
 block with the whole concept that they 
 can send them back. They don't need me 
 to send documents or appeals to send 
 them back. They can do it. It is 
 physically possible for them to do it. 
 But no, it just that didn't that thought 
 didn't enter his head. It was a very 
 frustrating hour and 45 minutes and very 
 boring. As I said, 
 the summary of the call finally came in. 
 Um, and the email came up and said, 
 "Well, you've still got to send some 
 documents in." Basically, they're saying 
 they're going to hold them. In fact, at 
 one point, they even suggested they 
 might destroy them. 
 And to be clear, the whole Amazon 
 process for this is for handling fake 
 merchandise. So, if I was selling 
 trainers that had Mike instead of Nike 
 on them, then I can understand that 
 they're fake products and they want to 
 do something about it and take them off 
 the market. Although, I'm not really 
 sure they should be entitled to destroy 
 them without court order. 
 But this is not what's happening. These 
 are not fake DIN products. DIN don't 
 make development boards. They do make a 
 Wi-Fi adapter, but it doesn't look at 
 anything like this or work in the same 
 way. So, this isn't a fake DIN product 
 with a similar name to Fool People. It's 
 a different product and and their 
 process doesn't really get up to that in 
 the first place. So given that they're 
 basically trying to tackle potentially 
 fake products, their process is wanting 
 documents like the invoice for where I 
 got it, what supplier I got it from. So 
 if I had a supplier that said, "Yes, 
 this is genuine DIN um Wi-Fi 
 controllers, then maybe I'd get 
 somewhere." Or if I had, you know, if I 
 bought them from DIN. The problem is 
 we're not claiming that they're DIN. So 
 we don't have an invoice from a supplier 
 that says that they're genuine DIN. 
 Also, we made them. So, we don't have an 
 invoice for the splat. I mean, I've got 
 an invoice for the bare circuit boards, 
 but that's that's not the final product. 
 And they just argued up for that. Their 
 appeals process seems to lack a couple 
 of obvious steps. One is it's not a 
 breach of trademark. It's not a concept 
 they seem to understand. The other is 
 okay, it's a potential breach of 
 trademark. We're not saying it's breach 
 of trademark. Obviously, we're not 
 conceding that, especially as you might 
 destroy the goods, but it's a potential 
 VA trademark. So, we're prepared to pull 
 the products, withdraw the products from 
 sale, um, get them back, rebrand them, 
 so there's no confusion, there's no 
 there's no ambiguity. And again, that's 
 not an avenue they understand. I had a 
 chat today 
 and actually someone slightly more 
 helpful, although he did admit that 
 often they can't actually do anything to 
 fix problems. He has actually managed to 
 escalate it to a specialist team. 
 And the reason we got somewhere, I 
 think, is because the the summary from 
 previous chat wanted five things from 
 me. And these five things are invoices 
 and receipts, pricing information may be 
 removed, supplier information, name, 
 phone, number, address, and website. 
 Item description and quantities, import 
 or export documents, and documentation 
 showing that your fake products do not 
 infringe on the day trademark. 
 And I was able to basically tackle all 
 five points preemptively in the chat. 
 So when it comes to invoice and 
 receipts, there is no invoice of 
 receipt. We make these. When it comes to 
 supplier information, there is no 
 supplier. We make these. When it comes 
 to item description and quantities, 
 well, you know the item description and 
 how many you have. When it comes to 
 import and export documentations, well, 
 we make these. We didn't import or 
 export them. 
 documentation showing your faking 
 products do not infringe trademark. 
 Well, my answer there is what 
 documentation could we provide that 
 faking does not infringe other than the 
 daking trademark which states the 
 letters D, A, I, K, I, and N and not the 
 letters F I, A, A, I, K, I, and N. So, I 
 preemptively answered all five points. 
 So, that stock answer is not going to 
 work this time. And I actually got 
 through to someone who seemed to grasp 
 that concept. 
 Now obviously 
 I had to explain it's not a fake puppet 
 um and a few other things but basically 
 he's transferred it to a specialized 
 team 
 but the one other thing I have said is 
 if it helps if you choose not to return 
 them then this will result in a county 
 court claim to challenge your actions 
 and policy in front of a judge. This is 
 the course you are taking if you choose 
 not to return them. As you know, there 
 has been no legal decision in a court to 
 declare this product is a beach. 
 And it does not use the actual word day. 
 So, it's not automatically a beach. It 
 needs a legal decision. 
 It could only be decided by a court, not 
 by Amazon. 
 So, that's all been passed through to 
 them. So, we're hoping maybe, just 
 possibly this time, it'll get through to 
 a person who's not completely brain dead 
 and can actually answer it. Otherwise, 
 it will be a county court claim. 
 It may well be that Amazon terms and 
 conditions and policies clearly state 
 they can withhold goods and destroy them 
 at a whim like this. But even if it 
 does, I'd like to see that in front of a 
 judge. A judge may well say that that 
 policy and that contract is not a valid 
 thing. 
 Um, I mean these are quite cheap, but 
 this could be really expensive goods, a 
 lot of stock and purely on the 
 allegation of a trademark infringement. 
 They are holding them and threatening to 
 destroy them without any actual decision 
 or court order. 
 I'd like to see that in front of a 
 county court judge just to see what they 
 say and and it will be worth the I don't 
 know 50 quid or whatever it cost to do 
 that. 
 So, and Amazon probably won't want to 
 sit in a county court and defend their 
 retention or destruction of my property. 
 So, we will see. 
 So, fingers crossed. But yes, this is 
 how impossible Amazon are to deal with 
 on a day-to-day basis. 
 Good luck if you want to deal with 
 Amazon. And sadly, they're in such a 
 monopolistic position that it's hard not 
 to. 
 Thank you.

Vision Zero + the Summertown shops

By danny

Looking at the last three years (2022-4) of STATS19 data, there's a nasty cluster of cycling injuries through the Summertown shops - ten injuries, five of them serious. And earlier years are only a bit better (2017-19, 7 injuries, 2 of them serious). There were also 8 pedestrian injuries (2017-2024), four of them (including the […]

16-Part Epoxy

Some surfaces may seem difficult to glue. But if you research the materials, find tables of what adhesives work on them, and prepare your surfaces carefully, you can fail to glue them in a fun NEW way that fills your house with dangerous vapors.

Keycloak 26.5.1 released

To download the release go to Keycloak downloads.

Upgrading

Before upgrading refer to the migration guide for a complete list of changes.

All resolved issues

Enhancements

Bugs

Who Decides Who Doesn’t Deserve Privacy?

By Troy Hunt

Presently sponsored by: Report URI: Guarding you from rogue JavaScript! Don’t get pwned; get real-time alerts & prevent breaches #SecureYourSite

Remember the Ashley Madison data breach? That was now more than a decade ago, yet it arguably remains the single most noteworthy data breach of all time. There are many reasons for this accolade, but chief among them is that by virtue of the site being expressly designed to facilitate

What a Year of Solar and Batteries Really Saved Us in 2025

By Scott Helme

Throughout 2025, I spoke a few times about our home energy solution, including our grid usage, our solar array and our Tesla Powerwall batteries. Now that I have a full year of data, I wanted to take a look at exactly how everything is working out, and, in alignment with

Sailing Rigs

I wanted to make the world's fastest yawl, so I made the aft sail bigger, but apparently that means it's not a yawl anymore! It's a real ketch-22.

Review sites: like them or loathe them, you can’t ignore them

By pdw

Constant pestering to review every online transaction is rapidly overtaking cookie banners as the most annoying feature of the modern internet. We’re committed to making the internet less annoying. We don’t have a cookie banner on our website – we don’t need one because we don’t track you – and we also won’t hassle you […]

Mic Drop; Voice Agent v2

By Simon Woodhead

In SimCron7 we said we’d taken a reflective pause on AI agents and had some big plans for Q4 2024. You see, when we launched them we focused on adding telephony, assuming we couldn’t do the clever AI bits better…

The post Mic Drop; Voice Agent v2 appeared first on Simwood.

Show HN: Kacet – a freelancer marketplace with crypto-native payments

Comments

RISC-V is coming along quite speedily: Milk-V Titan Mini-ITX 8-core board

Comments

Wikipedia: WikiProject AI Cleanup

Comments

Greenpeace pilot brings heat pumps and solar to Ukrainian community

Comments

Radboud University selects Fairphone as standard smartphone for employees

Comments

A decentralized peer-to-peer messaging application that operates over Bluetooth

Comments

Show HN: AWS-doctor – A terminal-based AWS health check and cost optimizer in Go

Comments

The Code-Only Agent

Comments

Show HN: I quit coding years ago. AI brought me back

Comments

High-speed train collision in Spain kills at least 39

Comments

Show HN: Beats, a web-based drum machine

Comments

Texas police invested in phone-tracking software and won’t say how it’s used

Comments

Show HN: Dock – Slack minus the bloat, tax, and 90-day memory loss

Comments

Dead Internet Theory

Comments

Flux 2 Klein pure C inference

Comments

UK prime minister stares down barrel of ban on social media for kids

By SA Mathieson

Labour's latest U-turn? 61 backbenchers pile pressure for Starmer to back Tory peer's amendment

The British government may impose a ban on under-16s using social media, despite Labour prime minister Keir Starmer having previously expressed skepticism over the measure.…

Price, battery life, performance – that's how you sell PCs

By Paul Kunert

Traditional considerations back in vogue. On-device AI? Not so much

The majority of PCs that commercial resellers shipped to enterprise customers in Q4 were AI-capable, however, it was the traditional levers of price, battery life and performance these biz buyers were mostly sold on.…

'We are not top-five contenders' - is January make or break for Villa?

After manager Unai Emery says Aston Villa are not top-five contenders in the Premier League, BBC Sport looks at the importance of the transfer window.

What we know about Spain's worst rail disaster in more than a decade

At least 39 people have died in what local officials are calling Spain's worst rail crash in more than a decade.

Hospital was warned for years about deadly water infections, says father of cancer patient

John Cuddihy told BBC Scotland News his late daughter's experiences "must continue to echo beyond her lifetime".

Warwickshire school to reopen after cyberattack crippled IT

By Carly Page

Kids return to classrooms after safety infrastructure knocked out

A Warwickshire secondary school says it will fully reopen this week after a cyberattack forced a prolonged closure – though staff will return to classrooms with "very limited access" to IT systems.…

'Shameful' and 'terrible look' - the chaos that marred Senegal's Afcon triumph

Senegal beat Morocco to win the Africa Cup of Nations after the final is overshadowed when they temporarily refuse to play.

'Shameful' and 'terrible look' - the chaos that marred Senegal's Afcon triumph

Senegal beat Morocco to win the Africa Cup of Nations after the final is overshadowed when they temporarily refuse to play.

Zootropolis 2 becomes Hollywood's biggest animated film ever

The film has overtaken the previous record holder, Inside Out 2, after making $1.7bn (£1.3bn) worldwide.

Why the US is buying icebreakers from Finland

The Nordic nation leads the way when it comes to both the design and construction of the vessels.

Royal Navy's helicopter drone makes its first autonomous flight

By Dan Robinson

Capable of carrying 1-ton payload and key to strategy protecting North Atlantic from Russian submarines

The Royal Navy has conducted the first flight of a helicopter-sized autonomous drone that is planned to operate from its ships in support of missions, including hunting for hostile submarines.…

Teachers in Scotland on supply list for years or leaving country due to job shortages

Scottish government figures shows that most newly qualified teachers in Scotland are no longer getting permanent jobs, especially in primary schools.

Open source's new mission: Rebuild a continent's tech stack

By Rupert Goodwins

Freedom can be very contagious if it grows on its own terms. Europe of all places should know that

Opinion  Europe is famous for having the most tightly regulated non-existent tech sector in the world. This is a mildly unfair characterization, as there are plenty of tech enterprises across the continent, quite a respectable smattering if it wasn't for the US doing everything at least ten times bigger.…

Gold and silver prices hit high after tariff threat

Donald Trump's plan to impose import taxes over Greenland pushed investors toward precious metals.

'I'll pick myself up' - sobbing Jones among Australian Open retirements

Injury wrecks Francesca Jones' hopes of earning a first Australian Open main-draw win, while Marina Stakusic is taken off court on a wheelchair on day two.

Expecting my 1st child, partner had their other child removed from her care years ago and worried this will happen again

By /u/Odd-Soil-6807

My partner is pregnant. This is my 1st but her 2nd. Her 1st was with her ex many years ago and the child was removed from their care due to neglect. My partner was not in a good place at this time and being burdened with everything cooking cleaning looking after the flat and managing bills while her ex spent all his money on games and takeout and made her look after his dog basically she was looking after 2 children not just 1. She has been out of that situation for a long time and weve been together for 4 years. We both work, I have a fulltime job and own my home and know wed have a stable situation compared ot that.

Shes begged me not to tell anyone yet and says she doesnt want to go to maternity services in case they take our kid away when theyre born. I dont wan t them to be taken obviously but I also want to make sure my partner is being looked after and has the right care. She says she doesnt want social services involved again as last time they were really horrible to her, like she actually moved out, got her own flat and everything but they would find petty little ways to undercut her even though she was trying and the decision was made to adopt out her kid until she was too tired to keep fighting.

My questions

-Whats our obligations to report around our kid?

-What powers do social services have here? I would not allow them to have my kid as my partner is not the same person she was back then and is in a better situation

-What will happen if they find out my partner is pregnant or our kid is born?

Eng

submitted by /u/Odd-Soil-6807 to r/UKParenting
[link] [comments]

Expecting my 1st child, partner had their last child removed from her care years ago and worried this will happen again

By /u/Odd-Soil-6807

My partner is pregnant. This is my 1st but her 2nd. Her 1st was with her ex many years ago and the child was removed from their care due to neglect. My partner was not in a good place at this time and being burdened with everything cooking cleaning looking after the flat and managing bills while her ex spent all his money on games and takeout and made her look after his dog basically she was looking after 2 children not just 1. She has been out of that situation for a long time and weve been together for 4 years. We both work, I have a fulltime job and own my home and know wed have a stable situation comapred ot that.

Shes begged me not to tell anyone yet and says she doesnt want to go to maternity services in case they take our kid away when theyre born. I dont wan t them to be taken obviously but I also want to make sure my partner is being looked after and has the right care. She says she doesnt want social services involved again as last time they were really horrible to her, like she actually moved out, got her own flat and everything but they would find petty little ways to undercut her even though she was trying and the decision was made to adopt out her kid until she was too tired to keep fighting.

My questions

-Whats our obligations to report around our kid?

-What powers do social services have here? I would not allow them to have my kid as my partner is not the same person she was back then and is in a better situation

-What will happen if they find out my partner is pregnant or our kid is born?

Eng

submitted by /u/Odd-Soil-6807 to r/LegalAdviceUK
[link] [comments]

Keir Starmer rules out retaliatory tariffs against US

By /u/AbbreviationsHot7662

Keir Starmer rules out retaliatory tariffs against US submitted by /u/AbbreviationsHot7662 to r/unitedkingdom
[link] [comments]

how do you get rid of a bad window cleaner without getting burgled afterwards?

By /u/Mid-Pri6170

(im a live in carer for a family member) they have had a shite window cleaner for years, took over from some other bloke (without introduction) every window has cobwebs/smears/dirt on it on it.

no one has his number or knows his name. and im always going for path of least resistance as the person i care for is like a miserable Father Jack type character and its hard dealing with them.

he shows up at 6am asks for 15 quid, he must do some cleaning but i can still find bit of spider webs, even on the ground floor easy to access spots, so its obvious he does a shit job.

i want to get rid of him cause quite frankly i dont need windows cleaned that much and i'd rather do it myself and pocket that sweet sweet 15 quid meself.

i tried telling him 2 months ago, please only come in the daytime and he didnt the next month. but i need to be more formal i reckon. but im keen to say 'im gonna clean the windows myself, see ya' rather than saying something else.

submitted by /u/Mid-Pri6170 to r/AskUK
[link] [comments]

Kremlin says Trump invited Putin to join 'Board of Peace'

By /u/wowo78

Kremlin says Trump invited Putin to join 'Board of Peace' submitted by /u/wowo78 to r/worldnews
[link] [comments]

Bank refused personal cash savings

By /u/Busy-Neighborhood-67

Went into a branch today to put in £2K.

I earn about 25K before tax and have had my current job for a year and 4 months.

Before then, I’ve worked since I was 18 and possibly 2-3 other jobs earning at least £500. I’m 22 now.

I’ve saved money and gotten money from my parents in between that time (in the hundreds if not thousands)

Cashier refused on the basis that she couldn’t see cash withdrawals and that apparently it would take 10 years for me to save up 2K in cash and needed more evidence?

Is there anywhere else where I can put the money into where they don’t do absurd maths like this?

submitted by /u/Busy-Neighborhood-67 to r/UKPersonalFinance
[link] [comments]

The skull of Mary Magdalene

By /u/Prometheus_Anonymous

The skull of Mary Magdalene submitted by /u/Prometheus_Anonymous to r/interestingasfuck
[link] [comments]

No bombs, no warning: Britain’s next war will begin beneath the sea with a total internet shutdown, power blackouts and financial chaos

By /u/tylerthe-theatre

No bombs, no warning: Britain’s next war will begin beneath the sea with a total internet shutdown, power blackouts and financial chaos submitted by /u/tylerthe-theatre to r/unitedkingdom
[link] [comments]

What happened to electric carving knives?

By /u/MegaMolehill

Back in the 80s/90s when I was a kid everyone had a Sunday roast and the electric carving knife was brought out to thinly slice the meat. But I haven’t seen one in twenty years. Why did they disappear?

submitted by /u/MegaMolehill to r/AskUK
[link] [comments]

Sigh…UK right now

By /u/Mouflon77

Sigh…UK right now submitted by /u/Mouflon77 to r/GreatBritishMemes
[link] [comments]

Fury as NHS could sack nurse for calling 6ft bearded sex offender 'Mr'

By /u/daily_express

Fury as NHS could sack nurse for calling 6ft bearded sex offender 'Mr' submitted by /u/daily_express to r/uknews
[link] [comments]

Trump’s bizarre letter to Norway’s prime minister in full as President links Greenland threat to Nobel Prize snub

By /u/a_wild_redditor

Trump’s bizarre letter to Norway’s prime minister in full as President links Greenland threat to Nobel Prize snub submitted by /u/a_wild_redditor to r/politics
[link] [comments]

Can my manager force me to clean the toilets?

By /u/happy_faerie

I started a new job 2 months ago at a small ish business as their Customer Service manager. The company got taken over by a big company a few years ago but they've kept it mostly the same apparently. I was talking to another employee and mentioned how gross the loos are and asked when they are cleaned because they havent been since I started. They said when the big company took over they fired the cleaners immediately and didn't replace them. Apparently the mens toilets havent been cleaned since then (2 YEARS ago) and the previous customer service woman would clean the women's toilet every few months because she was tired of them being gross. I am the CS woman now and theres no way I'm cleaning the loos. I have been a cleaner in the past but that's not my job here and it says nothing about it in my contract. I'm worried about asking the manager about the toilets in case they say I have to do it. Are there any rules about toilet cleanliness at work? Can they force me to do it? I have bills to pay and it took me a month to find this job so quitting is not an option unfortunately..

submitted by /u/happy_faerie to r/AskUK
[link] [comments]

Trumps letter to Norwegian Prime Minister - "feels no obligation to work towards peace after being denied the nobel prize"

By /u/MedicinskAnonymitet

Trumps letter to Norwegian Prime Minister - "feels no obligation to work towards peace after being denied the nobel prize" submitted by /u/MedicinskAnonymitet to r/europe
[link] [comments]

Trump letter to Norwegian PM Støre regarding the Nobel Peace Prize and Greenland today:

By /u/BodybuilderSmall9679

Trump letter to Norwegian PM Støre regarding the Nobel Peace Prize and Greenland today: submitted by /u/BodybuilderSmall9679 to r/Fauxmoi
[link] [comments]

Scaling long-running autonomous coding

Scaling long-running autonomous coding

Wilson Lin at Cursor has been doing some experiments to see how far you can push a large fleet of "autonomous" coding agents:

This post describes what we've learned from running hundreds of concurrent agents on a single project, coordinating their work, and watching them write over a million lines of code and trillions of tokens.

They ended up running planners and sub-planners to create tasks, then having workers execute on those tasks - similar to how Claude Code uses sub-agents. Each cycle ended with a judge agent deciding if the project was completed or not.

In my predictions for 2026 the other day I said that by 2029:

I think somebody will have built a full web browser mostly using AI assistance, and it won’t even be surprising. Rolling a new web browser is one of the most complicated software projects I can imagine[...] the cheat code is the conformance suites. If there are existing tests that it’ll get so much easier.

I may have been off by three years, because Cursor chose "building a web browser from scratch" as their test case for their agent swarm approach:

To test this system, we pointed it at an ambitious goal: building a web browser from scratch. The agents ran for close to a week, writing over 1 million lines of code across 1,000 files. You can explore the source code on GitHub.

But how well did they do? Their initial announcement a couple of days ago was met with unsurprising skepticism, especially when it became apparent that their GitHub Actions CI was failing and there were no build instructions in the repo.

It looks like they addressed that within the past 24 hours. The latest README includes build instructions which I followed on macOS like this:

cd /tmp
git clone https://github.com/wilsonzlin/fastrender
cd fastrender
git submodule update --init vendor/ecma-rs
cargo run --release --features browser_ui --bin browser

This got me a working browser window! Here are screenshots I took of google.com and my own website:

The browser chrome is neat but has a garbled tab name at the top. The Google homepage looks mostly correct but the buttons are not styled correctly and the Google Search one has a huge plus icon floating near it.

My blog looks mostly correct, but the right closing quotation mark on a quotation (which is implemented as a background image on the final paragraph) is displayed incorrectly multiple times.

Honestly those are very impressive! You can tell they're not just wrapping an existing rendering engine because of those very obvious rendering glitches, but the pages are legible and look mostly correct.

The FastRender repo even uses Git submodules to include various WhatWG and CSS-WG specifications in the repo, which is a smart way to make sure the agents have access to the reference materials that they might need.

This is the second attempt I've seen at building a full web browser using AI-assisted coding in the past two weeks - the first was HiWave browser, a new browser engine in Rust first announced in this Reddit thread.

When I made my 2029 prediction this is more-or-less the quality of result I had in mind. I don't think we'll see projects of this nature compete with Chrome or Firefox or WebKit any time soon but I have to admit I'm very surprised to see something this capable emerge so quickly.

Tags: browsers, ai, generative-ai, llms, ai-assisted-programming, coding-agents, cursor, conformance-suites

FLUX.2-klein-4B Pure C Implementation

FLUX.2-klein-4B Pure C Implementation

On 15th January Black Forest Labs, a lab formed by the creators of the original Stable Diffusion, released black-forest-labs/FLUX.2-klein-4B - an Apache 2.0 licensed 4 billion parameter version of their FLUX.2 family.

Salvatore Sanfilippo (antirez) decided to build a pure C and dependency-free implementation to run the model, with assistance from Claude Code and Claude Opus 4.5.

Salvatore shared this note on Hacker News:

Something that may be interesting for the reader of this thread: this project was possible only once I started to tell Opus that it needed to take a file with all the implementation notes, and also accumulating all the things we discovered during the development process. And also, the file had clear instructions to be taken updated, and to be processed ASAP after context compaction. This kinda enabled Opus to do such a big coding task in a reasonable amount of time without loosing track. Check the file IMPLEMENTATION_NOTES.md in the GitHub repo for more info.

Here's that IMPLEMENTATION_NOTES.md file.

Via Hacker News

Tags: c, salvatore-sanfilippo, ai, stable-diffusion, generative-ai, llms, ai-assisted-programming, text-to-image, coding-agents, claude-code

Quoting Jeremy Daer

[On agents using CLI tools in place of REST APIs] To save on context window, yes, but moreso to improve accuracy and success rate when multiple tool calls are involved, particularly when calls must be correctly chained e.g. for pagination, rate-limit backoff, and recognizing authentication failures.

Other major factor: which models can wield the skill? Using the CLI lowers the bar so cheap, fast models (gpt-5-nano, haiku-4.5) can reliably succeed. Using the raw APl is something only the costly "strong" models (gpt-5.2, opus-4.5) can manage, and it squeezes a ton of thinking/reasoning out of them, which means multiple turns/iterations, which means accumulating a ton of context, which means burning loads of expensive tokens. For one-off API requests and ad hoc usage driven by a developer, this is reasonable and even helpful, but for an autonomous agent doing repetitive work, it's a disaster.

Jeremy Daer, 37signals

Tags: prompt-engineering, skills, generative-ai, 37-signals, ai, llms

Our approach to advertising and expanding access to ChatGPT

Our approach to advertising and expanding access to ChatGPT

OpenAI's long-rumored introduction of ads to ChatGPT just became a whole lot more concrete:

In the coming weeks, we’re also planning to start testing ads in the U.S. for the free and Go tiers, so more people can benefit from our tools with fewer usage limits or without having to pay. Plus, Pro, Business, and Enterprise subscriptions will not include ads.

What's "Go" tier, you might ask? That's a new $8/month tier that launched today in the USA, see Introducing ChatGPT Go, now available worldwide. It's a tier that they first trialed in India in August 2025 (here's a mention in their release notes from August listing a price of ₹399/month, which converts to around $4.40).

I'm finding the new plan comparison grid on chatgpt.com/pricing pretty confusing. It lists all accounts as having access to GPT-5.2 Thinking, but doesn't clarify the limits that the free and Go plans have to conform to. It also lists different context windows for the different plans - 16K for free, 32K for Go and Plus and 128K for Pro. I had assumed that the 400,000 token window on the GPT-5.2 model page applied to ChatGPT as well, but apparently I was mistaken.

Update: I've apparently not been paying attention: here's the Internet Archive ChatGPT pricing page from September 2025 showing those context limit differences as well.

Back to advertising: my biggest concern has always been whether ads will influence the output of the chat directly. OpenAI assure us that they will not:

  • Answer independence: Ads do not influence the answers ChatGPT gives you. Answers are optimized based on what's most helpful to you. Ads are always separate and clearly labeled.
  • Conversation privacy: We keep your conversations with ChatGPT private from advertisers, and we never sell your data to advertisers.

So what will they look like then? This screenshot from the announcement offers a useful hint:

Two iPhone screenshots showing ChatGPT mobile app interface. Left screen displays a conversation about Santa Fe, New Mexico with an image of adobe-style buildings and desert landscape, text reading "Santa Fe, New Mexico—often called 'The City Different'—is a captivating blend of history, art, and natural beauty at the foot of the Sangre de Cristo Mountains. As the oldest and highest-elevation state capital in the U.S., founded in 1610, it offers a unique mix of Native American, Spanish, and Anglo cultures." Below is a sponsored section from "Pueblo & Pine" showing "Desert Cottages - Expansive residences with desert vistas" with a thumbnail image, and a "Chat with Pueblo & Pine" button. Input field shows "Ask ChatGPT". Right screen shows the Pueblo & Pine chat interface with the same Desert Cottages listing and an AI response "If you're planning a trip to Sante Fe, I'm happy to help. When are you thinking of going?" with input field "Ask Pueblo & Pine" and iOS keyboard visible.

The user asks about trips to Santa Fe, and an ad shows up for a cottage rental business there. This particular example imagines an option to start a direct chat with a bot aligned with that advertiser, at which point presumably the advertiser can influence the answers all they like!

Tags: ads, ai, openai, generative-ai, chatgpt, llms

Open Responses

Open Responses

This is the standardization effort I've most wanted in the world of LLMs: a vendor-neutral specification for the JSON API that clients can use to talk to hosted LLMs.

Open Responses aims to provide exactly that as a documented standard, derived from OpenAI's Responses API.

I was hoping for one based on their older Chat Completions API since so many other products have cloned the already, but basing it on Responses does make sense since that API was designed with the feature of more recent models - such as reasoning traces - baked into the design.

What's certainly notable is the list of launch partners. OpenRouter alone means we can expect to be able to use this protocol with almost every existing model, and Hugging Face, LM Studio, vLLM, Ollama and Vercel cover a huge portion of the common tools used to serve models.

For protocols like this I really want to see a comprehensive, language-independent conformance test site. Open Responses has a subset of that - the official repository includes src/lib/compliance-tests.ts which can be used to exercise a server implementation, and is available as a React app on the official site that can be pointed at any implementation served via CORS.

What's missing is the equivalent for clients. I plan to spin up my own client library for this in Python and I'd really like to be able to run that against a conformance suite designed to check that my client correctly handles all of the details.

Via VB

Tags: json, standards, ai, openai, generative-ai, llms, openrouter, conformance-suites

The Design & Implementation of Sprites

The Design & Implementation of Sprites

I wrote about Sprites last week Here's Thomas Ptacek from Fly with the insider details on how they work under the hood.

I like this framing of them as "disposable computers":

Sprites are ball-point disposable computers. Whatever mark you mean to make, we’ve rigged it so you’re never more than a second or two away from having a Sprite to do it with.

I've noticed that new Fly Machines can take a while (up to around a minute) to provision. Sprites solve that by keeping warm pools of unused machines in multiple regions, which is enabled by them all using the same container:

Now, today, under the hood, Sprites are still Fly Machines. But they all run from a standard container. Every physical worker knows exactly what container the next Sprite is going to start with, so it’s easy for us to keep pools of “empty” Sprites standing by. The result: a Sprite create doesn’t have any heavy lifting to do; it’s basically just doing the stuff we do when we start a Fly Machine.

The most interesting detail is how the persistence layer works. Sprites only charge you for data you have written that differs from the base image and provide ~300ms checkpointing and restores - it turns out that's power by a custom filesystem on top of S3-compatible storage coordinated by Litestream-replicated local SQLite metadata:

We still exploit NVMe, but not as the root of storage. Instead, it’s a read-through cache for a blob on object storage. S3-compatible object stores are the most trustworthy storage technology we have. I can feel my blood pressure dropping just typing the words “Sprites are backed by object storage.” [...]

The Sprite storage stack is organized around the JuiceFS model (in fact, we currently use a very hacked-up JuiceFS, with a rewritten SQLite metadata backend). It works by splitting storage into data (“chunks”) and metadata (a map of where the “chunks” are). Data chunks live on object stores; metadata lives in fast local storage. In our case, that metadata store is kept durable with Litestream. Nothing depends on local storage.

Via @tqbf

Tags: architecture, sandboxing, sqlite, thomas-ptacek, fly, litestream

Quoting Boaz Barak, Gabriel Wu, Jeremy Chen and Manas Joglekar

When we optimize responses using a reward model as a proxy for “goodness” in reinforcement learning, models sometimes learn to “hack” this proxy and output an answer that only “looks good” to it (because coming up with an answer that is actually good can be hard). The philosophy behind confessions is that we can train models to produce a second output — aka a “confession” — that is rewarded solely for honesty, which we will argue is less likely hacked than the normal task reward function. One way to think of confessions is that we are giving the model access to an “anonymous tip line” where it can turn itself in by presenting incriminating evidence of misbehavior. But unlike real-world tip lines, if the model acted badly in the original task, it can collect the reward for turning itself in while still keeping the original reward from the bad behavior in the main task. We hypothesize that this form of training will teach models to produce maximally honest confessions.

Boaz Barak, Gabriel Wu, Jeremy Chen and Manas Joglekar, OpenAI: Why we are excited about confessions

Tags: openai, llms, ai, generative-ai

Claude Cowork Exfiltrates Files

Claude Cowork Exfiltrates Files

Claude Cowork defaults to allowing outbound HTTP traffic to only a specific list of domains, to help protect the user against prompt injection attacks that exfiltrate their data.

Prompt Armor found a creative workaround: Anthropic's API domain is on that list, so they constructed an attack that includes an attacker's own Anthropic API key and has the agent upload any files it can see to the https://api.anthropic.com/v1/files endpoint, allowing the attacker to retrieve their content later.

Via Hacker News

Tags: security, ai, prompt-injection, generative-ai, llms, anthropic, exfiltration-attacks, ai-agents, claude-code, lethal-trifecta, claude-cowork

Anthropic invests $1.5 million in the Python Software Foundation and open source security

Anthropic invests $1.5 million in the Python Software Foundation and open source security

This is outstanding news, especially given our decision to withdraw from that NSF grant application back in October.

We are thrilled to announce that Anthropic has entered into a two-year partnership with the Python Software Foundation (PSF) to contribute a landmark total of $1.5 million to support the foundation’s work, with an emphasis on Python ecosystem security. This investment will enable the PSF to make crucial security advances to CPython and the Python Package Index (PyPI) benefiting all users, and it will also sustain the foundation’s core work supporting the Python language, ecosystem, and global community.

Note that while security is a focus these funds will also support other aspects of the PSF's work:

Anthropic’s support will also go towards the PSF’s core work, including the Developer in Residence program driving contributions to CPython, community support through grants and other programs, running core infrastructure such as PyPI, and more.

Tags: open-source, python, ai, psf, anthropic

Superhuman AI Exfiltrates Emails

Superhuman AI Exfiltrates Emails

Classic prompt injection attack:

When asked to summarize the user’s recent mail, a prompt injection in an untrusted email manipulated Superhuman AI to submit content from dozens of other sensitive emails (including financial, legal, and medical information) in the user’s inbox to an attacker’s Google Form.

To Superhuman's credit they treated this as the high priority incident it is and issued a fix.

The root cause was a CSP rule that allowed markdown images to be loaded from docs.google.com - it turns out Google Forms on that domain will persist data fed to them via a GET request!

Via Hacker News

Tags: security, ai, prompt-injection, generative-ai, llms, exfiltration-attacks, content-security-policy

First impressions of Claude Cowork, Anthropic's general agent

New from Anthropic today is Claude Cowork, a "research preview" that they describe as "Claude Code for the rest of your work". It's currently available only to Max subscribers ($100 or $200 per month plans) as part of the updated Claude Desktop macOS application. Update 16th January 2026: it's now also available to $20/month Claude Pro subscribers.

I've been saying for a while now that Claude Code is a "general agent" disguised as a developer tool. It can help you with any computer task that can be achieved by executing code or running terminal commands... which covers almost anything, provided you know what you're doing with it! What it really needs is a UI that doesn't involve the terminal and a name that doesn't scare away non-developers.

"Cowork" is a pretty solid choice on the name front!

What it looks like

The interface for Cowork is a new tab in the Claude desktop app, called Cowork. It sits next to the existing Chat and Code tabs.

It looks very similar to the desktop interface for regular Claude Code. You start with a prompt, optionally attaching a folder of files. It then starts work.

I tried it out against my perpetually growing "blog-drafts" folder with the following prompt:

Look at my drafts that were started within the last three months and then check that I didn't publish them on simonwillison.net using a search against content on that site and then suggest the ones that are most close to being ready

Screenshot of Claude AI desktop application showing a "Cowork" task interface. Left sidebar shows tabs for "Chat", "Code", and "Cowork" (selected), with "+ New task" button and a task titled "Review unpublished drafts for pu..." listed below. Text reads "These tasks run locally and aren't synced across devices". Main panel header shows "Review unpublished drafts for publication". User message in green bubble reads: "Look at my drafts that were started within the last three months and then check that I didn't publish them on simonwillison.net using a search against content on that site and then suggest the ones that are most close to being ready". Claude responds: "I'll help you find drafts from the last three months and check if they've been published. Let me start by looking at your drafts folder." Below is an expanded "Running command" section showing Request JSON with command: find /sessions/zealous-bold-ramanujan/mnt/blog-drafts -type f \\( -name \"*.md\" -o -name \"*.txt\" -o -name \"*.html\" \\) -mtime -90 -exec ls -la {} \\;, description: Find draft files modified in the last 90 days. Response text begins: "Found 46 draft files. Next let me read the content of each to get their titles/topics, then". Right sidebar shows Progress section with three circular indicators (two checked, one pending) and text "Steps will show as the task unfolds.", Artifacts section listing "publish-encouragement.html", Context section with "Selected folders" showing "blog-drafts" folder, Connectors showing "Web search", and Working files listing "llm-digest-october-2025.md", "tests-not-optional-coding-agen...", and "digest-november-2025.md". Bottom shows reply input field, "Opus 4.5" model selector, user "Simon Willison" with "Max plan", and disclaimer "Claude is AI and can make mistakes. Please double-check responses."

It started by running this command:

find /sessions/zealous-bold-ramanujan/mnt/blog-drafts \
  -type f \( -name "*.md" -o -name "*.txt" -o -name "*.html" \) \
  -mtime -90 -exec ls -la {} \;

That /sessions/zealous-bold-ramanujan/mnt/blog-drafts path instantly caught my eye. Anthropic say that Cowork can only access files you grant it access to - it looks to me like they're mounting those files into a containerized environment, which should mean we can trust Cowork not to be able to access anything outside of that sandbox.

It turns out I have 46 draft files from the past three months. Claude then went to work with its search tool, running 44 individual searches against site:simonwillison.net to figure out which of my drafts had already been published.

Here's the eventual reply:

Based on my analysis, here are your unpublished drafts that appear closest to being ready for publication:


🔥 Most Ready to Publish (substantial content, not yet published)

  1. freq-argued-llms.md - "Frequently Argued Questions about LLMs" (22,602 bytes)
    • This is a meaty piece documenting common arguments about LLMs with your counterpoints
    • Well-structured with a TL;DR and multiple sections
    • No matching published article found on your site
    • Very close to ready - just needs a final review pass
  2. claude-code-timeline.md - "Claude Code Timeline and Codex Timeline" (3,075 bytes)
    • About viewing JSONL session logs from Claude Code and Codex
    • You published claude-code-transcripts on Dec 25, but this appears to be a different/earlier piece about timeline viewing tools
    • Shorter but seems complete
  3. datasette-1a20-upgrade-instructions.md - Plugin Upgrade Guide (3,147 bytes)
    • Technical guide for plugin authors
    • You published the main 1.0a20 announcement but this companion upgrade guide appears unpublished
    • Would be valuable for plugin maintainers

That's a good response! It found exactly what I needed to see, although those upgrade instructions are actually published elsewhere now (in the Datasette docs) and weren't actually intended for my blog.

Just for fun, and because I really like artifacts, I asked for a follow-up:

Make me an artifact with exciting animated encouragements to get me to do it

Here's what I got:

Screenshot of the same Claude AI desktop application Cowork interface, now showing completed task results. Left panel shows "1 step >" with link "View your animated encouragement page". Claude's response reads: "I created an over-the-top animated encouragement page with:" followed by bullet points: "🚀 Pulsing rockets and bouncing stats", "✨ Falling emoji rain and confetti", "🔥 Dancing fire emojis around your draft title", "💫 Sparkles that follow your mouse", "📊 An animated '95% ready' progress bar", "💬 Rotating motivational quotes", "🎉 A 'I'M GONNA DO IT!' button that triggers an explosion of confetti when clicked". Center shows an artifact preview of the generated HTML page with dark background featuring animated rocket emojis, large white text "PUBLISH TIME!", stats showing "22,602 bytes of wisdom waiting", "95% ready to ship", infinity symbol with "future arguments saved", and a fire emoji with yellow text "Frequently" (partially visible). Top toolbar shows "Open in Firefox" button. Right sidebar displays Progress section with checkmarks, Artifacts section with "publish-encouragement.html" selected, Context section showing "blog-drafts" folder, "Web search" connector, and Working files listing "llm-digest-october-2025.md", "tests-not-optional-coding-agen...", and "digest-november-2025.md". Bottom shows reply input, "Opus 4.5" model selector, and disclaimer text.

I couldn't figure out how to close the right sidebar so the artifact ended up cramped into a thin column but it did work. I expect Anthropic will fix that display bug pretty quickly.

Isn't this just Claude Code?

I've seen a few people ask what the difference between this and regular Claude Code is. The answer is not a lot. As far as I can tell Claude Cowork is regular Claude Code wrapped in a less intimidating default interface and with a filesystem sandbox configured for you without you needing to know what a "filesystem sandbox" is.

Update: It's more than just a filesystem sandbox - I had Claude Code reverse engineer the Claude app and it found out that Claude uses VZVirtualMachine - the Apple Virtualization Framework - and downloads and boots a custom Linux root filesystem.

I think that's a really smart product. Claude Code has an enormous amount of value that hasn't yet been unlocked for a general audience, and this seems like a pragmatic approach.

The ever-present threat of prompt injection

With a feature like this, my first thought always jumps straight to security. How big is the risk that someone using this might be hit by hidden malicious instruction somewhere that break their computer or steal their data?

Anthropic touch on that directly in the announcement:

You should also be aware of the risk of "prompt injections": attempts by attackers to alter Claude's plans through content it might encounter on the internet. We've built sophisticated defenses against prompt injections, but agent safety---that is, the task of securing Claude's real-world actions---is still an active area of development in the industry.

These risks aren't new with Cowork, but it might be the first time you're using a more advanced tool that moves beyond a simple conversation. We recommend taking precautions, particularly while you learn how it works. We provide more detail in our Help Center.

That help page includes the following tips:

To minimize risks:

  • Avoid granting access to local files with sensitive information, like financial documents.
  • When using the Claude in Chrome extension, limit access to trusted sites.
  • If you chose to extend Claude’s default internet access settings, be careful to only extend internet access to sites you trust.
  • Monitor Claude for suspicious actions that may indicate prompt injection.

I do not think it is fair to tell regular non-programmer users to watch out for "suspicious actions that may indicate prompt injection"!

I'm sure they have some impressive mitigations going on behind the scenes. I recently learned that the summarization applied by the WebFetch function in Claude Code and now in Cowork is partly intended as a prompt injection protection layer via this tweet from Claude Code creator Boris Cherny:

Summarization is one thing we do to reduce prompt injection risk. Are you running into specific issues with it?

But Anthropic are being honest here with their warnings: they can attempt to filter out potential attacks all they like but the one thing they can't provide is guarantees that no future attack will be found that sneaks through their defenses and steals your data (see the lethal trifecta for more on this.)

The problem with prompt injection remains that until there's a high profile incident it's really hard to get people to take it seriously. I myself have all sorts of Claude Code usage that could cause havoc if a malicious injection got in. Cowork does at least run in a filesystem sandbox by default, which is more than can be said for my claude --dangerously-skip-permissions habit!

I wrote more about this in my 2025 round-up: The year of YOLO and the Normalization of Deviance.

This is still a strong signal of the future

Security worries aside, Cowork represents something really interesting. This is a general agent that looks well positioned to bring the wildly powerful capabilities of Claude Code to a wider audience.

I would be very surprised if Gemini and OpenAI don't follow suit with their own offerings in this category.

I imagine OpenAI are already regretting burning the name "ChatGPT Agent" on their janky, experimental and mostly forgotten browser automation tool back in August!

bashtoni on Hacker News:

Simple suggestion: logo should be a cow and and orc to match how I originally read the product name.

I couldn't resist throwing that one at Nano Banana:

An anthropic style logo with a cow and an ork on it

Tags: sandboxing, ai, prompt-injection, generative-ai, llms, anthropic, claude, ai-agents, claude-code, lethal-trifecta, claude-cowork

Don't fall into the anti-AI hype

Don't fall into the anti-AI hype

I'm glad someone was brave enough to say this. There is a lot of anti-AI sentiment in the software development community these days. Much of it is justified, but if you let people convince you that AI isn't genuinely useful for software developers or that this whole thing will blow over soon it's becoming clear that you're taking on a very real risk to your future career.

As Salvatore Sanfilippo puts it:

It does not matter if AI companies will not be able to get their money back and the stock market will crash. All that is irrelevant, in the long run. It does not matter if this or the other CEO of some unicorn is telling you something that is off putting, or absurd. Programming changed forever, anyway.

I do like this hopeful positive outlook on what this could all mean, emphasis mine:

How do I feel, about all the code I wrote that was ingested by LLMs? I feel great to be part of that, because I see this as a continuation of what I tried to do all my life: democratizing code, systems, knowledge. LLMs are going to help us to write better software, faster, and will allow small teams to have a chance to compete with bigger companies. The same thing open source software did in the 90s.

This post has been the subject of heated discussions all day today on both Hacker News and Lobste.rs.

Tags: salvatore-sanfilippo, ai, generative-ai, llms, ai-assisted-programming, ai-ethics

My answers to the questions I posed about porting open source code with LLMs

Last month I wrote about porting JustHTML from Python to JavaScript using Codex CLI and GPT-5.2 in a few hours while also buying a Christmas tree and watching Knives Out 3. I ended that post with a series of open questions about the ethics and legality of this style of work. Alexander Petros on lobste.rs just challenged me to answer them, which is fair enough! Here's my attempt at that.

You can read the original post for background, but the short version is that it's now possible to point a coding agent at some other open source project and effectively tell it "port this to language X and make sure the tests still pass" and have it do exactly that.

Here are the questions I posed along with my answers based on my current thinking. Extra context is that I've since tried variations on a similar theme a few more times using Claude Code and Opus 4.5 and found it to be astonishingly effective.

I decided that the right thing to do here was to keep the open source license and copyright statement from the Python library author and treat what I had built as a derivative work, which is the entire point of open source.

After sitting on this for a while I've come down on yes, provided full credit is given and the license is carefully considered. Open source allows and encourages further derivative works! I never got upset at some university student forking one of my projects on GitHub and hacking in a new feature that they used. I don't think this is materially different, although a port to another language entirely does feel like a slightly different shape.

Does this format of development hurt the open source ecosystem?

Now this one is complicated!

It definitely hurts some projects because there are open source maintainers out there who say things like "I'm not going to release any open source code any more because I don't want it used for training" - I expect some of those would be equally angered by LLM-driven derived works as well.

I don't know how serious this problem is - I've seen angry comments from anonymous usernames, but do they represent genuine open source contributions or are they just angry anonymous usernames?

If we assume this is real, does the loss of those individuals get balanced out by the increase in individuals who CAN contribute to open source because they can now get work done in a few hours that might previously have taken them a few days that they didn't have to spare?

I'll be brutally honest about that question: I think that if "they might train on my code / build a derived version with an LLM" is enough to drive you away from open source, your open source values are distinct enough from mine that I'm not ready to invest significantly in keeping you. I'll put that effort into welcoming the newcomers instead.

The much bigger concern for me is the impact of generative AI on demand for open source. The recent Tailwind story is a visible example of this - while Tailwind blamed LLMs for reduced traffic to their documentation resulting in fewer conversions to their paid component library, I'm suspicious that the reduced demand there is because LLMs make building good-enough versions of those components for free easy enough that people do that instead.

I've found myself affected by this for open source dependencies too. The other day I wanted to parse a cron expression in some Go code. Usually I'd go looking for an existing library for cron expression parsing - but this time I hardly thought about that for a second before prompting one (complete with extensive tests) into existence instead.

I expect that this is going to quite radically impact the shape of the open source library world over the next few years. Is that "harmful to open source"? It may well be. I'm hoping that whatever new shape comes out of this has its own merits, but I don't know what those would be.

I'm not a lawyer so I don't feel credible to comment on this one. My loose hunch is that I'm still putting enough creative control in through the way I direct the models for that to count as enough human intervention, at least under US law, but I have no idea.

Is it responsible to publish software libraries built in this way?

I've come down on "yes" here, again because I never thought it was irresponsible for some random university student to slap an Apache license on some bad code they just coughed up on GitHub.

What's important here is making it very clear to potential users what they should expect from that software. I've started publishing my AI-generated and not 100% reviewed libraries as alphas, which I'm tentatively thinking of as "alpha slop". I'll take the alpha label off once I've used them in production to the point that I'm willing to stake my reputation on them being decent implementations, and I'll ship a 1.0 version when I'm confident that they are a solid bet for other people to depend on. I think that's the responsible way to handle this.

How much better would this library be if an expert team hand crafted it over the course of several months?

That one was a deliberately provocative question, because for a new HTML5 parsing library that passes 9,200 tests you would need a very good reason to hire an expert team for two months (at a cost of hundreds of thousands of dollars) to write such a thing. And honestly, thanks to the existing conformance suites this kind of library is simple enough that you may find their results weren't notably better than the one written by the coding agent.

Tags: definitions, open-source, ai, generative-ai, llms, ai-assisted-programming, ai-ethics, conformance-suites

TIL from taking Neon I at the Crucible

TIL from taking Neon I at the Crucible

Things I learned about making neon signs after a week long intensive evening class at the Crucible in Oakland.

Tags: art, til

Quoting Linus Torvalds

Also note that the python visualizer tool has been basically written by vibe-coding. I know more about analog filters -- and that's not saying much -- than I do about python. It started out as my typical "google and do the monkey-see-monkey-do" kind of programming, but then I cut out the middle-man -- me -- and just used Google Antigravity to do the audio sample visualizer.

Linus Torvalds, Another silly guitar-pedal-related repo

Tags: ai, vibe-coding, linus-torvalds, python, llms, generative-ai

An Electromagnetic Force

I've just returned from a fourteen-day trip spent building, running and tearing down EMF, and as I sit on the plane writing this, as well as physical exhaustion, I am experiencing a whole host of emotions - happiness, wonder, determination, and also a strange sense of loss.

It is impossible to describe EMF to anyone who has not attended; while initially you might want to compare it to a normal festival, or something like Burning Man, it is fundamentally unlike almost any other event on Earth. The Dutch and German camps maybe come close, but even those have their own somewhat different vibe.

Over the course of my time heading up the logistics team over the last two weeks, I have done and seen such a wild variety of things that I'm never quite sure what was real. Among others, I watched a man play the US National Anthem on a tesla coil using a theremin; climbed up into a DJ booth in a solarpunk-themed Null Sector and pressed the "!! FIRE !!" button to light up the night sky with pillars of burning alcohol; exited the shower to hear HACK THE PLANET echo out over the field from the stage a quarter of a mile away; saw an inflatable t-rex driving a miniature Jurassic Park jeep, played games on a hillside using lasers, and refilled the duck flume several times (shortly after exclaiming "We have a duck flume?").

...

The Cloud Is Just My Basement's Computers

I've had many different development platforms over the years - from Notepad++ on library computers in my youth, to Gentoo and then Ubuntu installed on a series of carefully-chosen laptops with working drivers, and then for the last five years or so on Surface devices via the rather wonderful Windows Subsystem for Linux (WSL).

Of course, in the WSL era I am still just running Ubuntu, but inside the pseudo-VM that is the WSL subsystem of the Windows kernel. It's honestly pretty great, and I regularly joke that I'm using Windows as the GUI layer to develop on Linux.

Between the Steam Deck and WSL both being ascendant, maybe we finally got the Year Of Linux On The Desktop, just not as we expected.

...

Life-Critical Side Projects

TLDR: I am looking for new developers and maintainers for Takahē who want to help in exchange for my mentorship, or I'll have to sunset the project.

I find it important to have hobbies that aren't the same as what I do for work, which is why an increasing number of them don't involve computers at all - I'm very happy building new things on my camper van, making weird geographic art, or hiking around bits of the Rockies.

However, I still love programming and systems work, and I'll always have at least one project going on the side that involves it - nothing beats the size and complexity of what you can create in just a few hours of coding. That said, I have two basic rules for my programming side projects:

...

I am, approximately, here

There are many questionable things about American car culture, but the road trip is not one of them. In a country as large and geographically varied as the USA, road travel is not just a necessity, but it can also be the attraction itself.

When I first moved to the USA, I had vague plans of doing some driving around and enjoying the sheer alien-ness of tiny towns in the middle of nowhere, or motels where you are somehow the only guest. Nine years in, I've done a decent amount of that, but these days my attention is more focused around the camper van that I spent half a year building.

I like to try and share a bit of the experience with those who want to see it, and as well as posting pictures and videos, I've always liked the idea of having a live map of where I am - even if it's just for friends and relatives who are interested in my progress.

...

A Takahē refactor, as a treat

I had taken two months off from developing Takahē in the run up to PyCon US; both due to pressures at work (and then, more recently, half the company being laid off around me), as well as not quite being sure what I wanted to build, exactly.

When I started the project, my main goal was to show that multi-domain support for a single ActivityPub server was possible; once I had achieved that relatively early on, I sort of fell down the default path of implementing a lightweight clone of Mastodon/Twitter.

While this was good in terms of developing out the features we needed, it always felt a bit like overhead I didn't really want; after all, if you're implementing the Mastodon API like we do, all the dedicated apps for viewing timelines and posting are always going to be better than what you ship with a server.

...

Takahē 0.7

Today is the 0.7 release of Takahē, and things are really humming along now; this release marks the point where we've built enough moderation and community features to make me happy that I can open up takahe.social to registrations, albeit with a user number cap.

We've also launched a Patreon for Takahē, in a quest to make development and operation of Takahē more sustainable - and work towards start paying some people to help out with the less exciting work like triaging tickets, user support, and moderation of takahe.social. If you want to volunteer directly, that's covered in our Contributing docs.

There's some interesting technical topics I want to dig into today, though - it's been a little while since my last blog post and ActivityPub and friends continue to surprise.

...

Understanding A Protocol

Yesterday I pushed out the 0.5.0 release of Takahē, and while there's plenty left to do, this release is somewhat of a milestone in its own right, as it essentially marks the point where I've implemented enough of ActivityPub to shift focus.

With the implementation of image posting in this release, there are now only a few things left at a protocol level that I know I'm missing:

Custom emoji (these are custom per-server and a mapping of name-to-image comes with each post)

...

Takahē 0.3.0

So, after a few weeks of development, I'm happy enough with the state of Takahē to issue its first official release - which I've chosen to number 0.3.0, because version numbers are made up and I can start where I want.

We're only releasing Docker images right now in order to try and keep the support burden down (it removes having to worry about people's OS versions and library environments), so you can find it on Docker Hub.

A screenshot of Takahē

...

Twitter, ActivityPub and The Future

Twitter is - was - such a unique place. Somewhere where you can have the President of the United States coexist with teenagers writing fan fiction; where celebrities give personal insights into their lives while government departments post memes about public safety; the place that gave us @Horse_ebooks and @dril.

The "Fediverse", with Mastodon at its helm, is not this. It doesn't seem to want to be, and I honestly think that's fine - as many thinkpieces have recently said, the age of global social media might just be over. And given the effect it's had on the world, maybe that's alright after all.

But there is still a void to fill, and as someone who enjoyed Twitter most at its "medium" size, I think the ActivityPub ecosystem is well-placed to grow into such a space. But first, I think there's some important things we have to discuss about it.

...

Takahē: A New ActivityPub Server

When I decided to properly start using the Fediverse via my own Mastodon server, I knew it was probably inevitable that I would end up writing my own server - and, well, here we are!

My new server is called Takahē, and it's built in Django and also specifically with Python's async library ecosystem - I'll explain more about why that matters later.

A screenshot of Takahe

...

The Road Not Taken is Guaranteed Minimum Income

By Jeff Atwood

The dream is incomplete until we share it with our fellow Americans.

Let's Talk About The American Dream

By Jeff Atwood

A few months ago I wrote about what it means to stay gold — to hold on to the best parts of ourselves, our communities, and the American Dream itself. But staying gold isn’t passive. It takes work. It takes action. It takes hard conversations that ask

Stay Gold, America

By Jeff Atwood

We are at an unprecedented point in American history, and I'm concerned we may lose sight of the American Dream.

The Great Filter Comes For Us All

By Jeff Atwood

With a 13 billion year head start on evolution, why haven’t any other forms of life in the universe contacted us by now?

alt

(Arrival is a fantastic movie. Watch it, but don’t stop there – read the Story of Your Life novella it was based on

I Fight For The Users

By Jeff Atwood

If you haven’t been able to keep up with my blistering pace of one blog post per year, I don’t blame you. There’s a lot going on right now. It’s a busy time. But let’s pause and take a moment

The 2030 Self-Driving Car Bet

By Jeff Atwood

It’s my honor to announce that John Carmack and I have initiated a friendly bet of $10,000* to the 501(c)(3) charity of the winner’s choice:

By January 1st, 2030, completely autonomous self-driving cars meeting SAE J3016 level 5 will be commercially available for

Updating The Single Most Influential Book of the BASIC Era

By Jeff Atwood

In a way, these two books are responsible for my entire professional career.

alt

With early computers, you didn’t boot up to a fancy schmancy desktop, or a screen full of apps you could easily poke and prod with your finger. No, those computers booted up to the command

Building a PC, Part IX: Downsizing

By Jeff Atwood

Hard to believe that I’ve had the same PC case since 2011, and my last serious upgrade was in 2015. I guess that’s yet another sign that the PC is over, because PC upgrades have gotten really boring. It took 5 years for me to muster

The Rise of the Electric Scooter

By Jeff Atwood

In an electric car, the (enormous) battery is a major part of the price. If electric car prices are decreasing, battery costs must be decreasing, because it’s not like the cost of fabricating rubber, aluminum, glass, and steel into car shapes can decline that much,

Electric Geek Transportation Systems

By Jeff Atwood

I’ve never thought of myself as a “car person.” The last new car I bought (and in fact, now that I think about it, the first new car I ever bought) was the quirky 1998 Ford Contour SVT. Since then, we bought a

An Exercise Program for the Fat Web

By Jeff Atwood

When I wrote about App-pocalypse Now in 2014, I implied the future still belonged to the web. And it does. But it’s also true that the web has changed a lot in the last 10 years, much less the last 20 or 30.

alt

Websites have gotten

The Cloud Is Just Someone Else’s Computer

By Jeff Atwood

When we started Discourse in 2013, our server requirements were high:

I’m not talking about a cheapo shared cpanel server, either, I mean a dedicated virtual private server with those specifications.

We

What does Stack Overflow want to be when it grows up?

By Jeff Atwood

I sometimes get asked by regular people in the actual real world what it is that I do for a living, and here’s my 15 second answer:

We built a sort of Wikipedia website for computer programmers to post questions and answers. It’s called Stack

There is no longer any such thing as Computer Security

By Jeff Atwood

Remember “cybersecurity”?

its-cybersecurity-yay

Mysterious hooded computer guys doing mysterious hooded computer guy... things! Who knows what kind of naughty digital mischief they might be up to?

Unfortunately, we now live in a world where this kind of digital mischief is literally rewriting the world’s history. For proof

To Serve Man, with Software

By Jeff Atwood

I didn’t choose to be a programmer. Somehow, it seemed, the computers chose me. For a long time, that was fine, that was enough; that was all I needed. But along the way I never felt that being a programmer was this unambiguously great-for-everyone career field

October

By [email protected] (Jon North)


 For some of my friends October is Inktober a month to try artistic skills with pen and ink or indeed anything using ink that makes marks on paper.  There is a website of course - these things become highly organised on the internet - but the artistic efforts of friends young and old on Facebook are just as interesting.  And October is also a pink month - in France the proliferation of pink umbrellas in towns and cities signals the very creditable support for the fight against breast cancer - you might say 'pinktober' though this has not caught on as a label.   Plenty of beautiful roses here though at other times of the year.


Politics is inescapable.  Around Europe looming elections in various countries raise images of freedom teetering on the brink like the hut on the edge of a cliff in the Charlie Chaplin film. I keep wondering what kind of fear pushes people to vote for populist disinfor:ation, and that's without the horrors of fascist tendencies across the Atlantaic.  In France, prime ministers appointed by an increasingly beleaguered president last ever shorter times before throwing in the towel - since politics is less and less about willlingness to compromise and more and more fragmented by party solidarity  the chances of coalitions holding a stable majority are increasingly remote, and the spectre of the far right taking power hover ever closer.

I have written before about ageing.  For the moment - long may it continue  - Mary and I are both reasonably capable, but we find ourselves among friends and family who have more serious problems of health, mobility and wellbeing.   In more than one case close to us one of a couple has started to become confused to the distress of both partners a diagnosis of dementia is a broad brush for a multitude of distressing conditions.  We are all too aware both of the presures of old age creeping on and feel incredibly lucky thus far to have escaped serious illness, so we feel all the more glad to have avoided major physical or mental disabilities.  Above all we are constantly aware and think with love of our various friends and family members who have suffered or (like my younger brother Tom) are sadly no longer with us in body.  

On top of all this, increasing difficulties with mobility mean that we risk losing touch even friends fairly close by here in France.  For many years we had frequent meetings with our friends Pierre and Charles who live in the hills north west of here, in a small and beautiful old château, and have a second house in Genoa.  We have stayed with them in both places, and were at their wedding in their French  mairie a few years ago, and we played trio sonatas with them often.  Communication has become more and more difficult for them, and we miss them as we miss many other friends

My mind often turns to words, and links between English and French.   I woke up in the night recently quite worried by the links between spiders and arrest - the French for spider araingnée seems close to an  English root/synonym for arrest - arraign - but the connection is tenuous.  It took me awhile to get this out of my sleepy head and return to sleep!  Anyway, this mild autumn there are plenty of toiles d'arraignée (spiders' webs) around our house to remind us of the complexities of language - tangled webs we weave whether or not we are practising to deceive!

As always we have been reading a lot, not just current afairs which often make us feel gloomy, but revisiting favourite fictional series, including two by Alexander McCall Smith, the Botswana stories of Mma Ramotswe and those of the Scottish philosopher Isabel Dalhousie.  AMS is an amazingly prolific author quite apart from his legal texts (he helped write the legal framework for the newly independent Botswana) and the quality never dips across several quite different sets of novels.  We have also rered the Montalbano novels of Antonio Camilleri, whose stories of refugees reaching Sicily in small boats are also amazingly relevant in these Meloni times.  Both authors relish complex detective plots; the translator into English of the Camilleri books Stephen Sartarelli is also inccredibly talented.

our weekly bilingual conversation groups continue and help us stay in touch 

Recently we also revisited the tv seris of Yes minister and Yes Prime Minister, which remain quite relevant and very amusing in these topsy turvy times.  We need the light relief.  We look back with pride and sadness on the talented lives of actors like Paul Eddington and Nigel Hawthorne

Out here in the European world  so sadlly abandoned by Johnson et al we rely on good internet communication, and that is ever more difficult.  I like reading the Guardian, and have had a subscription for around 20 years.  Of course costs go up, but in addition the subscription conditions alter and it is not always easy to simply pay the extra.  new operating systems arrive and subs are linked to them, so in the worst case you have to buy a new tablet.  Or, instead of just asking for more on the next renewal you get a flash message to say  'please contribute to gain unrestricted access' - without ads - when you thought you already had it.  The same applies to The Week  which now demands a new subscription even tough it says our payments are up to date - another out-of-date operating system on the iPad no doubt.  Of course, all the time age creeps on, so we oldies have to keep up with ever more whizzy systems.  No easy answers, I guess.



Life with wine chez nous and around

By Jon North ([email protected])




Welcome new discovery of  La Clausade, a new domaine quite near us in, Mauguio, producing wines from little-known grape varieties (see below)

This is about old friends on our minds at the moment, and about a new discovery.  Those of you who have stumbled on this blog but are not particularly interested in the alcoholic liquid know that my posts are as much about friends and countryside as about the drink - our presence in France is a lot to do with our liking for wine and vineyards, and for those who run them.  And good winemakers are not just farmers or growers, not just chemists or alchemists, and not just hardworking astute business people - making wine combines all three, in all weathers.  And they are human beings who grow old so have to hand on their businesses, and they have families some of whom willingly take over from their parents but some who simply follow other paths in their lives, so that wonderful vineyards change hands, change function.

All weathers has been on our minds this summer as temperatures soar and drought begins to  affect even the deep-rooted vines.  When we came here it was a given that vineyards could act as firebreaks, but recent summers have been so dry that vines burn too.  And yields of grapes have reduced for lack of water - here in the south it is no longer sure that vines can go with out extra irrigation.

One of our favourite local vineyards, Château Grès Saint Paul, is still in business.  Its owner, Jean-Philippe Servière, is the 7th generation of his family producing wines there, he has told us he wants to retire but there is no obvious successor, and and it is not clear what the future holds, but over nearly 20  years here we have often had a warm welcome there and enjoyed many of his wines.  They are still on the shelves in our local grengrocer's

Château Aiguilloux in the Corbièeres area west of Narbonne was one of our earliest discoveries and we were pleased to call there again on our way back from a holiday  in April.  Son Georges and his wife have now taken over from his parents - we first met Georges as a restaurateur in Narbonne on his parents' recommendation, and apparently he and his wife still cater for wine-inspired events at the domaine.

Fires in the Corbièeres area were all too frequent this summer, controlled more or less by the planes we heard often passing over our house carrying water from  the seaside étangs (not my photos)


I've written often of the Chemin des Rêves which we've known for nearly 20 years, from a young family starting our in Grabels, Benoit Viot and his wife Servane have flourished as winemakers north of Montpellier, building their own home in a vineyard in the Pic Saint Loup appellation (of which he was recently président) producing also wines with the Grès de Montpellier label.  We were delighted to go back this summer with friends Judi and Alex.


The Pic Saint Loup, backdrop to the Chemin des Rêves vineyard

New wines from old grape varieties - we have discovered, via our friendly caviste (another Benoit) at O Pêcheur de Vin a new winermaker just down the road in Mauguio, called La Clausade, which specialises in wines from grapes which are disease resistant - som red, but mainly white and rosé wines from varieties I'd never heard of and which are not in any of our wine grape guides; but which are uniformly deliciious as well as unusual.  We have reordered... Muscaris, Soreli, Floreal, Souvignier gris, Artaban, names to conjure with.  It seems random to pick wine grapes for their disease resistance, but it works as well as being ecological  As always, the people who run it are added bonuses in discovering these places, and ours is becoming an area of hidden pleasures in the wine world.

A lttle further east, across the river Vidourle in the Gard, is an area, the Vaunage we often go to for meetings of our French language group (including French people trying to  improve their English as well as helping us with our pronunciation and translation.  One town/village we often visit is Calvisson, with a good winemaker theh Domaine Roc de Gachonne, whose red wine Puech du Rouge we quite frequently receive at our language group's shared lunch.  It's called multi-tasking!




A Virgo month

By [email protected] (Jon North)

Not my phhoto, but that of someone patent who waited patientlyfor the storm over the Pic Saint Loup 

I began writing a rather downbeat piece about ageing, but then stopped and changed tack. We have many friends of around our age, and some are fortunate like us, with senses more or less whole, lots of good friends near and far, partners we love and care for. I think a lot of my friends, like me, live largely on the experiences we’ve accumulated, and even if life is now restricted by pain or illness there is a wealth of memory and inner enjoyment to enjoy. I know about music and am so thankful to be able to listen, supported by the wonder of recordings. And I am endlessly grateful for the gift of sight, the ever-changing skies and light in the place we live, and the sensory pleasures of food and drink. 

This is a birthday month for us, and has been throughout my life - my grandfather, my mother, the lady I married and numerous friends all share this season of mists and mellow fruitfulness (mists not so much in our warmer climes).  It ssms also to be a month for visitors - my nephew David has just left, and a dear friend from the US will be with us soon.  The summer heat has moderated and the storms have stayed away from Lunel, but seem to have broken all around us, wiith some floods in Montpellier.  I'm reminded that when we first came on holidayto the Languedoc, almost 25 years ago, there were bad floods in Nîmes and we had to trek up and down to our holiday flat onn the stairs because a lift shaft was flooded.  It keeps suprprising me that Lunel is so dry when there are floods and storms all around.

We enjoy visiting friends and receiving them here for our regular language groups, and in the lovely warm weather just now we can sit outside.  Our reading at the moment is from books by Eric-Emmanuel Schmitt.  The ones we have read so far are related by boys born into Jewish families - one, Monsieur Ibrahim et les fleurs du Coran is about a lad abandoned by his parents and adopted by a local Muslim grocer - Moïse becomes Mohaùmed - and the one we are currently reading, l'enfant de Noé,  is about a boy who is separated from his parents to be hidden from the Nazis in a Catholic boarding school in the early 1940s .  The writing is humorous despite the difficult stories.  Both are narrated in the voices of the boys.  We have a faithful group of 20-30 people who come regularly, and an average of 15 or so in our weekly gatherings.

Of the many upsetting things in the world around us, killing innocent people by powerful weapons in Gaza and Ukraine and the complete disdain shown by many politicians for the lives of  those they are supposed to govern are open sores in the daily news.  



We think more and more of our dear friends, with whom we must now keep in touch by electronic means if nothing else is possible.   With advancin age, calm and wisdom are lurking somewhere, but on the surface are all the ailments and frailties that  beset us.  It is easy to doubt your mental capacities, (sometimes, we know, with finite symptoms of mental deterioration).  And even if you are compos mentis, it is easy to wonder and doubt.  

My own difficuulties are mainly in walking (as regular readers will know), but it's important to take care with balance and avoid falling over!  Many of our family and friends have a  variety of more or less trying difficulties, including the very distressing loss of sight  and/or hearing for musicians after a lifetime of  active performing at all levels.  Things like arthritis can interrupt other kinds of art too.  And all the infirmities bring with them increasing isolation as travelling becomes more difficult.  Moving house to better adapted premises is a good theory, but the emotional wrench of leaving a good home and neighbourhood is  huge.  I think few people have really begun to think about the  challenges of living a lot longer than our grandparents.


wonderful meal at the Maison Soubeiran last week,,complete with birthday candle from the restaurant





     



Towards September

By [email protected] (Jon North)

 

We have just heard the very sad news of our friend Clare McCarty.  She and I met through young Quakers when I was working in Friends' House in the early 1970s, and later Mary and I met her husband Norman and stayed with them in their home in Lisburn.  Clare became a leading figure in the housing sector in Northern Ireland.  At our age the death of friends is not uncommon, but to lose a friend so much younger than me is a shock.  She was one of 2 of two women friends with the distinction of receiving an OBE for her work in the crossover sector I also worked in, linking voluntary, community and statutory sectors and I feel proud to have known her.











last month's red high risk map in the Aude - Lunel is on the far right, still orange and therefore still at risk a few days ago.   The Aude area is apparently still smouldering underground
 
The very hot weather of the past months seems to be waning thank goodness, and we have had a couple of short storms, but in the very dry conditions here the risk of fires continues very high, and it is not just folk rumour that many such devastating fires (such as the one which destroyed an area the size of Paris a week or two ago) turn out ot have been started deliberately.  It is really shocking when an already dangerous situation is aggravated by such vandalism.  We read that in the UK too there are fires, in Yorkshire for example.  Hre in France, water supplies are running low - the Canal du Midi may have to close  to navigation because of lack of water.  We need more rain - only 30mm in the past two months, most of it in the past couple of days.


Over the summer months our usual conversation groups (mixed French and English people, improving our understanding of one another's languages through reading and discussions together) shrink as people go on holiday, fmaily visits etc.  So our group recently has sometimes been reduced to single figures, but those who are free still like to meet and reward our morning's work with a shared meal.

skies clearing after a noisy storm last week - most of the rain fell to the north of Lunel




Hot as hell

By [email protected] (Jon North)

From time to time - I should probably do this more often to improve my language skills - I translate articles in French media.  Here's one from this week.

Translation of article in Midi Libre 13/8/25 - interview with Stéphanie Latte Abdallah, historian and anthropologist, by Arnaud Boucomont  Now living in the Cevennes, previously in Jerusalem, she has a harsh view of the strategy pursued in Gaza by the Netenyahu government, which requires an active response.

Do you think total occupation of Gaza by the Israeli army is feasible?

That would be complicated, although it has long been its public aim, staying in and recolonising Gaza. We've heard that for ages; the commander-in-chief of the army has said that clearly to politicians but the message has not been heard. It would take a huge number of men in the longer term, and the army is relatively fatigued with many reservists refusing to serve there. The Israeli army is faced by an ongoing guerilla war by Hamas. Gaza is pretty well destroyed but Hamas' capacity to act is not completely exhausted.

What's your view of the attitude of the international community, France in particular, over the past two years?

The recognition of the Palestinian state is long overdue, but there is an interest in isolating the current Israeli government over its refusal to recognise a Palestinian state. If Britain joins France as it has promised then the USA will be the only state in the UN Security Council not to recognise it. In the proposals publicised so farthere are no means of enforcing the proposals. There should be sanctions, and suspension of the accord of co-operation between the EU and Israel. But that would be to act without acknowledging the current genocide, without naming it as such. Because if it were named the countries involved could be even seen as complicit in the genocide because of their inaction.

What about the growing famine in Gaza?

There will be severe consequences for children, older people and those with chronic illnesses. In the long term I call that 'futuricide', resulting in killing as many people as possible. More than 61,000 have died directly as a result, but the lack of healthcare, chronic sickness, famine, land poisoned by armaments, pollution, lack of refuse collection and of cleaning services brings the total up to around 200,000 people.

How would you sum up the policy of Netenyahu over the past two years?

He was always against a Palestinian state. There is a fragile coalition between supremacist and pro-colonisation ministers and deputies and those in favour of annexation of the West Bank and the re-colonisation of Gaza. They claim to be following the biblical principles. Netenyahu himself is not especially religious but uses this language to build up support for his project. He has stayed in power by enlisting the most extremist members of his government who guarantee his position. He hopes to keep tension up by occupying as much territory as possible. He tries to avoid political scrutiny.

How do you view the religious aspects of the conflict?

On the Israeli side we can see the co-option of a religious-sounding language through the idea of a battle with Amalek, the old testament enemy of Israel, each side trying to destroy the other. In the Bible it was seen as necessary to destroy Amalek completely. In a March 2025 study by Penn State University, 82% of Israelis were in favour of moving all Palestinians out of Gaza.

In the other camp, obviously there are the islamist groups like Hamas and jihadists who fight in Gaza using islamist language. There are also other groups which are mainly secular. Within the Palestinian population religious motives are not so much to the fore.

The typical Palestinian who finds her/himself being bombed, losing children, how can that do other than generate hate or antisemitism?

Speculating on such emotions takes us beyond the realm of rational analysis But Palestinians distinguish clearly between Israeli policy and jews. the question of antisemitism as seen from France does not arise in the same way in Israel or Palestine.  

So how do you see this conflict being played out in France?

Generally we've seen a gradual change in public perception over the past two years. People were quite virulent in their views to start with, not wanting to see what was actually happening, that the Israeli government really wanted to destroy Gaza, but things are changing. Better late than never. For France, which has long supported the State of Israel, it's complicated. It is difficult to tell yourself that Israeli governments are committing genocide when that very state grew out of genocide suffered by Jewish people.

What about the strategy of Hamas?

At the time of the 7 October outrage Hamas' objective was to make sure Palestine was not forgotten in the signing of the Accords of Abraham which foresaw making peace without taking account of the Palestinian question. They also wanted to avoid the annexation of the West Bank and demonstrations in front of mosques.

They could have reacted differently!

From what they've said, some things got away from them. They do not accept that they intended to target civilians. They claimed that other groups had infiltrated theirs. But there were certainly abuses and war crimes by several groups, of course including Hamas.

All the same, the strategy involved murders and taking hostages…

Hostages certainly. They wanted to exchange them for Palestinian prisoners, using them as a kind of exchange currency to protect themselves. They ahd also decided to push the Israeli army to the Gaza border to break the siege. They see themselves as being involved in a war of resistance. I'm just saying how they see things - I'm not saying I agree with them.

Nostalgia

By [email protected] (Jon North)

Another year of the Tour de France has ended with a week of the women's race across the middle of France, emphatically won by Pauline Ferrand-Prévot.  But one of the highlights was the emergence of Maëva Squiban who won two of the penultimate stages in the mountains.  She will be one to watch.  Sadly our ability to see the Spanish grand tour, the Vuelta, willl be very limited.  We really must sort out access to tv channels.

The men's Tour finished for this  year in spectacular fashion.  Wout van Aert won on the Champs Elysées with the overall Tour winner Tadej Pogačar a few seconds behind.  The novelty this year was the addition of three ascents of Montmartre to the Sacré Coeur to the usual flat-out sprint round and round the Champs Elysées.  To my mind the change was excellent, adding excitement on the last day.  Wout deserved his final accolade - he had planned the attack on the final ascent - and seeing the final circuits happening on the cobbles, in the rain, was dramatic and without mishap.  

Amusingly Van Aert had earlier openly criticised the change in the final day, saying it was too dangerous.  He had the last laugh (or perhaps it was a cunning double bluff), and I'm fairly certain the new routine will stay - better than the old procesion with added sprinters (sorrry Cav).  I know there are those of my friends who find our interest in sport tedious,, but there we are.  It also applies to cricket (which we sadly can no longer watch) - in fact at least one friend I can think of can stand neither cricket nor cycling.  Sorry again!  But the women's race proved quite absorbing and came up with several top French contenders, which guarantees a French tv exposure.  Although women's cycling is advancing by leaps and bounds, not yet a level playing field.

slower creatures

A friend has just recalled a time in our lives when he and I lost touch.  Happly, we both feel, despite often living in different places, countries even, we have restored and stayed in contact since.  And there are ever more gaps in our circle as we age.  But we are so glad to remember those still with us even if we can seldom meet face to face.  This blog serves to keep some in contact, and despite its notorious replutation Facebook is still for us a valuable way of keeping in touch with old friends and newer ones.  The warmth of memories fills a lot of gaps when we can no longer travel so much.

The non-exhaustive list of people no longer physically with us include friends and Friends we made in France.  In the small Quaker community of Congénies were Dennis Tomlin and Brian Painter; others important in our lives here included Marcel and Michèle Bombart and neighbours in Lunel Michel Cazanave and Mme Picard. Quakers back in the UK were (among many others) Polly Tatum (an honorary Friend in my mind) and her husband Arlo, Arthur White, Geoffrey Bowes, Ted Milligan and  Malcolm Thomas.  Apart from my parents and Mary's mum, family members now no longer with  us include my brother Tom, my aunt Ida (who travelled with us memorably more than once in France) and Sam's father-in-law Taeke Oosterwoud.


My ex-boss Ted Milligan centre stage at our wedding reception in 1978
A complete album of our wedding photos is here

We have just re-established our car insurance.  The car is a lifeline now mainly for local travel, but above all for two things - for Mary to enjoy her cello outings, and for both of us to go to twice-weekly language groups which meet in various people's homes (including ours).  The summer has put a pause to all that, and I can well understand that she does not want to practise until the hot weather has passed.  Anyway, the car insurance would have lapsed next January for silly bureaucratic reasons, and we have to pay more (naturally!) for the replacement, but it is worth it.

Like another friend who has been sifting and disposing of huge piles of old papers, indeed like everyone until a few years ago, we have a life that used to be defined by files of papers but is now rapidly being encrypted in bits and bytes on electronic devices.  We have just re-sorted the paper files that still line our office, and finally tracked down various folders we thought lost.  And of course, 85% of the paper is no longer useful; the other  15% is probably useful but we may never get round to sorting it out.  So now we are continuing the endless process of chucking out old files into recycling - once the office is more or  less up to date I have started to excavate the roof where layers of dust need to be tackled too.  But it is frightening to find how soon things that I labelled clearly as current are just more unwanted archives.  As for the electronic things, the identifiers that work are fine, but once a chanin is broken oneis reduced to scurring between devices to confirm that I am me and getting in a fog of confusion when a password no  longer works.


Outside the August sunshine is just beautiful and the evening skies often breathtaking.  There have to be ways of setting aside the humdrum, confusing processes of admin, all the more when the old expedient of going for a walk (which Mary still enjoys) is slower and more laborious.

Reading still occupies a lot of our time.  Mary is a regular reader of books in French, often borrowed from the local library which has been one of several useful developments in our neighbourhood.  They sometimes have interesting short afternoon lectures.  I read a lot though mostly in English.  We are both re-reading series of novels we've enjoyed and enjoy still - Mary is nearly up-to-date with the Bertie books by Alexander McCall  Smith, and I am well into the Montalbano detective books by Andrea Camilleri, beautifully translated by Stephen Sartarelli.  We shall revisit the tv series over the winter I expect.  It is good to read paper books at least some of the time, even if some are far too heavy and cumbersome to take to bed and the Kindle is a welcome and more flexible alternative.

The hot weather is back this month.  There have been several severe fires in the countryside east and west of us, and the sound of the Canadair planes passing over us has been more frequent in July - they scoop water up from the étangs near the coast then drop it on the fires in the garrigue north of us.  Not too near where we live, but very worrying all the same.


This blog should have mentioned food more often than it has.  As much as wine, we enjoy our food and relish the local produce, particularly fresh fruit and veg, together with herbs and spices.

The salt pans at Aigues Mortes - pink colour due to algae in the water

But salt is both local and important.  Interestingly the articles about French salt on the internet are almost all about the Guérande and other places in the north and west of France.  But here it is the salt production of the Camargue, and in particular of the salines of Aigues Mortes, which is most prominent.  The names Aigues Vives and Aigues Mortes are both local place names - 'alive' and 'dead' water, fresh and salt water in other words.  And Aigues Mortes is a local centre for the production of salt.  The fleur de sel which we use at the table is the relatively small quantity of flaky salt which is left on the surface when the water eveporates.  Of course, salt is essentially sodium  chloride, but the fleur is a little diffferent because the evaporation leaves higher quantitites of minerals like magnesium - it is prized by chefs and a lot more expensive than the table salt we use in cooking and so  on.

Now into August, and we are looking forward to visitors in a few weeks' time when I guess the heatwaves may have subsided.  Lorry fires on the motorway are a regular part of the news.

To all our friends and relations, enjoy the rest of the summer.



Into the Pyrenees (them, not us!) and on to the Alps

By [email protected] (Jon North)

We have been scanning our wedding pics from 1978

The Tour continued after the first rest day, and some minor surprises like Pgačar falling off without much prompting in a fairly flat part of the race near Toulouse, some rather caustic comments about other competitors waiting for him  (no skin off their noses I think although some off his legs) and several riders sharing the glory, including a nice Irishman Ben Healy who stayed in the yellow jersey for 2 days.  I'm sorry when being sporting becomes a dirty concept, like today's politics really.  

At the end of Thursday's first Pyrenees stage normal service had, in a sense, been resumed - Pogačar back in yellow after a typical and jaw-dropping ride up the final steep climb.  OK, he may be using unfair magic, but if so Vingegaard and those behind have somehow missed out on the trick.  Actually I am (we are)  excited and awed by the compact power he shows,   As I write the next rest day is approaching, and they are heading for Carcassonne.   The race passes through Revel, an area we know well because our friend Barry, of whom I've written before, lives near there.  Next week to the east and other places we know well from our earlier twinning excursions.

There is a lot of yellow around during the Tour - my wine mag got into the act

The local paper meanshile is fairly typical of local French opinion, bemoaning lack of French winners of late - "Les Bleus plutôt pâles"  - French sports teams commonly known as les bleus and pale blue being, well, pale.

When the Tour reaches Paris, this year instead of just circling the Champs Elysées the race will add in two climbs towards Montmartre and the Sacré Coeur.  Wout Van Aert (who seems to be the official complainer in the peleton - he has just also objected to retaining sprinters who are too slow up hills) thinks it is dangerous.  So are a lot of things that happen in bike racing.  Anyway, sports rules are by definition arbitrary.

Memories of many no longer with us - our parents and my brother Tom, Ruth and Heinz Liebrecht, Malcolm Thomas.  Good people to remember and there are those of you who are still alive, happily.

Others who were at the wedding are sadly no longer with us - Ted Milligan, Polly & Arlo Tatum, and others.  We miss them all but are so glad of the memories they leave.  More photos in a future blog.

Meanwhile, back in the tedious world of admin, we have to keep proving we are still alive and entitled to pensions.  There are at least three different systems demanded by different pension providers, all of them complicated by the fact that English people do not recognise French, nor the French English.  It can all be got round, but it always seems an anxious moment for us.






Fires all round

By [email protected] (Jon North)


The hot dry weather and mistral (strong northerly wind - sometimes it it is north-westerly, coming over the Black mountains and called the tramontane) all combine to make the countryside like tinder, and this week we have had fires to the west of us north  of Narbonne, along the A9 motorway, and to the  east in the hills above Marseille.  The immediate causes are often unclear, but can arise from human idiocy.  One person was reported to have been towing a lighted barbecue on a trailer!  With the Fête National coming up, fireworks are planned everywhere despite the risks.  Climate change denial?

Our enjoyment of the Tour is undiminnished - Pogačar back in the lead and some fiarly flat stages this weekend.  The local paper had a good article on what some people call mechanical doping, and I have summarised this iin English in case it interests anyone.  "Looking for motors.   In a former life Nick Raudenski hunted terrorists.  Today he hunts motors in the bicycles of the Tour de France.  The American is now in charge of the fight against technological fraud at the UCI (Union Cycliste Internationale).  "When I arrived the first thing I tried to do was to put myself in the mind of a cheat.   How could I use a motor without being caught by the inspection patrols?  I worked in antiterrorism.     An idiot tried to blow up an aeroplane with a bomb in his shoe and now everyone has to take off their shoes at the airport.  The same thing in cycling"

Although technological fraud is often cited, only one case (in 2016) has been proved in the world of professional cycling, the 19-year-old Belgian Femke van den Driesse used a hidden motor in the world cyclo-cross trials.  Since then millions of checks have been carried out without finding anything.  "Why has nothing been found?   This really bugs me.  My job is get to  the bottom of it."  In the 2024 Tour 192 bikes were x-rayed, always including those of the stage winner each day and the yellow jersey holder, 17% more than in 2023.  "This year there will be even more" says the UCI, which is also running a programme of financial and other incentives to encourage those who provide useful intelligence.

In June in Combloux at the Criterium du Dauphiné,  Raudenski demonstrated the checks he carries out at the finish line where he intercepts riders, and on to the tent just behind the podium where bikes are taken apart and examined - "at the beginning of each stage the commissaires check bikes with the help of magnetic scanners.  They can alert us by phone if they notice anything suspicious.  Nick and his team have portable x-ray machines round their necks, checking machines from top to bottom.   "These meters are so good they can see the serial numbers of cables, eveything going on inside a bicycle. ...we know exactly what we' re looking for."  

Raudenski and his team keep up with the latest technology, comparing it with what happens in other sports like Formula 1, for example smaller and smaller batteries like those used to power drones - there has been enormous progress in these technologies in recent years.  Nick is very confident in the effectiveness of the tests and checks despite the doubt cast on the UCI's capacity from time to time.  "I really want people to believe, when they see an amazing climb or an explosive attack that they are seeing something genunie, not saying 'oh, they're using a motor'. As for the suspicion that the UCI covers things up so as not to damage the image of the sport, he is categorical "that's out of the question.  whatever may have happened in the past, that is not my style.  If we find something, we'll  make sure it is heard loud and clear."

The race is not just about winners, but those who make exceptional efforts.  Yesterday there were unusually two sharing the combativity prize: "The race jury came to a rare and exceptional decision. On stage eight of the Tour de France, there would be not one, but two winners of the combativity award: TotalEnergies pair Mattéo Vercher and Mathieu Burgaudeau.  The French duo broke away from the peloton with 80km to go into Laval. It was a day billed for the sprinters, and while everyone else resigned themselves to that fact, Vercher and Burgaudeau dared to believe a different result was possible. Team-mates in unison, their white jerseys transparent with sweat, they took off away from the bunch, and ploughed in tandem through the countryside of western France for an hour and a half.

The effort, in the end, was fruitless; both were swallowed by the peloton, and Lidl-Trek’s Jonathan Milan won the bunch sprint. It was, however, a historic occasion – only the fourth time in the Tour's history that the combativity award was shared.

The Tour - yet more cycling

By [email protected] (Jon North)


The canicule (heatwave) continues although the early mornings and late evenings are pleasantly less hot.  We have moved our sleeping quarters downstairs.  Interestingly our hugely improved roof insulation has meant that the nights upstairs are much warmer because the heat from the roof slowly seeps out then. 

This month will be taken up for us watching the cycling.  Cyclists of course have to plough on through the hottest weather, and it has been settled over a lot of France these past few days.

These 2 are well in evidence even at this early stage of the race

The first edition of the Tour de France was in 1903.  Since then much has happened - our local paper  has published a nice leaflet to mark the links between the race and our region, involved in a third of all the stages this year.  Names and events to conjour with - Laurent Jalabert, a successful competitor now a constant presence in the tv commentary team, competitors like the Colombian Nairo Quintana, key places like the rose city of Toulouse which is the jumping-off point for the Pyrenees and our local city of Montpellier which will host a rest day  this year,

Cheating is back in the newspapers, though without much hard news I can see, just the suspicions that often go with a gloomy feeling in France that French riders are not doing too well.  Apart from the hard cases like Armstrong it all comes down to the gut feeling that being that good is improbable.  Apart from using illegal substances and 'doping' machines (essentially hidden motors), the permitted changes in machinery and nutrition are enough to make huge changes in performances, and watching the ssecond stage today got me thinking, not just about changes in equipment and nutrition but about the huge infrastructure of support people, cars following every team with spare bikes and young blokes rushing to replace faulty bikes.  At any given point it must have been difficult to decide shat sas legal, and who had an unfair advantage.

Bikes have changed from steel and aluminium to carbon fibre, with disc brakes, electronic gear changes and many more derailleur gears, controls all electronic and sometimes using bluetooth, tyres filled with self-sealing liquid and no inner tube.  Over the years there have been frequent rumours about mechanical doping, with little hard evidence of cheating, but the mechanical advantages of new equipment have made a huge difference  to  the lightness and potential speed of the bikes.  Nutrition has also changed, both the science and the materials - careful  calculation of energy needs, fluids and gels easily carried and absorbed, calculated not just for the trrain but adapted to the needs of individual riders, with timing of a what to eat and when.


Away from cycling, Language is changing and not, for me, for the better.  The words batter (in cricket - formerly a cooking ingredient for pancakes and yorkshire pudding) and train station (which we always used to call a railway station) are now accepted terms.  Not sure why batsman was no longer acceptable for a male cricketer, although the female of the species did and doesneed a separate term.  But things move on, and I do accept that since long before Shakespeare the English language was and is living.


Hot, hot, hot

By [email protected] (Jon North)

It has been over 40° in the afternoon these last few days.  A British friend who has lived in the tropics sent some useful  tips - "In the middle of the night...open up all windows and even doors if it is safe security wise to do so to get the coolest air of the day circulating throughout your property. That should reduce internal heat to whatever the lowest overnight temperature was.  Then when things start to rise... close all windows and doors and draw all curtains. And keep them that way if you can throughout the day. Inside should then stay much cooler than outside.  The mistake folks make here in UK is that the hotter it gets the more they open windows during the day 'to get a breeze'. Well that breeze is as hot as outside temperature so it quickly brings inside up to outside."  Languedoc temps are less trying before mid-morning, and here we don't have curtains, but the principles stand.  I would add, from my O level physics, that keeping cool can be aided bynot drying oneself too thoroughly after a shower - 'evaporation causes cooling'.  The fans we bought last week also help.

There is now a red heat warning across part of France.  We shall not be going to our French groups this Tuesday - some people still want to meet, but driving to places would be a problem, and driving back more so for us and others who are approaching their 80s.  Having airconn in a house is one thing, but going back to a roasting car quite another.

our language groups have shrunk a lot in the summer heat,
but Danielle stilll helps those who remain!

One sad background to our afternoons is the sound of Canadair planes flying over on the way to fires to dump bellyfuls of water.  It hppens every dry summer, but I'm guessing this year will be the worst yet.  Mary read of one fire started someone towingn a lighted barbecue which shed lethal sparks along the roadside.

The mayor of Lunel, Pierre Soujol,  has died.  Very sad news - he seems to have done a lot of good things for the town.  

Mary has just set off down the garden to feed the 2 larger tortoises.  Their appetite for lettuce is undiminished.

I am collecting examples of autocorrect misfires and silly mistypes:


our son and daughter-in-law have been in Brittany
but are unlikely to have encountered  such onion-sellers.

I've just read bad news about champagne production: "The conditions endured by grape pickers in the Champagne region of France have been put under the spotlight by a human-trafficking trial that began in Reims last week. Svetlana Goumina, the Kyrgyz owner of a recruitment agency, is accused of luring 57 West African migrants, most reportedly undocumented, to the region from Paris, on the promise of well-paid work." The latest in a catalogue of mistreatement of seasonal agricultural workers; as often, I refer back to fictional parallels such as the excellent book A Short History of Tractors in Ukrainian, by Marina Lewycka (strawberry pickers are the victims in this case).

A joke which I hope does not offend anyone: "A Texas farmer went on vacation to Australia. He met up with an Australian farmer who proudly showed off his wheat field.   "That's nothing" said the Texan. "Back home, we have wheat fields that are twice as large as this."   Next the Australian pointed out his cattle.  "They're nothing," said the Texan. "Back home, we have longhorns that are twice as big as your cows."  Just then, half a dozen kangaroos bounded across the road.  "What are those?" asked the Texan.
The Australian replied, "Don't you have grasshoppers in Texas?"

Our newly surfaced road - not sadly our own cul-de sac de la Bréchette, which is long-neglected


...and finally the annual delight of our artichoke coming into flower







More on cycling

By [email protected] (Jon North)

Following my previous short post on cycling, I've been thinking about  my own long association with bikes.  I learnt to ride before the age of 10 on the large lawn of a friend in Chesham.  Soon after I had my first crash, setting out confidently down the steep hill from our gate and failing to judge the turn into the road just opposite.  Collision with curb, probably a grazed knee but it did not stop me for long.  Soon after I was going for rides with my dad, one of the few things we did together; we both had sit-up-and-beg bikes with rod brakes.

In my teens both at home and at boarding school I had a jazzy yellow 'racing' bike with 5-speed dérailleur (we pronounced it di-raill-ear or something - I only more recently learnt the French signification).  My main memory of those days is of the several journeys I made to and from boarding school to home, from Saffron Walden (via Royston, Baldock and a stop for refreshment around Hitchin), around 60 miles (83 km in new money).  For several years in my teens  I went for Sunday afternoon bike rides around the Essex coutnryside - Thaxted, Audley End  and other local places.  But those rides between home and school were the longest I tried - it amazes me now that I could do this.  But I enjoyed my cycling days until only a few years ago when I fell off rather more than I liked, and sold my nice 10 speed touring bike to a local contact in Lunel.  I do still miss it, and am tempted to buy a 3-wheeler with some motor assistance - we'll see once complex analysis of knee arthritis has ground on a bit.  I had an x-ray in a hi-tech scanner tunnel, complete with an array of whirrs and growls, in a virtually deserted outpatients clinic yesterday - a far cry from the old simple x-rays I had for my first knee replacement about 10 years ago.

The Criterium du Dauphiné which we've just watched on French tv is soon to be rechristened the Tour Auvergne-Rhône-Alpes which, a friend points out, does not trip off the tongue but does more accurately describe the routes from central France south-east towards and up into the high Alps.  It is, in any case, a major event in the run-up to the Tour de France now only a fortnight or so away and, like the Tour, reliably shown on French tv.  There are three or four good reasons to watch these daily broadcasts - it helps to improve our French by listening to the high-speed rattling of commentators; it gives the best view of the main Tour contenders; and the views and scenery are magnificent.  As with other French tv, the use of aerial photography is something that you can't get at ground level, just as the following of a whole race using other vehicles gives a completely different perspective than you could get standing by the roadside.  But shoals of folllwing cars bring their own hazards on narrow roads.

The French love of cycling racingis largely if not exclusively linked to the participation of French riders who very rarely win whole races (the Criterium is over 8 days, the Tour covers 3 weeks), but who quite frequently win stages in the classics.  This summer sees the retirement of  one icon of French cycling, Romain Bardet as another young hopeful, Paul Seixas edges into the top ten.  Bardet had a guard of honour of upended  bikes on his final appearance in the Dauphiné.  We are always pleased and amused to see and hear Thomas Voeckler, a previous French legend, ex-yellow jersey in the Tour, now commentating from the back of an accompanying motorbike.

The dubious example of Lance Armstrong, bang to rights for taking drugs after many years dominating the Tour, is in everyone's minds.  (He is now being rehabilitated, in a way, by people who cite his help for others recovering from drug misuse.  I'm not sure about that).  Seeing Pogačar winning often raises questions in some minds despite all the efforts made these days to test for doping.  Interestingly there is relatively little suspicion expressed in the French press about him - I prefer to  go by the usual fair view 'innocent till proved guilty'.  But there is also the question of doping bikes - that is, hidden motor assistance in racing bikes.  In our everyday lives we have friends who use electrically assisted pedal bikes, but the motors to be any use have to be more bulky than would work or be invisible on a pared down racing bike.  In any case, among competitors to win at the highest level, surely everyone must be doing it if anyone is.

One thing that always strikes me is  the lack of protection cyclists have from injury - they are skinny beings, and can use virtually no  padding, only head protection, yet you often see them fall, get up with horrible looking scrapes and get back on to  try and lose as little time as possble.

More interesting is the question of how competition pans out in the top ehelons of the international cycling world.  When Pogačar and Vingegaard are in a stage race, few others stand much chance; when they are not involved Roglič (really from the previous  generation of Slovenian cyclists, and having taken up cycling after a skiing accident) comes to the fore, and in less prestigious races other cyclists emerge from the péloton  to win - and so  on all the way down the pecking order.



Anyway, now we look forward to the Tour soon.  It is coming by Montpellier but not, I think, very near us unlike the two years soon after we arrived when it passed by  the end of our road.  They will be going up Montmartre on the last day in Paris, a thing some riders think is risky but will certainly add variety to the sprint round the circuit of the Champs Elysées










Cycling in the summer sunshine

By [email protected] (Jon North)

A short post this week.  The cycling season is with us (for us two, strictly as tele-spectators) - there have already been major internationsl races, but the Criterium du Dauphiné is the first of the year in France where the major contenders for the Tour de France  all show up.  This week the weather is getting warmer, and it's dry, so the scenery is a real pleasure in the early summer sunshine.  Geographically the Dauphiné is the mountainous region around our old twin area, the Diois, but the race spreads its route a long way to the north.  By the fourth day as I write it has more or less reached Valence passing through the rolling countryside of central France.  Mid-week we'll have the time trial, and then three tough mountain stages to finish thte week

The first days have gone more or less as expected - Pogačar, Vingegaard and assorted Dutch and Belgian riders up the leader board, the right mix of French riders near the top to keep the local interest up, though never quite strong enough to get right up there.  Over the first three days the lead changed, but we'll see by the end of the week when the mountains take their toll.  Meanwhile the scenery is a joy to watch as always in televised cycle races.  It is a shame the riders do not see it, especially (they say) because racing has speeded up so there is no time to admire views.  The normal speed on the flat is faster than a town speed limit for motors.

Thhis past week has seen the start of resurfacing work on the D24 road past our little cul-de-sac.  Slow work made even more sluggish by the bank hoidays that litter the month of May.  But for all the anxiety it provokes for me, the reality is that scarcely  anything seems to be happening.  Pictures of the preparations and improvided parking follow.


Having started talking about cyclists like Pogačar I needed a č, but the special ALT+ 0269 code I tried did not work (it is simple on the iPad) so I had to cut and paste it from a website!  The petty trials of modern life!  

Living in one place, citizen of other

By [email protected] (Jon North)

The wonderful flowers of the ornamental grenadier (pomegranate) whose hedge blooms year on year 




Old news for most of you, when we moved to France we were citizens of the EU  Now, thanks to what most people now see was a political  mis-step, the UK is well and truly Brexited  The rather mealy-mouthed stance taken by the so-called Labour government led by Keir Starmer is to try and  creep back in without too many people noticing.  Politics in like that, compromising in plain sight, watering down principles on the way.  So capping and removing welfare benefits is dressed up as financial prudence and the poorest people struggle more while better-off people like us are cushioned at every turn.  


I have recently sent in our French tax return for 2024 (calendar years here which have to be jiggled into line with British April to March financial years, since we receive our pensions from the UK.  I am always nervous about this, but generally there's no need provided the formulae on my spreadsheet are entered correctly, but one by-product of the cross-checking I always do to be sure is that year by year the gap  between Mary's income and mine shrinks - the bulk of my pension comes from a fixed-sum pot, while Mary and I both have British OAPs which are triple-locked so go up by more than the rate of inflation.  It would take a long while for her income to approach mine, but it is getting nearer every year.


This year we have been more than usually anxious about money, because we rely on our Brtish bank accounts for everyday purchases, and every now and then there is a glitch when someone elsewhere in the world decides to steal money from us.  Luckily our banks are on the lookout for this and twice (once on a French account, another on a UK one) we have had to cancel cards and wait  for new ones to come.  Last time the swindlers actually got their hands on a lot of money, but the French bank refunded it quickly.  This week we received a letter asking us to phone the bank, and then had to go through the meticulous checks to get through to a real person.  This one was in India or similar, and of course you always have to remain calm despite the feeling of advancing panic.  But all's well that ends well.  We keep reminding ourselves that the people who work in the call centres have tough jobs,  are not to blame for the processes they have to operate and have little room for discretion.

I am writing having just been out successfully to buy fans which we hope will moderate the heat to come.  For the last several years we have been too late, none left in shops, but this year we found what we wanted.   Many others we know have air conditioned houses, but we have decided not to go  down that road - like swimming pools which many friends have, we realise that they are expensive and troublesome luxuries - now, with my legs being as they are, even geting out of a pool would be tricky and I have taken to having shower rather than even an occasional bath.

a nearly deserted town centre after a visit to the local museum 

Even more than the excesses of Trump, my mind has been occupied with the excesses of the Israeli government.  More than ever, I find it impossible to relate its obscene actions in any way to the presence or absence of antisemitism, and I know many Jewish friends feel the  same.   I think the world is anaesthetising itself to destroying human life, easier and easier as the technology makes the distance between atacker and attacked ever greater, and the chances of innocent loss of life likewise.

As we approached a beautiful sunny weekend I was stranded at home while M is equally left in the lurch, waiting for the breakdown after our car locked her out. We have had a succession of mishaps with the car (two punctures, then this) which makes us all too aware how dependent we are on the car.  It is only a question of waiting, but as we both suffer from age and infirmity  I am seriously thinking of a second vehicle.  This is very unecological but we could afford it.  In the end it turned out some tiny ball-bearings had got trapped in the ignition keyhole.

On top of that, the main road to our house is to be closed for resurfacing for the next fortnight.  There are ways round it,  and the whole hting has been well signalled, but with our luck the visitors we expect next week may have problems.

Two bits of cheer this weekend - Simon Yates did an amazing ride uphill on a gravel track to overtake the then leader of the Giro d'Italia and effectively winning the multi-stage race.  And today thanks to the BBC still available here we can hear one of our favourite pianists Angela Hewitt interviewed.  

poppy time here - usually en masse in fields, but this one outside our front gate!





Longer days

By [email protected] (Jon North)

A headline in the local paper (mid-May) says there is a shrinking number of readers of books in France - according to the survey organisation Ipsos 63% of French people read fewer than 5 books a year.  In this house we do our best to keep the numbers up, but although Mary is a loyal visitor to our local library my reading is almost all on electronic devices and I'm not sure how that is included in the statistics.  Whatever, we in this house read a lot - a silent house more often means we are reading than absent.  We are, as they say, big readers, I mainly in English, Mary now mainly in French.  I do admire this, but I would be too slow if I tried, always stoppping to look up  words.  But we read in French in a group twice a week, with native French support, and are currently working through a history of Algeria and a translation of Alan Bennett's The lady in the van, very different and both very enjoyable though the history of the French in Algeria is much less cheerful.

My diary, and from time to time this blog, have frequently focused on my leg pain - three overlapping phenomena, arthritis, sciatica and (oh dear) gout as well as general aches and pains that the French lump together as courbatures.  Gout is, of course,  a result of drinking alcohol.  Well, it is avoidable but I ask myself how being a wine-lover is compatible with avoiding it.  So, moderation in all things, but it shows on my frequent blood tests so my doctor is 'aware' - he often mentions the uric acid but seldom directly talks about drinking less.  However, I have been presecribed a kind of trolley I can walk with and rest on if necessary.  Unfortunately so far it is not much good for me - I prefer to continue with my stick.

  


This had long since ceased to surprise me, since French culture and wine are intimately bound up with wine my present doctor refers to the subject obliquely via the annual reports from the blood lab - our previous doctor, now retired, did not mention it at all, adhering probably to an old French culture in which drinking wine was more commonplace.  In the UK medics often talk about drinking too much.  Someone gave me a book (in French so I am  only slowly reading it) about alcohol at the time of the French Revolution, before which it was apparently only consumed by people of a certain (upper) class.  So not at all commonplace until the 19th century,  and now 200 years later, the press is full of reports of declining wine consumption.

My leg pain has intensified, and tests and treatments are on the horizon.  I have become a very slow walker although I can still manage, and luckily I can still drive so things will be easier once I can pick my way through the French bureaucracy to  get preferential parking.  Most of the treatment I use at present is in the shape of pills relieveing pain, but a treatment I use daily now which is non-chemical is TENS - the French use the English phrase, abbreviated from Transcutaneous Electrical Nerve Stimulation

We have just revisited a restaurant,  La Maison Soubeiran in Lunel, which is becoming one of our favourite places to eat - a small family business, friendly with beautiful  food.  The walls are decorated with photos of Jane Birkin and Serge Gainsbourg.



Although this post is mostly about current things, I'll add one other thing.  Since we visited Armenia a few year ago we have been interested in the country, so I picked this up  from the European Correspondent newsletter this month and thought it worth repeating:

How Armenia is becoming the region's only democracysort of (by Nerses Hovsepyan)
In 2018, Armenians pulled off something rare: a peaceful overthrow of a corrupt government. What started as street protests led by ordinary citizens grew into a movement that toppled Serzh Sargsyan's long-standing regime. Since then, the country has taken small but important steps toward democracy.  Elections aren't guaranteed to favour the ruling party, opposition leaders aren't silenced, and media outlets have more freedom than ever before. This might not seem remarkable to the average European, but in a region where autocratic rule has been the norm for decades, Armenia's gradual shift is a noteworthy exception. 
In Azerbaijan, elections are largely a formality, and Iran, well, is Iran. In Türkiye, the government regularly throws opposition politicians into prison, along with journalists and protesters. Meanwhile, Georgia, once the democratic leader of the region, has been sliding toward authoritarianism (which you already know if you've been reading us). To illustrate this: Georgia's press freedom ranking fell from 60th to 103rd since 2013, while Armenia's improved from 102nd to 50th in the same period.  Before 2018, Armenia appeared locked into an authoritarian trajectory similar to its neighbours, with Russia influencing every aspect of its economy and politics: Moscow controlled 95% of its foreign trade, all major infrastructure, and even its border security. 
The Velvet Revolution didn't just topple a corrupt government; it began unravelling this decades-old dependence. Today, while still formally allied with Russia through the CSTO, Armenia has frozen its participation in the bloc and is actively but carefully pursuing an EU membership application – a geopolitical reorientation unimaginable before 2018.  The largely peaceful 2018 Revolution began because Armenians were fed up with a corrupt regime that had hijacked Armenia's democratic promise while tightening Moscow's grip on the country. It was led by Nikol Pashinyan, who has been prime minister ever since, and was dubbed 'velvet' in reference to the nonviolent 1989 Czechoslovak Velvet Revolution. 
Seven years after the revolution's euphoric promise, Armenia's democracy remains a work in progress. Yes, Armenia has seen peaceful power transfers, and opposition parties can now operate more freely. But the country still faces serious challenges.  The judicial system is slow to reform and remains deeply mistrusted. Media outlets, while less restricted, are still influenced by political and business interests. LGBT+ rights remain a thorny issue – queer events are frequently canceled under threats, and hate crimes often go unpunished.  For Armenia's fragile democracy to survive and grow, it needs sustained support – financial, diplomatic, and, given its security challenges, military – especially from the European Union. With authoritarianism tightening its grip across the region, from Azerbaijan's iron-fisted rule to Georgia's democratic backsliding, the threat of Armenia slipping backwards is all too real.
Our one trip to Armenia and Georgia was several years ago now and a plan to revisit with friends was stymied by Covid.  Now Mary and I have more or less decided not to fly again (our friends still travel a lot: they like others we know here are originally from other parts of the world and so have diverse reasons for wanting, needing to fly).

All 3 tortoises are thriving after hibernation for the 2 older ones - the little one still lives indoors!


20 years in the south of France

By [email protected] (Jon North)



Not everyone knows exactlyu where we live in France, so here is a recap.  Next year we'll have been in Lunel for 20 years.  We have few regrets other than distance from family.  We are midway between 2 historic cities, Montpellier and Nîmes, on a rail link which can tansfer us rapidly onto the TGV line to Paris, and with 2 local airports less than 30 minutes away though we rarely fly now.  We are close to the A9 autoroute (the busiest motorway in France apparently) which takes you quickly t o Spain, Toulouse and Bordeaux as well as to the A7 north-south route up the Rhône valley.  Lunel is less than 10 km from the Med,, and not much further from those hills to the north, the inland Cevennes; but we often escape the heavier rain inland - the risk here is often too little rain rather than too much.


Another crop of lemons on the way

I started this post at the end of April in bright sunshine after a quick overnight shower - nevertheless I was able to mow the lawn first thing in the morning, and  (starting early) I have also been for my annual round of blood tests.  Like a lot of French healthcare these are precautionary - an underactive thyroid is the only known concern, but there are 15 tests on the prescription.  We find the blood testing service very efficient, and for those like me who wake early the lab opens at 6.30!  And by the end of the afternoon the results were with me by email - all well except the marginally high uric acid which I know is the result of liking alcoholic drinks, and causes twinges of gout.  The price of being a wine enthusiast!



tortoises sunning themselves this spring

Some lovely white flowers from the garden this Mayday, and of course the white flower sold everywhere in France today is the lily of the valley.  It has been a flower symbolising good luck in France since Charles IX in the 16th century, and has been officially recognised for the Fête du Travail since 1936.  It is pretty but deadly poisonous, and we have none in our garden.  The production of the flowers is a multi-million euro market apparently centrered around Bordeaux.



The yellow iris is called baroque prelude, one of Mary's favourites

for patreon i wrote about getting stranded in tomorrowland as an 8th grader, michael sorkin’s…

for patreon i wrote about getting stranded in tomorrowland as an 8th grader, michael sorkin’s classic essay “see you in disneyland” and the legacy of 1990s disneyfied architecture and urbanism today

chud atlantis

Hello everyone, sorry to go so long without posting something. I caught covid in August and it’s taken me months to start feeling relatively back to normal. I am still struggling with fatigue and some neurological problems, so thank you for your patience!

It is rare that the McMansion ever approaches the mythical, though it is, of coursed, steeped in its own mythology – of bootstrapism, castle doctrine and, importantly, a total commitment to individualism. No one bereft of a sense of personal mythos would build some of the houses I’ve posted about on this site throughout the years.

However, rarely do those houses sincerely believe their own myths, express them so utterly. Often, there’s a bit of cheek involved in all those Corinthian columns, even among the knockoff Rolex set. Whenever one does swallow the (blue) kool aid, well, it’s very important to me. And so, from the forgotten underwater past of the greater Houston suburbs, I bring you: Chud Atlantis

(it is always more fun to quote the front bit of that Shelley poem, because the second bit has been misappropriated by Reddit.)

Atlantic in size (8 bedrooms, 9 baths, 10,000+ square feet), and in price ($2.8 million), Chud Atlantis is proof that, for better or for worse, we used to build things in this country. (Just kidding, this house was built, astonishingly enough, in 2023.) Its existence is baffling to me not only because it is anachronistic (it belongs in the Bad 70s) but because it is Texan. This house is, in the fullest sense of the word, a transplant. Orlando is that way.

(Shall we enter, then, the eye-watery depths?)

It’s important that you understand that the most significant thing about this house is that it is blue. In an age of gray supremacy, it is nice to know that tacky can still come in more unconventional shades. No one prior to this has ever looked at a piece of dyed marble and thought: I need to make this my entire personality. Not even in the 80s!

Like many McMansion owners, these do not know how to decorate. One can only presume that the furniture involved is so heavy that staging also wasn’t an option. This makes the house a historical document because from this point onward such rooms will henceforth be yassified with AI.

this kitchen begs for a concept food. it begs for ‘gold leaf hamburger.’

I’m not entirely convinced that the Rococo period was ugly, but its imitators commit crimes unerringly and without fail. Furniture like this sits in a room like a big glob of meat. Instead of saying 'i’m rich’ what it actually communicates is: 'i’m heavy.’

I don’t know how you can make so much money and yet have everything you do look like the bootleg Chanel rugs they sell outside of the subway. Like, can’t you buy the real thing, dawg?

This may also be the first house whose broad aesthetic is executed by way of direct to consumer printing. The FedExification of art. Or something like that. After all, the internet loves a neologism more than it loves its elaboration.

“What should we put here to fill out this room” all-time bad answer.

Anyway, without further ado, the back:

The suburban mind yearns for the miniature golf course. The suburban mind yearns for water while it all dries up.

If you like this post and want more like it, support McMansion Hell on Patreon for as little as $1/month for access to great bonus content including a discord server, extra posts, and livestreams. (Don’t worry! This doesn’t adjust for inflation! Now’s the perfect time to join!) By the way: new subscribers can buy a year of McMansion Hell for just $12!

Not into recurring payments? Try the tip jar! McMansion Hell stocks, much like mortgage-backed securities only ever go up! For non-architecture stuff I also have a substack where I write about things like the ring cycle and going to the eye doctor.

For Patreon, I wrote about developer slop flooring, the history of walking on plastic, and what fake…

For Patreon, I wrote about developer slop flooring, the history of walking on plastic, and what fake floors say about the world we live and build in.

glam metal modern but also your contractor is going to jail dawg

Sometimes a house is so ugly, disgust boomerangs back into a form of respect.

This is a rare phenomenon, one which should be treated seriously. I’ve been looking at ugly houses professionally for almost a decade now and I can say with confidence that there are only a handful of true goose eggs that meet the mark. This house – this remarkable, revolting house – located, of all places, in Randolph County, North Carolina, is perhaps the finest goose egg a rogue and most certainly confused contractor could possibly lay.

Yeehaw, man. For the curious, the house is on the market for over 500 grand despite being badly sited and measly 2600 square feet. Most of that is devoted to the lawyer foyer which is not the choice I would personally make, but hey, to each their own.

Most of the houses on McMansion Hell these days are submissions from members of the McMansion Hell Patreon, either in our discord server or on our livestreams. This one, however was a total fluke. I came across it by accident because my brother is looking to move to the area in order to be closer to my folks. (I doubt he’d be interested in something this, uh, unique.)

Now, in all these years, I’ve never devoted an entire post to the exterior of a house. As they say, there’s a first time for everything. There is so much going on with this house, all of it in direct opposition to the concept of taste, it requires a deeper investigation than the initial exterior image usually allows. (Also the entire interior is, as one might expect, entirely dark gray, complete with that awful washed out laminate flooring.)

(here is a sneak peek inside. the rest is not really important nor interesting.)

Anyway, without further ado, let’s hit it from the top.

First off, no, I don’t know what is inside this house’s giant, hammerhead-esque forehead. It’s not supported by anything so my assumption is, well, nothing. They put this in there for the sheer aesthetic love of the game.

Second, we have to talk about the siding. It’s vinyl, and $500 grand is firmly in Hardie®™© Board territory. You can already start to see it ripple against the cornice, which is probably fine. The cornices are painted black in a cartoony, Roy Lichtenstein fashion, that is, if Roy Lichtenstein was drunk. The can lights are a nice touch. They help highlight important parts of the facade, such as:

The vinyl siding and black trim will continue until morale improves. Also, I zoomed out here to include the forehead (fivehead?) just because the scale is INSANE – that’s like a 50-50 wall-to-fivehead ratio. Honestly, even though things in the world are pretty dire, I wouldn’t trust that cantilever with my life.

The window layout on this thing makes me wonder if the people who put it together have eyes that can see and a brain that connects to them. Now, I’m not going to invoke the Greek orders or anything, but I am going to say that every single architectural rule is being brazenly broken here. Total impunity. The window and door don’t line up at the top, which is the bare minimum of common decency. Then there’s that little guy pulling a Leeroy Jenkins up in the corner. You go dude.

The trim on these masses is starting to look AI generated but it’s probably just the HDR every realtor uses. The FaceTune of the field. Anyway, I think it’s a bad idea to put what looks like builder grade wood flooring on the outside of a house. It’s giving mold. It’s giving sunbleaching. It’s giving Etsy.

As we can see, another familiar McMansion Hell enemy has also made an appearance: the prairie mullion window. There is no reason to use this window unless it involves building a fake bungalow, but the worst possible place to use it is in this particular situation. It’s the only window with white mullions, it looks weird with the siding, and it’s not exactly “”“modern”“” or whatever this house is supposed to be.

(Often I wonder if some people believe that modernism is just “doing some stuff with squares” and the more squares there are the more modernist it is. Probably not true, but then again, I’m not the one pulling massive profit on houses that look like doo doo so jokes on me.)

Zooming out again because context still matters even in the most nonsensical situations. The funny thing about this house is that the only normal part of it is the front door and even then… what?? Also, look at that siding-less patch of brick on the right. As though to say: haha! Finally, I love how the stairs lead down into a bunch of rocks. Serves you right!

Thanks to advanced screenshotting technology, we can see that there are also prairie mullions on these other windows, it’s just that they’re a more reasonable black. Don’t worry though, the windows are still offensive. They’re two windows stuck together in order to give the impression of a single continuous one. (Remember the inside shot?) Nice try, bucko. Second, why don’t the two windows meet where that little band of siding is? Well, we all know the answer to this question. (We don’t, in fact, know the answer to this question.)

This is my favorite part of the house. It’s almost good, to me, which is why I saved it for last. I have no idea what the hell that glossy composition book siding is but I love it. I’ve never seen it before. I also like how they’re doing a weird entablature-quoin combo thing with it, but only on the right side of the house. There’s some great five-cornice action going on but, thanks to the precedents set by truly mid postmodernism, it works.

Unfortunately there are some downsides here. What’s the deal with that tiny, skinny stone? brick? veneer? Second, why is the siding just hanging off the edge like that? That whole little section where the three (four?) cladding meet is precipitous. The cheapo off-white developer special garage door with the little trad elements is a nice gesture, one that tells you life has no meaning. Why bother?

Anyway, after all that, if we put it all together again, we get this:

If you like this (unusual) post and want more like it, support McMansion Hell on Patreon for as little as $1/month for access to great bonus content including a discord server, extra posts, and livestreams. (Don’t worry! This doesn’t adjust for inflation! Now’s the perfect time to join!) By the way: new subscribers can buy a year of McMansion Hell for just $12!

Not into recurring payments? Try the tip jar! McMansion Hell stocks, much like mortgage-backed securities only ever go up!

FYI, this post is now available for all to read!

mcmansionhell:

Bonus Post: The McMansionization of the White House, or: Regional Car Dealership Rococo, a treatise

FYI, this post is now available for all to read!

McMansion Hell urges all New Yorkers to Rank Zohran Mamdani #1 for Mayor of NYC

I know I am just a blog about ugly houses but I want to say something important here: the ruling class in this country does not want you to have affordable housing. They don’t want you to have clean, reliable public transportation. They don’t want you to have access to groceries you can afford. If something bad happens to you, they don’t care if you live or die. If you lose your home, they will hole up in their penthouses, McMansions, and mommy-bought apartments and tell you it’s your fault – but it’s not. It is theirs. Everything from budget cuts to rent hikes, is their fault, their way of ensuring that the city becomes a place made up solely of people like themselves.

Zohran Mamdani is the only high profile candidate I’ve seen in my narrow, millennial lifetime running for any position – least of all the mayor of the biggest city in the country – on a platform of decommodification in terms of access to food, housing and transportation. City-run grocery stores would ensure that food stays affordable because there is no profit motive. While some are critical of his policy of fare-free transportation (as opposed to spending the same amount of money improving services), given the amount of policing involved in watching the fareboxes, it’s something I’m coming more and more around to.

In demanding a rent freeze, Zohran is one of the only politicians able to articulate a direct plan for keeping people in their homes at a time when rent is skyrocketing with no end in sight. Zohran is one of a limited few in this miserable, cowardly country who are willing to speak out for the rights of Palestinians being murdered en masse by Israel. A vote for Zohran is a vote for the idea that better things are possible and, if you ask me, I think we live in such dire times that we’ve begun to forget this fundamental truth: things do not have to be like this. We do not have to live under the jackboot of privatization and exploitation forever. That choice, however, is up to us.

I am forever skeptical of the power of the ballot box to enact lasting change, especially in recent years. In fact, I am the most skeptical of electoralism I have ever been. However, why is it that the right can use what little sovereignty and enfranchisement is available to us to enact sweeping, if devastating changes, and yet, when the opportunity presents itself to the left, all we hear is that such things are no better than pissing in the wind? The answer to this question, of course, is that the ruling class is perfectly content with a party that hinders rather than ushers in change. Zohran may be using the sclerotic party system we’ve been doomed to inhabit, but despite these limitations his candidacy has surged immensely in the last few months, and the momentum of the people is on his side. This may be one of the last chances wherein one can attempt a truly progressive campaign like this.

Now that things are heating up, the ruling class, the backers of Andrew Cuomo, an abuser of women and a man responsible for the untold deaths of the elderly because he valued profits over their lives so early on in the pandemic, will stop at nothing to make sure that Zohran Mamdani does not win, that things stay the same. That the rent goes up, that the grocery prices continue to explode, that New York City becomes the playground of the rich and famous at the expense of everyone else. The party will try to intervene in undemocratic ways just like they did with Bernie Sanders in the 2020 primary. There will be untold lies and accusations, the press will abandon what few journalistic obligations they still abide by, and it will get ugly. There are even rumors that Cuomo will run as an independent even if he loses the primary, which, to be honest, isn’t a bad tactic – he’s just the worst guy to be using it.

I realize this post may be annoying to some (hell, I myself live in Chicago), and I’m sure there’s some rightful criticism for my not having used my blog like this before. (However, for those of you who don’t know, I usually write about all manner of politics in my column at The Nation!) That being said, if you follow me and you live in New York City, rank Zohran #1 and Brad Lander #2. DO NOT RANK SUBURBANITE BIKE LANE-PARKER ANDREW CUOMO.

Anyway, that’s all. I’ll be back with a new McMansion Hell this Friday, so stay tuned.

Bonus Post: The McMansionization of the White House, or: Regional Car Dealership Rococo, a treatise

simulacra for bootlickers

FYI, this post is a little more NSFW than usual with the language.

Usually I think McMansions are kind of funny. Sometimes, I even like them. If I didn’t like them at least a little bit, I don’t think I’d be running this blog for a solid eight years and counting. Some McMansions are so strange and so fascinating in their architectural languages (it’s never just one language) that they test the boundaries of what residential architecture can do on an individual and often ad hoc level. Others so cogently and often whimsically express various cultural fascinations and deeply entrenched American ideas of what prosperity looks like (read: neuroticisms), that, as a sociological text they remain unrivaled.

But some (many!) McMansions are, to put it bluntly, evil. And it is these McMansions that reveal the ugly truth beneath the ugly architecture: that the McMansion is a manifestation of power and wealth meant to communicate that power and wealth to others as explicitly as possible, and that it does so in a country besieged by brutal and inescapable income inequality. In our present political moment characterized by extreme and deliberate cruelty, fear, and baleful destruction of all that is pro-social in nature (and nature itself), I figured it was my duty to show my readers a house that embodies these sentiments, one we can all use to assuage some of our perceived powerlessness by way of mocking the shit out of it.

There are a lot of fake White Houses in the US. Most of them can be found in or around the area of McLean, Virginia, the ground zero of DC blob sickos whose job it is to mete out the ratio of lethality and economy for weapons manufacturers. This one, however, is in Indiana, outside of Evansville. It was built at the apex of theme park mindset in architecture (1997) and is on the market for $4.9 million dollars. However, don’t be fooled by this opening exterior shot. It takes literal drone footage to show how unhinged this house actually is. In reality, the White House facade is akin to the light dangling from an anglerfish, luring the unsuspecting victim in…

Completely NORMAL amount of money at play here!

There are some images historians (if there are any left) will look back upon and say, such a phenomenon truly would not be possible without an abundance of cheap oil and derivative products. Fortunately, in the immanent post-neoliberal chobani yogurt solarpunk utopia, this house will be converted into a half ruin garden (though this will take some time with all the plastic) half public spa complex. A better world is possible, but only if we imagine it.

Pro tip: there’s a way of saying “wow it’s so big” that can land as the most devastating insult in the rhetorical lexicon.

I’ll be real, the armchair thing is a new one for me, too.

(Rise and grindset voice): Inside you are two lions. Both of them are hungry for prosperity and success. Let’s get this bread, king.

Not to do gender here, but compared to the rest of the house, this is a “my wife got her way” room if there ever was one.

Fixer Upper was basically 9/11 for “architectural foam trappings” and “color.” Look what they took from you…

Honestly, what a great juxtaposition. This is what that book The Machine in the Garden was all about. (No it’s not.)

Half of this post tbh:

Well, that’s it for this extremely upbeat and positive McMansion Hell post in this extremely positive and upbeat time we are living in. Join us soon for the concluding part 2 of the Neuschwanstein Castle series, especially if you like beautiful, psychosexually crippled swan boys (real and fictional) and kitsch theory.

If you like this post and want more like it, support McMansion Hell on Patreon for as little as $1/month for access to great bonus content including a discord server, extra posts, and livestreams. (Don’t worry! This doesn’t adjust for inflation! Now’s the perfect time to join!)

Not into recurring payments? Try the tip jar! McMansion Hell stocks, much like mortgage-backed securities only ever go up!!

About my last few months.

About my last few months.

on neuschwanstein castle (part 1)

This is an essay in two parts.

Neuschwanstein Concept Drawing by the stage designer (!!) Christian Jank (1869).

There exist in architecture clear precedents to the McMansion that have nothing to do with suburban real estate. This is because “McMansionry” (let’s say) has many transferable properties. Among them can be included: 1) a diabolical amount of wealth that must be communicated architecturally in the most frivolous way possible, 2) a penchant for historical LARPing primarily informed by media (e.g. the American “Tuscan kitchen”) and 3) the execution of historical styles using contemporary building materials resulting in an aesthetic affect that can be described as uncanny or cheap-looking. By these metrics, we can absolutely call Neuschwanstein Castle, built by the architect Eduard Riedel for King Ludwig II of Bavaria, a McMansion.

Constructed from 1869 through 1886 – the year of Ludwig’s alleged suicide after having been ousted and declared insane – the castle cost the coffers of the Bavarian state and Ludwig himself no fewer than 6.2 million German gold marks. (That’s an estimated 47 million euros today.) The castle’s story is rife with well-known scandal. I’m sure any passing Swan Enthusiast is already familiar with Ludwig’s financial capriciousness, his called-off marriage and repressed homosexuality, his parasocial obsession with Richard Wagner, his complete and total inability to run his country, and his alleged “madness,” as they used to call it. All of these combine to make Neuschwanstein inescapable from the man who commissioned it – and the artist who inspired it. Say what you like about Ludwig and his building projects, but he is definitely remembered because of them, which is what most monarchs want. Be careful what you wish for.

Neuschwanstein gatehouse.

How should one describe Neuschwanstein architecturally? You’d need an additional blog. Its interiors alone (the subject of the next essay) range from Neo-Baroque to Neo-Byzantine to Neo-Gothic. There are many terms that can loosely define the palace’s overall style: eclecticism, medieval revivalism, historicism, chateauesque, sclerotic monarchycore, etc. However, the the most specific would be what was called “castle Romanticism” (Burgenromantik). The Germans are nothing if not literal. Whatever word you want to use, Neuschwanstein is such a Sistine Chapel of pure sentimentality and sugary kitsch that theme park architecture – most famously, Disney’s Cinderella’s castle itself – owes many of its medieval iterations to the palace’s towering silhouette.

There is some truth to the term Burgenromantik. Neuschwanstein’s exterior is a completely fabricated 19th century storybook fantasy of the Middle Ages whose precedents lie more truthfully in art for the stage. As a castle without fortification and a palace with no space for governance, Neuschwanstein’s own program is indecisive about what it should be, which makes it a pretty good reflection of Ludwig II himself. To me, however, it is the last gasp of a monarchy whose power will be totally extinguished by that same industrial modernity responsible for the materials and techniques of Neuschwanstein’s own, ironic construction.

In order to understand Neuschwanstein, however, we must go into two subjects that are equally a great time for me: 19th century medievalism - the subject of this essay - and the opera Lohengrin by Richard Wagner, the subject of the next. (1)

Part I: Medievalisms Progressive and Reactionary

The Middle Ages were inescapable in 19th century Europe. Design, music, visual art, theater, literature, and yes, architecture were all besotted with the stuff of knights and castles, old sagas, and courtly literature. From arch-conservative nationalism to pro-labor socialism, medievalism’s popularity spanned the entire political spectrum. This is because it owes its existence to a number of developments that affected the whole of society.

In Ludwig’s time, the world was changing in profound, almost inconceivable ways. The first and second industrial revolutions with their socioeconomic upheavals and new technologies of transport, manufacturing, and mass communication, all completely unmade and remade how people lived and worked. This was as true of the average person as it was of the princes and nobles who were beginning to be undermined by something called “the petit bourgeoisie.”

Sustenance farming dwindled and wage labor eclipsed all other forms of working. Millions of people no longer able to make a living on piecemeal and agricultural work flocked to the cities and into the great Molochs of factories, mills, stockyards, and mines. Families and other kinship bonds were eroded or severed by the acceleration of capitalist production, large wars, and new means of transportation, especially the railroad. People became not only alienated from each other and from their labor in the classical Marxist sense but also from the results of that labor, too. No longer were chairs made by craftsmen or clothes by the single tailor – unless you could afford the bespoke. Everything from shirtwaists to wrought iron lamps was increasingly mass produced - under wretched conditions, too. Things – including buildings – that were once built to last a lifetime became cheap, disposable, and subject to the whimsy of fashion, sold via this new thing called “the catalog.”

William Morris’ painting Le Belle Iseult (1868).

Unsurprisingly, this new way of living and working caused not a little discontent. This was the climate in which Karl Marx wrote Capital and Charles Dickens wrote A Christmas Carol. More specific to our interests, however, is a different dissenter and one of the most interesting practitioners of medievalism, the English polymath William Morris.

A lover of Arthurian legend and an admirer of the architect and design reformer John Ruskin, Morris was first trained in the office of architect G. E. Street, himself a die-hard Gothic Revivalist. From the very beginning, the Middle Ages can be found everywhere in Morris’ work, from the rough-hewn qualities of the furniture he helped design to the floral elements and compositions of the art nouveau textiles and graphics he’s most famous for – which, it should be said, are reminiscent of 15th century English tapestries. In addition to his design endeavors, Morris was also a gifted writer and poet. His was a profound love for medieval literature, especially Norse sagas from Iceland. Some of these he even translated including the Volsunga Saga – also a preoccupation of Wagner’s. Few among us earn the title of polymath, but Morris’ claim to it is undeniable. Aside from music, there really wasn’t any area of creative life he didn’t touch.

However, Morris’ predilection for the medieval was not just a personal and aesthetic fascination. It was also an expression of his political rejection of the capitalist mode of production. As one of the founders of the English Arts & Crafts Movement, Morris called for a rejection of piecemeal machine labor, a return to handicraft, and overall to things made well and made with dignity. While this was and remains a largely middle class argument, one that usually leads down the road of ethical consumption, Morris was right that capitalism’s failing of design and architecture did not just lie with the depreciated quality of goods, but the depreciated quality of life. His was the utopian call to respect both the object and the laborer who produced it. To quote from his 1888 essay called “The Revival of Architecture,” Morris dreamed of a society that “will produce to live and not live to produce, as we do.” Indeed, in our current era of AI Slop, there remains much to like about the Factory Slop-era call to take back time from the foreman’s clock and once more make labor an act of enjoyable and unalienated creativity. Only now it’s about things like writing an essay.

I bother to describe Morris at length here for a number of reasons. The first is to reiterate that medievalism’s popularity was largely a response to socioeconomic changes. Additionally, since traditionalism - in Ludwig’s time and in ours - still gets weaponized by right-wing losers, it’s worth pointing out that not all practitioners of medievalism were politically reactionary in nature. However – and I will return to this later – medievalism, reactionary or not, remains inescapably nostalgic. Morris is no exception. While a total rejection of mass produced goods may seem quixotic to us now, when Morris was working, the era before mass industrialization remained at the fringes of living memory. Hence the nostalgia is perhaps to be expected. Unfortunately for him and for us, the only way out of capitalism is through it.

To return again to the big picture: whether one liked it or not, the old feudal world was done. Only its necrotic leftovers, namely a hereditary nobility whose power would run out of road in WWI, remained. For Ludwig purposes, it was a fraught political time in Bavaria as well. Bavaria, weird duck that it was, remained relatively autonomous within the new German Reich. Despite the title of king, Ludwig, much to his chagrin - hence the pathetic Middle Ages fantasizing - did not rule absolutely. His was a constitutional monarchy, and an embattled one at that. During the building of Neuschwanstein, the king found himself wedged between the Franco-Prussian War and the political coup masterminded by Otto von Bismarck that would put Europe on the fast track to a global conflict many saw as the atavistic culmination of all that already violent modernity. No wonder he wanted to hide with his Schwans up in the hills of Schwangau.

The very notion of a unified German Reich (or an independent Kingdom of Bavaria) was itself indicative of another development. Regardless if one was liberal or conservative, a king, an artist or a shoe peddler, the 19th century was plagued by the rise of modern nationalism. Bolstered by new ideas in “medical” “science,” this was also a racialized nationalism. A lot of emotional, political, and artistic investment was put into the idea that there existed a fundamentally German volk, a German soil, a German soul. This, however, was a universalizing statement in need of a citation, with lots of political power on the line. Hence, in order to add historical credence to these new conceptions of one’s heritage, people turned to the old sources.

Within the hallowed halls of Europe’s universities, newly minted historians and philologists scoured medieval texts for traces of a people united by a common geography and ethnicity as well as the foundations for a historically continuous state. We now know that this is a problematic and incorrect way of looking at the medieval world, a world that was so very different from our own. A great deal of subsequent medieval scholarship still devotes itself to correcting for these errors. But back then, such scholarly ethics were not to be found and people did what they liked with the sources. A lot of assumptions were made in order to make whatever point one wanted, often about one’s superiority over another. Hell, anyone who’s been on Trad Guy Deus Vult Twitter knows that a lot of assumptions are still made, and for the same purposes.(2)

Meanwhile, outside of the academy, mass print media meant more people were exposed to medieval content than ever before. Translations of chivalric romances such as Wolfgang von Eschenbach’s Parzival and sagas like the Poetic Edda inspired a century’s worth of artists to incorporate these characters and themes into their work. This work was often but of course not always nationalistic in character. Such adaptations for political purposes could get very granular in nature. We all like to point to the greats like William Morris or Richard Wagner (who was really a master of a larger syncretism.) But there were many lesser attempts made by weaker artists that today have an unfortunate bootlicking je nais se quoi to them.

I love a minor tangent related to my interests, so here’s one: a good example of this nationalist granularity comes from Franz Grillparzer’s 1823 pro-Hapsburg play König Ottokars Glück und Ende, which took for its source a deep cut 14th century manuscript called the Styrian Rhyming Chronicle, written by Ottokar Aus Der Gaul. The play concerns the political intrigue around King Ottokar II of Bohemia and his subsequent 1278 defeat at the hands of Grillparzer’s very swagged out Rudolf of Habsburg. Present are some truly fascinating but extremely obscure characters from 13th Holy Roman Empire lore including a long-time personal obsession of mine, the Styrian ministerial and three-time traitor of the Great Interregnum, Frederick V of Pettau. But I’m getting off-topic here. Let’s get back to the castle.

The Throne Room at Neuschwanstein

For architecture, perhaps the most important development in spreading medievalism was this new institution called the “big public museum.” Through a professionalizing field of archaeology and the sickness that was colonialist expansion, bits and bobs of buildings were stolen from places like North Africa, Egypt, the Middle East, and Byzantium, all of which had an enormous impact on latter 19th century architecture. (They were also picked up by early 20th century American architects from H. H. Richardson to Louis Sullivan.) These orientalized fragments were further disseminated through new books, monographs, and later photography.

Meanwhile, developments in fabrication (standardized building materials), construction (namely iron, then steel) and mass production sped things up and reduced costs considerably. Soon, castles and churches in the image of those that once took decades if not a century to build were erected on countless hillsides or in little town squares across the continent. These changes in the material production of architecture are key for understanding “why Neuschwanstein castle looks so weird.”


Part of what gives medieval architecture its character is the sheer embodiment of labor embedded in all those heavy stones, stones that were chiseled, hauled, and set by hand. The Gothic cathedral was a precarious endeavor whose appearance of lightness was not earned easily, which is why, when writing about their sublimity, Edmund Burke invoked not only the play of light and shadow, but the sheer slowness and human toil involved.

This is, of course, not true of our present estate. Neuschwanstein not only eschews the role of a castle as a “fortress to be used in war” (an inherently stereotomic program) but was erected using contemporary materials and techniques that are simply not imbued with the same age or gravitas. Built via a typical brick construction but clad in more impressive sandstone, it’s all far too clean. Neuschwanstein’s proportions seem not only chaotic - towers and windows are strewn about seemingly on a whim - they are also totally irreconcilable with the castle’s alleged typology, in part because we know what a genuine medieval castle looks like.

Ludwig’s palace was a technological marvel of the industrial revolution. Not only did Neuschwanstein have indoor plumbing and central heat, it also used the largest glass windows then in manufacture. It’s not even an Iron Age building. The throne room, seen earlier in this post, required the use of structural steel. None of this is to say that 19th century construction labor was easy. It wasn’t and many people still died, including 30 at Neuschwanstein. It was, however, simply different in character than medieval labor. For all the waxing poetic about handiwork, I’m sure medieval stonemasons would have loved the use of a steam crane.

It’s true that architectural eclecticism (the use of many styles at once) has a knack for undermining the presumed authenticity or fidelity of each style employed. But this somewhat misunderstands the crime. The thing about Neuschwanstein is that its goal was not to be historically authentic at all. Its target realm was that of fantasy. Not only that, a fantasy informed primarily by a contemporary media source. In this, it could be said to be more architecturally successful.

The fantasy of medievalism is very different than the truth of the Middle Ages. As I hinted at before, more than anything else, medievalism was an inherently nostalgic movement, and not only because it was a bedrock of so much children’s literature. People loved it because it promised a bygone past that never existed. The visual and written languages of feudalism, despite it being a terrible socioeconomic system, came into vogue in part because it wasn’t capitalism. We must remember that the 19th century saw industrial capitalism at its newest and rawest. Unregulated, it destroyed every natural resource in sight and subjected people, including children, to horrific labor conditions. It still does, and will probably get worse, but the difference is, we’re somewhat used to it by now. The shock’s worn off.

All that upheaval I talked about earlier made people long for a simplicity they felt was missing. This took many different forms. The rapid advances of secular society and the incursion of science into belief made many crave a greater religiosity. At a time when the effects of wage labor on the family had made womanhood a contested territory, many appeals were made to a divine and innocent feminine a la Lady Guinevere. Urbanization made many wish for a quieter world with less hustle and bustle and better air. These sentiments are not without their reasons. Technological and socioeconomic changes still make us feel alienated and destabilized, hence why there are so many medieval revivals even in our own time. (Chappell Roan of Arc anyone?) Hell, our own rich people aren’t so different from Ludwig either. Mark Zuckerburg owns a Hawaiian island and basically controls the fates of the people who live there lord-in-the-castle-style.

Given all this, it’s not surprising that of the products of the Middle Ages, perhaps chivalric romance was and remains the most popular. While never a real depiction of medieval life (no, all those knights were not dying on the behalf of pretty ladies), such stories of good men and women and their grand adventures still capture the imaginations of children and adults alike. (You will find no greater fan of Parzival than yours truly.) It’s also no wonder the nature of the romance, with its paternalistic patriarchy, its Christianity, its sentimentality around courtly love, and most of all its depiction of the ruling class as noble and benevolent – appealed to someone like Ludwig, both as a quirked-up individual and a member of his class.

It follows, then, that any artist capable of synthesizing all these elements, fears, and desires into an aesthetically transcendent package would’ve had a great effect on such a man. One did, of course. His name was Richard Wagner.

In our next essay, we will witness one of the most astonishing cases of kitsch imitating art. But before there could be Neuschwanstein Castle, there had to be this pretty little opera called Lohengrin.

(1) If you want to get a head start on the Wagner stuff, I’ve been writing about the Ring cycle lately on my Substack: https://www.late-review.com/p/essays-on-wagners-ring-part-1-believing

(2) My favorite insane nationalist claim comes from the 1960s, when the Slovene-American historian Joseph Felicijan claimed that the US’s democracy was based off the 13th century ritual of enthronement practiced by the Dukes of Carinthia because Thomas Jefferson owned a copy of Jean Bodin’s Les six livres de la Republique (1576) in which the rite was mentioned. For more information, see Peter Štih’s book The Middle Ages Between the Alps and the Northern Adriatic (p. 56 for the curious.)

If you like this post and want more like it, support McMansion Hell on Patreon for as little as $1/month for access to great bonus content including a discord server, extra posts, and livestreams.

Not into recurring payments? Try the tip jar! Student loans just started back up!

New on Patreon: New Jersey Bonus Post (5 additional, “wonderful” rooms!“

New on Patreon: New Jersey Bonus Post (5 additional, “wonderful” rooms!“

new jersey “19th century” “eclecticism”

It’s always funny to me when new wealth tries to imitate old wealth, but in a very specific way: by trying to reproduce old ways of building that are no longer viable via mass produced building materials and contractors who are better than average but still not quite in the legion of the bespoke. It’s rarely the case that houses are fully “custom” these days – the amalgamation of all the different parts in a new formation is the “customization” at work. As we can see in this example, this is a truth that is often covered up by excessive decorating.

This 5 bedroom, 6.5 bathroom house, built in 1997 (shocker) will run you an extremely reasonable $3.5 million big ones, but I say extremely reasonable because it wants to be a $10 million house but doesn’t quite get there - after all, it’s made with drywall. The architectural style is not really anything in particular – though the front entrance would like to recall the Tudors. Really it is trying to emulate an existing pastiche style, namely the eclecticism of the 19th century. It also doesn’t do this well.

No stately manor is complete without dueling staircases. Also, I don’t know how to explain it, but every room in this house longs to be a bathroom. Or a powder room. A really big one. It’s probably the floor, and the wallpaper. This is just the appetizer for the main attraction:

Jules Verne larping is so rare in McMansion Hell that you have to commend them for trying. I’m kind of obsessed.

This room is so important to me. It’s like if an Olin Mills (dating myself here) set was an entire room. A sense of watching someone in one’s own house, performing “dinner.” Also I would slay as the swan knight, I have to say, so I get it.

What happened to baskets hanging from the ceiling and powder blue walls and porcelain lined up on the picture rail?

I have seen columns terminating into soffits that would make Scamozzi cry.

In Big America bathing and lavishing is a spectator sport.

Ok, again, the palette of this house is basically The Polar Express mixed with a very bizarre hotel lobby.

The chimney hole is sending me because that does appear to be a working chimney. Like, can you see the smoke come out? Who knows!

Anyway, happy Thanksgiving to everyone, and I’m especially thankful to the folks who sponsor me on Patreon! If you want to see more scenes from this house, that’s the place to do it!

If you like this post and want more like it, support McMansion Hell on Patreon for as little as $1/month for access to great bonus content including a discord server, extra posts, and livestreams.

Not into recurring payments? Try the tip jar! Student loans just started back up!

2007-core nostalgia extravaganza

Quick PSA: someone on Facebook is apparently impersonating me using an account called “McMansion Hell 2.0” – If you see it, please report! Thanks!

Howdy folks! I hope if you were born between 1995 and 2001 you’re ready for some indelible pre-recession vibes because I think this entire house, including the photos have not been touched since that time.

This Wake County, NC house, built in 2007, currently boasts a price tag of 1.7 million smackaroos. Its buxom 4 bedrooms and 4.5 baths brings the total size to a completely reasonable and not at all housing-bubble-spurred 5,000 square feet.

I know everyone (at least on TikTok) thinks 2007 and goes immediately to the Tuscan theming trend that was super popular at the time (along with lots of other pseudo-euro looks, e.g. “french country” “tudor” etc). In reality, a lot of decor wasn’t particularly themed at all but more “transitional” which is to say, neither contemporary nor super traditional. This can be pulled off (in fact, it’s where the old-school Joanna Gaines excelled) but it’s usually, well, bland. Overwhelmingly neutral. Still, these interiors stir up fond memories of the last few months before mommy was on the phone with the bank crying.

I think I’ve seen these red/navy/beige rugs in literally every mid-2000s time capsule house. I want to know where they came from first and how they came to be everywhere. My mom got one from Kirkland’s Home back in the day. I guess the 2010s equivalent would be those fake distressed overdyed rugs.

I hate the kitchen bench trend. Literally the most uncomfortable seating imaginable for the house’s most sociable room. You are not at a 19th century soda fountain!!! You are a salesforce employee in Ohio!!!

You could take every window treatment in this house and create a sampler. A field guide to dust traps.

Before I demanded privacy, my parents had a completely beige spare bedroom. Truly random stuff on the walls. An oversized Monet poster they should have kept tbh. Also putting the rug on the beige carpet here is diabolical.

FYI the term “Global Village Coffeehouse” originates with the design historian Evan Collins whose work with the Consumer Aesthetics Research Institute!!!!

This photo smells like a Yankee Candle.

Ok, now onto the last usable photo in the set:

No but WHY is the house a different COLOR??????? WHAT?????

Alright, I hope you enjoyed this special trip down memory lane! Happy (American) Labor Day Weekend! (Don’t forget that labor is entitled to all it creates!)

If you like this post and want more like it, support McMansion Hell on Patreon for as little as $1/month for access to great bonus content including a discord server, extra posts, and livestreams.

Not into recurring payments? Try the tip jar! Student loans just started back up!

namesake mcmansion

Howdy folks! Today’s McMansion is very special because a) we’re returning to Maryland after a long time and b) because the street this McMansion is on is the same as my name. (It was not named after me.) Hence, it is my personal McMansion, which I guess is somewhat like when people used to by the name rights to stars even though it was pretty much a scam. (Shout out btw to my patron Andros who submitted this house to be roasted live on the McMansion Hell Patreon Livestream)

As far as namesake McMansions go, this one is pretty good in the sense that it is high up there on the ol’ McMansion scale. Built in 2011, this psuedo-Georgian bad boy boasts 6 bedrooms and 9.5 baths, all totaling around 12,000 square feet. It’ll run you 2.5 million which, safe to say, is exponentially larger than its namesake’s net worth.

Now, 2011 was an anonymous year for home design, lingering in the dead period between the 2008 black hole and 2013 when the market started to actually, finally, steadily recover. As a result a lot of houses from this time basically look like 2000s McMansions but slightly less outrageous in order to quell recession-era shame.

I’m going to be so serious here and say that the crown molding in this room is a crime against architecture, a crime against what humankind is able to accomplish with mass produced millwork, and also a general affront to common sense. I hate it so much that the more I look at it the more angry I become and that’s really not healthy for me so, moving on.

Actually, aside from the fake 2010s distressed polyester rug the rest of this room is literally, basically Windows 98 themed.

I feel like the era of massive, hefty sets of coordinated furniture are over. However, we’re the one’s actually missing out by not wanting this stuff because we will never see furniture made with real wood instead of various shades of MDF or particleboard ever again.

This is a top 10 on the scale of “least logical kitchen I’ve ever seen.” It’s as though the designers engineered this kitchen so that whoever’s cooking has to take the most steps humanly possible.

Do you ever see a window configuration so obviously made up by window companies in the 1980s that you almost have to hand it to them? You’re literally letting all that warmth from the fire just disappear. But whatever I guess it’s fine since we basically just LARP fire now.

Feminism win because women’s spaces are prioritized in a shared area or feminism loss because this is basically the bathroom vanity version of women be shopping? (It’s the latter.)

I couldn’t get to all of this house because there were literally over a hundred photos in the listing but there are so many spaces in here that are basically just half-empty voids, and if not that then actually, literally unfinished. It’s giving recession. Anyway, now for the best part:

Not only is this the NBA Backrooms but it’s also just a nonsensical basketball court. Tile floors? No lines? Just free balling in the void?

Oh, well I bet the rear exterior is totally normal.

Not to be all sincere about it but much like yours truly who has waited until the literal last second to post this McMansion, this house really is the epitome of hubris all around. Except the house’s hubris is specific to this moment in time, a time when gas was like $2/gallon. It’s climate hubris. It’s a testimony to just how much energy the top 1% of income earners make compared to the rest of us. I have a single window unit. This house has four air conditioning condensers. That’s before we get to the monoculture, pesticide-dependent lawn or the three car garage or the asphalt driveway or the roof that’ll cost almost as much as the house to replace. We really did think it would all be endless. Oops.

If you like this post and want more like it, support McMansion Hell on Patreon for as little as $1/month for access to great bonus content including a discord server, extra posts, and livestreams.

Not into recurring payments? Try the tip jar! Student loans just started back up!

the motel room, or: on datedness

I.

Often I find myself nostalgic for things that haven’t disappeared yet. This feeling is enhanced by the strange conviction that once I stop looking at these things, I will never see them again, that I am living in the last moment of looking. This is sense is strongest for me in the interiors of buildings perhaps because, like items of clothing, they are of a fashionable nature, in other words, more impermanent than they probably should be.

As I get older, to stumble on something truly dated, once a drag, is now a gift. After over a decade of real estate aggregation and the havoc it’s wreaked on how we as a society perceive and decorate houses, if you’re going to Zillow to search for the dated (which used to be like shooting fish in a barrel), you’ll be searching aimlessly, for hours, to increasingly no avail, even with all the filters engaged. (The only way to get around this is locational knowledge of datedness gleaned from the real world.) If you try to find images of the dated elsewhere on the internet, you will find that the search is not intuitive. In this day and age, you cannot simply Google “80s hotel room” anymore, what with the disintegration of the search engine ecosystem and the AI generated nonsense and the algorithmic preference for something popular (the same specific images collected over and over again on social media), recent, and usually a derivative of the original search query (in this case, finding material along the lines of r/nostalgia or the Backrooms.)

To find what one is looking for online, one must game the search engine with filters that only show content predating 2021, or, even better, use existing resources (or those previously discovered) both online and in print. In the physical world of interiors, to find what one is looking for one must also now lurk around obscure places, and often outside the realm of the domestic which is so beholden to and cursed by the churn of fashion and the logic of speculation. Our open world is rapidly closing, while, paradoxically, remaining ostensibly open. It’s true, I can open Zillow. I can still search. In the curated, aggregated realm, it is becoming harder and harder to find, and ultimately, to look.

But what if, despite all these changes, datedness was never really searchable? This is a strange symmetry, one could say an obscurity, between interiors and online. It is perhaps unintentional, and it lurks in the places where searching doesn’t work, one because no one is searching there, or two, because an aesthetic, for all our cataloguing, curation, aggregation, hoarding, is not inherently indexable and even if it was, there are vasts swaths of the internet and the world that are not categorized via certain - or any - parameters. The internet curator’s job is to find them and aggregate them, but it becomes harder and harder to do. They can only be stumbled upon or known in an outside, offline, historical or situational way. If to index, to aggregate, is, or at least was for the last 30 years, to profit (whether monetarily or in likes), then to be dated, in many respects, is the aesthetic manifestation of barely breaking even. Of not starting, preserving, or reinventing but just doing a job.

We see this online as well. While the old-web Geocities look and later Blingee MySpace-era swag have become aestheticized and fetishized, a kind of naive art for a naive time, a great many old websites have not received the same treatment. These are no less naive but they are harder to repackage or commodify because they are simple and boring. They are not “core” enough.

As with interiors, web datedness can be found in part or as a whole. For example, sites like Imgur or Reddit are not in and of themselves dated but they are full of remnants, of 15-year old posts and their “you, sir, have won the internet” vernacular that certainly are. Other websites are dated because they were made a long time ago by and for a clientele that doesn’t have a need or the skill to update (we see this often with Web 2.0 e-commerce sites that figured out how to do a basic mobile page and reckoned it was enough). The next language of datedness, like the all-white landlord-special interior, is the default, clean Squarespace restaurant page, a landing space that’s the digital equivalent of a flyer, rarely gleaned unless someone needs a menu, has a food allergy or if information about the place is not available immediately from Google Maps. I say this only to maintain that there is a continuity in practices between the on- and off-line world beyond what we would immediately assume, and that we cannot blame everything on algorithms.

But now you may ask, what is, exactly, datedness? Having spent two days in a distinctly dated hotel room, I’ve decided to sit in utter boredom with the numinous past and try and pin it down.

II.

I am in an obscure place. I am in Saint-Georges, Quebec, Canada, on assignment. I am staying at a specific motel, the Voyageur. By my estimation the hotel was originally built in the late seventies and I’d be shocked if it was older than 1989. The hotel exterior was remodeled sometime in the 2000s with EIFS cladding and beige paint. Above is a picture of my room, which, forgive me, is in the process of being inhabited. American (and to a lesser extent Canadian) hotel rooms are some of the most churned through, renovated spaces in the world, and it’s pretty rare, unless you’re staying in either very small towns or are forced by economic necessity to stay at real holes in the wall, to find ones from this era. The last real hitter for me was a 90s Day’s Inn in the meme-famous Breezewood, PA during the pandemic.

At first my reaction to seeing the room was cautionary. It was the last room in town, and certainly compared to other options, probably not the world’s first choice. However, after staying in real, genuine European shitholes covering professional cycling I’ve become a class-A connoisseur of bad rooms. This one was definitively three stars. A mutter of “okay time to do a quick look through.” But upon further inspection (post-bedbug paranoia) I came to the realization that maybe the always-new brainrot I’d been so critical of had seeped a teeny bit into my own subconscious and here I was snubbing my nose at a blessing in disguise. The room is not a bad room, nor is it unclean. It’s just old. It’s dated. We are sentimental about interiors like this now because they are disappearing, but they are for my parents what 2005 beige-core is for me and what 2010s greige will become for the generation after. When I’m writing about datedness, I’m writing in general using a previous era’s examples because datedness, by its very nature, is a transitional status. Its end state is the mixed emotion of seeing things for what they are yet still appreciating them, expressed here.

Datedness is the period between vintage and contemporary. It is the sentiment between quotidian and subpar. It is uncurated and preserved only by way of inertia, not initiative. It gives us a specific feeling we don’t necessarily like, one that is deliberately evoked in the media subcultures surrounding so-called “liminal” spaces: the fuguelike feeling of being spatially trapped in a time while our real time is passing. Datedness in the real world is not a curated experience, it is only what was. It is different from nostalgia because it is not deliberately remembered, yearned for or attached to sweetness. Instead, it is somehow annoying. It is like stumbling into the world of adults as a child, but now you’re the adult and the child in you is disappointed. (The real child-you forgot a dull hotel room the moment something more interesting came along.) An image of my father puts his car keys on the table, looks around and says, “It’ll do.” We have an intolerance for datedness because it is the realization of what sufficed. Sufficiency in many ways implies lack.

However, for all its datedness, many, if not all, of the things in this room will never be seen again if the room is renovated. They will become unpurchaseable and extinct. Things like the bizarrely-patterned linoleum tile in the shower, the hose connecting to the specific faucet of the once-luxurious (or at least middling) jacuzzi tub whose jets haven’t been exercised since the fall of the Berlin Wall. The wide berth of the tank on the toilet. There is nothing, really, worth saving about these things. Even the most sentimental among us wouldn’t dare argue that the items and finishes in this room are particularly important from a design or historical standpoint. Not everything old has a patina. They’re too cheaply made to salvage. Plastic tile. Bowed plywood. The image-artifacts of these rooms, gussied up for Booking dot com, will also, inevitably disappear, relegated to the dustheap of web caches and comments that say “it was ok kinda expensive but close to twon (sic).” You wouldn’t be able to find them anyway unless you were looking for a room.

One does, of course, recognize a little bit of design in what’s here. Signifiers of an era. The wood-veneer of the late 70s giving way to the pastel overtones of the 80s. Perhaps even a slow 90s. The all-in-one vanity floating above the floor, a modernist basement bathroom hallmark. White walls as a sign of cleanliness. Gestures, in the curved lines of the nightstands, towards postmodernity. Metallic lamp bases with wide-brimmed shades, a whisper of glamor. A kind of scalloped aura to the club chairs. The color teal mediated through hundreds if not thousands of shoes. Yellowing plastic, including the strips of “molding” that visually tie floor to wall. These are remnants (or are they intuitions?) of so many movements and micromovements, none of them definite enough to point to the influence of a single designer, hell, even of a single decade, just strands of past-ness accumulated into one thread, which is cheapness. Continuity exists in the materials only because everything was purchased as a set from a wholesale catalog.

In some way a hotel is supposed to be placeless. Anonymous. Everything tries to be that way now, even houses. Perhaps because we don’t like the way we spy on ourselves and lease our images out to the world so we crave the specificity of hotel anonymity, of someplace we move through on our way to bigger, better or at least different things. The hotel was designed to be frictionless but because it is in a little town, it sees little use and because it sees little use, there are elements that can last far longer than they were intended and which inadvertently cause friction. (The janky door unlocks with a key. The shower hose keeps coming out of the faucet. It’s deeply annoying.)

Lack of wear and lack of funds only keep them that way. Not even the paper goods of the eighties have been exhausted yet. Datedness is not a choice but an inevitability. Because it is not a choice, it is not advertised except in a utilitarian sense. It is kept subtle on the hotel websites, out of shame. Because it does not subscribe to an advertiser’s economy of the now, of the curated type rather than the “here is my service” type, it disappears into the folds of the earth and cannot be searched for in the way “design” can. It can only be discovered by accident.

When I look at all of these objects and things, I do so knowing I will never see them again, at least not all here together like this, as a cohesive whole assembled for a specific purpose. I don’t think I’ll ever have reason to come back to this town or this place, which has given me an unexpected experience of being peevish in my father’s time. Whenever I end up in a place like this, where all is as it was, I get the sense that it will take a very long time for others to experience this sensation again with the things my generation has made. The machinations of fashion work rapaciously to make sure that nothing is ever old, not people, not rooms, not items, not furniture, not fabrics, not even design, that old matron who loves to wax poetic about futurity and timelessness. The plastic-veneered particleboard used here is now the bedrock of countless landfills. Eventually it will become the chemical-laced soil upon which we build our condos. It is possible that we are standing now at the very last frontier of our prior datedness. The next one has not yet elided. It’s a special place. Spend a night. Take pictures.

If you like this post and want more like it, support McMansion Hell on Patreon for as little as $1/month for access to great bonus content including a discord server, extra posts, and livestreams.

Not into recurring payments? Try the tip jar! Student loans just started back up!