-
Join WasmEdge's LFX Mentorship Program Spring 2026 Boosting Your CV
Are you passionate about systems programming, compiler technology, or building developer tools? WasmEdge is excited to announce three exceptional mentorship opportunities for the 2026/Term 1 LFX Mentorship program. These projects offer you the chance to make meaningful contributions to one of the fastest-growing WebAssembly runtimes while working closely with experienced maintainers. Why Contribute to WasmEdge? WasmEdge is a leading edge, lightweight, and high-performance WebAssembly runtime that's powering the next generation of cloud-native, serverless, and embedded applications.…
-
Avoid dependency hell for Claude SKILLs
Claude Code is probably the first general-purpose AI agent humanity has created. The real breakthrough is that Claude Code can write precise code to “act” on its “thoughts”. A key enabler of this breakthrough is Agent SKILLs, i.e., reusable packages of instructions, reference materials, and executable scripts that turn Claude into a consistently powerful specialist. The community is going wild about Claude SKILLs on x: “Claude Skills is the best feature I've ever used.…
-
Rewrite in Rust with Claude Code
Python is for humans. Rust is for machines. Which future do you choose? TL;DR Claude Code + Opus 4.5 vibe coded a Rust implementation of the newly released Qwen3 TTS models. The Rust compiler catches syntax, memory, thread, and other low-level bugs. The Claude AI created its own evaluation tools to ensure functional correctness. Those feedback loops enabled the agent to work for extended periods and deliver correct Rust programs without human intervention.…
-
Why am I running Clawdbot on a $3000 computer
You do not seriously think AGI can run on the Raspberry Pi, right? It's only January 2026, and we've already caught a genuine glimpse of AGI—not in a sterile research lab, but in a cheeky little agent called Clawdbot (Now Moltbot, but will still call it Clawdbot so people don't get confused). People are messaging it, voice-calling it, even yelling at it across the kitchen while cooking dinner. And it just … does stuff.…
-
How did ChatGPT put code reviews on steroids for this open source community?
Reviewing PRs (GitHub Pull Requests) is one of the most important, yet time-consuming and thankless, jobs open-source maintainers must do on a regular basis. Accurate and speedy review of PRs is not only essential for the cadence of software development but also critical for the moral of the contributor community. The WasmEdge community (a leading WebAssembly Runtime under CNCF and Linux Foundation) recently added a ChatGPT-based PR review bot in our open source GitHub repo.…
-
Deploying Tensorflow models in production with less than 50 lines of code
Serverless Tensorflow functions in public clouds For software developers and students, artificial intelligence pays. In 2021, the average annual salary for Tensorflow (a popular AI framework) developers is $148,508. Skills in artificial intelligence are now mandatory in even entry level programming jobs. In fact, it is quite easily to follow an online tutorial and train your own Tensorflow model for tasks such as image recognition and natural language processing. You only need some basic Python knowledge to do the training and then run the model for a demo.…
-
A WASI-like extension for Tensorflow
AI inference is a computationally intensive task that could benefit greatly from the speed of Rust and WebAssembly. However, the standard WebAssembly sandbox provides very limited access to the native OS and hardware, such as multi-core CPUs, GPU and specialized AI inference chips. It is not ideal for the AI workload. The popular WebAssembly System Interface (WASI) provides a design pattern for sandboxed WebAssembly programs to securely access native host functions.…
RustJavaScriptWebAssemblyNode.jsGolangDaprVercelNetlifyAWSTencentFaaSRust FaaSServerlesscloud computingAITensorflow
-
AI as A Service on WebAssembly
AI inference is an ideal use case for Function as a Service (FaaS). The inference operation is transactional, often happens on the edge, need to scale up and down quickly, and integrates with other network services for input and output. However, the inference is also ill-suited for today's FaaS infrastructure. Inference is computationally intensive and time sensitive. FaaS today has long cold start time, and poor runtime performance due to the heavy runtime software stack and inefficient programming languages.…
RustJavaScriptWebAssemblyNode.jsFaaSRust FaaSServerlesscloud computingAI
-
AI as a Service: Face Detection Using MTCNN
The MTCNN is a class of Multi-task Cascaded Convolutional Network models. They are very good at detection faces and facial features. You can train (or retrain) MTCNN models with your own faces dataset so that it can accurately detect faces for your application. Second State FaaS provides a Rust API to run Tensorflow-based MTCNN models at native speeds. In this article, we will use the original MTCNN model trained in the FaceNet dataset as an example.…
RustJavaScriptWebAssemblyNode.jsFaaSRust FaaSServerlesscloud computingAI
-
Image Classification as A Service in Node.js
In the previous article, we discussed how WebAssembly could tie together native TensorFlow, Node.js JavaScript, and Rust functions to create high performance and safe web services for AI. In this article, we will discuss how to apply this approach to ImageNet's MobileNet image classification model, and more importantly, how to create web applications for your own retrained MobileNet models. NOTE This article demonstrates how to call operating system native programs from the SSVM.…
RustJavaScripttensorflowWebAssemblyNode.jsAI as a serviceFaaSAIImage Classification
