Sean Coates
banner
sean.scoat.es.ap.brid.gy
Sean Coates
@sean.scoat.es.ap.brid.gy
Tricking software into working since the 1980s.

I do all kinds of tech things. Here you'll find: rants, ops/devops, web, iOS, microcontrollers, electronics, food, beer […]

🌉 bridged from ⁂ https://scoat.es/@sean, follow @ap.brid.gy to interact
@ramsey @kboyd “push to forcibly inject reality" would have been useful at some meetings…
November 19, 2025 at 5:42 PM
@Mutedog @alessandro I wish it had hands with which to be caught redly.
November 19, 2025 at 12:59 AM
@Mutedog I agree, partly; ( @alessandro said something similar).

There was definitely a more stable era sometime between when we mostly stopped running our own servers and… a month ago, though.
November 19, 2025 at 12:57 AM
Calling it. 😢
November 15, 2025 at 8:59 PM
@ramsey Softbank still has other AI holdings, so I'm not totally sure. None of this feels good.
November 11, 2025 at 4:54 PM
@evan Maybe @Jeff (or a little farther away @tantramar ) would have a good connection for you.
November 10, 2025 at 11:01 PM
Okay! Got it small enough to post here!

```swift
struct NoCrashy: ~Copyable {
let record: Bool
init?() {
self.record = true
guard false else { return nil }
}
}
```

```swift
struct Crashy: ~Copyable {
let record: Bool
init?() {
guard false else { return nil }
// also happens if this throws […]
Original post on scoat.es
scoat.es
November 7, 2025 at 2:03 AM
#swift Compiler Golf:
Just scored a good one.

❯ swiftly run swiftc Crashy.swift 2>&1 \
| grep 'and include the crash backtrace' \
&& git commit -m"golf" Crashy.swift
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
[main 7e68cdd] golf […]
Original post on scoat.es
scoat.es
November 7, 2025 at 1:41 AM