Design principle Yippee encourages: because SQLite makes query overhead negligible, views are the right place to fetch the data they render. The historical rule against queries in views exists only because Rails/MySQL/Postgres stacks can silently balloon partial N+1s into p50-killing cascades; when that risk is removed, co-locating data fetching with data usage is architecturally cleaner. Hundreds of queries inside a view become acceptable and often preferable.