<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: acd</title><link>https://news.ycombinator.com/user?id=acd</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 22 Jul 2026 21:55:55 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=acd" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by acd in "Nobody knows what a used GPU cluster is worth"]]></title><description><![CDATA[
<p>Used GPU hosting for pension funds.<p>You go to ebay search for a used GPU. You get a price.<p>Neither is used servers a new thing or used routers. There are established used server companies.<p><a href="https://en.wikipedia.org/wiki/The_Emperor%27s_New_Clothes" rel="nofollow">https://en.wikipedia.org/wiki/The_Emperor%27s_New_Clothes</a></p>
]]></description><pubDate>Wed, 22 Jul 2026 18:06:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=49010946</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=49010946</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49010946</guid></item><item><title><![CDATA[New comment by acd in "Kimi K3 Is Competitive with Fable; Kimi K3 and Fable Is SoTA"]]></title><description><![CDATA[
<p>This benchmark is probably also self promotion of services. Fireworks happens to make a router. Using the router gets better performance.<p><a href="https://docs.fireworks.ai/deployments/routers" rel="nofollow">https://docs.fireworks.ai/deployments/routers</a></p>
]]></description><pubDate>Wed, 22 Jul 2026 08:24:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=49003448</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=49003448</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49003448</guid></item><item><title><![CDATA[New comment by acd in "Stop Using OpenCode"]]></title><description><![CDATA[
<p>Use Picode as an alternative to Opencode</p>
]]></description><pubDate>Mon, 20 Jul 2026 13:42:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=48978784</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=48978784</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48978784</guid></item><item><title><![CDATA[New comment by acd in "EU Exempts Apple Watch and AirPods from Battery Removal Requirements"]]></title><description><![CDATA[
<p>I dont agree for environments sake it should be user replaceable batteries even in small electronic devices. Hearing aids has user replaceable batteries</p>
]]></description><pubDate>Mon, 20 Jul 2026 10:29:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=48976836</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=48976836</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48976836</guid></item><item><title><![CDATA[New comment by acd in "Sony Deletes a Bunch More Movies from the Accounts of People Who 'Bought' Them"]]></title><description><![CDATA[
<p>Isnt there an issue with "Buy" and different countries marketing laws? Ie it implies "Hold" or "TemporaryKeep".<p>Guess it will be an upswing of BlueRay movies. Already happening with LPs and CDs</p>
]]></description><pubDate>Thu, 16 Jul 2026 13:59:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=48934701</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=48934701</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48934701</guid></item><item><title><![CDATA[New comment by acd in "Cleaning up after AI rockstar developers"]]></title><description><![CDATA[
<p>Code that is written will have to maintained often by someone else than who wrote the code. So if one write code nobody else understands its an eventual maintenence failure.<p>You could optimize for different things. Code understandability by the team, speed, technical brilliance.<p>If you optimize for technical brilliance but nobody else on the team understands the code its still a failure.<p>Seen over engineered code</p>
]]></description><pubDate>Tue, 09 Jun 2026 15:58:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=48462801</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=48462801</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48462801</guid></item><item><title><![CDATA[Show HN: Glq LLM quantization using E8 lattice]]></title><description><![CDATA[
<p>I have with the help of AI create an open source method of E8 LLM code book quantization library called glq. I was interested in creating Glq
as a PC gamer and devops, interested in both LLMs and AI. The current high RAM prices and LLM resource usage also inspired me to write glq. A question arises could you try and squeeze more out a gaming GPU with limited VRAM size by using alternative LLM compression methods?<p>Glq is effective compared to other LLM quantization algorithms at between 2-bits per weight up to 4 bits per weight. The effectiveness of glq at low bits per words is due to the properties of the E8 lattice compared to linear methods.
 Glq also supports mixed precision quantization where different LLM layers uses different compression bit weight depending on how sensitive the LLM layers are to quantization. Think of mixed precision a bit like MP3 or MP4 variable bit rate encoding.<p>I currently develop glq using g7e AWS spot instances to keep the cost more reasonable.<p>Glq uses vllm<p>4 bit Key value cache by E8 was inspired by NexusQuant. I try and squeeze in about four times as much Key value cache as normally would fit by BF16 in VRAM, or about two times compared to INT8.<p>I somehow wrongly at start picked a E8 code book size of 65536 entries instead of 4096 code book entries which better fits in GPU L1 cache. Having 65535 code book entries it turns out leads to higher LLM compression rate but at trade of of decode speed. I am trying to compensate by using Nvidia Cuda graphs and optimize the decode, currently work in progress.<p>To install glq in a python virtual environment on Linux with a Nvidia GPU:
pip install glq<p>Python PIP package
<a href="https://pypi.org/project/glq/" rel="nofollow">https://pypi.org/project/glq/</a><p>Glq source code.
<a href="https://github.com/cnygaard/glq" rel="nofollow">https://github.com/cnygaard/glq</a><p>Current PC RAM Prices that inspired the library. 
<a href="https://pcpartpicker.com/trends/price/memory/" rel="nofollow">https://pcpartpicker.com/trends/price/memory/</a><p><a href="https://en.wikipedia.org/wiki/E8_lattice" rel="nofollow">https://en.wikipedia.org/wiki/E8_lattice</a>
Eight dimensional lattice that provides optimal solution to the sphere packing problems. Think about it a bit like stacking cannon balls or stacking apples in an optimal way. Only you swap the apples for LLM weights.<p>Picture of an E8 lattice
<a href="https://en.wikipedia.org/wiki/E8_polytope#/media/File:E8_graph.svg" rel="nofollow">https://en.wikipedia.org/wiki/E8_polytope#/media/File:E8_gra...</a><p>Credits: GLQ was inspired by E8 Quip# and Key value E8 compression was inspired by NexusQuant.<p>Math: The sphere packing problem in dimension 8, Maryna Viazovska
<a href="https://arxiv.org/abs/1603.04246" rel="nofollow">https://arxiv.org/abs/1603.04246</a><p>4bpw glq Quantization of Gemma 4 E4b-instruction tuned
<a href="https://huggingface.co/xv0y5ncu/Gemma-4-E4B-it-GLQ-4bpw" rel="nofollow">https://huggingface.co/xv0y5ncu/Gemma-4-E4B-it-GLQ-4bpw</a><p>3.5bpw mixed precision quantization of SmolLM3
<a href="https://huggingface.co/xv0y5ncu/SmolLM3-3B-GLQ-3.5bpw" rel="nofollow">https://huggingface.co/xv0y5ncu/SmolLM3-3B-GLQ-3.5bpw</a><p>Docker image of glq on Nvidia GPU with Nvidia container toolkit. 
docker run --rm --gpus all \
    -v "$HOME/.cache/huggingface:/cache/hf" \
    ghcr.io/cnygaard/glq-env:0.5.0 \
    python -c '
import glq.hf_integration, torch                      # registers GLQ with HF
from transformers import AutoModelForCausalLM, AutoTokenizer
mid = "xv0y5ncu/SmolLM3-3B-GLQ-3.5bpw"
tok = AutoTokenizer.from_pretrained(mid)
model = AutoModelForCausalLM.from_pretrained(
    mid, device_map="cuda", torch_dtype=torch.float16)
ids = tok("The capital of France is", return_tensors="pt").to("cuda")
print(tok.decode(model.generate(*ids, max_new_tokens=20)[0],
                 skip_special_tokens=True))
'<p>Currently work in progress on glq in getting the decode speed up and supporting more LLM model architectures.<p>Open question, Does glq work on Nvidia DGX spark and gaming Nvidia hardware such as 4070-5090?</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48362773">https://news.ycombinator.com/item?id=48362773</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 01 Jun 2026 21:17:26 +0000</pubDate><link>https://github.com/cnygaard/glq</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=48362773</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48362773</guid></item><item><title><![CDATA[New comment by acd in "EU fines Temu €200M for allowing sale of illegal products"]]></title><description><![CDATA[
<p>Big corp penny slap on the fingers. I dont this amount will change behaviour or incentive to make larger profit.</p>
]]></description><pubDate>Thu, 28 May 2026 15:34:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=48310478</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=48310478</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48310478</guid></item><item><title><![CDATA[New comment by acd in "Mozilla to UK regulators: VPNs are essential privacy and security tools"]]></title><description><![CDATA[
<p>Actually with data fusion VPN does not fix privacy. Ad networks does data fusion of Javascript browser finger print. So you are de cloaked any way on a VPN</p>
]]></description><pubDate>Sun, 17 May 2026 09:01:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=48167209</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=48167209</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48167209</guid></item><item><title><![CDATA[New comment by acd in "I love Linux, but I can't quit Windows"]]></title><description><![CDATA[
<p>Use Winpodx and run Windows apps as a container in Linux<p><a href="https://github.com/kernalix7/winpodx" rel="nofollow">https://github.com/kernalix7/winpodx</a></p>
]]></description><pubDate>Sat, 16 May 2026 10:40:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=48158905</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=48158905</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48158905</guid></item><item><title><![CDATA[New comment by acd in "Waymo updates 3,800 robotaxis after they 'drive into standing water'"]]></title><description><![CDATA[
<p>But as soon as what happens is  an unusual event that is not in training data it get dangerous.<p>Think of any abnormal weather events that would make news headlines such as Lightning, blizzard, snow storms etc<p>This need to be simulated<p>Or the litmus test would the developers ride in such a product at such an event?</p>
]]></description><pubDate>Sat, 16 May 2026 07:59:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=48157894</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=48157894</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48157894</guid></item><item><title><![CDATA[New comment by acd in "NIST scientists create 'any wavelength' lasers"]]></title><description><![CDATA[
<p>Sounds useful for display purposes</p>
]]></description><pubDate>Sun, 19 Apr 2026 06:53:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=47822309</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=47822309</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47822309</guid></item><item><title><![CDATA[New comment by acd in "Foxing aspires to be an eBPF-powered replication engine for Linux filesystems"]]></title><description><![CDATA[
<p>How does it compare to drbd?<p>"Distributed Replicated Block Device (DRBD)[3] is a distributed replicated storage system for the Linux platform. It mirrors block devices between multiple hosts"<p>Which I think may be technology used by clouds</p>
]]></description><pubDate>Fri, 03 Apr 2026 14:31:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=47627081</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=47627081</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47627081</guid></item><item><title><![CDATA[New comment by acd in "Steam on Linux Use Skyrocketed Above 5% in March"]]></title><description><![CDATA[
<p>Go Linux. Gamers will have a better experiance in Linux. Predict that Windows will become an legacy emulation layer.</p>
]]></description><pubDate>Thu, 02 Apr 2026 08:21:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=47611503</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=47611503</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47611503</guid></item><item><title><![CDATA[New comment by acd in "Philly courts will ban all smart eyeglasses starting next week"]]></title><description><![CDATA[
<p>The problem is when people wear "smart" aka dumb privacy glasses in public restrooms. Should be banned or geofenced</p>
]]></description><pubDate>Mon, 30 Mar 2026 17:23:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47577145</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=47577145</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47577145</guid></item><item><title><![CDATA[New comment by acd in "Wired headphone sales are exploding"]]></title><description><![CDATA[
<p>Will wired speakers make a come back? Stereo separation vs mono pods?</p>
]]></description><pubDate>Sat, 14 Mar 2026 09:19:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=47374824</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=47374824</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47374824</guid></item><item><title><![CDATA[New comment by acd in "You can turn Claude's most annoying feature off"]]></title><description><![CDATA[
<p>Claude code once said verb it was "Slithering" I then changed the verb.</p>
]]></description><pubDate>Fri, 13 Mar 2026 06:50:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=47361389</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=47361389</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47361389</guid></item><item><title><![CDATA[New comment by acd in "GrapheneOS – Break Free from Google and Apple"]]></title><description><![CDATA[
<p>I want to break free - Queen :)<p>Lyrics
<a href="https://genius.com/Queen-i-want-to-break-free-lyrics" rel="nofollow">https://genius.com/Queen-i-want-to-break-free-lyrics</a></p>
]]></description><pubDate>Tue, 17 Feb 2026 17:17:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=47049998</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=47049998</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47049998</guid></item><item><title><![CDATA[New comment by acd in "Why is Singapore no longer "cool"?"]]></title><description><![CDATA[
<p>I think low fertility rate is related to high Internet use. You could argue its about high education.</p>
]]></description><pubDate>Tue, 10 Feb 2026 21:06:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=46966932</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=46966932</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46966932</guid></item><item><title><![CDATA[New comment by acd in "Volkswagen Brings Back Physical Buttons"]]></title><description><![CDATA[
<p>The aviation industry has spent decades researching cockpit design, running simulator studies, and learning from accidents. They still use physical buttons for critical controls. If touchscreen-everything was safer or better, they’d have adopted it by now. The main reasons cars are removing buttons are cost savings and aesthetics—not driver safety.</p>
]]></description><pubDate>Tue, 06 Jan 2026 22:44:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=46519900</link><dc:creator>acd</dc:creator><comments>https://news.ycombinator.com/item?id=46519900</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46519900</guid></item></channel></rss>