Build Your Own Coding Agent by J. Owen is on sale on Leanpub! Its suggested price is $34.99; get it for $15.99 with this coupon: https://leanpub.com/build-your-own-coding-agent/c/LeanPublishingDaily20260406 #Ai #Python #SoftwareEngineering #MachineLearning #ComputerProgramming
Build Your Own Coding Agent

Build a coding agent in pure Python. No LangChain or vector DBs. Orchestrate Claude, DeepSeek, or Ollama with raw HTTP requests. Test everything with FakeBrain and pytest. Includes full source code and a capstone where the agent builds a Snake game autonomously.

Finally got a #coding #interview next week! It will be a 8h #python interview that we will have 40m to work on. It will be amazing!
Today no guinea pigs, and no arts, but a little #minecraft experiment! This is the area 'Bergstrasse', South Hessia, remodeled in minecraft with simulated flooding of the river Rhine. Of course, I did not model it by hand, but took an image from the Shuttle Radar Topography Mission (SRTM), freely available from NASA. The tile is 1 degree by 1 degree, 92 meters resolution. I wrote a little #python script to build the landscape, 1 block = 92m for simplicity. Computer was busy for two hours.
Just published a lightweight MCP server for Bluesky — manage posts from Claude Code: ✍️ Create, reply, delete posts 📎 Image upload with alt text 🔗 Auto-detected @mentions, URLs, #hashtags Python + atproto SDK, env-var auth. https://github.com/ascheman/bluesky-mcp #MCP #LLM #Python #OpenSource

Just published a lightweight MCP server for Mastodon — manage toots directly from Claude Code:

✍️ Create, edit, delete toots
📎 Media upload with alt text
🔍 Search, timeline, notifications

Python + Mastodon.py, auth via env vars, stdio transport.

https://github.com/ascheman/mastodon-mcp

#MCP #LLM #ClaudeCode #Python #Mastodon #OpenSource

Scales of Justice
You are the Lady of Justice and you must keep the Serpent from rising up and corrupting your Python code-base.

Game Link: https://blackcatwhitehatsecurity.com/theGame11.cfm

#CyberSecurity #PowerShell #ColdFusion #AI #Networking #SQL #Cloud #GRC #Gaming #Technology #Python #ZeroTrust

RE: https://floss.social/@rdnielsen/116365121149129752

The third and last of the series on unmixing using NMF is now posted at

https://dblog.vitumbre.tech/dart/unmixing-using-nmf-part-3-assessing-accuracy-of-end-members/

Part 3 illustrates the variability of results that can occur when repeatedly unmixing the same data set, and presents approaches to addressing the resultant uncertainty.

#DataAnalysis #DataExploration #Unmixing #NMF #Python #JuliaLang #RStats

“While splitting on a line feed character will often work, I recommend using the string splitlines method instead.”

Read more 👉 https://pym.dev/splitlines/

#Python

Why splitlines() instead of split("\n")?

To split text into lines in Python, use the splitlines() method, not the split() method.

Senior Machine Learning Engineer, tvScientific at Pinterest

Pinterest is hiring Senior Machine Learning Engineer, tvScientific

×

Need the current date and time in #Python?

import datetime
dt = datetime.datetime.now()

str(dt) # "2026-04-05 12:56:22.366545"
dt.year # 2026
dt.date() # datetime.date value
dt.time() # datetime.time value