SShortSingh.
Back to feed

AxonASP Go-Based Engine Outperforms Native Windows VBScript in Benchmarks

0
·1 views

Developer Jeffrey Heping benchmarked five runtime environments by porting all 23 Gang of Four design patterns to VBScript and running them on Windows 11. AxonASP, a cross-platform execution engine built in Go, completed tests in 0.092 seconds on average, edging out Microsoft's native cscript.exe at 0.107 seconds. Unlike traditional IIS execution, AxonASP compiles VBScript into cached bytecode, allowing subsequent web requests to skip the parsing phase entirely. The engine also runs on Linux, macOS, and BSD via a CLI binary, effectively turning VBScript into a cross-platform scripting tool without requiring a Windows host. Its modular Go architecture additionally allows direct embedding into third-party Go applications and supports running Microsoft HTA files outside of Windows.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Veteran Open-Source Developer Seeks Role in Developer Experience and API Design

A software engineer with nearly 20 years of experience is publicly seeking a new role focused on developer experience, API design, and technical leadership rather than a specific job title. The author created and maintains Inversify, an open-source dependency injection framework for TypeScript and Node.js that is widely used across the developer community. Through building Inversify, they gained hands-on experience in API design, backwards compatibility, community management, and open-source product strategy. They have also authored multiple books on software development and spent several years as a Microsoft MVP, contributing to technical communities and knowledge sharing. Rather than applying to listed positions, the developer is reaching out directly to teams whose needs align with their skill set.

0
ProgrammingDEV Community ·

Microsoft Moves Copilot's Deep Research Tool Behind $19.99/Month Paywall

Microsoft began retiring several free Copilot consumer features on 18 August, including Deep Research, Group Chat, AI-generated Podcasts, Copilot Labs, and the animated Mico character. The most significant change sees Deep Research replaced by a tool called Researcher, which is now exclusive to Microsoft 365 Premium subscribers at a reported $19.99 per month. The move coincides with Microsoft merging its consumer Copilot app and its business-oriented Microsoft 365 Copilot app into a single unified application across mobile, web, and eventually desktop. Existing research reports are not deleted and can be accessed or saved to Microsoft Word, depending on a user's subscription tier. The consolidation effectively converts a previously free and capable research feature into a paid offering, representing a broader shift in Microsoft's Copilot monetisation strategy.

0
ProgrammingDEV Community ·

Why Unclear Ownership — Not Bad Tools — Causes Workflow Automation to Fail

Workflow automation failures often stem not from faulty software but from unresolved questions about who is responsible for each handoff between steps. When ownership is ambiguous, automated systems can move work quickly while still leaving it stranded, as no person or system is accountable for the next action. Common consequences include missed follow-ups, duplicate responses, and records that diverge across email, CRM, and project tools. Reliable automation requires durable state — a persistent record of current status, responsible owner, next action, and completion evidence that survives outages or retries. Techniques like idempotency, which give each operation a stable identity to prevent duplicate processing on retry, are essential to building workflows that are genuinely dependable rather than merely active.