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 / EHW-Perl-JoinFilesInDir-01
Last active October 5, 2015 19:00
[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
@codewizard13
codewizard13 / EHW-JS-FibonacciMath
Created May 9, 2015 20:36
JavaScript code to Demonstrate my understanding of the "Math" object. I also write a simple FIBONACCI number generator.
<!DOCTYPE html>
<html>
<head>
<title>ERIC'S CODE - Not A Number</title>
<style type="text/css">
.ans {
color: green;
font-weight: bold;
background-color: yellow;
@codewizard13
codewizard13 / EHW-JavasciptTimeline_v1
Created February 25, 2015 20:45
JavaScript Timeline Module. Create a historical timeline in vertical orientation in console/terminal. Designed to be run in a node.js console, or in a browser console (F12). This version does NOT require internet access.
/* JavaScript Timeline Module.
(Press F12 in your browser to see the results)
@Creator: Eric Hepperle (CodeSlayer2010/CodeWizard13)
@Date: 02/24/15
@Version: 1.0
@Purpose: Create a historical timeline in vertical orientation in
console/terminal. Designed to be run in a node.js
console, or in a browser console (F12). This version
/* ON-hover, red border on image div. On focus blur,
pink Works with Google Images (as of 07/21/13).
(Press F12 in your browser to see the results)
@Creator: Eric Hepperle (CodeSlayer2010)
@Date: 07/20/13
@Version: 1.0
@Purpose: Puts a fancy style on image results
in Google Images. When you hover over an image in a
/* Add manilla background, rounded-rect, orange border,
& shadow to paragraphs.
(Press F12 in your browser to see the results)
@Creator: Eric Hepperle (CodeSlayer2010)
@Date: 07/13/13
@Version: 1.0
@Purpose: Puts a fancy style on paragraph <P>
tags to make them 'pop'.
@codewizard13
codewizard13 / AddIndexToFFHistoryExport
Last active August 29, 2015 14:15
[MOSTLY OBSOLETE] Adds AddIndexToFFHistoryExport (2013)
/* Add numbers to left of table.
(Press F12 in your browser to see the results)
@Creator: Eric Hepperle (CodeSlayer2010)
@Date: 07/11/13
@Version: 1.0
@Purpose: Works best with Firefox "History Export" addon.
Grabs <A> tags inside <TD> tags. Loops through each
@codewizard13
codewizard13 / GetYouTubeTagsAsVertList_2015
Last active August 29, 2015 14:15
Get YouTube tags, number them and display each on its own line (2015)
/* Get YouTube tags, number them and display each on its own line
(Press F12 in your browser to see the results)
@Creator: Eric Hepperle (CodeWizard13/CodeSlayer2010)
@Date: 02/14/15
@Purpose: This is a totally revised version of my previous 2013 gist:
GetYouTubeTagsAsCSV. In the almost 2 years since, YouTube has
changed the way tags are stored, once again. Currently the
tags are being held in the Meta value "keywords", so what I'many
@codewizard13
codewizard13 / GetYouTubeTagsAsCSV
Last active August 29, 2015 14:15
jQuery - Get YouTube tags and display as comma-separated list - (2013)
/* Get YouTube tags and display as comma-separated list
(Press F12 in your browser to see the results)
@Creator: Eric Hepperle (CodeSlayer2010)
@Date: 07/06/13
@Purpose: With the newest YouTube setup, when I upload a new video and
enter youtube tags, I am unable to select the tags and
copy them to the clipboard. This is troublesome because often I
will develop a set of tags on the fly that I'd like to reuse