<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Lois-Kleinner</title>
    <description>The latest articles on DEV Community by Lois-Kleinner (@kleinner).</description>
    <link>https://dev.to/kleinner</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3996124%2Fbbd4e8f8-0f89-4afa-a480-9434f8e6d2ec.jpg</url>
      <title>DEV Community: Lois-Kleinner</title>
      <link>https://dev.to/kleinner</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kleinner"/>
    <language>en</language>
    <item>
      <title>Kathon Browser Desktop Application Performance Benchmarks: Vault Operations, AI Inference, and Cryptographic Ledgers</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Wed, 24 Jun 2026 17:46:26 +0000</pubDate>
      <link>https://dev.to/kleinner/kathon-browser-desktop-application-performance-benchmarks-vault-operations-ai-inference-and-2mem</link>
      <guid>https://dev.to/kleinner/kathon-browser-desktop-application-performance-benchmarks-vault-operations-ai-inference-and-2mem</guid>
      <description>&lt;h1&gt;
  
  
  Kathon Browser Desktop Application Performance Benchmarks: Vault Operations, AI Inference, and Cryptographic Ledgers
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; browser, benchmarking, research, opensource&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;This dataset presents performance benchmarks for the Kathon sovereign AI-native desktop browser application. We measure cryptographic vault operations including seed phrase generation, TOTP code generation across algorithms, and Ed25519 key management. Also included are local AI inference latency measurements using Qwen2-VL-2B and tamper-evident cryptographic ledger operations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;TOTP generation: 66,667 ops/sec (SHA1) to 45,455 ops/sec (SHA512)&lt;/li&gt;
&lt;li&gt;Seed phrase generation: 10,638 phrases/sec (12 words) to 5,814/sec (24 words)&lt;/li&gt;
&lt;li&gt;Ed25519 key generation: 1,160 ops/sec&lt;/li&gt;
&lt;li&gt;Local AI inference: 4.1 tokens/sec at 128-token prompt (Qwen2-VL-2B-Q4)&lt;/li&gt;
&lt;li&gt;Ledger append: verified chain at 276,000 entries/sec&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Data Files
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;stat_vault_operations.csv&lt;/code&gt;: Vault and identity management benchmarks&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_ai_inference.csv&lt;/code&gt;: AI inference timing at varying context lengths&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_ledger_operations.csv&lt;/code&gt;: Cryptographic ledger append and verify&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Dataset:&lt;/strong&gt; &lt;a href="https://doi.org/10.7910/DVN/3VDF75" rel="noopener noreferrer"&gt;https://doi.org/10.7910/DVN/3VDF75&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cryptography</category>
      <category>research</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Compiler Pipeline Performance Characterization: Lexing, Parsing, Type-Checking, Bytecode Compilation, and VM Execution</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Wed, 24 Jun 2026 17:46:20 +0000</pubDate>
      <link>https://dev.to/kleinner/compiler-pipeline-performance-characterization-lexing-parsing-type-checking-bytecode-33h4</link>
      <guid>https://dev.to/kleinner/compiler-pipeline-performance-characterization-lexing-parsing-type-checking-bytecode-33h4</guid>
      <description>&lt;h1&gt;
  
  
  Compiler Pipeline Performance Characterization: Lexing, Parsing, Type-Checking, Bytecode Compilation, and VM Execution
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; compiler, performance, research, opensource&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;This dataset measures the compilation pipeline of the Kasteran programming language compiler. We provide per-stage timing breakdowns (lexing, parsing, HIR lowering, type-checking, bytecode compilation) across program sizes from 10 to 1000 lines, plus bytecode virtual machine execution timing for language constructs including function calls, branching, pattern matching, pipe chains, scatter operations, and closures.&lt;/p&gt;

&lt;h2&gt;
  
  
  Methodology
&lt;/h2&gt;

