home / browse

Quotes.Engineering

Custom SQL query returning 4 rows (hide)

SELECT
  'tag:quotes.engineering,' || substr(timestamp, 0, 11) || ':' || id AS atom_id,
  title AS atom_title,
  timestamp AS atom_updated,
  'https://quotes.engineering/quote/' || id AS atom_link,
  '<p>' || REPLACE(
    quote,
    char(10) || char(10),
    '</p><p>'
  ) || '</p>' AS atom_content_html
FROM
  quotes
ORDER BY
  timestamp DESC
LIMIT
  15

Edit SQL

This data as json, copyable, atom, CSV

atom_idatom_titleatom_updatedatom_linkatom_content_html
tag:quotes.engineering,2022-08-03:error-handling Error Handling 2022-08-03T04:05:19Z https://quotes.engineering/quote/error-handling <p>Error handling is important, but if it obscures logic, it's wrong.</p>
tag:quotes.engineering,2020-02-04:certificates-are-hard certificates are hard 2020-02-04T02:48:01Z https://quotes.engineering/quote/certificates-are-hard <p>It doesn’t matter what your market cap is. Certificates are hard.</p>
tag:quotes.engineering,2016-12-01:refactor-low-hanging-fruit Winds of Change 2016-12-01T03:50:20Z https://quotes.engineering/quote/refactor-low-hanging-fruit <p>In real life, what typically happens is, after the twister, your house lands on top of the previous lead architect, and you peer tremulously out the door at a twisted landscape of big balls of crufty mud, written by short programmers, their growth stunted by long working hours and junk food, under the spell of some lesser process than XP.</p><p>This leaves you wondering where to start. Then MichaelFeathers, wearing a Wikid Witch of the North costume, appears with a copy of The Joy of LegacyCode, and smacks you across the forehead with it.</p>
tag:quotes.engineering,2016-11-30:another-race-condition Another Race Condition 2016-11-30T09:23:15Z https://quotes.engineering/quote/another-race-condition <p>Life is hard enough without having to worry about another race condition.</p>
Powered by Datasette · Queries took 1.687ms