Skip to content

Instantly share code, notes, and snippets.

@snapeuh
snapeuh / wp-config.php
Created October 11, 2016 14:00
Use WordPress with a dynamic domain
<?php
define('SP_REQUEST_URL', ($_SERVER['HTTPS'] ? 'https://' : 'http://') . $_SERVER['HTTP_HOST']);
define('WP_SITEURL', SP_REQUEST_URL);
define('WP_HOME', SP_REQUEST_URL);
@dukeimg
dukeimg / apu_spec.rb
Last active April 26, 2016 13:42
APU redux
require './lib/scheme'
describe Scheme do
describe '.check' do
let(:scheme) { Scheme.new(:height => 4, :width => 4,
:cells => [
['0', '0', '.', '0'],
['0', '.', '0', '0'],
['.', '0', '.', '0'],