Skip to content

Instantly share code, notes, and snippets.

View ashd97's full-sized avatar

Sava Kanevsky ashd97

  • Eastern Europe
View GitHub Profile
@ashd97
ashd97 / call_download_tool.sh
Created May 15, 2021 12:03
Call download tool for Zoom (Eleveo) call recording system. Useful for mass call decryption. The script is for calls data migration/ or integration with third party systems (but its not streaming yet).
#!/bin/bash
####################################################################
#
# Developed by ashd97 (savely.kanevsky@gmail.com) This code is under MIT licence
# 30.05.2018
#
# Script is getting callIDs (COUPLEs.id) for each external call.
# Then it download each call by using native Zoom (Eleveo) API
# to decrypt each call, that is the only way for decryption.
#!/bin/bash -e
DIST="centos7"
TAG="$(date +%Y%m%d)"
IMG_DIR="${PWD}/buildroot-${DIST}"
REPO_DIR="${IMG_DIR}/etc/yum.repos.d"
RPMS=(
bind-utils
bash
@ashd97
ashd97 / eToken-9.sh
Created April 26, 2020 20:22 — forked from dex4er/eToken-9.sh
eToken
# udev
wget https://gist.githubusercontent.com/dex4er/1354710/raw/0f9738c7439cdfb9e4446663d137f91ee153b4d8/etc_udev_rules.d_90-hid-eToken.rules
sudo cp etc_udev_rules.d_90-hid-eToken.rules /etc/udev/rules.d
sudo service udev reload
# required packages
sudo apt-get -yy install pcscd opensc
# legacy library
wget http://mirrors.kernel.org/ubuntu/pool/universe/h/hal/libhal1_0.5.14-8_amd64.deb
@ashd97
ashd97 / README.md
Created October 24, 2018 12:51 — forked from badikirwan/README.md
How to host your Telegram bot on Google App Script

Telegram Bot on Google App Script

This is the source code of one of my blog post. To read the full blog post please click here.

@ashd97
ashd97 / rsstoemail.gs
Last active February 17, 2024 11:30
Get latest news by emails on google apps script trigger
// data feed URLs
var dataSources = [
"http://blog.qt.io/feed/",
"http://feed.rutracker.cc/atom/f/1426.atom",
"http://feeds2.feedburner.com/blogspot/hsDu",
];