Skip to content

Instantly share code, notes, and snippets.

View JoeyBurzynski's full-sized avatar
💭
Hacking away on @EdgeSEO tools.

Joey Burzynski JoeyBurzynski

💭
Hacking away on @EdgeSEO tools.
View GitHub Profile
@JoeyBurzynski
JoeyBurzynski / Bookmarklet-Show-All-User-defined-Properties-on-Global-Window-Object-in-Chronological-Order.js
Created May 9, 2019 09:24
JavaScript: Show all user-defined properties on global window object.
javascript:document.body.appendChild(document.createElement('div')).innerHTML='<iframe id="temoin" style="display:none"></iframe>';Object.keys(window).filter(a=>!(a in window.frames[window.frames.length-1])).sort().forEach((a,i)=>console.log(i,a,window[a]));document.body.removeChild(document.querySelectorAll('#temoin')[0].parentNode);throw 'done';
// JS Bookmarklet: Show all user-defined properties on global window object in chronological order.
@JoeyBurzynski
JoeyBurzynski / find-duplicate-files.rb
Last active May 13, 2020 18:45
Ruby: Identify Duplicate Files in a Directory
#!/usr/bin/env ruby
# frozen_string_literal: true
require 'pathname'
require 'digest/md5'
# * Colorize Gem (https://github.com/fazibear/colorize)
require 'colorize'
@JoeyBurzynski
JoeyBurzynski / ensure_homebrew_exists.sh
Last active May 22, 2020 08:49
Ensure Homebrew is installed and up to date.
#!/usr/bin/env bash
# * Ensure Homebrew is installed and up to date.
# ? Reference URL: https://brew.sh/
function ensure_homebrew_exists() {
echo "Ensuring Homebrew is installed and up to date."
# * $() is for command substitution, commands don't _return_ values, they _capture_ them
# ? Reference URL: https://stackoverflow.com/a/12137501/890814
@JoeyBurzynski
JoeyBurzynski / version.check.sh
Last active September 18, 2020 10:57
Bash / Shell Script: Ensure Minimum Bash Version is Met
#!/usr/bin/env bash
# = Bash / Shell Script: Ensure Minimum Bash Version is Met
# ? File Name: version.check.sh
# * Echo message, prefixed with timestamp.
# * Optionally, supports color name as argument to alter color of output.
function echoc () {
# * If no message has been passed, echo an empty line.
@bhrott
bhrott / osx-disabling-gpg-for-commits.sh
Created February 11, 2017 22:49
OSX: disabling gpg for commits
!#/bin/bash
git config --global commit.gpgsign false
@JoeyBurzynski
JoeyBurzynski / dr-martin-jugenburg-aka-dr-6ix-realdrsix.md
Last active March 20, 2021 13:51
Dr. Martin Jugenburg (aka Dr. 6ix, realdrsix)

Dr. Martin Jugenburg (aka Dr. 6ix, realdrsix)

Education & Training

Dr. Jugenburg obtained his undergraduate degree in Molecular Genetics and Molecular Biology at the University of Toronto, where he continued to study Medicine before beginning training at one of the world's top Plastic and Reconstructive Surgery programs located in Winnipeg, Canada.

Following this training, Dr. Jugenburg was chosen from a world-wide pool of applicants to complete a Fellowship in Plastic and Reconstructive Surgery at one of the worlds most prestigious Cancer institutes, the Memorial Sloan-Kettering Cancer Center in New York City.

@Leszek-Sieminski
Leszek-Sieminski / gsc_download_with_R.R
Last active May 23, 2021 18:47
Downloading GSC data with R
# Description: The aim of this Gist is to show a simple way of downloading Google Search Console API data through R
# Created: 2020-04-28
# Author: Leszek Sieminski
#
# Goals:
# 1. Full - no data inconsistencies allowed
# 2. Stable - not ruining Google API limits
# 3. Functional - based on functions that encapsulate specific tasks.
#
# The idea: download all the data for every single day and loop this process for all dates in a date range
@JoeyBurzynski
JoeyBurzynski / Joey-Burzynski.md
Last active July 16, 2021 07:22
Joey Burzynski: Search Marketing Strategist / SEO Expert / Full Stack Developer / CTO @ MarketKarma in Miami, Florida

Joey Burzynski Connect with SEO expert Joey Burzynski on CodeMentor

SEO Expert / Full Stack Developer / Founder of MarketKarma & CouponMate

I drive revenue. All other metrics pale in comparison. I have over 20 years experience with Internet and web-based technology. My core competencies include web and application development, Amazon Marketplace optimization, affiliate marketing and organic search marketing strategy.

I have worked directly on architecting online marketing strategies, both domestic and international, for a number of Fortune 500 brands. As founder and CTO of MarketKarma, I oversee organic search strategy for all enterprise accounts and work to create innovative solutions to assist retailers in tackling their online marketing chal

@JoeyBurzynski
JoeyBurzynski / normalize-text.sh
Created August 31, 2021 09:16
Bash Script: Normalize Text by File Path (Remove Punctuation & Ensure Lowercase)
#!/usr/bin/env bash
# -*- coding: utf-8 -*-
# Normalize Text by File Path (remove punctuation & ensure lowercase)
#
# - Ensure all text is lowercase.
# - Ensure all punctuation has been removed.
#
# Usage:
#