« Previous | Next »
- Staff Engineer: Leadership beyond the management track
- (pt-BR) Conversas Cruciais - Joseph Grenny & Kerry Patterson & Ron McMillan &
Al Switzler & Emily Gregory
- PostgreSQL query to split string in multiple rows:
SELECT regexp_split_to_table('row1,row2,row3', ',')
jq
- sort output by key:
jq -S
- cast strings->JSONs
jq '.<key> |= fromjson'
- cast multiple strings->JSONs
jq '.<key> |= fromjson | .<another-key> |= fromjson'
- cast string->JSON in a list
jq 'map(.<key> |= fromjson)'
- cast multiple strings->JSONs in a list
jq 'map(.<key> |= fromjson | .<another-key> |= fromjson)'
- chezmoi - manage your dotfiles across
multiple diverse machines, securely
- ell - LLMs calls as Python functions
« Previous | Next »