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
@echo off | |
color 0a | |
title FFMPEG Conversion | |
cls | |
echo Converting Files... | |
for /f "tokens=1 delims=." %%a in ('dir /B *.mp3') do ffmpeg -i "%%a.mp3" "./wav/%%a.wav" | |
echo Done! | |
echo | |
echo You Can Now Close This Window (Or Press Enter) | |
@pause > nul & del nul |
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/python | |
''' | |
Simple Psychic Test | |
By: T31337 | |
''' | |
import tkinter | |
#from tkinter import * | |
from tkinter import messagebox,Label,Button,Tk |
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 | |
echo -e "\n" | |
echo -e "===========" | |
echo -e "GPG HELEPR" | |
echo -e "==========" | |
genKey() | |
{ | |
clear |
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
package Firebase.Skeleton; | |
import android.app.Activity; | |
import android.net.Uri; | |
import android.os.Bundle; | |
import android.support.annotation.NonNull; | |
import android.util.Log; | |
import android.widget.Toast; | |
import com.google.android.gms.tasks.OnCompleteListener; |
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 | |
#Downlaod .bash_colors (Ensure File Exists And Has Expected Content) | |
wget http://raw.github.com/maxtsepkov/bash_colors/master/bash_colors.sh -O .bash_colors | |
#Import Colors Script | |
#See Here For More Info - https://github.com/mercuriev/bash_colors | |
source .bash_colors | |
#Set Authentication Device (SD-Card) | |
MyDevice="/dev/mmcblk0" |
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 | |
URL="-i sites.txt" | |
ACCEPT='html,htm,css,js,php,jpg,png,jpeg,gif,bmp,img,ico,svg' #File Accept/Download List | |
DECLINE='tmp' #File Reject/Decline List | |
DIR="$HOME/Downloads/web/" | |
function downloadSite | |
{ | |
wget --no-clobber --convert-links --random-wait -r -p -E -e robots=off -U mozilla -P $DIR $URL | |
} |
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
from bs4 import BeautifulSoup, SoupStrainer | |
from scrapy.selector import HtmlXPathSelector | |
from urllib import request | |
import requests | |
from scrapy.linkextractors import LinkExtractor | |
import requests.utils | |
import scrapy.link | |
import scrapy | |
import scrapy.spiders | |
from scrapy.spiders.crawl import CrawlSpider, Rule |
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 | |
spiderFile="spider.txt" | |
spiderInfo="spiderInfo.txt" | |
errorFile="html_errors.txt" | |
ok="spiderList.txt" | |
prefix="http://" | |
curl=$(which curl) | |
spiderBin=$(which xidel) | |
xargsBin=$(which xargs) | |
if [[ -z $curl ]]; then |
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 | |
# Allow more advanced pattern matching (for case..esac below) | |
shopt -s extglob | |
#Variables | |
dir="$HOME/Downloads/web/" #What Directory Do We Save Files To? | |
ok="ok.txt" | |
notok="bad_urls.txt" # We Won't Be Needing This... But It Might Be Handy... | |
sitelist="download.txt" #also can named urls.txt or url-list.txt |
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 | |
#IP Information Gathering Script | |
ipList="ipList.txt" #IP ADDRESS LIST | |
ipData="IP_INFO.txt" #IP INFORMATION FILE | |
ip="" | |
function getIP_Data | |
{ | |
if [[ -z $ip ]]; then | |
read -p "IP ADDRESS: " ip | |
fi |