- Postico client for mac
- pgcli - Postgres CLI with autocompletion and syntax highlighting
- pghero - Server and query performance dashboard
- PEV - Query planning / Explain analyze visualisation
- PostgreSQL's explain analyze made readable
I hereby claim:
To claim this, I am signing this object:
.btn-group-vertical>.btn:not(:first-child):not(:last-child), | |
.btn-group-vertical>.col-signup .signup .btn-facebook:not(:first-child):not(:last-child), | |
.btn-group-vertical>.col-signup .signup .btn-google:not(:first-child):not(:last-child), | |
.btn-group-vertical>.col-signup .signup .btn-login:not(:first-child):not(:last-child), | |
.btn-group-vertical>.col-signup .signup .btn-signup:not(:first-child):not(:last-child), | |
.btn-group-vertical>.frm-no-account .btn-go:not(:first-child):not(:last-child), | |
.btn-group-vertical>.nav-bar .menu-search li .btn-close:not(:first-child):not(:last-child), | |
.btn-group-vertical>.nav-bar .menu-search li .btn-search:not(:first-child):not(:last-child), | |
.btn-group-vertical>div[chart-view] .tablet-switch .first-half-btn:not(:first-child):not(:last-child), | |
.btn-group-vertical>div[chart-view] .tablet-switch .second-half-btn:not(:first-child):not(:last-child), |
You'll need to add a whole slew of hosts for intercom if you've got CSP in place (which you should).
Heres what you'll need to add:
connect-src: https://api-ping.intercom.io https://nexus-websocket-a.intercom.io https://nexus-websocket-b.intercom.io wss://nexus-websocket-a.intercom.io wss://nexus-websocket-b.intercom.io https://api-iam.intercom.io
script-src: https://widget.intercom.io https://js.intercomcdn.com
image-src: https://js.intercomcdn.com
-- | |
-- PostgreSQL database dump | |
-- | |
-- Dumped from database version 9.3.4 | |
-- Dumped by pg_dump version 9.3.4 | |
-- Started on 2014-06-10 10:42:59 EST | |
SET statement_timeout = 0; | |
SET lock_timeout = 0; |
{ | |
"directory": "vendor/assets/components" | |
} |
define( ['jquery'], function ( $ ) { | |
var token = $( 'meta[name="csrf-token"]' ).attr( 'content' ); | |
$.ajaxSetup( { | |
beforeSend: function ( xhr ) { | |
xhr.setRequestHeader( 'X-CSRF-Token', token ); | |
} | |
}); | |
return token; |
<link rel="stylesheet" href="/stylesheets/screen.css"> | |
<link rel="stylesheet" href="/stylesheets/narrow.css" media="screen and (max-width: 44em)"> | |
<link rel="stylesheet" href="/stylesheets/medium.css" media="screen and (min-width: 44em) and (max-width: 65em)"> | |
<link rel="stylesheet" href="/stylesheets/wide.css" media="screen and (min-width: 44em)"> | |
<!--[if (gte IE 6)&(lte IE 8)]> | |
<link rel="stylesheet" href="/stylesheets/wide.css"> | |
<script src="/javascripts/nwmatcher.min.js"></script> | |
<script src="/javascripts/selectivizr.min.js"></script> | |
<![endif]--> |
$public_path: "./"; | |
@mixin vector-bg-with-fallback($name) { | |
background-image: url('#{$public_path}images/#{$name}.png'); | |
background-image: none, url('#{$public_path}images/#{$name}.svg'); | |
} |