This file contains hidden or 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
#!/usr/bin/ruby | |
# Pingdom_http_custom_check | |
# DFF - 2011 | |
# put this in {Apache Files}/cgi-bin/ | |
# make sure to chmod +x the file | |
# Your ruby interpreter might not be where mine is. Check the above. | |
# | |
require 'cgi' | |
too_old=360 |
This file contains hidden or 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 -ex | |
# | |
# Description: Graph how old the last sync was between primary and secondary mongo instances. | |
# | |
# Base code and idea thanks to: Edward M. Goldberg | |
# | |
# any mistakes courtesy of: Dennis Faust | |
# | |
if [ $RS_DISTRO = ubuntu ]; then | |
plugin_dir="/etc/collectd/conf" |
This file contains hidden or 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
# Apache Basic Authentication for A Rewrite Condition not a Directory | |
# | |
# NOTE: Locations work off of URLs not directories | |
# | |
# Put this in your virtualhost block | |
# | |
<Location /YOUR_URL_PATH/> | |
AuthType Basic | |
AuthName "Authorization Required." | |
AuthUserFile /etc/httpd/conf/htpasswd |
This file contains hidden or 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
import com.sun.org.apache.xml.internal.security.utils.Base64 | |
import javax.crypto._ | |
import javax.crypto.spec._ | |
import java.security.spec._ | |
import java.io._ | |
import java.security.{NoSuchAlgorithmException, InvalidAlgorithmParameterException} | |
import javax.management.openmbean.InvalidKeyException | |
import com.sun.org.apache.xml.internal.security.exceptions.Base64DecodingException | |
import play.api.Logger |
This file contains hidden or 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
# god upstart service | |
description "God process monitoring" | |
# When to start and stop the service | |
start on runlevel [2345] | |
stop on runlevel [016] | |
# Automatically restart process if crashed | |
kill timeout 20 | |
respawn |
This file contains hidden or 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: http://redis-rb.keyvalue.org/v2.2.0/ | |
# | |
if Redis_connect | |
case Rails.env | |
when "production" | |
opts = {:host => "YOUR HOST NAME OR IP", :port => "6379", :thread_safe => true } | |
when "staging" | |
opts = {:host => "YOUR HOST NAME OR IP", :port => "6379", :thread_safe => true } | |
else |
This file contains hidden or 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
describe "StaticPages", type: :feature do | |
header_links = [ | |
{ name: 'Sign Up', link: '/signup', text: 'Contacts associated with purchases' }, | |
{ name: 'Log In', link: '/login', text: 'Forgot your user name or password?' } | |
] | |
footer_links = [ | |
{ name: 'Home', link: '/', text: 'Easily and efficiently track'}, | |
{ name: 'Plans & Pricing', link: '/plan', text: 'Standard Features'}, |
This file contains hidden or 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/delayed_job_config.rb | |
# | |
Delayed::Worker.logger = Logger.new(Rails.root.join('log', 'delayed_job.log')) | |
# The base logger is terrible. It only puts what you send. Nothing else. So I had to dig this up and add it. | |
class DJFormatter | |
def call(severity, time, progname, msg) | |
formatted_severity = sprintf("%-5s","#{severity}") | |
"#{Time.now.utc} [#{progname} #{formatted_severity} pid:#{$$}] #{msg.strip}\n" |
This file contains hidden or 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
# To and from hash and params (Rails 4) | |
str = 'nonce=2147483647&version=2.0&client_id=8iR5q' | |
h = Rack::Utils.parse_query str | |
params = ActiveSupport::HashWithIndifferentAccess.new(h) | |
# back to string: | |
query_str = params.to_query | |
Rack::Utils.parse_query(query_str) == Rack::Utils.parse_query(str) | |
This file contains hidden or 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
module Moddy | |
def show_me | |
puts "Yop" | |
end | |
end | |
Class.new.extend(Moddy).show_me | |
Yop | |
# this may come in handy also: |
OlderNewer