Skip to content

Instantly share code, notes, and snippets.

@Nezteb
Nezteb / Download_Songs.sh
Last active July 23, 2021 15:05
Downloads specified youtube videos as songs given text file.
#!/bin/bash
# Download_Songs.sh
# By Noah Betzen (Nezteb)
#
# Requires youtube-dl: https://rg3.github.io/youtube-dl/
# You can install youtube-dl via most package managers:
# brew install youtube-dl
# apt-get install youtube-dl
#
@azakordonets
azakordonets / ResultSetConvertor.java
Last active November 25, 2018 19:19
This class is designed to convert ResultSet data taken as a result of Db query into JSON. Also additional coverter methods are available
import org.json.JSONArray;
import org.json.JSONObject;
import java.sql.ResultSet;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.util.Locale;
/**
* Utility for converting ResultSets into some Output formats