This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# USB / File System Root and URL Root for Jekyll | |
# | |
# Description: Create links and paths within your site using a file system root | |
# Description: This plugin is not limited to USB use for a Jekyll Static Site | |
# | |
# Built by: Christopher Zenzel, AA, IST | |
# Purpose: A Jekyll Web Site containing my Resume for distribution via USB | |
# Built: 2015 | |
# | |
# Please use as you want, but please give credit back to my GIST or |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Experimental Typed Language Support - User Contributed by Me | |
Use as you please! | |
For typed.com | |
Developed by Christopher Zenzel | |
*/ | |
$(document).ready(function() { | |
// Language Information - Shared by Functions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Only in jingo-uploads: .DS_Store | |
Only in jingo-master: .git | |
Only in jingo-uploads/lib: .DS_Store | |
diff -crB jingo-master/lib/app.js jingo-uploads/lib/app.js | |
*** jingo-master/lib/app.js 2015-09-19 03:43:52.000000000 -0400 | |
--- jingo-uploads/lib/app.js 2015-09-19 02:57:35.000000000 -0400 | |
*************** | |
*** 24,29 **** | |
--- 24,30 ---- | |
gravatar = require("gravatar"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .gitignore File | |
/[Ll]ibrary/ | |
/[Tt]emp/ | |
/[Oo]bj/ | |
/[Bb]uild/ | |
/[Bb]uilds/ | |
/Assets/AssetStoreTools* | |
# Set your output directory to ignore | |
/[Oo]utput/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Disable Automatic Image Crop | |
Author: Wordpress Community | |
Description: wpse124009 - http://wordpress.stackexchange.com/questions/124009/why-wordpress-automatic-cropping-all-my-images and https://developer.wordpress.org/reference/functions/remove_image_size/ | |
*/ | |
add_action( 'init', 'czc_disable_extra_image_sizes' ); | |
add_filter( 'image_resize_dimensions', 'czc_disable_crop', 10, 6 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.IO; | |
OpenConnection(); | |
void OpenConnection() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run from the dev tools console of any Youtube video | |
// Accurate as of June 12, 2016 | |
var videoUrls = {}; | |
ytplayer.config.args.url_encoded_fmt_stream_map.split(',').forEach(function (item) { | |
var obj = {}; | |
item.split('&').forEach(function (param) { | |
param = param.split('='); | |
obj[param[0]] = decodeURIComponent(param[1]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* teamWeather - Weather Center | |
* NOAAPORT FINFO Ingest Script for Radar Data | |
* | |
* Updated: 2016/11/12 | |
* | |
* Copyright 2016 Christopher Zenzel | |
* All Rights Reserved | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Christopher Zenzel Analytics | |
Advanced Analytics for Google Analytics Platform | |
Copyright 2016 Christopher David Zenzel | |
All Rights Reserved. | |
https://chriszenzel.com | |
For the purpose of this project and why certain |
OlderNewer