HN user

minikomi

3,726 karma

Peace to every crease on your brain

Posts33
Comments1,247
View on HN
poyo.co 1mo ago

Two LLM UI Patterns That Aren't Chat

minikomi
6pts0
poyo.co 4mo ago

What I talk about when I talk about prompting

minikomi
1pts0
poyo.co 5mo ago

Evolving a Modular Dev Experience in Emacs

minikomi
2pts1
www.qprc.jp 4y ago

Japanese “Card Contained” Stationary

minikomi
30pts3
www.youtube.com 5y ago

Roland TR-909 Famous Patterns

minikomi
7pts1
raincityskills.com 5y ago

The Dumpster Fire – Signature Yoyo of 2020

minikomi
1pts0
www.netlifystatus.com 5y ago

Netlify was down

minikomi
67pts33
www.ft.com 7y ago

Softbank mobile service disrupted ahead of mobile unit IPO

minikomi
2pts0
twitter.com 7y ago

Soundcloud has closed access to their API

minikomi
3pts1
www.puzzlescript.net 8y ago

PuzzleScript is an open-source HTML5 puzzle game engine

minikomi
1pts0
www.amazon.co.jp 10y ago

Amazon English (language learning service)

minikomi
2pts0
groups.google.com 11y ago

John Carmack working on Scheme as a VR scripting language

minikomi
555pts346
news.ycombinator.com 11y ago

Ask HN: How has Clojure web security developed in the last year?

minikomi
1pts2
www.youtube.com 11y ago

Facebook's badly received Japanese TV comercial

minikomi
2pts1
en.rocketnews24.com 12y ago

Can you guess the starting salaries at popular IT companies in Japan?

minikomi
2pts1
london.sonoma.edu 12y ago

Holding her down

minikomi
2pts0
github.com 13y ago

Show HN: A golang websocket server you can pipe to

minikomi
45pts9
curlgur.tk 13y ago

Show HN: A curl frontend for imgur

minikomi
6pts6
gifdub.com 13y ago

Show HN: Gifdub

minikomi
1pts1
phys.org 13y ago

Researchers use earthworms to create quantum dots

minikomi
1pts0
www.honba.co 13y ago

Show HN: D3-powered table of this year's Amazon weekly bestseller lists

minikomi
3pts4
mathmunch.wordpress.com 13y ago

Sandpiles, Prime Pages, and Six Dimensions of Color

minikomi
2pts0
addons.heroku.com 13y ago

New Heroku Add-Ons Marketplace

minikomi
48pts22
blog.mongohq.com 13y ago

The New MongoHQ Web Interface

minikomi
3pts0
www.brischalle.de 13y ago

Lua-quick-try-out : A simple, low-barrier Lua IDE

minikomi
56pts22
www.reuters.com 14y ago

Gree, DeNA shares dive on report of possible regulatory action

minikomi
1pts0
chandlerprall.github.com 14y ago

Physijs - Physics plugin for three.js (bonus: jenga example included)

minikomi
62pts10
stackoverflow.com 14y ago

Writing an iOS app purely in C

minikomi
2pts0
news.ycombinator.com 14y ago

Show HN: Twitter bootstrap form builder.

minikomi
18pts5
plus.google.com 14y ago

IPhone Market Size vs iPad Market Size (iA Writer)

minikomi
1pts0

Very fond memories of using Audiogalaxy, and also soulseek.

Soulseek especially had a community where you found someone who was into the same kind of music as you (obscure breakcore! japanese garage punk!) and could browse their collections, and chat to them also! What a wonderful way to make music friends and get good recommendations.

Various LLM Smells 2 months ago
    <somebody> just <did something>. 
    
    And it changes everything.

Is my favorite linkedin-ism. Wish LinkedIn had a regex block option.
Google Flow Music 3 months ago

The descriptions generated from the prompts are almost always great, but the generated music is always terrible. The sound pallete seems so limited.

Yep. Semantically distinct and meaningful chunks wins every time over any kind of windowing or slice and dicing.

Unfortunately, many people are looking for a fire and forget solution over an existing rats nest of documentation debt..

The more you can afford to build up your understanding of the problem space and define what inputs & outputs look like, the more flexible you can be with evals. Unfortunately, this is a lot of work and requires thinking and discussion with your team and those involved.

https://poyo.co/note/20260217T130137/

I wrote about general ideas I take towards simple single prompt features, but most of it is applicable to more involved agentic approaches too.

Given the recent surge of popularity in home-grown coding agents ala pi-coding-agent, I thought it would be nice to share my setup for semi-hands-on coding.

It's not a replacement for a more sophisitcated coding agent harnesses, rather an alternative interaction mode, and tools to support it.

Although the content runs fairly emacs-centric, consider it rather a nudge toward building your own small, self-owned tools.

An example of why a basic understanding is helpful:

A common sentiment on HN is that LLMs generate too many comments in code.

For good reason -- comment sparsity improves code quality, due to the way causal transformers and positional encoding work. The model has learned that real, in-distribution code carries meaning in structure, naming, and control flow, not dense commentary. Fewer comments keep next-token prediction closer to the statistical shape of the code it was trained on.

Comments aren’t a free scratchpad. They inject natural-language tokens into the context window, compete for attention, and bias generation toward explanation rather than implementation, increasing drift over longer spans.

The solution to comment spam isn’t post-processing. It’s keeping generation in-distribution. Less commentary forces intent into the code itself, producing outputs that better match how code is written in the wild, and forcing the model into more realistic context avenues.