import anthropic
client = anthropic.Anthropic()
message = client.messages.create(
model='claude-fable-5',
max_tokens=128000,
messages=[
{'role': 'user', 'content': 'say "Hello World"'}
],
)
print(message.content[0].text)
- 0 Posts
- 5 Comments
Joined 1 year ago
Cake day: June 28th, 2025
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
I avoided all the effort of going to read the docs and relearn something I very rarely need.
This is the same thing as blindly copy-pasting StackOverflow snippets; which people used to think was a bad thing.
sobchak@programming.devtoMicroblog Memes@lemmy.world•***hardcore leftist ideology***English
2·1 day agoWhen I was a TA, I’m pretty sure 1/3 if the students plagiarized their programming assignments. Copy/pasting suspect snippets into Google would often bring up near-verbatim results, and a similarity tool would often reveal 3 students that either worked together or copied from the same source.
sobchak@programming.devto
Meshtastic@mander.xyz•A $35 Solar Mesh Node Anyone Can Build: The People’s Repeater [Black Flag Civilian]
1·1 month agoThat doesn’t necessarily mean there are no nodes. I’ve taken a node on road trips, and I’ve seen a lot of advertisements from nodes in small towns where nothing was on the official map.

“Can’t turn your brain off,” and not reading the docs seems contradictory to me. I.e. if you don’t even know the contract of the specific methods the code is calling, you don’t really know if it’s correct or not.