cpp

Tag

Cards List
#cpp

I ported vLLM's serving stack to C++20: 66 MiB binary, no Python at inference, output checked token-for-token against vLLM

Reddit r/LocalLLaMA · 2d ago

The author ports vLLM's serving stack to C++20, creating a 66 MiB binary with no Python at inference, token-for-token verifiable against vLLM and competitive in throughput on tested hardware.

0 favorites 0 likes
#cpp

Thoroughly Understanding C++ ABI

Hacker News Top · 6d ago Cached

A deep dive into C++ ABI, explaining binary interface concepts, CPU/OS dependencies, object file formats like ELF and PE32+, and calling conventions.

0 favorites 0 likes
#cpp

const_cast: A Necessary Evil

Lobsters Hottest · 2026-07-29 Cached

The article explains why const_cast is sometimes necessary in C++, specifically for moving objects out of a std::priority_queue, and how to do it safely.

0 favorites 0 likes
#cpp

Parsers don't have to be complicated

Hacker News Top · 2026-07-29 Cached

A blog post introducing bx::Scanner, a small zero-copy, allocation-free set of scanning primitives that simplify writing parsers without full parser generators or complex PEG libraries.

0 favorites 0 likes
#cpp

C/C++ projects packaged for Zig

Hacker News Top · 2026-07-27

A tool that packages existing C/C++ projects for use with the Zig build system, enabling easier integration.

0 favorites 0 likes
#cpp

Interconverting std::function with copyable_function

Lobsters Hottest · 2026-07-27 Cached

Technical analysis of the interconversion between std::function and std::copyable_function in C++26, discussing implementation approaches and performance trade-offs, with specific note that libstdc++ currently uses a less optimal approach.

0 favorites 0 likes
#cpp

Show HN: Max Studio Tools – C++ DSP Modules for Max and Ableton Live

Hacker News Top · 2026-07-24 Cached

A suite of C++ DSP modules for Max/MSP and Ableton Live, emulating classic studio EQs and compressors with optional oversampling.

0 favorites 0 likes
#cpp

The PImpl idiom and the C++26 std::indirect type

Lobsters Hottest · 2026-07-23 Cached

Explains the PImpl idiom in C++ and how the upcoming C++26 std::indirect type simplifies its implementation, reducing boilerplate and manual memory management.

0 favorites 0 likes
#cpp

Software rendering in 500 lines of bare C++

Lobsters Hottest · 2026-07-23 Cached

This tutorial series teaches how to write a software renderer from scratch in 500 lines of C++, explaining the inner workings of modern 3D graphics APIs.

0 favorites 0 likes
#cpp

Making an agile version of a Windows Runtime delegate in C++/WinRT, part 1

The Old New Thing (Raymond Chen) · 2026-07-20 Cached

This article explains how to create an agile version of a Windows Runtime delegate in C++/WinRT by wrapping the delegate in an agile_ref, with a promise of more details in part 2.

0 favorites 0 likes
#cpp

@cloneofsimo: GPT 5.6 Sol made complete mujoco-like physics engine from scratch: gym-like api, c++ implemented, native headless rende…

X AI KOLs Timeline · 2026-07-14 Cached

LavenderSim is a Python-first robotics simulation engine with a C++ core and web visualization, built almost entirely by GPT-5.6 Sol. It allows defining environments in Python without XML.

0 favorites 0 likes
#cpp

Cpp2Rust: Automatic Translation of C++ to Safe Rust

Lobsters Hottest · 2026-07-10 Cached

Cpp2Rust is an open-source tool that automatically translates C++ code to safe Rust using clang's AST and a runtime library, enabling safe memory-safe conversion with support for both safe and unsafe output modes.

0 favorites 0 likes
#cpp

[audio.cpp] What Does the Fox Say: 4 ASR models (Nemotron 3.5 ASR, Higgs Audio STT, VibeVoice ASR, and Hviske ASR) in native C++/GGML, init streaming support, and 327s of audio transcribed in 2.17s.

Reddit r/LocalLLaMA · 2026-07-09

audio.cpp update introduces streaming support and four ASR/STT models (Nemotron 3.5, Higgs Audio STT, VibeVoice ASR, Hviske ASR) in native C++/GGML, achieving up to 2.41x faster than Python with competitive WER and VRAM usage.

0 favorites 0 likes
#cpp

As promised, here is the GitHub link for my 100% local voice-to-voice assistant

Reddit r/LocalLLaMA · 2026-07-06

Athena is a fully offline, privacy-first voice assistant running entirely on local hardware, combining multiple AI models for speech recognition, language understanding, and emotion-aware speech synthesis, with long-term memory and interruptibility.

0 favorites 0 likes
#cpp

C++ Details of Asymmetric Fences

Hacker News Top · 2026-07-03 Cached

A detailed exploration of asymmetric thread fences in C++ concurrency, covering the C++ proposal P1202R0 and its implementation via the Linux membarrier() system call, with examples from Folly's synchronization primitives.

0 favorites 0 likes
#cpp

@Goutamdilesh: 10000+ Pages Programming Notes - FREE ❯ Java http://goalkicker.com/JavaBook/ ❯ Python http://goalkicker.com/PythonBook/…

X AI KOLs Timeline · 2026-06-25 Cached

A collection of free programming notes (PDFs) for Java, Python, JavaScript, SQL, DSA, C, and C++ from GoalKicker.

0 favorites 0 likes
#cpp

Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub

Hacker News Top · 2026-06-22 Cached

Bohemia Interactive has released the source code of Arma: Cold War Assault (codename Poseidon) on GitHub under GPL-3.0-or-later. The code is modernized to C++20, supports Windows and Linux, and is intended for community modification and learning.

0 favorites 0 likes
#cpp

@mudler_it: parakeet.cpp now runs NVIDIA Parakeet behind the OpenAI API. Point any OpenAI client at a local server, send an audio, …

X AI KOLs Timeline · 2026-06-17 Cached

parakeet.cpp enables running NVIDIA Parakeet ASR behind the OpenAI API locally with prebuilt Docker images, supporting CPU and CUDA (including arm64) for real-time transcription with word timestamps.

0 favorites 0 likes
#cpp

@GYLQ520: People learning network programming often fall into the same pitfall—after finishing the theory, they still can't write code; after reading the source code, they don't know where to start making changes. Until I stumbled upon this open-source treasure tutorial: Build Your Own Redis, which guides you step by step from scratch to build a real Redis server. The roadmap is split into two parts…

X AI KOLs Timeline · 2026-06-16 Cached

This open-source tutorial 'Build Your Own Redis' teaches you to implement a fully functional Redis server from scratch using C/C++, with in-depth explanations of network programming, data structures, and low-level C, accompanied by code and detailed instructions.

0 favorites 0 likes
#cpp

@jichiep: privacy-filter.cpp performance Vs the PyTorch implementation. Approx between 1.6x and 18x faster:

X AI KOLs Following · 2026-06-16 Cached

privacy-filter.cpp outperforms the PyTorch implementation by approximately 1.6x to 18x in performance.

0 favorites 0 likes
Next →
← Back to home

Submit Feedback