Skip to content
View tst32's full-sized avatar
🎯
Easy 🕺 peasy 💃 lemon 🍋squeezy🎊
🎯
Easy 🕺 peasy 💃 lemon 🍋squeezy🎊
Block or Report

Block or report tst32

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
tst32/README.md

Metrics

Metrics Workflow

this repo owner GitHub stats

Pinned

  1. allreposclone.sh is a bash script to... allreposclone.sh is a bash script to clone all repos given github owner name
    1
    #!/usr/bin/env bash
    2
    args=("$@")
    3
    command -v gh >/dev/null 2>&1 || { echo >&2 "require gh (https://cli.github.com/) tool, but it's not installed.  Aborting."; exit 1; }
    4
    set -e
    5
    if [ $# -eq 0 ]; then
  2. Motortwit-Demo Motortwit-Demo Public

    Python

  3. NPP-TOML-Syntax NPP-TOML-Syntax Public

    Forked from Theodor-Lindberg/NPP-TOML-Syntax

    This provides syntax highlighting for TOML files in Notepad++

    4 1

  4. joyfullservice/msaccess-vcs-addin joyfullservice/msaccess-vcs-addin Public

    Synchronize your Access Forms, Macros, Modules, Queries, Reports, and more with a version control system.

    VBA 187 38

  5. Destroy all Docker Containers and Im... Destroy all Docker Containers and Images
    1
    #!/bin/bash
    2
    # Stop all containers
    3
    containers=`docker ps -a -q`
    4
    if [ -n "$containers" ] ; then
    5
            docker stop $containers