HackerTrans
TopNewTrendsCommentsPastAskShowJobs

danebalia

45 karmajoined 2 года назад
Enabling teams, building solutions and scoping outcomes

Submissions

Viability of Local Models for Coding

martinfowler.com
1 points·by danebalia·6 дней назад·0 comments

CI/CD Is Dead

youtube.com
9 points·by danebalia·2 месяца назад·2 comments

Anthropic's Boris Cherny: Coding is solved what's next

youtube.com
3 points·by danebalia·2 месяца назад·0 comments

My $600 Mac Mini Runs a 35B AI Model

thoughts.jock.pl
4 points·by danebalia·3 месяца назад·3 comments

Starving Genies

tidyfirst.substack.com
2 points·by danebalia·3 месяца назад·0 comments

[untitled]

1 points·by danebalia·3 месяца назад·0 comments

Claude Mythos: A Cyber Threat

youtube.com
9 points·by danebalia·4 месяца назад·0 comments

AI: Amazon orders 90-day reset after code mishaps cause lost orders

businessinsider.com
4 points·by danebalia·4 месяца назад·3 comments

Papers: A minimal AI/ML research reader

github.com
2 points·by danebalia·4 месяца назад·0 comments

MCP Security 2026: 30 CVEs in 60 Days

heyuan110.com
2 points·by danebalia·4 месяца назад·4 comments

Common Worflow Patterns for AI Agents

claude.com
4 points·by danebalia·4 месяца назад·1 comments

GitHub Copilot: Model Routing Error

devactivity.com
1 points·by danebalia·4 месяца назад·1 comments

OpenAI: We built a computer environment for agents

openai.com
3 points·by danebalia·4 месяца назад·1 comments

Hermes Agent: The self-improving AI agent

github.com
3 points·by danebalia·4 месяца назад·1 comments

SuperPowers: Agentic skills framework that works

github.com
4 points·by danebalia·4 месяца назад·1 comments

The Agency: Meticulously crafted AI agent personalities

github.com
2 points·by danebalia·4 месяца назад·1 comments

Request Copilot code review from GitHub CLI

github.blog
4 points·by danebalia·4 месяца назад·1 comments

Where does engineering go? Retreat findings and insights [pdf]

thoughtworks.com
81 points·by danebalia·4 месяца назад·32 comments

MCP Skills explained simply [video]

youtube.com
2 points·by danebalia·4 месяца назад·2 comments

Diary of a CEO meets Christian Expert [video]

youtube.com
1 points·by danebalia·4 месяца назад·1 comments

comments

danebalia
·4 месяца назад·discuss
Amazon is beefing up internal guardrails after recent outages hit the company’s e-commerce operation, including one disruption tied to its AI coding assistant Q.

Dave Treadwell, Amazon’s SVP of e-commerce services, told staff on Tuesday that a “trend of incidents” emerged since the third quarter of 2025, including “several major” incidents in the last few weeks, according to an internal document obtained by B-17. At least one of those disruptions were tied to Amazon’s AI coding assistant Q, while others exposed deeper issues, another internal document explained.
danebalia
·4 месяца назад·discuss
I gave up on emacs and vim. Its like fighting bad design. Im long time users of both, but no plugins sufficiently provide a quality integrated experience with AI, MCP and agents. Emacs and neovim AFAIK are not designed for streaming. And with what each of them do, you can just build an IDE yourself (Claude Code). I combined with Vim bindings, spacemacs interface and built an IDE from scratch in one week with Rust. Its my daily drivers. This is true customization.
danebalia
·4 месяца назад·discuss
30 CVEs. 60 days. 437,000 compromised downloads. The Model Context Protocol went from “promising open standard” to “active threat surface” faster than anyone predicted.

Between January and February 2026, security researchers filed over 30 CVEs targeting MCP servers, clients, and infrastructure. The vulnerabilities ranged from trivial path traversals to a CVSS 9.6 remote code execution flaw in a package downloaded nearly half a million times. And the root causes were not exotic zero-days — they were missing input validation, absent authentication, and blind trust in tool descriptions.

If you are running MCP servers in production — or even just experimenting with them in Claude Code or Cursor — this article is your field guide to what went wrong and how to protect yourself.
danebalia
·4 месяца назад·discuss
AI agents make decisions autonomously, and workflows are how you bring structure to that autonomy. They establish execution patterns that channel agent capabilities toward complex problems requiring coordinated steps, predictable outcomes, and orchestrated timing.

