Author: drweb

Wir suchen einen Senior Frontend Developer (m/w/d) mit Fokus auf Laravel und Vue.js, der unsere Projekte mit technischer Exzellenz, Leidenschaft für sauberen Code und einem klaren Blick fürs Detail vorantreibt. In einem agilen Umfeld arbeitest du eng mit dem Software- und Produktteam zusammen, um moderne, performante und skalierbare Anwendungen zu realisieren.AufgabenEntwicklung und Weiterentwicklung unseres Frontends mit Fokus Laravel und Vue.jsZusammenarbeit mit Backend-Teams bei der Implementierung neuer FeaturesEnge Zusammenarbeit mit UX/UI-Design-Team, um eine konsistente User Experience sicherzustellenCode Reviews, Durchsetzen hoher Coding Standards, Förderung von Best PracticesQualifikationMehrjährige Erfahrung in der Frontend-Entwicklung (mind. 5 Jahre).Sehr gute Kenntnisse in Vue.js und im modernen JavaScript/TypeScript-Ökosystem.Erfahrung…

Read More

GitHub’s new MCP Registry promises to solve a major headache for developers building AI-powered workflows. Instead of hunting through scattered repositories and community threads for Model Context Protocol (MCP) servers, developers now have a single place to discover and deploy the tools they need.The registry launches with backing from major partners including Figma, Postman, HashiCorp and Dynatrace. Each offers curated MCP servers that enable AI agents to interact directly with their platforms from development environments.What Makes MCP ImportantMCP acts as a bridge between AI agents and external systems. Think of it as a standardized way for your coding assistant to…

Read More

Honeycomb has added a Canvas framework for managing and orchestrating multiple artificial intelligence (AI) agents as they observe and query massive amounts of telemetry data.Morgante Pell, technical lead manager for engineering at Honeycomb, said Canvas is the latest extension to a series of Honeycomb Intelligence initiatives that, for example, provide access to an AI agent that can convert natural language into queries based on the syntax Honeycomb created to query data. There is also now a Model Context Protocol (MCP) server that provides third-party agents and coding tools with access to observability data.These capabilities will enable DevOps teams to both…

Read More

In the recent article, Building Isolated AI Code Environments with Cerebras and Docker Compose, our friends at Cerebras showcased how one can build a coding agent to use worlds fastest Cerebras’ AI inference API, Docker Compose, ADK-Python, and MCP servers. In this post, we’ll dive deeper into the underlying technologies and show how the pieces come together to build an AI agent environment that’s portable, secure, and fully containerized. You’ll learn how to create multi-agent systems, run some agents with local models in Docker Model Runner, and integrate custom tools as MCP servers into your AI agent’s workflow. We’ll also…

Read More
SQL

Prompt AI released recently and I decided to try a few things with the tool that might help me in database work. I’ve had to do this task, but I had a customer recently ask me about this as well. They were wondering where they were short FKs.This post showed what I tried with Prompt AI.This is part of a series of experiments with AI systems. This is part of a series of posts on SQL Prompt. You can see all my posts on SQL Prompt under that tag. Help Me Query the DatabaseIn a recent post, I looked at the…

Read More

A sparse matrix is a data structure where most of the elements are zero. Think of it this way: if I have a matrix representing user-item interactions on a platform like Netflix, most users haven’t watched most movies, creating a matrix filled with zeros. Instead of wasting memory storing all those zeros, sparse matrices store only the non-zero values along with their positions.Here’s my thumb rule when working on sparse matrices: if more than 2/3 of your matrix elements are zeros, you’re dealing with a sparse matrix that can benefit from specialized storage. In practice, I’ve seen sparse matrices with…

Read More

OpenAI just released GPT-5-Codex, and it’s designed to handle the messy reality of enterprise software development. This isn’t just another coding assistant; it’s built for the complex, long-running tasks that define real software engineering work.What Makes GPT-5-Codex DifferentThe most significant change is how GPT-5-Codex adjusts its thinking time according to task complexity. For quick questions or simple fixes, it responds fast. However, for large refactorings or complex debugging sessions, it can work independently for hours, up to seven hours in testing, iterating on solutions until they are successful.This dynamic approach shows up in the numbers. For simple tasks, GPT-5-Codex uses…

Read More

Press enter or click to view image in full sizeRecently, I’ve covered different architecture options to control a dialog component. All these options had the component in place in the DOM and used some external trigger to show or hide the component’s template.But what about creating a component and rendering it on demand? Of course, we have lazy-loading and the @defer block, but what if we want to decide which component to display at runtime, or even better, can replace that component on-demand with Typescript code?Enter ViewContainerRefA view container is a place in Angular’s component tree where HTML content can…

Read More

If you’ve ever run a Linux system in production or even just kept a personal server, you’ll know that running out of disk space is one of the most frustrating issues. Suddenly, your applications stop working, databases won’t write new data, and log files keep filling up like a runaway train. The good news is that Linux makes it surprisingly easy to monitor disk usage and catch problems before they happen. All you need is a small shell script, a bit of logic, and maybe an email alert (or a message to your Slack channel, if you’re fancy). In this…

Read More