View patch.diff
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
diff --git a/wp-content/plugins/soundcloud-is-gold/soundcloud-is-gold-functions.php b/wp-content/plugins/soundcloud-is-gold/soundcloud-is-gold-functions.php | |
index e2eefe3..48f01b0 100644 | |
--- a/wp-content/plugins/soundcloud-is-gold/soundcloud-is-gold-functions.php | |
+++ b/wp-content/plugins/soundcloud-is-gold/soundcloud-is-gold-functions.php | |
@@ -610,18 +610,20 @@ function soundcloud_is_gold_player($id, $user, $autoPlay, $comments, $width, $cl | |
$player = '<div class="soundcloudIsGold '.esc_attr($classes).'" id="soundcloud-'.esc_attr($id).'">'; | |
+ $httpPrefix = (is_ssl() ? 'https' : 'http'); | |
+ |
View setupHipChat.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
"use strict"; | |
var HipChatter = require('hipchatter'), | |
Q = require('bluebird'); | |
var _ = require('waigo')._; | |
module.exports = function*(app) { | |
if (app.config.hipChat) { |
View gist:0c9137e72493e3be26ce
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
browserify = require 'browserify' | |
source = require 'vinyl-source-stream2' | |
uglify = require 'gulp-uglify' | |
watchify = require 'watchify' | |
gulp = require 'gulp' | |
gutil = require 'gulp-util' | |
gulp.task 'js', -> | |
_process = (b) -> |
View jenkins_nginx_ssl_ubuntu.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
# Install Jenkins | |
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add - | |
sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list' | |
sudo apt-get update | |
sudo apt-get install jenkins | |
ACTION: check that Jenkins is running on yourdomain.com:8080 | |
# SSL certificates with Perfect Forward Secrecy | |
# (assuming /etc/ssl/certs/yourdomain.com.pem already exists) |
View gist:d642a16c7b04b79e584a
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
#!/bin/bash | |
MONGO_DATABASE="name here" | |
APP_NAME="name of app" | |
MONGO_HOST="127.0.0.1" | |
MONGO_PORT="27017" | |
TIMESTAMP=`date +%F-%H%M` | |
MONGODUMP_PATH="/usr/bin/mongodump" | |
BACKUPS_DIR="/opt/backup/$APP_NAME" |
View squel.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
'use strict'; | |
var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; | |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constr |
View LinkedInPYMKBulkInvite.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
/* | |
For use on: "My Network" page | |
This will first load full list of invite suggestions by auto-scrolling to bottom of page. | |
Once no more suggestions are left to load it will auto-connect to all by clicking all | |
Connect buttons (with 100ms interval between each click). | |
How to run: Run the below code in your browser's Javascript console (see | |
Developer Tools in chrome). DO NOT close or change the browser tab whilst this is running. |
View JustGive.sol
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
pragma solidity ^0.4.10; | |
contract SimpleAccessControl { | |
address public creator; | |
mapping authorized(address => bool); | |
function AccessControl () { | |
creator = msg.sender; | |
} | |
View Verifying my Peepeth
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 my identity on Peepeth.com 0xb1b6e377aa6ec6928a1d499ae58483b2b99658ec |
OlderNewer