Cyberscript6 hours agohttps://cyberscript.devEasy to learn with dynamic and static typing options.Concurrency supported via fibers (co-routines).Memory safe by design.FFI and embeddable via libcyber and C-ABI compatibility.more...
How to stop Claude from saying load-bearing19 days agohttps://jola.dev/posts/how-to-stop-claude-from-saying-load-bearingUse a hook script to replace Claude's repetitive phrases with custom ones.Create a Python script with word replacements and save it as an executable in ~/.claude/hooks/.Configure settings.json to enable the MessageDisplay hook for automatic phrase substitution.
Reducing Assumptions, Exploding Your Codea month agohttps://ryelang.org/blog/posts/reducing_assumptions_but_exploding/Scripts often assume happy paths but need error handling for real-world imperfections.An example script downloads a PDF using an ID argument and API token, with error-prone assumptions.Adding basic validation in Python increases complexity and disrupts code flow, while Rye maintains structure.Full error handling in Python results in lengthy code, whereas Rye's design keeps it concise with failure as a normal value.