One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
package gpg | |
import ( | |
"bytes" | |
"encoding/base64" | |
"errors" | |
"golang.org/x/crypto/openpgp" | |
"golang.org/x/crypto/openpgp/packet" | |
"io/ioutil" | |
"os" |
package gpg | |
import ( | |
"errors" | |
"golang.org/x/crypto/openpgp" | |
"golang.org/x/crypto/openpgp/armor" | |
"golang.org/x/crypto/openpgp/packet" | |
"io" | |
"os" | |
"path/filepath" |
#!/bin/bash | |
# | |
# Script to import GitHub releases feed to tt rss | |
# Get Categories | |
# curl -s -X GET -d \ | |
# "$(jq -n --arg sid $(curl -s -d '{"op":"login","user":"","password":""}' https://rss.domain.com/api/ | jq -r '.content.session_id') --arg op getCategories '{"sid": $sid, "op": $op}')" | |
# https://rss.domain.com/api/ | jq -r | |
# { | |
# "seq": 0, |
func RemoveDirectoryRecursively(dir string) error { | |
return os.RemoveAll(dir+"/") | |
} |
find . -name "node_modules" -exec rm -rf '{}' + |
# Color constants | |
COLOR_BLACK='\033[30m' | |
COLOR_BLACK_BOLD='\033[0;30;1m' | |
COLOR_RED='\033[31m' | |
COLOR_RED_BOLD='\033[0;31;1m' | |
COLOR_GREEN='\033[32m' | |
COLOR_GREEN_BOLD='\033[0;32;1m' | |
COLOR_YELLOW='\033[33m' | |
COLOR_YELLOW_BOLD='\033[0;33;1m' | |
COLOR_BLUE='\033[34m' |
#!/bin/bash | |
TIMEOUT=10 | |
# Telegram bot User info bot Python | |
# search bot @myidbot | |
ID=0 | |
TOKEN=0 | |
function usage() |
from pyVim import connect | |
from pyVmomi import vim, vmodl | |
import threading, os, sys | |
import atexit | |
import argparse | |
import getpass | |
def get_args(): |