Skip to content

Instantly share code, notes, and snippets.

View ekenberg's full-sized avatar

Johan Ekenberg ekenberg

  • Göteborg, Sweden
View GitHub Profile
@ekenberg
ekenberg / qwen38-27b-dflash2-amasu.yaml
Last active September 1, 2026 19:13
sparkrun recipe: Qwen3.8-27B NVFP4 + DFlash2
# Qwen3.8-27B NVFP4 + DFlash2 — faithful port of amasu/dgx-spark-qwen38
# docker-compose.yml (current production stack, SGLang + NVFP4 + DFlash2,
# greedy default) to a sparkrun recipe for a single DGX Spark.
#
# Origin:
# https://github.com/amasu/dgx-spark-qwen38
#
# NOTE: this stack uses the PLAIN NVFP4 checkpoint — the
# repo A/B tested RadixArk/Qwen3.8-27B-NVFP4-BF16-LMHead on 2026-08-29 and
# REJECTED it (decode regressed ~20-25%, no quality gain). It also does NOT
@ekenberg
ekenberg / bulma-split-button-data-star.html
Last active December 21, 2025 18:55
Bulma split button dropdown using data-star
<!--
Pasting this example for future reference.
https://bulma.io/documentation/components/dropdown/
https://data-star.dev/reference/attributes
-->
<div class="field is-grouped is-grouped-right">
<div class="control">
@ekenberg
ekenberg / if condition on multiple lines
Created April 28, 2014 05:25
web-mode indentation bug
<?php
if (true
|| true)
print "This should be indented";
?>