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

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

  1. 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"'
  2. send slack message in golang send slack message in golang
    1
    package slack
    2
    
                  
    3
    import (
    4
    	"bytes"
    5
    	"encoding/json"
  3. 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

  4. 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
  5. 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