Skip to content

Instantly share code, notes, and snippets.

View apanzerj's full-sized avatar

Adam Panzer apanzerj

View GitHub Profile
@apanzerj
apanzerj / gist:bfc0c5f21687c9a4ad98
Last active March 17, 2016 16:30
Wordpress POST XMLRPC
Anywhere DENY 185.106.92.0/24
Anywhere DENY 185.130.5.0/24
Anywhere DENY 163.53.247.244
Anywhere DENY 188.165.238.96
Anywhere DENY 185.61.138.0/24
Anywhere DENY 181.214.92.0/24
Anywhere DENY 5.2.221.0/24
Anywhere DENY 104.232.103.0/24
@apanzerj
apanzerj / application.rb
Last active June 25, 2019 22:56
A minimalistic signed request validation middleware
# config/application.rb
require File.expand_path('../boot', __FILE__)
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module (YOUR APPLICATION)
@apanzerj
apanzerj / install.sh
Created November 4, 2015 06:11 — forked from jamiecollinson/install.sh
Installing OpenVBX on Ubuntu 14.04 EC2 instance
# check for updates
sudo apt-get update
sudo apt-get upgrade
# install necessary software
sudo apt-get install mysql-server apache2 php5 libapache2-mod-php5 php5-mysql libapache2-mod-auth-mysql php5-curl git sendmail
# create DB
echo "CREATE DATABASE OpenVBX; GRANT ALL PRIVILEGES ON OpenVBX.* TO ubuntu@localhost IDENTIFIED BY {PASSWORD_HERE}; FLUSH PRIVILEGES" | sudo mysql -p
@apanzerj
apanzerj / base.rb
Created September 25, 2015 15:37 — forked from bensie/base.rb
Sinatra API Helpers
require "sinatra/base"
require "sinatra/namespace"
require "multi_json"
require "api/authentication"
require "api/error_handling"
require "api/pagination"
module Api
class Base < ::Sinatra::Base
@apanzerj
apanzerj / no_clue.js
Last active August 29, 2015 14:09
queue processing concept
var QueueProcessor = function () {
this.queue = function () {
return this._queue;
};
this._queue = [];
this.queueAdd = function (item) {
this._queue.push(item);
this._queue;
};
this.process = function () {
require 'zendesk_api'
require 'oauth2'
client = OAuth2::Client.new('{my client unique identifier}',
'{my client secret}',
site: 'https://{subdomain}.zendesk.com',
token_url: "/oauth/tokens",
authorize_url: "/oauth/authorizations/new")
@apanzerj
apanzerj / gist:4445437
Created January 3, 2013 18:03
Apply Tags To a Ticket JS
function ajp_apply_macro(case_id) {
var ticketForm = jQuery("#ticket-chat"), this_id = "0";
new Zendesk.API.Macro(case_id).applyToTicket(this_id, ticketForm)
return false
}
$j(document).ready(function () {
var org_names = {
'Community Moderator': ["Arnaud de Theux", "Sergio Alvarez", "TJ Baker", "Mikhail Zakharov"]
}, needle = "";
jQuery('.name').each(function (index) {
$this = jQuery(this);
jQuery.each(org_names, function (key, value) {
needle = $this[0].outerHTML;
if (currentUser.role === 0) {
if (needle.search('<br>') !== -1) {
@apanzerj
apanzerj / gist:3282040
Created August 7, 2012 05:42
Widget Stack All Together
<script type="javascript">
$j(document).ready(function() {
$j('#tray').css('display', 'none').css('position', 'relative');
$j('#showMe').click(function() {
$j('#tray').slideToggle();
$j('#show').toggle();
$j('#hide').toggle();
}).css('cursor', 'pointer');
});
</script>
@apanzerj
apanzerj / gist:3281975
Created August 7, 2012 05:33
Widget Stack HTML
<div id="showMe" class="border_style" style="background-color:black; color:white;">
<span id="show">Identity Swap-O-Matic</span>
<span id="hide">Hide</span>
</div>
<div id="tray" class="border_style">
<div id="idBody">Identity Swap-O-Matic</div>
</div>