Skip to content

Latest commit

 

History

History
77 lines (64 loc) · 1.34 KB

home.md

File metadata and controls

77 lines (64 loc) · 1.34 KB
tags title date description authors hide_frontmatter hide_title
dwarves
work
home
Home
2023-12-11
A collection of notes for everything we do and operate at Dwarves. This is where we keep our internal notes.
minhcloud
monotykamary
hnh
true
true

Welcome to the Dwarves Memo.

This site is a part of our continuous learning engine, where we want to build up the 1% improvement habit, learning in public.

Written by Dwarves for product craftsmen.

Learned by engineers. Experimented by engineers.

Latest Memos

SELECT markdown_link(title, file_path)
FROM vault
ORDER BY date DESC
LIMIT 5

OGIFs

SELECT markdown_link(COALESCE(short_title, title), file_path)
FROM vault
WHERE ['ogif'] && tags
ORDER BY date DESC
LIMIT 5

Open Bounty

SELECT
  markdown_link(title, file_path) as Title,
  bounty as '💰 Bounty',
  status as Status,
  PICs,
  function as Function
FROM vault
WHERE ['bounty'] && tags
  AND status = 'Open'

Team Digest

SELECT markdown_link(COALESCE(short_title, title), file_path)
FROM vault
WHERE ['weekly-digest'] && tags
ORDER BY date DESC
LIMIT 5

Open positions

SELECT markdown_link(title, file_path)
FROM vault
WHERE ['hiring'] && tags
  AND hiring = true
ORDER BY date DESC
LIMIT 5