AWS amplifies developer tools with new gen AI features
The new expanded capabilities for Q Developer include automating code reviews, unit tests, and generating documentation — all of which, according to Garman, will ease developers’ workloads and help them finish their development tasks faster. AWS also unveiled several code translation capabilities for Q in preview, including the ability to modernize .Net apps from Windows […]
Read MorePublic cloud providers are fumbling the AI opportunity
Unlike traditional public clouds, these approaches are often built from the ground up to handle the unique demands of modern AI infrastructure. This means high-density GPU configurations, liquid cooling systems, and energy-efficient designs. More importantly, they allow enterprises to shift to ownership models or shared resources that cut costs over the long term. Betting on […]
Read MoreAWS Database Migration Service gets gen AI-powered schema conversion
The observability updates for Amazon Aurora MySQL and PostgreSQL can be accessed via Amazon CloudWatch Database Insights. The new updates allow enterprises to observe databases without having to spend time building telemetry, dashboards, or setting up alarms. “With no further setup, you can monitor the health of all of your Amazon Aurora MySQL and PostgreSQL […]
Read MoreUnderstanding unstructured data in the context of AI
A step above its traditional predecessor is semi-structured data, which arrived in response to the rigidity of table-based formats. Semi-structured data retains some organizational elements of structured data but removes the traditional tabular constraints. This type of data drove the growth and popularity of NoSQL databases such as Cassandra, MongoDB and Redis, which were designed […]
Read MoreRefactoring AI code: The good, the bad, and the weird
Dev Nag has been in the trenches with AI coding tools for several years and is the CEO of QueryPal, a software company focused on AI-powered ticket generation. He describes the process of refactoring and maintaining AI-generated code as surprisingly challenging. “The code often lacks consistency in style and naming conventions, which can make a […]
Read MoreRust 1.83 expands const capabilities
The Rust Team has released Rust 1.83, an update to the memory-safe and thread-safe programming language that brings expanded capabilities for code running in const contexts. The Rust Team also announced that it is moving forward with the Rust 2024 edition, which introduces backwards-incompatible features such as gen blocks. Developers with a previous edition of […]
Read MoreExactly what would an AI-centric OS look like?
In a blog post released last month, Gartner analyst Tom Coshow wrote, “today’s AI models perform tasks such as generating text, but these are ‘prompted’ — the AI isn’t acting by itself. That is about to change with agentic AI (AI with agency). By 2028, 33% of enterprise software applications will include agentic AI, up […]
Read MoreHow to use ref structs in C# 13
In the C# programming language, structs or structure types are value types that allow faster access because they are usually stored in the stack. However, although structs reduce memory footprints and eliminate garbage collection overheads, they are not a good choice in high-performance scenarios where memory allocation and deallocation in the stack is critical. In […]
Read MoreCopilot Studio Agents get a major upgrade via Microsoft 365 Copilot
The Microsoft 365 Agent SDK has four key components. It offers multiple user interfaces, from the Microsoft 365 Copilot using tools like Copilot Pages, to Teams and even Slack. Grounding data comes from services that include the Microsoft Graph, Azure Fabric, and Azure AI Search. Everything is orchestrated from Semantic Kernel, with agent support from […]
Read MorePython to C: What’s new in Cython 3.1
One convenient way to do this automatically is to use the sys._is_gil_enabled() method to check if the macro needs to be used. A recipe like this might work: macros = [] if getattr(sys, “_is_gil_enabled”, None) and not sys._is_gil_enabled(): macros = [(“Py_GIL_DISABLED”,”1″)] ext_modules = [ Extension( “compute”, [“compute.pyx”], define_macros=macros ) ] 4. Ensure your code is […]
Read More