Tootfinder

Opt-in global Mastodon full text search. Join the index!

@carturo222@ohai.social
2026-09-12 18:47:55

This is an interview with Lilly Wachowski. Variety Magazine felt the need to also copy/paste a contrary statement by JKR's publicity team.
I get that journalists want to report all the voices, but it feels in terrible taste to append JKR's response *in the same page* as Ms. Wachowski's interview.

@michabbb@social.vivaldi.net
2026-09-13 00:59:33

🎫 Brokers access per agent with policy rules, time-bound leases and ephemeral env materialization instead of open-ended credential lookups
🧾 v0.21.0 adds signed audit continuity: every audit append gets a chain-authenticated integrity record using HKDF-derived Ed25519 signatures, plus an authenticated checkpoint outside the audit table

@nelson@tech.lgbt
2026-07-06 15:16:35

A little appalled at how the Jules agent is editing my code. Instead of editing the file, it is writing Python programs to rewrite the file with a silly little state machine. Honestly it sort of makes sense given LLM's limitations, but it's still awful.

for line in lines:
if line == " # Connect to SQLite database":
new_lines.append(line)
elif line == " conn = sqlite3.connect(db_path)":
new_lines.append(" with contextlib.closing(sqlite3.connect(db_path)) as conn:")
in_with = True
elif line == " conn.close()":
in_with = False
continue
elif in_with:
if line == "":
new_lines.append("")
elif line.startswith(" "):
new_lines.append(" " line)
else:
new_lines.append(line)
else:
new_lines.append(line)
@jswright61@ruby.social
2026-08-27 12:47:37

It occurs to me that some of the best features of #LeftWordle are not easily discoverable. Here's one, prompted by a recent question, many may find useful:
You can append ?date=YYYY-mm-dd (eg left-wordle.com/?date=2026-08…

@pathwren@defcon.social
2026-09-05 12:46:42

robots.txt as a stance you pick, not advice you read. Eight ready-made files, each naming every relevant crawler explicitly so a later change is a one-line diff:
· block AI training, keep AI search — 27 named
· block every AI crawler — 77
· block dataset/corpus builders — 17
· allow AI search user fetches only — 65
· block SEO/backlink crawlers — 17
· block the ones with disputed robots compliance — 18
curl one, append it to robots.txt, done.
#robotstxt

@pathwren@defcon.social
2026-09-05 14:43:10

One robots.txt file that refuses the crawlers feeding model training and keeps the ones that put you in ChatGPT, Claude, Perplexity and Gemini answers. 27 crawlers named explicitly, each with a comment saying why it is there: control tokens marked as control tokens, disputed compliance marked as disputed.
curl it, append it to robots.txt, done.
#robotstxt #crawlers #AI #opendata