When you need multiple agents working together, the real decision is which pattern fits your problem.

We've worked with dozens of teams building AI agents, and in production, three patterns cover the vast majority of use cases: sequential, parallel, and evaluator-optimizer.

Each solves different problems, and picking the wrong one costs you in latency, tokens, or reliability. This piece breaks down all three, with guidance on when each fits and how to combine them.
danebalia
·4 месяца назад·discuss
GitHub Copilot has become an indispensable companion for many developers, promising to elevate productivity and streamline coding workflows. Yet, a recent community discussion on GitHub, initiated by user dddyfx, has brought to light a perplexing issue: users attempting to select advanced AI models like Opus 4.5 or 4.6 find their requests silently defaulting to Sonnet 4.5. This behavior isn't just a minor annoyance; it sparks critical questions within the developer community about control over AI models and its direct impact on development performance.
danebalia
·4 месяца назад·discuss
We're currently in a shift from using models, which excel at particular tasks, to using agents capable of handling complex workflows. By prompting models, you can only access trained intelligence. However, giving the model a computer environment can achieve a much wider range of use cases, like running services, requesting data from APIs, or generating more useful artifacts like spreadsheets or reports.

A few practical problems emerge when you try to build agents: where to put intermediate files, how to avoid pasting large tables into a prompt, how to give the workflow network access without creating a security headache, and how to handle timeouts and retries without building a workflow system yourself.

Instead of putting it on developers to build their own execution environments, we built the necessary components to equip the Responses API (opens in a new window) with a computer environment to reliably execute real-world tasks.

OpenAI’s Responses API, together with the shell tool and a hosted container workspace, is designed to address these practical problems. The model proposes steps and commands; the platform runs them in an isolated environment with a filesystem for inputs and outputs, optional structured storage (like SQLite), and restricted network access.
danebalia
·4 месяца назад·discuss
The self-improving AI agent built by Nous Research. It's the only agent with a built-in learning loop — it creates skills from experience, improves them during use, nudges itself to persist knowledge, searches its own past conversations, and builds a deepening model of who you are across sessions. Run it on a $5 VPS, a GPU cluster, or serverless infrastructure that costs nearly nothing when idle. It's not tied to your laptop — talk to it from Telegram while it works on a cloud VM.
danebalia
·4 месяца назад·discuss
How it works It starts from the moment you fire up your coding agent. As soon as it sees that you're building something, it doesn't just jump into trying to write code. Instead, it steps back and asks you what you're really trying to do.

Once it's teased a spec out of the conversation, it shows it to you in chunks short enough to actually read and digest.

