Skip to content

Instantly share code, notes, and snippets.

View dillansimmons's full-sized avatar

Dillan Simmons dillansimmons

View GitHub Profile
@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 / package.json
Last active September 21, 2021 19:12
Use puppeteer to take multiple screenshots of project
{
"name": "mock package.json project",
...
"scripts": {
"screenshots": "node screenshots.mjs"
},
...
"devDependencies": {
"puppeteer": "^10.1.0"
}
@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`);