View find-unintended-body-overflow-css.js
This file contains 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
var docWidth = document.documentElement.offsetWidth; | |
[].forEach.call( | |
document.querySelectorAll('*'), | |
function(el) { | |
if (el.offsetWidth > docWidth) { | |
el.style.border = "1px solid red"; | |
console.log(el); | |
} | |
} |
View macos-change-screenshot-folder.sh
This file contains 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
defaults write com.apple.screencapture location ~/Desktop/Screenshots;killall SystemUIServer |
View settings.php
This file contains 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 | |
/** | |
* Add the following lines to the end of your sites/default/settings.php file | |
* to disable caching, preprocessing CSS/JS files, and disable SSL | |
*/ | |
$conf['securepages_enable'] = FALSE; | |
$conf['cache'] = FALSE; | |
$conf['block_cache'] = FALSE; | |
$conf['preprocess_css'] = FALSE; | |
$conf['preprocess_js'] = FALSE; |
View html5-snip.html
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
</body> | |
</html> |
View gist:867651d128878c8b94e51b96ea28ad49
This file contains 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
Verifying that +williamdodson is my blockchain ID. https://onename.com/williamdodson |
View plugin.get-input-type.js
This file contains 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
/** | |
* Function getInputType | |
* | |
* @return String name for the type of input (i.e. select or textarea) | |
* @example <code>var inputType = $(input).getInputType(); // returns a string representation of the given input</code> | |
* @author William Dodson <william.dodson@gmail.com> | |
* @version 1.0.0 | |
*/ | |
(function ($) { | |
'use strict'; |
View spread.sass
This file contains 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
// strip-units required by spread mixin | |
// http://stackoverflow.com/questions/12328259/how-do-you-strip-the-unit-from-any-number-in-sass | |
@function strip-units($number) | |
@return $number / ($number * 0 + 1) | |
// pow and sqrt required by ease function | |
// adapted from https://github.com/at-import/Sassy-math/blob/master/sass/math.scss | |
@function pow($base, $exponent) | |
$value: $base |
View gist:277f830a57c6215a127c
This file contains 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 | |
/* ORIGINAL: search-exclude.php Line 119 */ | |
public function searchFilter($query) | |
{ | |
if ($query->is_search) { | |
$query->set('post__not_in', array_merge($query->get('post__not_in'), $this->getExcluded())); | |
} | |
return $query; | |
} |
NewerOlder