topaztee - Overview

Skip to content

Navigation Menu

Sign in

Appearance settings

Hi there 👋

Pinned Loading

  1. A chrome extension that adds some flare to Trello's plain progress bar

    JavaScript

  2. [uni assignment] [deprecated] IOS mobile application that searches for the cheapest flights and lets you book them

    Swift

  3. 1

    ls -1 *.heic | xargs -n 1 bash -c 'convert "$0" "${0%.*}.jpg"'
  4. 1

    # drop all test databases

    2

    sql="select datname from pg_database where datname like '%test_%'"

    3

    dbDelNames=`psql -U postgres -t -A -c "$sql"`

    4

    for dbName in ${dbDelNames[@]}