&lt;p&gt;All measurements on Intel i7-1260P. Each data point: median of 100 runs. Compiler built with Rust 1.96.0 at opt-level=3.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Total compilation time scales linearly with source size: 0.27ms for 10 lines to 21.8ms for 1000 lines&lt;/li&gt;
&lt;li&gt;Type-checking dominates compile time (~42% of total)&lt;/li&gt;
&lt;li&gt;Bytecode compilation is consistently ~32% of total time&lt;/li&gt;
&lt;li&gt;VM execution: function call 0.42us, pipe chain 0.25us, scatter 1.80us&lt;/li&gt;
&lt;li&gt;Compilation rate: ~45,000 lines/sec at 1000-line programs&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Data Files
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;stat_compilation_pipeline.csv&lt;/code&gt;: Per-stage timing by program size&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_vm_execution.csv&lt;/code&gt;: VM instruction timing by construct type&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;raw_compilation_pipeline.csv&lt;/code&gt;: Full raw measurements&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;raw_vm_execution.csv&lt;/code&gt;: Raw VM timing data&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Dataset:&lt;/strong&gt; &lt;a href="https://doi.org/10.7910/DVN/KFK12Y" rel="noopener noreferrer"&gt;https://doi.org/10.7910/DVN/KFK12Y&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cryptography</category>
      <category>research</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Cross-Platform Cryptographic Primitive Validation: SHA3-256 and Ed25519 Implementation Parity</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Wed, 24 Jun 2026 17:40:37 +0000</pubDate>
      <link>https://dev.to/kleinner/cross-platform-cryptographic-primitive-validation-sha3-256-and-ed25519-implementation-parity-547m</link>
      <guid>https://dev.to/kleinner/cross-platform-cryptographic-primitive-validation-sha3-256-and-ed25519-implementation-parity-547m</guid>
      <description>&lt;h1&gt;
  
  
  Cross-Platform Cryptographic Primitive Validation: SHA3-256 and Ed25519 Implementation Parity
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; cryptography, validation, research, opensource&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;This dataset validates that SHA3-256 and Ed25519 cryptographic primitives produce identical outputs across four independent Rust project implementations: aioss-format, MF+SO, Kathon, and Kasteran. All projects depend on the same upstream Rust crates (sha3 v0.10.9, ed25519-dalek v2.2.0), confirming implementation parity.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;100 test vectors: 100% hash consistency across all 4 projects&lt;/li&gt;
&lt;li&gt;Performance variation less than 5% between projects (all use identical crate versions)&lt;/li&gt;
&lt;li&gt;Implementation consistency metric: 100.0% with 0.0 standard deviation&lt;/li&gt;
&lt;li&gt;Performance benchmarks show near-identical throughput across projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Data Files
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;cross_project_sha3_consistency.csv&lt;/code&gt;: Hash output comparison across projects&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;cross_project_performance.csv&lt;/code&gt;: Timing comparison&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_cross_project.csv&lt;/code&gt;: Statistical summary with distributions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Dataset:&lt;/strong&gt; &lt;a href="https://doi.org/10.7910/DVN/GDLO0L" rel="noopener noreferrer"&gt;https://doi.org/10.7910/DVN/GDLO0L&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cryptography</category>
      <category>research</category>
      <category>opensource</category>
    </item>
    <item>
      <title>SIMD AVX2 vs SSE4.2 GEMM Matrix Multiplication Performance: Vector Operations and MLP Inference on Intel Alder Lake</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Wed, 24 Jun 2026 17:40:31 +0000</pubDate>
      <link>https://dev.to/kleinner/simd-avx2-vs-sse42-gemm-matrix-multiplication-performance-vector-operations-and-mlp-inference-on-1lec</link>
      <guid>https://dev.to/kleinner/simd-avx2-vs-sse42-gemm-matrix-multiplication-performance-vector-operations-and-mlp-inference-on-1lec</guid>
      <description>&lt;h1&gt;
  
  
  SIMD AVX2 vs SSE4.2 GEMM Matrix Multiplication Performance: Vector Operations and MLP Inference on Intel Alder Lake
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; benchmarking, simd, research, opensource&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;This dataset characterizes the performance of SIMD-accelerated compute kernels in the Kazkade zero-copy columnar analytics engine. We compare AVX2, SSE4.2, and scalar implementations of GEMM matrix multiplication, vector operations, columnar scan predicate filtering, and multi-layer perceptron (MLP) inference across varying problem sizes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Methodology
&lt;/h2&gt;

&lt;p&gt;Hardware: Intel Core i7-1260P (AVX2, 8 cores, 12 MB L3 cache). All measurements: 100 iterations per configuration, warmup before measurement. Statistical distributions include min, median, mean, max, and standard deviation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;AVX2 GEMM at 1024x1024 achieves 33.8 GFLOPS ??? 9x faster than scalar (3.7 GFLOPS)&lt;/li&gt;
&lt;li&gt;SSE4.2 achieves 16.8 GFLOPS at the same size ??? 2x slower than AVX2&lt;/li&gt;
&lt;li&gt;Vector dot product: 10.9 GB/s with AVX2 vs 2.5 GB/s scalar&lt;/li&gt;
&lt;li&gt;MLP inference (3-layer, 128 neurons): 55,652 ops/sec at batch size 64&lt;/li&gt;
&lt;li&gt;Columnar scan on 10M rows: 78M rows/sec vs 21M rows/sec row-wise&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Data Files
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;stat_gemm.csv&lt;/code&gt;: GEMM performance across 3 implementations and 5 matrix sizes&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_vector_ops.csv&lt;/code&gt;: Vector operation throughput&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_mlp_inference.csv&lt;/code&gt;: MLP inference latency&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;kazkade_cli_bench.txt&lt;/code&gt;: Raw CLI benchmark output&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Dataset:&lt;/strong&gt; &lt;a href="https://doi.org/10.7910/DVN/YMJKOG" rel="noopener noreferrer"&gt;https://doi.org/10.7910/DVN/YMJKOG&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cryptography</category>
      <category>research</category>
      <category>opensource</category>
    </item>
    <item>
      <title>SIMD AVX2 vs SSE4.2 GEMM Matrix Multiplication Performance: Vector Operations and MLP Inference on Intel Alder Lake</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Wed, 24 Jun 2026 17:22:43 +0000</pubDate>
      <link>https://dev.to/kleinner/simd-avx2-vs-sse42-gemm-matrix-multiplication-performance-vector-operations-and-mlp-inference-on-16ao</link>
      <guid>https://dev.to/kleinner/simd-avx2-vs-sse42-gemm-matrix-multiplication-performance-vector-operations-and-mlp-inference-on-16ao</guid>
      <description>&lt;h1&gt;
  
  
  SIMD AVX2 vs SSE4.2 GEMM Matrix Multiplication Performance: Vector Operations and MLP Inference on Intel Alder Lake
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; benchmarking, simd, research, opensource&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;This dataset characterizes the performance of SIMD-accelerated compute kernels in the Kazkade zero-copy columnar analytics engine. We compare AVX2, SSE4.2, and scalar implementations of GEMM matrix multiplication, vector operations, columnar scan predicate filtering, and multi-layer perceptron (MLP) inference across varying problem sizes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Methodology
&lt;/h2&gt;

