Skip to content
View topaztee's full-sized avatar
:shipit:
:shipit:

Block or report topaztee

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
topaztee/README.md

Hi there ๐Ÿ‘‹

Pinned Loading

  1. merlinn-co/merlinn merlinn-co/merlinn Public

    Open source AI on-call developer ๐Ÿง™โ€โ™‚๏ธ Get relevant context & root cause analysis in seconds about production incidents and make on-call engineers 10x better ๐ŸŽ๏ธ

    TypeScript 238 24

  2. chrome-extension-trello-custom-progress-bar chrome-extension-trello-custom-progress-bar Public

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

    JavaScript

  3. Google-flight-search-and-Booking-IOS-app Google-flight-search-and-Booking-IOS-app Public

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

    Swift

  4. iphone live photos are .heic formats... iphone live photos are .heic formats which most sites dont accept. This script converts .heic files to jpg
    1
    ls -1 *.heic | xargs -n 1 bash -c 'convert "$0" "${0%.*}.jpg"'
  5. send slack message in golang send slack message in golang
    1
    package slack
    2
    
    
    3
    import (
    4
    	"bytes"
    5
    	"encoding/json"
  6. script to delete all test databases script to delete all test databases
    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[@]}
    5
    do