This file contains 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 bash | |
#-----------------------------------------------------------------------------# | |
# [ codeMake ] | |
# | |
# Assemble the har2csv source code | |
# | |
# Build script by: h8rt3rmin8r ([email protected]) | |
# Last updated on: 20191017 | |
# Build script source: https://pastebin.com/raw/n85QsAw2 | |
# HarTools source code: https://github.com/spcgh0st/HarTools |
This file contains 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 | |
################################################################################ | |
# __ | |
# / _| | |
# _ __ ___ __ _ ___ ___ _ __ ___ ___ | |_ | |
# | '_ ` _ \ / _` |/ __/ __| '_ \ / _ \ / _ \| _| | |
# | | | | | | (_| | (__\__ \ |_) | (_) | (_) | | | |
# |_| |_| |_|\__,_|\___|___/ .__/ \___/ \___/|_| | |
# | | | |
# |_| |
This file contains 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 | |
#### ABOUT ####----------------------------------------------------------------# | |
# | |
# Script: assetnews.sh | |
# Source: http://bit.ly/assetnews | |
# | |
# Fetch asset-linked news stories categorized by the Wall Street Journal | |
# | |
# This script can be customized to fetch news stories related to any mainstream |
This file contains 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 | |
# Cryptocurrency Arbitrage Page Builder | |
# Data provided by Cryptopia.co.nz | |
# Assembled by h8rt3rmin8r on 20180924 | |
# | |
# NOTE: This bash script requires prior installation of Apache or some other web host | |
# software and it requires write-access to /var/www/html/index.html | |
# Set up the output location in a public-facing HTML page |
This file contains 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 | |
################################################################################ | |
# | |
# gsrapi.sh | |
# Google Search Recommendations API -- Bash Library | |
# This script was created by h8rt3rmin8r on 20180916 | |
# Built for use by ResoNova International Consulting, LLC (ResoNova.com) | |
# | |
# BASIC USAGE: | |
# Make this script executable and pass a query to the script... |
This file contains 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
################ | |
# # | |
# # | |
# ENCRYPTING # | |
# SHELL # | |
# STRINGS # | |
# # | |
# # | |
################################################################################ | |
#------------------------------------------------------------------------------# |
This file contains 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
################################ | |
# NATIONAL GOOGLE TRENDS # | |
################################ | |
# | |
# Updated: 20171123 | |
# Created by h8rt3rmin8r | |
# Email: [email protected] | |
# PGP: h8rt3rmin8r.com | |
############################################################################################################### | |
# Curl the XML data from all nationally-sorted Google search trends feeds. |
This file contains 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
JQ(1) JQ(1) | |
NAME | |
jq - Command-line JSON processor | |
SYNOPSIS | |
jq [options...] filter [files...] | |
jq can transform JSON in various ways, by selecting, iterating, reducing and otherwise mangling JSON documents. For instance, running the command jq ´map(.price) | add´ will take an array of JSON objects as input and return the sum of their "price" fields. |
This file contains 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
/*///////////////////////////////////////////////////////////////////////// | |
SHEET TIME STAMPER - (FOR USE IN GOOGLE SHEETS) | |
The initial configuration generates a unique time stamp on the line of | |
of the specified sheet ("Sheet1") whenever the corresponding cell in | |
column 4 is NOT empty. Included is an additional configuration which will | |
perform this same action on multiple columns simultaneously. | |
############################### |
This file contains 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 requests import Session # pip install requests | |
from signalr import Connection # pip install signalr-client | |
def handle_received(**kwargs): | |
print('received', kwargs) | |
def print_error(error): | |
print('error: ', error) | |
NewerOlder