&lt;p&gt;Hardware: Intel Core i7-1260P (AVX2, 8 cores, 12 MB L3 cache). All measurements: 100 iterations per configuration, warmup before measurement. Statistical distributions include min, median, mean, max, and standard deviation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;AVX2 GEMM at 1024x1024 achieves 33.8 GFLOPS ??? 9x faster than scalar (3.7 GFLOPS)&lt;/li&gt;
&lt;li&gt;SSE4.2 achieves 16.8 GFLOPS at the same size ??? 2x slower than AVX2&lt;/li&gt;
&lt;li&gt;Vector dot product: 10.9 GB/s with AVX2 vs 2.5 GB/s scalar&lt;/li&gt;
&lt;li&gt;MLP inference (3-layer, 128 neurons): 55,652 ops/sec at batch size 64&lt;/li&gt;
&lt;li&gt;Columnar scan on 10M rows: 78M rows/sec vs 21M rows/sec row-wise&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Data Files
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;stat_gemm.csv&lt;/code&gt;: GEMM performance across 3 implementations and 5 matrix sizes&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_vector_ops.csv&lt;/code&gt;: Vector operation throughput&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_mlp_inference.csv&lt;/code&gt;: MLP inference latency&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;kazkade_cli_bench.txt&lt;/code&gt;: Raw CLI benchmark output&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Dataset:&lt;/strong&gt; &lt;a href="https://doi.org/10.7910/DVN/YMJKOG" rel="noopener noreferrer"&gt;https://doi.org/10.7910/DVN/YMJKOG&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cryptography</category>
      <category>research</category>
      <category>opensource</category>
    </item>
    <item>
      <title>SHA3-256 Hash Chain Append and Verification Performance: A Cryptographic Ledger Benchmark Study</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Wed, 24 Jun 2026 17:22:39 +0000</pubDate>
      <link>https://dev.to/kleinner/sha3-256-hash-chain-append-and-verification-performance-a-cryptographic-ledger-benchmark-study-1964</link>
      <guid>https://dev.to/kleinner/sha3-256-hash-chain-append-and-verification-performance-a-cryptographic-ledger-benchmark-study-1964</guid>
      <description>&lt;h1&gt;
  
  
  SHA3-256 Hash Chain Append and Verification Performance: A Cryptographic Ledger Benchmark Study
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; cryptography, benchmarking, research, opensource&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;This dataset presents benchmark measurements for the AIOSS (Audit, Immutable, Open, Secure, Sovereign) cryptographic hash-chain ledger format. We measure SHA3-256 hash throughput across 6 message sizes, chain append performance at varying batch sizes, chain verification speed across chain lengths, and Ed25519 state proof operations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Methodology
&lt;/h2&gt;

&lt;p&gt;Measurements were taken on an Intel Core i7-1260P (Alder Lake-P, 8 cores, AVX2) with 32 GB DDR4-3200 RAM, running Windows 11 23H2. The Rust compiler was rustc 1.96.0 with optimization flags -C opt-level=3, LTO=fat, codegen-units=1. All measurements use the Criterion.rs benchmark harness with 10 warmup iterations followed by 100 measurement iterations. Reported values are the median with standard deviation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;SHA3-256 achieves 1,360 MB/s throughput on 64 KB messages&lt;/li&gt;
&lt;li&gt;Chain append sustains ~207,000 entries/sec in JSON format&lt;/li&gt;
&lt;li&gt;Chain verification reaches ~276,000 entries/sec with early abort on tamper detection&lt;/li&gt;
&lt;li&gt;Ed25519 key generation: 1,168 ops/sec, signing: 1,096 ops/sec, verification: 803 ops/sec&lt;/li&gt;
&lt;li&gt;Binary format append is ~4x faster than JSON format due to reduced serialization overhead&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Data Files
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;stat_hash_function.csv&lt;/code&gt;: Hash throughput across SHA3-256, SHA-256, and BLAKE3&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_chain_append.csv&lt;/code&gt;: Append performance at chain lengths from 100 to 100,000 entries&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_chain_verify.csv&lt;/code&gt;: Chain verification timing&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;stat_ed25519.csv&lt;/code&gt;: Ed25519 key generation, signing, and verification&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;raw_hash_function_100runs.csv&lt;/code&gt;: Full raw measurements for reproducibility&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Dataset:&lt;/strong&gt; &lt;a href="https://doi.org/10.7910/DVN/FSHFZF" rel="noopener noreferrer"&gt;https://doi.org/10.7910/DVN/FSHFZF&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cryptography</category>
      <category>research</category>
      <category>opensource</category>
    </item>
    <item>
      <title>We redesigned local llm inference for privacy-preserving browser intelligence from scratch ? no cloud, no black boxes.</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Mon, 22 Jun 2026 15:07:18 +0000</pubDate>
      <link>https://dev.to/kleinner/we-redesigned-local-llm-inference-for-privacy-preserving-browser-intelligence-from-scratch-no-4pj</link>
      <guid>https://dev.to/kleinner/we-redesigned-local-llm-inference-for-privacy-preserving-browser-intelligence-from-scratch-no-4pj</guid>
      <description>&lt;h1&gt;
  
  
  We redesigned local llm inference for privacy-preserving browser intelligence from scratch ? no cloud, no black boxes.
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Local LLM Inference for Privacy-Preserving Browser Intelligence: Architecture and Optimization&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;The integration of large language models (LLMs) into web browsers enables transformative capabilities including visual page understanding, natural language task delegation, and autonomous web interaction. However, cloud-based LLM inference introduces fundamental privacy violations: every page rendered, every action executed, and every user interaction is transmitted to remote inference servers .&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;This paper presents the Kathon Local AI Engine, a privacy-preserving architecture that performs all LLM and vision-language model inference entirely on-device using the llama.cpp inference framework  with the Qwen 2.5 VL 2B Q4 GGUF quantized model . We detail the system architecture?a Rust-based inference server (llama-server) communicating with a React/TypeScript frontend via a local WebSocket API?and present comprehensive optimization strategies including speculative decoding, KV-cache quantization, prompt caching, and GPU-accelerated tensor operations.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Research
&lt;/h2&gt;

&lt;p&gt;The integration of large language models (LLMs) into web browsers enables transformative capabilities including visual page understanding, natural language task delegation, and autonomous web interaction.&lt;/p&gt;

&lt;p&gt;However, cloud-based LLM inference introduces fundamental privacy violations: every page rendered, every action executed, and every user interaction is transmitted to remote inference servers .&lt;/p&gt;

&lt;p&gt;This paper presents the Kathon Local AI Engine, a privacy-preserving architecture that performs all LLM and vision-language model inference entirely on-device using the llama.cpp inference framework  with the Qwen 2.5 VL 2B Q4 GGUF quantized model .&lt;/p&gt;

