I hereby claim:
- I am boborchard on github.
- I am boborchard (https://keybase.io/boborchard) on keybase.
- I have a public key whose fingerprint is F5FD 3F72 68D8 29C5 0E0F FFBE 5071 6414 F6BF 09D0
To claim this, I am signing this object:
"Optimizely": { | |
"Cmp": { | |
// This is the existing Optimizely.Cmp.Client block and is used for the CMP DAM integration | |
"Client": { | |
"ClientId": "", | |
"ClientSecret": "", | |
"OrgSSOId": "" | |
}, | |
// v1.3.0 introduces the ability to use multiple CMP instances. | |
// Each mapping will contain the full context of the two-way connection between products |
#!/bin/sh | |
# Unpack the payload | |
mkdir 'backup' | |
unzip '*.zip' -d backup | |
# Move down to the files directory for wp-cli | |
cd files | |
# Grab the credentials out of wp-config.php |
Verifying my Blockstack ID is secured with the address 1BZ2JpPXn5kCeL3RQUECg8goJuCAkw9m3s https://explorer.blockstack.org/address/1BZ2JpPXn5kCeL3RQUECg8goJuCAkw9m3s |
/* | |
Name: PSP CSS Cheatsheet | |
Author: Bob Orchard | |
*/ | |
/* Body Classes */ | |
.public-signup-page {} /* Both Signup and Success Pages */ | |
.public-signup-page__signup {} | |
.public-signup-page__success {} |
I hereby claim:
To claim this, I am signing this object:
<html> | |
<head> | |
<title>Background Hover Change</title> | |
<!-- by @boborchard for @mantia https://twitter.com/mantia/status/488378727295098881) --> | |
<script language="javascript"> | |
<!-- | |
function changeBGC(color){ | |
document.bgColor = color; | |
} | |
//--> |
/usr/local/bin/icalBuddy -nrd -npn -df "%A" -ps "| ~ | -- |" -eed -sd -tf "@%1I:%M %p" -n -eep notes,location,url,attendees -sed eventsToday+7 | sed -e "s/*/--/" | sed -e "s/!/!!/" | fold -s -w 88 |
class ApplicationController < ActionController::Base | |
layout :layout_by_resource | |
def layout_by_resource | |
# If user isn't signed in or is on the main devise controllers, we'll use a different layout | |
if devise_controller? && resource_name == :user && action_name == 'new' | |
"devise" | |
else | |
"application" | |
end |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |