View strip_markdown.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 | |
function strip_markdown( $md = '', $options = [] ) { | |
// char to insert instead of stripped list leaders (default: '') | |
$options['listUnicodeChar'] = isset( $options['listUnicodeChar'] ) ? $options['listUnicodeChar'] : false; | |
// strip list leaders (default: true) | |
$options['stripListLeaders'] = isset( $options['stripListLeaders'] ) ? $options['stripListLeaders'] : true; | |
// support GitHub-Flavored Markdown (default: true) | |
$options['gfm'] = isset( $options['gfm'] ) ? $options['gfm'] : true; |
View url.query.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
url.query = function( url ) { | |
var parsed = this.parse( url, true, false ), | |
query = Object.keys( parsed.query ), | |
result = {}; | |
if( query.length > 0 ) { | |
query.forEach(function(key){ | |
if( key.match( /([^\[]+)\[([^\]]+)\]/g ) ) { | |
key.replace( /([^\[]+)\[([^\]]+)\]/g, function( $0, $1, $2 ) { | |
result[$1] = result[$1] || {}; | |
result[$1][$2] = parsed.query[key]; |
View pastebin.class.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 | |
class pastebin { | |
private $folder = './pastebins'; | |
public $pastes = array(); | |
function __construct( $folder = false ) { | |
if( $folder ) { | |
$this->folder = $folder; | |
} | |
$this->folder = rtrim( $this->folder, '/' ); |
View gist:cb182cbe03d4cbeabb572c1391ef1ec4
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
set Cap to (do shell script "ioreg -w0 -l | grep ExternalChargeCapable") | |
tell Cap to set {wallPower} to {last word of paragraph 1} | |
set CurrentVolume to output volume of (get volume settings) | |
if wallPower = "Yes" then | |
return 0 | |
else | |
set Cap to (do shell script "ioreg -wO -l | grep Capacity") | |
tell Cap to set {Available, Max} to {last word of paragraph 2, last word of paragraph 1} | |
set Pct to round (100 * (Max / Available)) |
View jquery.loader.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(j,q,u,e,r,y,R,o,x){try{o=jQuery;if(o&&(!R||(R&&o.fn.jquery==R))){x=true}}catch(er){}if(!x||(R&&o.fn.jquery!=R)){(q=j.createElement(q)).type='text/javascript';if(r){q.async=true}q.src='//ajax.googleapis.com/ajax/libs/jquery/'+(R||1)+'/jquery.min.js';u=j.getElementsByTagName(u)[0];q.onload=q.onreadystatechange=(function(){if(!e&&(!this.readyState||this.readyState=='loaded'||this.readyState=='complete')){e=true;x=jQuery;jQuery.noConflict(true)(function(){y(x)});q.onload=q.onreadystatechange=null;u.removeChild(q)}});u.appendChild(q)}else{y(o)}})(document,'script','head',false,false,(function($){$(function(){ | |
/* code goes here */ | |
console.log($.fn.jquery); | |
})})); | |
// readable: | |
(function (j, q, u, e, r, y, R, o, x ) { | |
// IE8 undefined crash fix | |
try { |
View gist:0761b9d657fa7757df982c7a62b51fb9
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 poptin, poptin_position, jQ224, all_poptins, test, query_string = new Object, | |
env = "app", | |
api_link = "https://display.popt.in", | |
cdn_server = "https://cdn.popt.in", | |
poptin_il_url = "https://www.poptin.co.il/", | |
poptin_com_url = "https://www.poptin.com/", | |
html_poptin_x_button = '<button type="button" id="closeXButton" onclick="closePoptinOnXclick(this);" class="close-x-button" style="text-align: right;display:none; margin-top: -2px;-webkit-appearance: none;cursor: pointer;background: 0 0;border: 0;float: right;padding:0pxfont-size: 20px;line-height: 0.5;color: #000;text-shadow: #fff 0px 0px 10px;filter: alpha(opacity=20);text-transform: none;overflow: visible;margin: 0;font-size:53px;line-height: 31px;z-index: 9999;position: relative;">×</button>', | |
html_poptin_skip_button = '<button type="button" id="closeXButton" onclick="closePoptinOnXclick(this);" class="close-x-button" style="text-align: right;display:none; margin-top: -2px;-webkit-appearance: none;padding: 5px;cursor |
View LocalSettings.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
# Slack integration | |
require_once "$IP/extensions/Slack/Slack.php"; | |
# Slack extension configuration options | |
$wgSlackWebhookURL = "https://hooks.slack.com/services/some-webhook-url" | |
$wgSlackUserName = "batman"; | |
$wgSlackChannel = "#recent-changes"; | |
$wgSlackIconURL = "http://i.picresize.com/images/2015/09/20/tdpsU.jpg"; | |
$wgSlackLinkUsers = true; |
View .ebextensions production.config
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
option_settings: | |
- namespace: aws:autoscaling:asg | |
option_name: MinSize | |
value: 2 | |
- namespace: aws:autoscaling:asg | |
option_name: MaxSize | |
value: 6 | |
- namespace: aws:elasticbeanstalk:application:environment | |
option_name: env | |
value: production |
View localstorage.polyfillcheck.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(){ | |
if( | |
!(function(t){ | |
try { | |
window.localStorage.setItem(t,t); | |
window.localStorage.removeItem(t); | |
return true; | |
} catch(e) { | |
return false; | |
} |
NewerOlder