Skip to content

Instantly share code, notes, and snippets.

View theKAKAN's full-sized avatar

KAKAN theKAKAN

View GitHub Profile
@theKAKAN
theKAKAN / backup-github.sh
Created June 20, 2018 07:34 — forked from rodw/backup-github.sh
A simple script to backup an organization's GitHub repositories, wikis and issues.
#!/bin/bash
# A simple script to backup an organization's GitHub repositories.
# NOTE: if you have more than 100 repositories, you'll need to step thru the list of repos
# returned by GitHub one page at a time, as described at https://gist.github.com/darktim/5582423
GHBU_BACKUP_DIR=${GHBU_BACKUP_DIR-"github-backups"} # where to place the backup files
GHBU_ORG=${GHBU_ORG-"<CHANGE-ME>"} # the GitHub organization whose repos will be backed up
# (if you're backing up a user's repos instead, this should be your GitHub username)
GHBU_UNAME=${GHBU_UNAME-"<CHANGE-ME>"} # the username of a GitHub account (to use with the GitHub API)
@theKAKAN
theKAKAN / IPStack.md
Last active July 1, 2018 05:42
Using IPStack without a API key.
@theKAKAN
theKAKAN / waitForEl.js
Last active September 9, 2018 17:27
Wait for element
var waitForEl = function (selector, callback) {
jQuery.when(jQuery(selector)).then(callback);
}
// Example for adding an item to cart
// in Amazon
var element = '#add-to-cart-button';
waitForEl(element, function (self) {
self.trigger('click');
@theKAKAN
theKAKAN / backup-packages-name.sh
Created December 6, 2018 14:13
Backs up all the installed packages using pacman. Can be used to reinstall them later...
#!/bin/bash
# A script to back up all the program names.
# Can be used to install them again later on
TSTAMP=`date +%H:%M_%d-%m-%Y`
# Get all the programs available in the repos
# And paste them in a file
pacman -Qentq > ./native-packages_${TSTAMP}.txt
@theKAKAN
theKAKAN / javaplugin.properties
Created May 15, 2020 17:46
For use with github.com/theKAKAN/vcmp-java-demo
jvmLibPath=/usr/lib/jvm/jre-1.8.0/lib/amd64/server/libjvm.so
mainEventsClass=ModeEventHandler
classPath=./java-vcmp-1.0-STAGING-all.jar
maxMemory=100m
@theKAKAN
theKAKAN / notify-mqtt.sh
Last active May 23, 2020 17:15
Checks for MQTT subbed-topic in Termux or linux and sends push notifications on receiving a message
#!/usr/bin/env bash
IP="10.0.0.1" #Change to IP of server
TOPIC="torrent/finished" # Change to your liking
VERSION="mqttv5"
if [ -n "$(command -v mosquitto_sub)" ]; then
echo "Found mosquitto"
if [ "$( uname )" == "Linux" ]; then
if [ -n "$( command -v termux-notification )" ]; then
echo "Running in termux"
mosquitto_sub -h "$IP" -V "$VERSION" -t "$TOPIC" | while read OUTPUT; do termux-notification -c "$OUTPUT"; done
@theKAKAN
theKAKAN / ffmpegConvert.sh
Created November 19, 2020 19:06
Convert all [{container format}] in a directory to any other kind of file using bash and ffmpeg
# Modify the ffmpeg command to your liking if you want :)
for name in ./*; do ffmpeg -i "$name" -vn "./mp3/${name%.*}.mp3"; done
# Change ./* to ./*.mp4 to select only MP4 files and so on.
# Change .mp3 to any format you like and
# ffmpeg will automatically adjust to the container format
# because of -vn
@theKAKAN
theKAKAN / backup.sh
Created January 20, 2021 13:27
Backup all my important files to where-ever I choose
# Where should we store the backups?
BACKUP_DIR="/mnt/backup_drive/$(hostname)/$(date -u +\"%Y-%m-%d\")"
# Backup /etc
sudo rsync -avzP /etc $BACKUP_DIR
# Backup /var excluding many heavy files
sudo rsync -avzP --exclude 'cache' \
--exclude 'lib/flatpak' \
--exclude 'lib/dnf' --exclude 'lib/dpkg' \
--exlclude 'lib/libvirt' \
--exclude 'lock' --exclude 'run' \
@theKAKAN
theKAKAN / getDirection.js
Created February 14, 2021 17:09
Convert degrees or angles to cardinal direction
function getDirection( angle ){
// We divide it into 16 sections
let directions = ["N","NNE","NE","ENE","E",
"ESE", "SE", "SSE","S",
"SSW","SW","WSW","W",
"WNW","NW","NNW" ];
// This means, every 360 / 16 degree, there's a section change
// So, in our case, every 22.5 degree, there's a section change
// In order to get the correct section, we just need to divide
let section = parseInt( angle/22.5 + 0.5 );
@theKAKAN
theKAKAN / kitsuFetch.sh
Created February 22, 2021 15:51
Fetch your "Completed" section of anime or manga and their IDs as well as their ratings using bash and put them into a CSV
#!/bin/bash
# Config
USERNAME="KAKAN"
mediaType="ANIME"
# Let's get it using HTTP
AFTER=$( http --pretty none -b -f https://kitsu.io/api/graphql query="query{findProfileBySlug(slug: \"$USERNAME\"){library{completed(first:100, mediaType:$mediaType){pageInfo{startCursor}}}}}" \
| jq .data.findProfileBySlug.library.completed.pageInfo.startCursor )