Skip to content

Instantly share code, notes, and snippets.

View codewizard13's full-sized avatar
💭
Designing WordPress Websites

Eric L. Hepperle codewizard13

💭
Designing WordPress Websites
View GitHub Profile
@codewizard13
codewizard13 / jQuery-ProgramaticallyClickLink-01
Created May 8, 2016 20:26
How to Programatically Click A Link With jQuery #jQuery #Programatically #JavaScript - 01
@codewizard13
codewizard13 / ListPandoraLikedTracks_v2.js
Created May 8, 2016 18:37
Outputs a list of all your Pandora liked tracks to the console. #jQuery #JavaScript
/*
NAME: ListPandoraLikedTracks
AUTHOR: Eric Hepperle
DATE: 2016-04-23
PURPOSE: Outputs a list of all your Pandora liked tracks
to the console.
REVISION: 2.0
USAGE:
@codewizard13
codewizard13 / gist:c4a59e6fa2c878214b257fbb53f7b3a7
Created April 15, 2016 16:30
Prints list of Yahoo Mail senders. (2016-04-16)
/*
AUTHOR: Eric Hepperle
DATE: 2016-04-15
PURPOSE: Prints list of Yahoo Mail senders. I wrote this so
I could quickly record past senders who I may want to connect
with in the future, before deleting their emails. Mostly for
advert and marketing emails.
USAGE: First, login to your Yahoo Mail account.
Next, use a plugin like "jquery-injector" to add jquery
/*
CREATOR: Eric Hepperle
DATE: 2015.11.07
PURPOSE: Make text (HTML) playlist from YouTube playlist
*/
var arrLinkObjs = $('a.pl-video-title-link');
var strOut = '<div id="outResult"><ul style="list-style-type:none">'
1) Pentangle - Wedding Dress
2) Pentangle - Hunting Song
3) Steeleye Span - Seven Hundred Elves (1974)
4) Fairport Convention - Matty Groves
5) Pentangle - House Carpenter
6) Corvus Corax - Bretonischer Marsch ( Medieval Music )
7) The Decemberists - My Mother Was a Chinese Trapeze Artist
8) The Tain
9) Tenacious D - Jesus Ranch (Vídeo Clip Fan Made)
10) Neil Young - Cortez The Killer
/*
FILE: ehCode_2015.11.06_javascript_scrapeLinksFromOneTab_02.txt
CREATOR: Eric Hepperle
DATE: 2015.11.06
This version works with a local .htm(l) file and injects jQuery
via "jquery-injector" plugin, which seems to work now that
jQuerify no longer does.
*/
var arrTabGroups = JSON.parse(localStorage.state)
var strOut = '';
for (var i=0; i<arrTabGroups.tabGroups.length; ++i) {
var outTabGroup = '';
// has label?
@codewizard13
codewizard13 / EWH-Perl-IconChangerMultiSubdir-01
Created October 13, 2015 19:51
Change the icons of multiple subfolders in Windows OS at a time. [Not fully working yet]
# use warnings;
use Cwd;
use Data::Dumper;
print "Hello World!\n\n";
#########################################################
## FILE: ehCode_multiSubdirIconChanger_01.pl
@codewizard13
codewizard13 / EHW-Perl-JoinFilesInDir-03
Created October 8, 2015 17:01
[Perl] Gets all files in a windows directory (with GitBash) and joins them together into one. Useful for join all anonymous Notepad++ files into one.
use warnings;
use Cwd;
print "Hello World!\n\n";
#########################################################
## CREATED: 2015.10.05
## AUTHOR: Eric Hepperle
use warnings;
use Cwd;
print "Hello World!\n\n";
#########################################################
## CREATED: 2015.10.05
## AUTHOR: Eric Hepperle