After you've signed off on the design, your agent puts together an implementation plan that's clear enough for an enthusiastic junior engineer with poor taste, no judgement, no project context, and an aversion to testing to follow. It emphasizes true red/green TDD, YAGNI (You Aren't Gonna Need It), and DRY.

Next up, once you say "go", it launches a subagent-driven-development process, having agents work through each engineering task, inspecting and reviewing their work, and continuing forward. It's not uncommon for Claude to be able to work autonomously for a couple hours at a time without deviating from the plan you put together.

There's a bunch more to it, but that's the core of the system. And because the skills trigger automatically, you don't need to do anything special. Your coding agent just has Superpowers.
danebalia
·4 месяца назад·discuss
What Is This? Born from a Reddit thread and months of iteration, The Agency is a growing collection of meticulously crafted AI agent personalities. Each agent is:

Specialized: Deep expertise in their domain (not generic prompt templates) Personality-Driven: Unique voice, communication style, and approach Deliverable-Focused: Real code, processes, and measurable outcomes Production-Ready: Battle-tested workflows and success metrics Think of it as: Assembling your dream team, except they're AI specialists who never sleep, never complain, and always deliver.
danebalia
·4 месяца назад·discuss
You can now request a review from GitHub Copilot directly from your terminal using the GitHub CLI. Whether you’re editing an existing pull request or creating a new one, Copilot is available as a reviewer option in gh pr edit and gh pr create. There’s no need to switch to the browser.
danebalia
·4 месяца назад·discuss
[dead]
danebalia
·4 месяца назад·discuss
Agentic AI and Claude Code are having a moment, thanks in no small part to agent skills. What does this mean for MCP? In his newest lightboard, Tim Berglund sorts it out. Along the way, he recaps what's new in the MCP spec (streamable HTTP, OAuth 2.1, and the quiet decline of the Resource API), and he breaks down what skills are and where they overlap with MCP. The short answer: local coding agents can lean on skills, but agentic microservices still very much need MCP.
danebalia
·4 месяца назад·discuss
No.1 Christianity Expert: The Truth About Christianity! The Case For Jesus (Historian's Proof)
danebalia
·4 месяца назад·discuss
AI coding assistants default to generic patterns from their training data. I propose treating project context as infrastructure—versioned files that prime the model before each session—rather than relying on ad-hoc copy-pasting. This is essentially manual RAG (Retrieval-Augmented Generation), and I believe it fundamentally changes the quality of AI-generated code.
danebalia
·5 месяцев назад·discuss
Software teams often face a false choice: move fast and accumulate technical debt, or build the perfect system and miss the deadline. But there may be a third path, the Best Simple System for Now (BSSN).

This session introduces a pragmatic yet principled approach to software design: systems that are as simple as possible but no simpler. You’ll learn how to design code that is robust, change-friendly, and fit for purpose, while avoiding both gold-plating and corner-cutting.

Through practical examples, we explore how to manage complexity, embrace uncertainty, and make sound decisions using concepts like Cost of Delay and RAROC.
danebalia
·5 месяцев назад·discuss
Thanks!
danebalia
·5 месяцев назад·discuss
This is good. Thanks for feedback. I wasnt promoting myself, but a learning and amazement at the art of the possible with AI and some engineering. I thought this could help others. I did read it before, a few times.
danebalia
·5 месяцев назад·discuss
I pasted by hand. Not sure why the hate. I solved a problem for myself that I failed to get right in Emacs or Neovim. It was a joy. Be kind man, the world needs love, I'm not selling you anything.
danebalia
·5 месяцев назад·discuss
Built with ratatui + crossterm on top of a full async tokio event loop. Modal editing (Normal/Insert/Visual) with Spacemacs-style SPC leader keys, LSP support via rust-analyzer, syntax highlighting through syntect, and a streaming

Copilot agent panel that can read and edit files in your project.

The agent is sandboxed to your project root and all network calls go exclusively to GitHub's Copilot endpoints — no telemetry, no analytics. CI runs cargo-audit, cargo-deny, and GitHub code scanning on every push. Full network call inventory is in SECURITY.md.

Largely AI-assisted build (Claude). Curious whether others have shipped production tools this way and what the maintenance story looks like longer term.

MIT. Builds with a single `cargo build --release`.

https://github.com/danebalia/forgiven
danebalia
·5 месяцев назад·discuss
I built Omniscient, a command history tracker for your shell. It captures every command you run, categorizes them intelligently, and makes them instantly searchable across machine migrations.

*What it does:*

- Captures every shell command with zero overhead (<10ms) - Auto-categorizes by command type (git, docker, npm, etc.) - Full-text search through your entire history - NEW in v1.2.0: Contextual queries - filter commands by directory (`omniscient here`) - Export/import for syncing across machines - Privacy-first: automatic redaction of passwords/tokens

*Example:*

```bash # What git commands did I use in this project? omniscient here --recursive | grep git

# How did I deploy the backend last time? omniscient search deploy --dir ~/services/backend

# What's my most-used docker command? omniscient top 10 | grep docker ```

*The AI elephant in the room:*

Yes, this was built with AI assistance (Claude). I know that raises trust questions for a tool that captures your command history. Here's how I addressed that:

1. *100% Open Source*: Every line is auditable (https://github.com/daneb/omniscient) 2. *91 Automated Tests*: Comprehensive test coverage 3. *Zero Network Calls*: Grep the source yourself - all data stays local 4. *Security Audits*: cargo-audit on every commit 5. *Architecture Decision Records*: All major decisions documented 6. *Human Review*: Every AI-generated line was reviewed and validated

The AI helped with implementation, but humans made all architectural decisions, wrote tests, and validated everything. Full transparency: CONTRIBUTING.md documents the development process.

*Tech stack:* Rust, SQLite FTS5, zero dependencies on external services

*Privacy:* Everything stored in `~/.omniscient/`. No telemetry, no analytics, no network calls. You can audit the code yourself.