&lt;p&gt;We detail the system architecture?a Rust-based inference server (llama-server) communicating with a React/TypeScript frontend via a local WebSocket API?and present comprehensive optimization strategies including speculative decoding, KV-cache quantization, prompt caching, and GPU-accelerated tensor operations.&lt;/p&gt;

&lt;p&gt;This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Full citation:&lt;/strong&gt; Alpasan, L.-K. (2026). Local LLM Inference for Privacy-Preserving Browser Intelligence: Architecture and Optimization. &lt;em&gt;The Anticloud Research Corpus.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;Read the full paper&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  Why The Anticloud
&lt;/h3&gt;

&lt;p&gt;Every AI system you have ever used was designed to extract value from you — your data, your attention, your money. The Anticloud is not a service. It is not in the cloud. It is not rentable inference. It is a fundamentally different category of infrastructure, and here is what that means in practice.&lt;/p&gt;

&lt;p&gt;Your data never leaves your machine. We designed the system so we physically cannot access it. Access is not restricted by policy — it is structurally impossible by architecture. There is no data to steal because there is no server to steal it from.&lt;/p&gt;

&lt;p&gt;The system is airgapped by architecture, not by configuration. It does not require a network connection to function. It was built offline, it runs offline, and it never reaches out to anyone for any reason. Connectivity is simply not a prerequisite for intelligence.&lt;/p&gt;

&lt;p&gt;Compliance is a side effect of physics, not a certification. There is no cloud infrastructure to audit, which means there is no attack surface to harden. ISO 27001 and SOC 2 exist because cloud products are inherently vulnerable. Our architecture does not have those vulnerabilities because it does not have a cloud.&lt;/p&gt;

&lt;p&gt;Every operation is recorded on an immutable &lt;code&gt;.aioss&lt;/code&gt; ledger using a SHA3-256 hash chain. Every inference, every decision, every update is chained and cryptographically verifiable. There is no database admin who can delete logs because there is no database. You verify. We cannot.&lt;/p&gt;

&lt;p&gt;The system never speaks to anyone but you. There are no hidden layers sending telemetry. There are no proprietary weights phoning home. There are no third-party API calls embedded in the stack. The entire system is open, documented, and auditable by anyone who runs it.&lt;/p&gt;

&lt;p&gt;The Anticloud requires one machine, one binary, and zero trust in anyone.&lt;/p&gt;




&lt;h3&gt;
  
  
  About the Author
&lt;/h3&gt;

&lt;p&gt;My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud.&lt;/p&gt;

&lt;p&gt;I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction.&lt;/p&gt;

&lt;p&gt;I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything.&lt;/p&gt;

&lt;p&gt;The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop.&lt;/p&gt;

&lt;p&gt;I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Follow the work:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Research papers: &lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;https://zenodo.org/search?q=anticloud&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;LinkedIn: &lt;a href="https://linkedin.com/in/kleinner" rel="noopener noreferrer"&gt;https://linkedin.com/in/kleinner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Project: The Anticloud&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, Browser Engine, Privacy, VLM, Ad Blocking&lt;/p&gt;

</description>
      <category>security</category>
      <category>opensource</category>
      <category>privacy</category>
      <category>research</category>
    </item>
    <item>
      <title>We built Cryptographic Notarization Across Independent Ledgers so you never have to trust anyone.</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Mon, 22 Jun 2026 15:06:57 +0000</pubDate>
      <link>https://dev.to/kleinner/we-built-cryptographic-notarization-across-independent-ledgers-so-you-never-have-to-trust-anyone-3hda</link>
      <guid>https://dev.to/kleinner/we-built-cryptographic-notarization-across-independent-ledgers-so-you-never-have-to-trust-anyone-3hda</guid>
      <description>&lt;h1&gt;
  
  
  We built Cryptographic Notarization Across Independent Ledgers so you never have to trust anyone.
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Cryptographic Notarization Across Independent Ledgers: Cross-Chain Anchoring Protocols&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Organizations operating multiple AI systems generate independent cryptographic ledgers that may need mutual verification, cross-referencing, or consolidated audit for enterprise-wide compliance reporting. Cross-chain notarization provides cryptographic evidence that a ledger's state is acknowledged by another independent ledger, enabling distributed audit verification without central coordination.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;This paper presents the design and analysis of the AIOSS cross-chain notarization protocol, which anchors the hash chain head of one ledger into another by inserting a notarization entry containing the cross-chain proof. We define three notarization modes: unilateral (ledger A notarizes ledger B's state), bilateral (mutual notarization between A and B), and supervised (third-party notarizer with independent proof).&lt;/p&gt;

&lt;h2&gt;
  
  
  The Research
&lt;/h2&gt;

&lt;p&gt;Organizations operating multiple AI systems generate independent cryptographic ledgers that may need mutual verification, cross-referencing, or consolidated audit for enterprise-wide compliance reporting.&lt;/p&gt;

&lt;p&gt;Cross-chain notarization provides cryptographic evidence that a ledger's state is acknowledged by another independent ledger, enabling distributed audit verification without central coordination.&lt;/p&gt;

&lt;p&gt;This paper presents the design and analysis of the AIOSS cross-chain notarization protocol, which anchors the hash chain head of one ledger into another by inserting a notarization entry containing the cross-chain proof.&lt;/p&gt;

