Skip to content

Instantly share code, notes, and snippets.

View dillansimmons's full-sized avatar

Dillan Simmons dillansimmons

View GitHub Profile
@dillansimmons
dillansimmons / findDupesInArray.js
Last active October 18, 2016 18:08
Map and find duplicates in 2 arrays
// Arrays
var x = ["7","?","X","X","Q", "?"];
var y = ["?","X","Z","Q", "?", "?"];
var find_dupes = function (array1, array2) {
/* Map Arrays, make uppercase if neccessary
var xx = array1.map(function(x){ return x.toUpperCase() })
var yy = array2.map(function(x){ return x.toUpperCase() }) */
@dillansimmons
dillansimmons / filterOutDuplicatesArray.js
Last active October 18, 2016 18:19
Filter out duplicates from array and create new array.
// Array
var x = ['x','x','y','q','x'];
var list_no_dupes = function(ogArray) {
// Filter and return new array
var newArray = ogArray.filter(function(ele, pos) {
return ogArray.indexOf(ele) === pos;
});
return newArray;
};
@dillansimmons
dillansimmons / findDupesInSingleArray.js
Last active October 18, 2016 18:21
Find duplicates in single array
//Array
var y = ["?","X","Z","Q","W","W"];
/*OPTION ONE*/
var find_dupe = function (array) {
/* Map Arrays, make uppercase if wanted
var yy = array.map(function(x){ return x.toUpperCase() })*/
// Sort function
var sorted_arr = array.slice().sort(); // We use slice to clone the array so the original array won't be modified)
var results = [];
@dillansimmons
dillansimmons / JQueryEqualHeight.js
Last active October 19, 2016 16:19
JQueryEqualHeight
// Equal height function (finds tallest of all and matches) takes class/id/html-element
var equal_height = function equalheight(element) {
maxheight=0;
// Find Tallest of elements
$(element).each(function(){
maxheight = $(this).height() > maxheight ? $(this).height() : maxheight;
})
// Make all elements the same height.
$(element).height(maxheight);
};
@dillansimmons
dillansimmons / parseURL.js
Last active August 16, 2017 15:39
Parse URL values
// JS for grabbing utm params
var getRefQueryParam = function() {
var temp = {};
document.location.search.replace(/\??(?:([^=]+)=([^&]*)&?)/g, function() {
var decode = function(s) {
return decodeURIComponent(s.split("+").join(" "));
};
temp[decode(arguments[1])] = decode(arguments[2]);
});
return temp;
@dillansimmons
dillansimmons / findAndReplaceWP.sql
Last active August 16, 2017 15:39
Worpdpress: Find and Replace URL
UPDATE wp_options SET option_value = replace(option_value, 'http://olddomain.com', 'http://newdomain.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://olddomain.com','http://newdomain.com');
UPDATE wp_posts SET post_content = replace(post_content, 'http://olddomain.com', 'http://newdomain.com');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://olddomain.com', 'http://newdomain.com');
@dillansimmons
dillansimmons / JobviteWordpressShortcode.php
Created October 5, 2017 19:26
Worpdress Shortcode for showing / filtering Jobvite listings. Uses Jobvite v2 api.
<?php
// if you want to function for location later on you can use the $loc var and uncomment the if (if arr_key) code below
function showJobvite(){
/* Jobvite url to start with: Update your Job api key and secret, we start by filtering open and externally facing jobs */
$url = "https://api.jobvite.com/api/v2/job?api=company_jobfeedapi_key&sc=secretKey&jobStatus=Open&availableTo=External&callback=?";
// Initiate curl
$ch = curl_init();
// Disable SSL verification
@dillansimmons
dillansimmons / smoothScroll.JS
Created October 30, 2017 21:59
Smooth scroll anchor links
// Standard Smooth scroll JS - I know kinda verbose D.S.
(function() {
'use strict';
// Feature Test
if ('querySelector' in document && 'addEventListener' in window && Array.prototype.forEach) {
// Function to animate the scroll
var smoothScroll = function(anchor, duration) {
// Calculate how far and how fast to scroll
var startLocation = window.pageYOffset;
var endLocation = anchor.offsetTop;
@dillansimmons
dillansimmons / RestrictFreeMail_Marketo.js
Last active June 11, 2020 19:47
Restrict free email addresses: Marketo
// Taken from http://developers.marketo.com/blog/restrict-free-email-domains-on-form-fill-out/
// Prepared by Ian Taylor and Murtza Manzur on 9/9/2014 - Modified Dillan Simmons 8/15/17
(function (){
// Please include the email domains you would like to block in this list
var invalidDomains = ["@gmail.","@yahoo.","@hotmail.","@live.","@aol.","@outlook.","@test."];
MktoForms2.whenReady(function (form){
form.onValidate(function(){
var email = form.vals().Email;
@dillansimmons
dillansimmons / cost.mjs
Last active September 21, 2021 19:12
Calculate cost to upload folder in ETH
/* eslint-disable no-console */
import getFolderSize from 'get-folder-size';
async function checkCost() {
const myFolder = 'dist'; // your prod assets folder: can be folder or zip file
const size = await getFolderSize.loose(myFolder);
console.log(`The project is ${size} bytes large`);
console.log(`Cost: ${675 * size * 10 * (1 / 1000000000)}Eth at 10Gwei`);
console.log(`Cost: ${675 * size * 50 * (1 / 1000000000)}Eth at 50Gwei`);