A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.
One-line version to paste in your DevTools
Use $$
if your browser aliases it:
~ 108 byte version
--- | |
AWSTemplateFormatVersion: 2010-09-09 | |
Description: > | |
A basic CloudFormation template for an RDS Aurora cluster. | |
Parameters: | |
DatabaseUsername: | |
AllowedPattern: "[a-zA-Z0-9]+" | |
ConstraintDescription: must be between 1 to 16 alphanumeric characters. |
Predictably Irrational: The Hidden Forces that Shape Our Decisions | |
Quiet: The power of introverts in a world that can't stop talking | |
Business Adventures | |
Zero to One | |
Beyond Budgeting | |
Winning Decisions: Getting It Right the First Time | |
Creativity Inc | |
Good to Great | |
Surviving & Thriving in a Relationship with an Entrepreneur | |
First, Break All the Rules |
Getting Ruby, SASS and DocPad working on Heroku involves two steps:
Ensuring all your plugins are the latest version. Open up your package.json
and change all your docpad plugin dependency versions to 2.x
and your docpad version to 6.x
. Once done, run rm -Rf node_modules; npm install
to grab the latest versions of everything.
Installing Ruby and SASS on Heroku. Copy over the Gemfile
, Gemfile.lock
, and the .buildpacks
files from https://github.com/docpad/sass-heroku-test to your own website. Then run heroku config:add BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi.git
to tell heroku to use multiple buildpacks. Once done, deploy to heroku via git push heroku master
and you may need to run heroku restart
as sometimes the initial deploy fails.
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
TMUX_VERSION=1.8 |