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
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 |
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
# 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) |
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
# 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 |
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
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 |
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 QueueProcessor = function () { | |
this.queue = function () { | |
return this._queue; | |
}; | |
this._queue = []; | |
this.queueAdd = function (item) { | |
this._queue.push(item); | |
this._queue; | |
}; | |
this.process = function () { |
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
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") | |
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 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 | |
} |
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
$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) { |
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
<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> |
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
<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> |