Skip to content

Instantly share code, notes, and snippets.

gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
\curl -sSL https://get.rvm.io | bash -s stable
@ryana
ryana / README.md
Created June 24, 2016 15:59
Getting real tired of your shit, referrer spammers

Wat

I started seeing a ton of referrer traffic from monetizationking.net. If you fill out the form, it redirects you to adzos.com.

I'm real sick of referrer spam, so let's give them a taste.

In this example, I got Adzos' GA URL:

Adzos

@ryana
ryana / config.js
Created March 8, 2016 21:20
y2 axis format example
{
options: {
data: {
axes: {
"data1": 'y',
"data2": 'y2'
},
},
axis: {
y2: {
@ryana
ryana / buffer_schedule.rb
Created February 29, 2016 19:00
buffer-schedule: Schedule all yer updates
require 'optparse'
require 'csv'
options = {}
OptionParser.new do |opts|
opts.banner = "Usage: buffer_schedule.rb [file.csv] [options]"
opts.on("-tTYPE", "--type=TYPE", "Type: twitter, facebook, linkedin") do |type|
options[:type] = type
end
@ryana
ryana / signed_url.rb
Created January 26, 2016 19:51
Example of creating a signed image chart URL for ChartURL.com
# This is a working example.
require 'json'
require 'openssl'
require 'base64'
require 'cgi'
ENCRYPT_KEY = "dek-d7a46236eda961a6c3c18ffcc6b077ba87d27e9ae85f7842c6d427c265dd5f69d5131308d93332353d4a55a4b1160fcf516515a4a9f0aa50fbf2d7a2e7d0f1c5"
PROJECT_TOKEN = "dt-RwYN"
def charturl_url(template_slug, options)
@ryana
ryana / push_to_knowtify.rb
Created December 2, 2015 23:53
ChartURL / Knowtify.io Integration Example Part 2
# Part 1 at https://gist.github.com/ryana/7e64954d8dd15c858f30
def push_data_to_knowtify
api_token = "SEKRIT"
headers = {'Authorization' => "Token token=#{api_token}", 'Content-Type' => "application/json"}
url_base = "http://www.knowtify.io/api/v1"
endpoint = "/contacts/upsert"
data = {
contacts: [
{
@ryana
ryana / generate_url.rb
Last active May 25, 2016 15:04
ChartURL / Knowtify.io Integration Example
# Must install the `typhoeus` gem for this example.
require 'typhoeus'
# These dependencies work for Ruby 2.1.2. Earlier versions of
# Ruby may need different requires or gems
require 'json'
require 'openssl'
require 'base64'
require 'cgi'
@ryana
ryana / errors.js
Last active September 30, 2015 16:30
Popup Ramen error question on AJAX error
// Ask Ramen 500 question on AJAX error
$(document).ajaxComplete(function(e, xhr, opts) {
// You may want to also catch 401, 403, 406, 422, etc....
// Talk with your developers to figure out which status codes
// need to be monitored.
if (xhr.status > 499 && xhr.status < 510) {
if (Ramen) {
Ramen.event("560ad1f87765626520281000");
}
}
//EnhanceJS isIE test idea
//detect IE and version number through injected conditional comments (no UA detect, no need for cond. compilation / jscript check)
//version arg is for IE version (optional)
//comparison arg supports 'lte', 'gte', etc (optional)
function isIE(version, comparison) {
var cc = 'IE',
b = document.createElement('B'),
@ryana
ryana / sha.rb
Created April 7, 2015 18:33
Testing to see if the to_i(16)/modulo of SHA256 has a uniform distribution
h = {}
1_000_000.times do |i|
puts i if (i % 1_000 == 0)
str = (0...16).map { (65 + rand(26)).chr }.join
digest = (Digest::SHA256.new << str).to_s
num = digest.to_i(16) % 100
h[num] ||= 0
h[num] += 1
end