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. vespperhq/vespper vespperhq/vespper Public

    Open-source AI copilot that lets you chat with your observability data and code 🧙‍♂️ Get relevant context & root cause analysis in seconds about production incidents and make on-call engineers 10x …

    TypeScript 244 26

  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