Search and download MP3 from YouTube
- Google API Key
- Ruby (and 'yt' gem)
- Youtube-dl (and ffmpeg or avconv)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# | |
# nvidia-fanspeed | |
# | |
# `nvidia-fanspeed` check temperature and set fan speed value | |
# | |
# Requirements: nvidia-xconfig --cool-bits=4 | |
############################## | |
# Custom configuration: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env ruby | |
# NAME : Http Test | |
# DESCRIPTION : Download a binary file over HTTP | |
# AUTHOR : Madh93 (Miguel Hernandez) | |
# VERSION : 0.0.1 | |
# LICENSE : GNU General Public License v3 | |
# USAGE : ruby http_test.rb | |
require 'open-uri' |
Get all files from volafile rooms.
- Ruby
- Selenium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var crypto = require('crypto'); | |
start_time = new Date(); | |
var c = 0; | |
var m = 10000000; | |
while (c < m) { | |
var n0 = Math.floor(Math.random() * 9999999999); | |
var n1 = Math.floor(Math.random() * 9999999999); | |
var nn = crypto.createHash('md5').update(n0.toString()+n1.toString()).digest("hex"); |