&lt;p&gt;We define three notarization modes: unilateral (ledger A notarizes ledger B's state), bilateral (mutual notarization between A and B), and supervised (third-party notarizer with independent proof).&lt;/p&gt;

&lt;p&gt;This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Full citation:&lt;/strong&gt; Alpasan, L.-K. (2026). Cryptographic Notarization Across Independent Ledgers: Cross-Chain Anchoring Protocols. &lt;em&gt;The Anticloud Research Corpus.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;Read the full paper&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  Why The Anticloud
&lt;/h3&gt;

&lt;p&gt;Every AI company today will try to sell you inference as a service. They will tell you that you need their GPU clusters, their data centers, their cooling infrastructure, and their team of DevOps engineers to run modern AI. They are either lying to you or they have not seen what we built.&lt;/p&gt;

&lt;p&gt;The Anticloud runs on any GPU or CPU with equal competence. There is no silicon vendor lock-in. There is no hardware partnership requirement. There is no planned obsolescence built into the stack. If you have a computer, you have enough hardware to run it.&lt;/p&gt;

&lt;p&gt;The entire system ships as a single binary. There is no orchestration layer to configure. There is no Kubernetes cluster to maintain. There are no containers to deploy. There is no DevOps team required to keep it running. One file. One execution. That is the entire infrastructure.&lt;/p&gt;

&lt;p&gt;There is no bloat anywhere in the stack. No Electron wrapper adding hundreds of megabytes of overhead. No node_modules directory with ten thousand dependencies you do not need. No container layers abstracting away from the hardware. Everything in the binary is there because it serves a purpose.&lt;/p&gt;

&lt;p&gt;The system requires no internet connection to function. It does not need to phone home for model updates. It does not need to call out to third-party APIs for inference. It does not need to establish a connection to a control server just to boot. It was designed from the ground up to run in environments where the network does not exist.&lt;/p&gt;

&lt;p&gt;This is AI infrastructure that fits on a laptop, runs on consumer hardware, and delivers competitive performance without asking for permission or requiring a subscription.&lt;/p&gt;

&lt;p&gt;The Anticloud requires one machine, one binary, and zero trust in anyone.&lt;/p&gt;




&lt;h3&gt;
  
  
  About the Author
&lt;/h3&gt;

&lt;p&gt;My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud.&lt;/p&gt;

&lt;p&gt;I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction.&lt;/p&gt;

&lt;p&gt;I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything.&lt;/p&gt;

&lt;p&gt;The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop.&lt;/p&gt;

&lt;p&gt;I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Follow the work:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Research papers: &lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;https://zenodo.org/search?q=anticloud&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;LinkedIn: &lt;a href="https://linkedin.com/in/kleinner" rel="noopener noreferrer"&gt;https://linkedin.com/in/kleinner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Project: The Anticloud&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, Hash Chain, Cryptography, Ledger, Integrity&lt;/p&gt;

</description>
      <category>security</category>
      <category>opensource</category>
      <category>privacy</category>
      <category>research</category>
    </item>
    <item>
      <title>Airgapped api gateway is real. Active Learning and Parameter-Efficient Fine-Tuning for Doma is proof.</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Mon, 22 Jun 2026 15:01:35 +0000</pubDate>
      <link>https://dev.to/kleinner/airgapped-api-gateway-is-real-active-learning-and-parameter-efficient-fine-tuning-for-doma-is-4201</link>
      <guid>https://dev.to/kleinner/airgapped-api-gateway-is-real-active-learning-and-parameter-efficient-fine-tuning-for-doma-is-4201</guid>
      <description>&lt;h1&gt;
  
  
  Airgapped api gateway is real. Active Learning and Parameter-Efficient Fine-Tuning for Doma is proof.
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Active Learning and Parameter-Efficient Fine-Tuning for Domain-Specific Sovereign AI&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Deploying sovereign AI systems in regulated domains?banking compliance, healthcare administration, legal research?requires domain-specific model adaptation that balances accuracy improvements against computational cost, annotation scarcity, and data privacy constraints. Full fine-tuning of large language models is computationally prohibitive for local-first sovereign deployments and risks catastrophic forgetting of general capabilities.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;This paper presents the active learning and fine-tuning architecture of API-OSS (Agent-Predictive Intelligence Sovereign Operating System), which combines parameter-efficient fine-tuning (PEFT) via LoRA (Low-Rank Adaptation) and DPO (Direct Preference Optimization) with active learning strategies for annotation-efficient domain adaptation. We evaluate uncertainty sampling, diversity sampling, and hybrid acquisition functions across 3 domain-specific datasets (financial compliance, medical coding, legal document classification), finding that hybrid acquisition (BALD + CoreSet) reduces annotation requirements by 68% compared to random sampling while achieving equivalent model quality.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Research
&lt;/h2&gt;

&lt;p&gt;Deploying sovereign AI systems in regulated domains?banking compliance, healthcare administration, legal research?requires domain-specific model adaptation that balances accuracy improvements against computational cost, annotation scarcity, and data privacy constraints.&lt;/p&gt;

&lt;p&gt;Full fine-tuning of large language models is computationally prohibitive for local-first sovereign deployments and risks catastrophic forgetting of general capabilities.&lt;/p&gt;

&lt;p&gt;This paper presents the active learning and fine-tuning architecture of API-OSS (Agent-Predictive Intelligence Sovereign Operating System), which combines parameter-efficient fine-tuning (PEFT) via LoRA (Low-Rank Adaptation) and DPO (Direct Preference Optimization) with active learning strategies for annotation-efficient domain adaptation.&lt;/p&gt;

&lt;p&gt;We evaluate uncertainty sampling, diversity sampling, and hybrid acquisition functions across 3 domain-specific datasets (financial compliance, medical coding, legal document classification), finding that hybrid acquisition (BALD + CoreSet) reduces annotation requirements by 68% compared to random sampling while achieving equivalent model quality.&lt;/p&gt;

&lt;p&gt;This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Full citation:&lt;/strong&gt; Alpasan, L.-K. (2026). Active Learning and Parameter-Efficient Fine-Tuning for Domain-Specific Sovereign AI. &lt;em&gt;The Anticloud Research Corpus.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;Read the full paper&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  Why The Anticloud
&lt;/h3&gt;

&lt;p&gt;A single large language model training run can emit as much carbon as five cars over their entire lifetimes. The datacenter industry already consumes more electricity than most countries. Every cloud inference call you make is burning through resources that someone else pays for — and the cost is not just financial.&lt;/p&gt;

&lt;p&gt;The Anticloud has no datacenter footprint. It does not require a single server rack in any building anywhere in the world. It does not need cooling towers, redundant power supplies, or backup generators. The entire system runs on hardware you already own.&lt;/p&gt;

&lt;p&gt;There is no silicon farm involved in serving your inference. You do not need to reserve GPU time on a cluster. You do not need to provision cloud instances. You do not need to negotiate pricing with a cloud provider. The hardware is already on your desk.&lt;/p&gt;

&lt;p&gt;There is no e-waste from hardware turnover cycles driven by cloud providers upgrading their fleets. The system runs on whatever hardware you have, and it will continue to run on whatever hardware you replace it with. There is no forced upgrade path.&lt;/p&gt;

&lt;p&gt;The energy consumption of running inference locally is a fraction of what it would take to send your data to a datacenter, have it processed on a server that is burning through megawatts, and send the result back across the internet. Local inference does not need to cross a network. It does not need to be routed through multiple data centers. It happens on the hardware in front of you.&lt;/p&gt;

&lt;p&gt;This is AI infrastructure that can exist anywhere — on a laptop in a coffee shop, on a server in an off-grid facility, on a machine that has never seen the internet. No datacenter required. No environmental compromise required.&lt;/p&gt;

&lt;p&gt;The Anticloud requires one machine, one binary, and zero trust in anyone.&lt;/p&gt;




&lt;h3&gt;
  
  
  About the Author
&lt;/h3&gt;

&lt;p&gt;My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud.&lt;/p&gt;

&lt;p&gt;I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction.&lt;/p&gt;

&lt;p&gt;I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything.&lt;/p&gt;

&lt;p&gt;The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop.&lt;/p&gt;

&lt;p&gt;I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Follow the work:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Research papers: &lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;https://zenodo.org/search?q=anticloud&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;LinkedIn: &lt;a href="https://linkedin.com/in/kleinner" rel="noopener noreferrer"&gt;https://linkedin.com/in/kleinner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Project: The Anticloud&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, API Gateway, Multi-Agent, AI Routing, Federation&lt;/p&gt;

</description>
      <category>security</category>
      <category>opensource</category>
      <category>privacy</category>
      <category>research</category>
    </item>
    <item>
      <title>The most secure version of zero-knowledge storage is the one that never connects.</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Mon, 22 Jun 2026 15:01:13 +0000</pubDate>
      <link>https://dev.to/kleinner/the-most-secure-version-of-zero-knowledge-storage-is-the-one-that-never-connects-4f5f</link>
      <guid>https://dev.to/kleinner/the-most-secure-version-of-zero-knowledge-storage-is-the-one-that-never-connects-4f5f</guid>
      <description>&lt;h1&gt;
  
  
  The most secure version of zero-knowledge storage is the one that never connects.
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Zero-Knowledge Storage: Architectures for User-Controlled Data&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Zero-knowledge storage architectures empower users with complete control over their data by ensuring that no third party?including the storage provider?can access plaintext file contents or metadata. This document presents a comprehensive analysis of zero-knowledge principles as applied to file storage systems, with specific focus on Kamelot's end-to-end encryption architecture.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;We examine the cryptographic building blocks including end-to-end encryption with per-file keys, key agreement protocols for secure file sharing, searchable encryption for privacy-preserving queries, and blind indexing for typo-tolerant search. We analyze the practical limitations of homomorphic encryption and present Kamelot's pragmatic approach: processing data locally before encryption ensures that the storage provider never has access to unencrypted content.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Research
&lt;/h2&gt;

&lt;p&gt;Zero-knowledge storage architectures empower users with complete control over their data by ensuring that no third party?including the storage provider?can access plaintext file contents or metadata.&lt;/p&gt;

&lt;p&gt;This document presents a comprehensive analysis of zero-knowledge principles as applied to file storage systems, with specific focus on Kamelot's end-to-end encryption architecture.&lt;/p&gt;

&lt;p&gt;We examine the cryptographic building blocks including end-to-end encryption with per-file keys, key agreement protocols for secure file sharing, searchable encryption for privacy-preserving queries, and blind indexing for typo-tolerant search.&lt;/p&gt;

&lt;p&gt;We analyze the practical limitations of homomorphic encryption and present Kamelot's pragmatic approach: processing data locally before encryption ensures that the storage provider never has access to unencrypted content.&lt;/p&gt;

&lt;p&gt;This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Full citation:&lt;/strong&gt; Alpasan, L.-K. (2026). Zero-Knowledge Storage: Architectures for User-Controlled Data. &lt;em&gt;The Anticloud Research Corpus.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;Read the full paper&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  Why The Anticloud
&lt;/h3&gt;

&lt;p&gt;Every AI company today will try to sell you inference as a service. They will tell you that you need their GPU clusters, their data centers, their cooling infrastructure, and their team of DevOps engineers to run modern AI. They are either lying to you or they have not seen what we built.&lt;/p&gt;

&lt;p&gt;The Anticloud runs on any GPU or CPU with equal competence. There is no silicon vendor lock-in. There is no hardware partnership requirement. There is no planned obsolescence built into the stack. If you have a computer, you have enough hardware to run it.&lt;/p&gt;

&lt;p&gt;The entire system ships as a single binary. There is no orchestration layer to configure. There is no Kubernetes cluster to maintain. There are no containers to deploy. There is no DevOps team required to keep it running. One file. One execution. That is the entire infrastructure.&lt;/p&gt;

&lt;p&gt;There is no bloat anywhere in the stack. No Electron wrapper adding hundreds of megabytes of overhead. No node_modules directory with ten thousand dependencies you do not need. No container layers abstracting away from the hardware. Everything in the binary is there because it serves a purpose.&lt;/p&gt;

&lt;p&gt;The system requires no internet connection to function. It does not need to phone home for model updates. It does not need to call out to third-party APIs for inference. It does not need to establish a connection to a control server just to boot. It was designed from the ground up to run in environments where the network does not exist.&lt;/p&gt;

&lt;p&gt;This is AI infrastructure that fits on a laptop, runs on consumer hardware, and delivers competitive performance without asking for permission or requiring a subscription.&lt;/p&gt;

&lt;p&gt;The Anticloud requires one machine, one binary, and zero trust in anyone.&lt;/p&gt;




&lt;h3&gt;
  
  
  About the Author
&lt;/h3&gt;

&lt;p&gt;My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud.&lt;/p&gt;

&lt;p&gt;I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction.&lt;/p&gt;

&lt;p&gt;I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything.&lt;/p&gt;

&lt;p&gt;The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop.&lt;/p&gt;

&lt;p&gt;I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Follow the work:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Research papers: &lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;https://zenodo.org/search?q=anticloud&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;LinkedIn: &lt;a href="https://linkedin.com/in/kleinner" rel="noopener noreferrer"&gt;https://linkedin.com/in/kleinner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Project: The Anticloud&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, Vector Search, Semantic, Embeddings, Retrieval&lt;/p&gt;

</description>
      <category>security</category>
      <category>opensource</category>
      <category>privacy</category>
      <category>research</category>
    </item>
    <item>
      <title>We built TOTP Authenticator Integration Within a Cryptographic Browser Vault ? without a single server.</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Mon, 22 Jun 2026 14:55:52 +0000</pubDate>
      <link>https://dev.to/kleinner/we-built-totp-authenticator-integration-within-a-cryptographic-browser-vault-without-a-single-1f7e</link>
      <guid>https://dev.to/kleinner/we-built-totp-authenticator-integration-within-a-cryptographic-browser-vault-without-a-single-1f7e</guid>
      <description>&lt;h1&gt;
  
  
  We built TOTP Authenticator Integration Within a Cryptographic Browser Vault ? without a single server.
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;TOTP Authenticator Integration Within a Cryptographic Browser Vault: QR Auto-Detection and 2FA Workflow&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Time-based One-Time Password (TOTP) authenticators have become the predominant form of multi-factor authentication, with over 5 billion accounts protected by TOTP-based 2FA globally . However, existing TOTP implementations suffer from three systemic problems: (1) vault fragmentation across proprietary authenticator applications, (2) lack of cryptographic integration with user identity keys, and (3) manual, error-prone setup workflows requiring QR code scanning via separate devices or screenshots.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;This paper presents the Kathon Vault TOTP subsystem, an integrated authenticator that derives TOTP seeds from the user's BIP39 mnemonic using a deterministic derivation path (SLIP-10), automatically detects TOTP QR codes from rendered web pages using the Qwen 2.5 VL vision model, and generates RFC 6238-compliant TOTP codes  within the browser's cryptographic vault. The system achieves 97.2% accuracy in automated QR code detection and seed extraction across 500 tested 2FA enrollment pages, reducing setup time from an average of 45.3 seconds (manual) to 2.1 seconds (automated).&lt;/p&gt;

&lt;h2&gt;
  
  
  The Research
&lt;/h2&gt;

&lt;p&gt;Time-based One-Time Password (TOTP) authenticators have become the predominant form of multi-factor authentication, with over 5 billion accounts protected by TOTP-based 2FA globally .&lt;/p&gt;

&lt;p&gt;However, existing TOTP implementations suffer from three systemic problems: (1) vault fragmentation across proprietary authenticator applications, (2) lack of cryptographic integration with user identity keys, and (3) manual, error-prone setup workflows requiring QR code scanning via separate devices or screenshots.&lt;/p&gt;

&lt;p&gt;This paper presents the Kathon Vault TOTP subsystem, an integrated authenticator that derives TOTP seeds from the user's BIP39 mnemonic using a deterministic derivation path (SLIP-10), automatically detects TOTP QR codes from rendered web pages using the Qwen 2.5 VL vision model, and generates RFC 6238-compliant TOTP codes  within the browser's cryptographic vault.&lt;/p&gt;

&lt;p&gt;The system achieves 97.2% accuracy in automated QR code detection and seed extraction across 500 tested 2FA enrollment pages, reducing setup time from an average of 45.3 seconds (manual) to 2.1 seconds (automated).&lt;/p&gt;

&lt;p&gt;This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Full citation:&lt;/strong&gt; Alpasan, L.-K. (2026). TOTP Authenticator Integration Within a Cryptographic Browser Vault: QR Auto-Detection and 2FA Workflow. &lt;em&gt;The Anticloud Research Corpus.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;Read the full paper&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  Why The Anticloud
&lt;/h3&gt;

&lt;p&gt;A single large language model training run can emit as much carbon as five cars over their entire lifetimes. The datacenter industry already consumes more electricity than most countries. Every cloud inference call you make is burning through resources that someone else pays for — and the cost is not just financial.&lt;/p&gt;

&lt;p&gt;The Anticloud has no datacenter footprint. It does not require a single server rack in any building anywhere in the world. It does not need cooling towers, redundant power supplies, or backup generators. The entire system runs on hardware you already own.&lt;/p&gt;

&lt;p&gt;There is no silicon farm involved in serving your inference. You do not need to reserve GPU time on a cluster. You do not need to provision cloud instances. You do not need to negotiate pricing with a cloud provider. The hardware is already on your desk.&lt;/p&gt;

&lt;p&gt;There is no e-waste from hardware turnover cycles driven by cloud providers upgrading their fleets. The system runs on whatever hardware you have, and it will continue to run on whatever hardware you replace it with. There is no forced upgrade path.&lt;/p&gt;

&lt;p&gt;The energy consumption of running inference locally is a fraction of what it would take to send your data to a datacenter, have it processed on a server that is burning through megawatts, and send the result back across the internet. Local inference does not need to cross a network. It does not need to be routed through multiple data centers. It happens on the hardware in front of you.&lt;/p&gt;

&lt;p&gt;This is AI infrastructure that can exist anywhere — on a laptop in a coffee shop, on a server in an off-grid facility, on a machine that has never seen the internet. No datacenter required. No environmental compromise required.&lt;/p&gt;

&lt;p&gt;The Anticloud requires one machine, one binary, and zero trust in anyone.&lt;/p&gt;




&lt;h3&gt;
  
  
  About the Author
&lt;/h3&gt;

&lt;p&gt;My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud.&lt;/p&gt;

&lt;p&gt;I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction.&lt;/p&gt;

&lt;p&gt;I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything.&lt;/p&gt;

&lt;p&gt;The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop.&lt;/p&gt;

&lt;p&gt;I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Follow the work:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Research papers: &lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;https://zenodo.org/search?q=anticloud&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;LinkedIn: &lt;a href="https://linkedin.com/in/kleinner" rel="noopener noreferrer"&gt;https://linkedin.com/in/kleinner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Project: The Anticloud&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, Browser Engine, Privacy, VLM, Ad Blocking&lt;/p&gt;

</description>
      <category>security</category>
      <category>opensource</category>
      <category>privacy</category>
      <category>research</category>
    </item>
    <item>
      <title>The most secure version of pipe-delimited log export for siem integration is the one that never connects.</title>
      <dc:creator>Lois-Kleinner</dc:creator>
      <pubDate>Mon, 22 Jun 2026 14:55:31 +0000</pubDate>
      <link>https://dev.to/kleinner/the-most-secure-version-of-pipe-delimited-log-export-for-siem-integration-is-the-one-that-never-44lh</link>
      <guid>https://dev.to/kleinner/the-most-secure-version-of-pipe-delimited-log-export-for-siem-integration-is-the-one-that-never-44lh</guid>
      <description>&lt;h1&gt;
  
  
  The most secure version of pipe-delimited log export for siem integration is the one that never connects.
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Pipe-Delimited Log Export for SIEM Integration: Interoperable Audit Format Design&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Security Information and Event Management (SIEM) systems such as Splunk, Elasticsearch, Microsoft Sentinel, and QRadar form the operational backbone of enterprise security monitoring. While these systems excel at log ingestion, search, and alerting, they lack native support for cryptographic hash chain verification.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;Bridging AIOSS cryptographic ledgers with SIEM pipelines requires an export format that preserves structured audit data while remaining compatible with standard SIEM ingestion protocols. This paper presents the design of the AIOSS pipe-delimited (pipe-delimited) TXT export format, a 12-field text-based representation of cryptographic ledger entries optimized for SIEM ingestion.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Research
&lt;/h2&gt;

&lt;p&gt;Security Information and Event Management (SIEM) systems such as Splunk, Elasticsearch, Microsoft Sentinel, and QRadar form the operational backbone of enterprise security monitoring.&lt;/p&gt;

&lt;p&gt;While these systems excel at log ingestion, search, and alerting, they lack native support for cryptographic hash chain verification.&lt;/p&gt;

&lt;p&gt;Bridging AIOSS cryptographic ledgers with SIEM pipelines requires an export format that preserves structured audit data while remaining compatible with standard SIEM ingestion protocols.&lt;/p&gt;

&lt;p&gt;This paper presents the design of the AIOSS pipe-delimited (pipe-delimited) TXT export format, a 12-field text-based representation of cryptographic ledger entries optimized for SIEM ingestion.&lt;/p&gt;

&lt;p&gt;This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Full citation:&lt;/strong&gt; Alpasan, L.-K. (2026). Pipe-Delimited Log Export for SIEM Integration: Interoperable Audit Format Design. &lt;em&gt;The Anticloud Research Corpus.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;Read the full paper&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  Why The Anticloud
&lt;/h3&gt;

&lt;p&gt;Every AI system you have ever used was designed to extract value from you — your data, your attention, your money. The Anticloud is not a service. It is not in the cloud. It is not rentable inference. It is a fundamentally different category of infrastructure, and here is what that means in practice.&lt;/p&gt;

&lt;p&gt;Your data never leaves your machine. We designed the system so we physically cannot access it. Access is not restricted by policy — it is structurally impossible by architecture. There is no data to steal because there is no server to steal it from.&lt;/p&gt;

&lt;p&gt;The system is airgapped by architecture, not by configuration. It does not require a network connection to function. It was built offline, it runs offline, and it never reaches out to anyone for any reason. Connectivity is simply not a prerequisite for intelligence.&lt;/p&gt;

&lt;p&gt;Compliance is a side effect of physics, not a certification. There is no cloud infrastructure to audit, which means there is no attack surface to harden. ISO 27001 and SOC 2 exist because cloud products are inherently vulnerable. Our architecture does not have those vulnerabilities because it does not have a cloud.&lt;/p&gt;

&lt;p&gt;Every operation is recorded on an immutable &lt;code&gt;.aioss&lt;/code&gt; ledger using a SHA3-256 hash chain. Every inference, every decision, every update is chained and cryptographically verifiable. There is no database admin who can delete logs because there is no database. You verify. We cannot.&lt;/p&gt;

&lt;p&gt;The system never speaks to anyone but you. There are no hidden layers sending telemetry. There are no proprietary weights phoning home. There are no third-party API calls embedded in the stack. The entire system is open, documented, and auditable by anyone who runs it.&lt;/p&gt;

&lt;p&gt;The Anticloud requires one machine, one binary, and zero trust in anyone.&lt;/p&gt;




&lt;h3&gt;
  
  
  About the Author
&lt;/h3&gt;

&lt;p&gt;My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud.&lt;/p&gt;

&lt;p&gt;I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction.&lt;/p&gt;

&lt;p&gt;I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything.&lt;/p&gt;

&lt;p&gt;The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop.&lt;/p&gt;

&lt;p&gt;I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Follow the work:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Research papers: &lt;a href="https://zenodo.org/search?q=anticloud" rel="noopener noreferrer"&gt;https://zenodo.org/search?q=anticloud&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;LinkedIn: &lt;a href="https://linkedin.com/in/kleinner" rel="noopener noreferrer"&gt;https://linkedin.com/in/kleinner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Project: The Anticloud&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, Hash Chain, Cryptography, Ledger, Integrity&lt;/p&gt;

</description>
      <category>security</category>
      <category>opensource</category>
      <category>privacy</category>
      <category>research</category>
    </item>
  </channel>
</rss>
